TagValueArgs

data class TagValueArgs(val description: Output<String>? = null, val etag: Output<String>? = null, val name: Output<String>? = null, val parent: Output<String>? = null, val shortName: Output<String>? = null) : ConvertibleToJava<TagValueArgs>

Creates a TagValue as a child of the specified TagKey. If a another request with the same parameters is sent while the original request is in process the second request will receive an error. A maximum of 1000 TagValues can exist under a TagKey at any given time.

Constructors

Link copied to clipboard
fun TagValueArgs(description: Output<String>? = null, etag: Output<String>? = null, name: Output<String>? = null, parent: Output<String>? = null, shortName: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TagValueArgs

Properties

Link copied to clipboard
val description: Output<String>? = null

Optional. User-assigned description of the TagValue. Must not exceed 256 characters. Read-write.

Link copied to clipboard
val etag: Output<String>? = null

Optional. Entity tag which users can pass to prevent race conditions. This field is always set in server responses. See UpdateTagValueRequest for details.

Link copied to clipboard
val name: Output<String>? = null

Immutable. Resource name for TagValue in the format tagValues/456.

Link copied to clipboard
val parent: Output<String>? = null

Immutable. The resource name of the new TagValue's parent TagKey. Must be of the form tagKeys/{tag_key_id}.

Link copied to clipboard
val shortName: Output<String>? = null

Immutable. User-assigned short name for TagValue. The short name should be unique for TagValues within the same parent TagKey. The short name must be 63 characters or less, beginning and ending with an alphanumeric character (a-z0-9A-Z) with dashes (-), underscores (_), dots (.), and alphanumerics between.