class Google::Apis::CloudresourcemanagerV3::ListTagValuesResponse

The ListTagValues response.

Attributes

next_page_token[RW]

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. Corresponds to the JSON property `nextPageToken` @return [String]

tag_values[RW]

A possibly paginated list of TagValues that are direct descendants of the specified parent TagKey. Corresponds to the JSON property `tagValues` @return [Array<Google::Apis::CloudresourcemanagerV3::TagValue>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudresourcemanager_v3/classes.rb, line 890
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudresourcemanager_v3/classes.rb, line 895
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @tag_values = args[:tag_values] if args.key?(:tag_values)
end