Class EnvVarUpdateParams.Body.Builder
-
- All Implemented Interfaces:
public final class EnvVarUpdateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
name
final EnvVarUpdateParams.Body.Builder name(String name)
The name of the environment variable
-
name
final EnvVarUpdateParams.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.
-
value
final EnvVarUpdateParams.Body.Builder value(String value)
The value of the environment variable. Will be encrypted at rest.
-
value
final EnvVarUpdateParams.Body.Builder value(Optional<String> value)
Alias for calling Builder.value with
value.orElse(null).
-
value
final EnvVarUpdateParams.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 EnvVarUpdateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final EnvVarUpdateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final EnvVarUpdateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final EnvVarUpdateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final EnvVarUpdateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final EnvVarUpdateParams.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()
-
-
-
-