class Google::Apis::ArtifactregistryV1::ListDockerImagesResponse
The response from listing docker images.
Attributes
docker_images[RW]
The docker images returned. Corresponds to the JSON property `dockerImages` @return [Array<Google::Apis::ArtifactregistryV1::DockerImage>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/artifactregistry_v1/classes.rb, line 358 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_v1/classes.rb, line 363 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