Class: Google::Apis::ArtifactregistryV1beta2::ListTagsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ArtifactregistryV1beta2::ListTagsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/artifactregistry_v1beta2/classes.rb,
lib/google/apis/artifactregistry_v1beta2/representations.rb,
lib/google/apis/artifactregistry_v1beta2/representations.rb
Overview
The response from listing tags.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The token to retrieve the next page of tags, or empty if there are no more tags to return.
-
#tags ⇒ Array<Google::Apis::ArtifactregistryV1beta2::Tag>
The tags returned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTagsResponse
constructor
A new instance of ListTagsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTagsResponse
Returns a new instance of ListTagsResponse.
682 683 684 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 682 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
675 676 677 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 675 def next_page_token @next_page_token end |
#tags ⇒ Array<Google::Apis::ArtifactregistryV1beta2::Tag>
The tags returned.
Corresponds to the JSON property tags
680 681 682 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 680 def @tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
687 688 689 690 |
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 687 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @tags = args[:tags] if args.key?(:tags) end |