Class: Google::Apis::ArtifactregistryV1::ListDockerImagesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/artifactregistry_v1/classes.rb,
lib/google/apis/artifactregistry_v1/representations.rb,
lib/google/apis/artifactregistry_v1/representations.rb

Overview

The response from listing docker images.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDockerImagesResponse

Returns a new instance of ListDockerImagesResponse.



1121
1122
1123
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1121

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#docker_imagesArray<Google::Apis::ArtifactregistryV1::DockerImage>

The docker images returned. Corresponds to the JSON property dockerImages



1113
1114
1115
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1113

def docker_images
  @docker_images
end

#next_page_tokenString

The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1119
1120
1121
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1119

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1126
1127
1128
1129
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1126

def update!(**args)
  @docker_images = args[:docker_images] if args.key?(:docker_images)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end