AttributeValues

The attribute values associated with resource.

JSON representation
{ "attribute": string, // Union field Value can be only one of the following: "enumValues": { object (EnumAttributeValues) }, "stringValues": { object (StringAttributeValues) }, "jsonValues": { object (StringAttributeValues) }, "uriValues": { object (StringAttributeValues) } // End of list of possible types for union field Value. }
Fields
attribute

string

Output only. The name of the attribute. Format: projects/{project}/locations/{location}/attributes/{attribute}

Union field Value. The attribute values associated with the resource. Value can be only one of the following:
enumValues

object (EnumAttributeValues)

The attribute values associated with a resource in case attribute data type is enum.

stringValues

object (StringAttributeValues)

The attribute values associated with a resource in case attribute data type is string.

jsonValues

object (StringAttributeValues)

The attribute values associated with a resource in case attribute data type is JSON.

uriValues

object (StringAttributeValues)

The attribute values associated with a resource in case attribute data type is URL, URI or IP, like gs://bucket-name/object-name.

EnumAttributeValues

The attribute values of data type enum.

JSON representation
{ "values": [ { object (AllowedValue) } ] }
Fields
values[]

object (AllowedValue)

Required. The attribute values in case attribute data type is enum.

StringAttributeValues

The attribute values of data type string or JSON.

JSON representation
{ "values": [ string ] }
Fields
values[]

string

Required. The attribute values in case attribute data type is string or JSON.