#[non_exhaustive]pub struct TagKey {
pub name: String,
pub parent: String,
pub short_name: String,
pub namespaced_name: String,
pub description: String,
pub create_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub etag: String,
pub purpose: Purpose,
pub purpose_data: HashMap<String, String>,
}Expand description
A TagKey, used to group a set of TagValues.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringImmutable. The resource name for a TagKey. Must be in the format
tagKeys/{tag_key_id}, where tag_key_id is the generated numeric id for
the TagKey.
parent: StringImmutable. The resource name of the TagKey’s parent. A TagKey can be
parented by an Organization or a Project. For a TagKey parented by an
Organization, its parent must be in the form organizations/{org_id}. For
a TagKey parented by a Project, its parent can be in the form
projects/{project_id} or projects/{project_number}.
short_name: StringRequired. Immutable. The user friendly name for a TagKey. The short name should be unique for TagKeys within the same tag namespace.
The short name must be 1-63 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics between.
namespaced_name: StringOutput only. Immutable. Namespaced name of the TagKey.
description: StringOptional. User-assigned description of the TagKey. Must not exceed 256 characters.
Read-write.
create_time: Option<Timestamp>Output only. Creation time.
update_time: Option<Timestamp>Output only. Update time.
etag: StringOptional. Entity tag which users can pass to prevent race conditions. This field is always set in server responses. See UpdateTagKeyRequest for details.
purpose: PurposeOptional. A purpose denotes that this Tag is intended for use in policies of a specific policy engine, and will involve that policy engine in management operations involving this Tag. A purpose does not grant a policy engine exclusive rights to the Tag, and it may be referenced by other policy engines.
A purpose cannot be changed once set.
purpose_data: HashMap<String, String>Optional. Purpose data corresponds to the policy system that the tag is
intended for. See documentation for Purpose for formatting of this field.
Purpose data cannot be changed once set.
Implementations§
Source§impl TagKey
impl TagKey
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sets the value of parent.
Sourcepub fn set_short_name<T: Into<String>>(self, v: T) -> Self
pub fn set_short_name<T: Into<String>>(self, v: T) -> Self
Sets the value of short_name.
Sourcepub fn set_namespaced_name<T: Into<String>>(self, v: T) -> Self
pub fn set_namespaced_name<T: Into<String>>(self, v: T) -> Self
Sets the value of namespaced_name.
Sourcepub fn set_description<T: Into<String>>(self, v: T) -> Self
pub fn set_description<T: Into<String>>(self, v: T) -> Self
Sets the value of description.
Sourcepub fn set_create_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_create_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of create_time.
Sourcepub fn set_update_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
pub fn set_update_time<T: Into<Option<Timestamp>>>(self, v: T) -> Self
Sets the value of update_time.
Sourcepub fn set_purpose<T: Into<Purpose>>(self, v: T) -> Self
pub fn set_purpose<T: Into<Purpose>>(self, v: T) -> Self
Sets the value of purpose.
Sourcepub fn set_purpose_data<T, K, V>(self, v: T) -> Self
pub fn set_purpose_data<T, K, V>(self, v: T) -> Self
Sets the value of purpose_data.