Show / Hide Table of Contents

Class GoogleCloudDatacatalogV1ListPolicyTagsResponse

Response message for ListPolicyTags.

Inheritance
System.Object
GoogleCloudDatacatalogV1ListPolicyTagsResponse
Implements
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 GoogleCloudDatacatalogV1ListPolicyTagsResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

Pagination token of the next results page. Empty if there are no more results in the list.

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

PolicyTags

The policy tags that belong to the taxonomy.

Declaration
[JsonProperty("policyTags")]
public virtual IList<GoogleCloudDatacatalogV1PolicyTag> PolicyTags { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDatacatalogV1PolicyTag>

Implements

IDirectResponseSchema
In This Article
Back to top