Class EnvVarReplaceParams.Body.Builder
-
- All Implemented Interfaces:
public final class EnvVarReplaceParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
name
final EnvVarReplaceParams.Body.Builder name(String name)
The name of the environment variable
-
name
final EnvVarReplaceParams.Body.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
objectId
final EnvVarReplaceParams.Body.Builder objectId(String objectId)
The id of the object the environment variable is scoped for
-
objectId
final EnvVarReplaceParams.Body.Builder objectId(JsonField<String> objectId)
Sets Builder.objectId to an arbitrary JSON value.
You should usually call Builder.objectId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
objectType
final EnvVarReplaceParams.Body.Builder objectType(EnvVarReplaceParams.ObjectType objectType)
The type of the object the environment variable is scoped for
-
objectType
final EnvVarReplaceParams.Body.Builder objectType(JsonField<EnvVarReplaceParams.ObjectType> objectType)
Sets Builder.objectType to an arbitrary JSON value.
You should usually call Builder.objectType with a well-typed ObjectType value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
value
final EnvVarReplaceParams.Body.Builder value(String value)
The value of the environment variable. Will be encrypted at rest.
-
value
final EnvVarReplaceParams.Body.Builder value(Optional<String> value)
Alias for calling Builder.value with
value.orElse(null).
-
value
final EnvVarReplaceParams.Body.Builder value(JsonField<String> value)
Sets Builder.value to an arbitrary JSON value.
You should usually call Builder.value with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final EnvVarReplaceParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final EnvVarReplaceParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final EnvVarReplaceParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final EnvVarReplaceParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final EnvVarReplaceParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final EnvVarReplaceParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.name() .objectId() .objectType()
-
-
-
-