Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudDatacatalogV1Tag

import type { GoogleCloudDatacatalogV1Tag } from "https://googleapis.deno.dev/v1/datacatalog:v1.ts";

Tags contain custom metadata and are attached to Data Catalog resources. Tags conform with the specification of their tag template. See Data Catalog IAM for information on the permissions needed to create or view tags.

interface GoogleCloudDatacatalogV1Tag {
column?: string;
fields?: {};
name?: string;
template?: string;
readonly templateDisplayName?: string;
}

§Properties

§
column?: string
[src]

Resources like entry can have schemas associated with them. This scope allows you to attach tags to an individual column based on that schema. To attach a tag to a nested column, separate column names with a dot (.). Example: column.nested_column.

§
fields?: {}
[src]

Required. Maps the ID of a tag field to its value and additional information about that field. Tag template defines valid field IDs. A tag must have at least 1 field and at most 500 fields.

§
name?: string
[src]

Identifier. The resource name of the tag in URL format where tag ID is a system-generated identifier. Note: The tag itself might not be stored in the location specified in its name.

§
template?: string
[src]

Required. The resource name of the tag template this tag uses. Example: projects/{PROJECT_ID}/locations/{LOCATION}/tagTemplates/{TAG_TEMPLATE_ID} This field cannot be modified after creation.

§
readonly templateDisplayName?: string
[src]

Output only. The display name of the tag template.