Class EnvVar
-
- All Implemented Interfaces:
public final class EnvVar
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classEnvVar.BuilderA builder for EnvVar.
public final classEnvVar.ObjectTypeThe type of the object the environment variable is scoped for
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the environment variable final Stringname()The name of the environment variable final StringobjectId()The id of the object the environment variable is scoped for final EnvVar.ObjectTypeobjectType()The type of the object the environment variable is scoped for final Optional<OffsetDateTime>created()Date of environment variable creation final Optional<OffsetDateTime>used()Date the environment variable was last used final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_objectId()Returns the raw JSON value of objectId. final JsonField<EnvVar.ObjectType>_objectType()Returns the raw JSON value of objectType. final JsonField<OffsetDateTime>_created()Returns the raw JSON value of created. final JsonField<OffsetDateTime>_used()Returns the raw JSON value of used. final Map<String, JsonValue>_additionalProperties()final EnvVarvalidate()final EnvVar.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static EnvVar.Builderbuilder()Returns a mutable builder for constructing an instance of EnvVar. -
-
Method Detail
-
objectType
final EnvVar.ObjectType objectType()
The type of the object the environment variable is scoped for
-
created
final Optional<OffsetDateTime> created()
Date of environment variable creation
-
used
final Optional<OffsetDateTime> used()
Date the environment variable was last used
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_objectId
final JsonField<String> _objectId()
Returns the raw JSON value of objectId.
Unlike objectId, this method doesn't throw if the JSON field has an unexpected type.
-
_objectType
final JsonField<EnvVar.ObjectType> _objectType()
Returns the raw JSON value of objectType.
Unlike objectType, this method doesn't throw if the JSON field has an unexpected type.
-
_created
final JsonField<OffsetDateTime> _created()
Returns the raw JSON value of created.
Unlike created, this method doesn't throw if the JSON field has an unexpected type.
-
_used
final JsonField<OffsetDateTime> _used()
Returns the raw JSON value of used.
Unlike used, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final EnvVar.Builder toBuilder()
-
builder
final static EnvVar.Builder builder()
Returns a mutable builder for constructing an instance of EnvVar.
The following fields are required:
.id() .name() .objectId() .objectType()
-
-
-
-