Package com.braintrustdata.api.models
Class EnvVarUpdateParams.Body
-
- All Implemented Interfaces:
public final class EnvVarUpdateParams.Body
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classEnvVarUpdateParams.Body.BuilderA builder for Body.
-
Method Summary
Modifier and Type Method Description final Stringname()The name of the environment variable final Optional<String>value()The value of the environment variable. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_value()Returns the raw JSON value of value. final Map<String, JsonValue>_additionalProperties()final EnvVarUpdateParams.Body.BuildertoBuilder()final EnvVarUpdateParams.Bodyvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static EnvVarUpdateParams.Body.Builderbuilder()Returns a mutable builder for constructing an instance of Body. -
-
Method Detail
-
value
final Optional<String> value()
The value of the environment variable. Will be encrypted at rest.
-
_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.
-
_value
final JsonField<String> _value()
Returns the raw JSON value of value.
Unlike value, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final EnvVarUpdateParams.Body.Builder toBuilder()
-
validate
final EnvVarUpdateParams.Body validate()
-
builder
final static EnvVarUpdateParams.Body.Builder builder()
Returns a mutable builder for constructing an instance of Body.
The following fields are required:
.name()
-
-
-
-