Skip to main content

tag_keys

Creates, updates, deletes, gets or lists a tag_keys resource.

Overview

Nametag_keys
TypeResource
Idgoogle.cloudresourcemanager.tag_keys

Fields

NameDatatypeDescription
namestringImmutable. 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.
descriptionstringOptional. User-assigned description of the TagKey. Must not exceed 256 characters. Read-write.
createTimestringOutput only. Creation time.
etagstringOptional. Entity tag which users can pass to prevent race conditions. This field is always set in server responses. See UpdateTagKeyRequest for details.
namespacedNamestringOutput only. Immutable. Namespaced name of the TagKey.
parentstringImmutable. 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}.
purposestringOptional. 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.
purposeDataobjectOptional. 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.
shortNamestringRequired. 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.
updateTimestringOutput only. Update time.

Methods

NameAccessible byRequired ParamsDescription
getSELECTtagKeysIdRetrieves a TagKey. This method will return PERMISSION_DENIED if the key does not exist or the user does not have permission to view it.
listSELECTLists all TagKeys for a parent resource.
createINSERTCreates a new TagKey. If 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 TagKeys can exist under a parent at any given time.
deleteDELETEtagKeysIdDeletes a TagKey. The TagKey cannot be deleted if it has any child TagValues.
patchUPDATEtagKeysIdUpdates the attributes of the TagKey resource.

SELECT examples

Lists all TagKeys for a parent resource.

SELECT
name,
description,
createTime,
etag,
namespacedName,
parent,
purpose,
purposeData,
shortName,
updateTime
FROM google.cloudresourcemanager.tag_keys
;

INSERT example

Use the following StackQL query and manifest file to create a new tag_keys resource.

/*+ create */
INSERT INTO google.cloudresourcemanager.tag_keys (
name,
parent,
shortName,
description,
etag,
purpose,
purposeData
)
SELECT
'{{ name }}',
'{{ parent }}',
'{{ shortName }}',
'{{ description }}',
'{{ etag }}',
'{{ purpose }}',
'{{ purposeData }}'
;

UPDATE example

Updates a tag_keys resource.

/*+ update */
UPDATE google.cloudresourcemanager.tag_keys
SET
name = '{{ name }}',
parent = '{{ parent }}',
shortName = '{{ shortName }}',
description = '{{ description }}',
etag = '{{ etag }}',
purpose = '{{ purpose }}',
purposeData = '{{ purposeData }}'
WHERE
tagKeysId = '{{ tagKeysId }}';

DELETE example

Deletes the specified tag_keys resource.

/*+ delete */
DELETE FROM google.cloudresourcemanager.tag_keys
WHERE tagKeysId = '{{ tagKeysId }}';