TagBinding

A tag binding associates a tag value with a Google Cloud resource. Tag bindings represent the link between organization taxonomy (tag keys and values) and actual cloud resources.

API ManagementCloud ComputingInfrastructurePlatform as a Service

Properties

Name Type Description
name string The resource name of the tag binding in the form tagBindings/{tag_binding_id}. Output only.
parent string The full resource name of the resource the tag value is bound to. Example: //cloudresourcemanager.googleapis.com/projects/123.
tagValue string The resource name of the tag value in the form tagValues/{tag_value_id}.
tagValueNamespacedName string The namespaced name of the tag value in the form {parentNamespace}/{tagKeyShortName}/{tagValueShortName}. Output only.
View JSON Schema on GitHub

JSON Schema

google-cloud-platform-tagbinding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagBinding",
  "title": "TagBinding",
  "type": "object",
  "description": "A tag binding associates a tag value with a Google Cloud resource. Tag bindings represent the link between organization taxonomy (tag keys and values) and actual cloud resources.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The resource name of the tag binding in the form tagBindings/{tag_binding_id}. Output only.",
      "readOnly": true,
      "example": "Example Title"
    },
    "parent": {
      "type": "string",
      "description": "The full resource name of the resource the tag value is bound to. Example: //cloudresourcemanager.googleapis.com/projects/123.",
      "example": "example_value"
    },
    "tagValue": {
      "type": "string",
      "description": "The resource name of the tag value in the form tagValues/{tag_value_id}.",
      "example": "example_value"
    },
    "tagValueNamespacedName": {
      "type": "string",
      "description": "The namespaced name of the tag value in the form {parentNamespace}/{tagKeyShortName}/{tagValueShortName}. Output only.",
      "readOnly": true,
      "example": "example_value"
    }
  }
}