class Google::Apis::ArtifactregistryV1beta2::ListTagsResponse
The response from listing tags.
Attributes
next_page_token[RW]
The token to retrieve the next page of tags, or empty if there are no more tags to return. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/artifactregistry_v1beta2/classes.rb, line 614 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/artifactregistry_v1beta2/classes.rb, line 619 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tags = args[:tags] if args.key?(:tags) end