Class VaultCreateParams.Body.Builder
-
- All Implemented Interfaces:
public final class VaultCreateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
displayName
final VaultCreateParams.Body.Builder displayName(String displayName)
Human-readable name for the vault. 1-255 characters.
-
displayName
final VaultCreateParams.Body.Builder displayName(JsonField<String> displayName)
Sets Builder.displayName to an arbitrary JSON value.
You should usually call Builder.displayName with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
metadata
final VaultCreateParams.Body.Builder metadata(VaultCreateParams.Metadata metadata)
Arbitrary key-value metadata to attach to the vault. Maximum 16 pairs, keys up to 64 chars, values up to 512 chars.
-
metadata
final VaultCreateParams.Body.Builder metadata(JsonField<VaultCreateParams.Metadata> metadata)
Sets Builder.metadata to an arbitrary JSON value.
You should usually call Builder.metadata with a well-typed Metadata value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final VaultCreateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VaultCreateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VaultCreateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VaultCreateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VaultCreateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VaultCreateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.displayName()
-
-
-
-