Show / Hide Table of Contents

Class ListTagValuesResponse

The ListTagValues response.

Inheritance
System.Object
ListTagValuesResponse
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.CloudResourceManager.v3.Data
Assembly: Google.Apis.CloudResourceManager.v3.dll
Syntax
public class ListTagValuesResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

A pagination token returned from a previous call to ListTagValues that indicates from where listing should continue. This is currently not used, but the server may at any point start supplying a valid token.

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

TagValues

A possibly paginated list of TagValues that are direct descendants of the specified parent TagKey.

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

Implements

IDirectResponseSchema
In This Article
Back to top