class Google::Apis::CloudresourcemanagerV3::ListTagKeysResponse
The ListTagKeys response message.
Attributes
next_page_token[RW]
A pagination token returned from a previous call to `ListTagKeys` that indicates from where listing should continue. Corresponds to the JSON property `nextPageToken` @return [String]
tag_keys[RW]
List of TagKeys that live under the specified parent in the request. Corresponds to the JSON property `tagKeys` @return [Array<Google::Apis::CloudresourcemanagerV3::TagKey>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v3/classes.rb, line 862 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 867 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tag_keys = args[:tag_keys] if args.key?(:tag_keys) end