class Google::Apis::ArtifactregistryV1beta2::ListRepositoriesResponse

The response from listing repositories.

Attributes

next_page_token[RW]

The token to retrieve the next page of repositories, or empty if there are no more repositories to return. Corresponds to the JSON property `nextPageToken` @return [String]

repositories[RW]

The repositories returned. Corresponds to the JSON property `repositories` @return [Array<Google::Apis::ArtifactregistryV1beta2::Repository>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/artifactregistry_v1beta2/classes.rb, line 588
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 593
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @repositories = args[:repositories] if args.key?(:repositories)
end