Show / Hide Table of Contents

Class GoogleCloudDatacatalogV1Taxonomy

A taxonomy is a collection of hierarchical policy tags that classify data along a common axis. For example, a "data sensitivity" taxonomy might contain the following policy tags: + PII + Account number + Age + SSN + Zipcode + Financials + Revenue A "data origin" taxonomy might contain the following policy tags: + User data + Employee data + Partner data + Public data

Inheritance
System.Object
GoogleCloudDatacatalogV1Taxonomy
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.DataCatalog.v1.Data
Assembly: Google.Apis.DataCatalog.v1.dll
Syntax
public class GoogleCloudDatacatalogV1Taxonomy : IDirectResponseSchema

Properties

ActivatedPolicyTypes

Optional. A list of policy types that are activated for this taxonomy. If not set, defaults to an empty list.

Declaration
[JsonProperty("activatedPolicyTypes")]
public virtual IList<string> ActivatedPolicyTypes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Description

Optional. Description of this taxonomy. If not set, defaults to empty. The description must contain only Unicode characters, tabs, newlines, carriage returns, and page breaks, and be at most 2000 bytes long when encoded in UTF-8.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

DisplayName

Required. User-defined name of this taxonomy. The name can't start or end with spaces, must contain only Unicode letters, numbers, underscores, dashes, and spaces, and be at most 200 bytes long when encoded in UTF-8. The taxonomy display name must be unique within an organization.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Name

Output only. Resource name of this taxonomy in URL format. Note: Policy tag manager generates unique taxonomy IDs.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

PolicyTagCount

Output only. Number of policy tags in this taxonomy.

Declaration
[JsonProperty("policyTagCount")]
public virtual int? PolicyTagCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TaxonomyTimestamps

Output only. Creation and modification timestamps of this taxonomy.

Declaration
[JsonProperty("taxonomyTimestamps")]
public virtual GoogleCloudDatacatalogV1SystemTimestamps TaxonomyTimestamps { get; set; }
Property Value
Type Description
GoogleCloudDatacatalogV1SystemTimestamps

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top