You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parent: string, Required. The name of the parent resource whose docker images will be listed. (required)
98
+
pageSize: integer, The maximum number of artifacts to return.
99
+
pageToken: string, The next_page_token value returned from a previous list request, if any.
100
+
x__xgafv: string, V1 error format.
101
+
Allowed values
102
+
1 - v1 error format
103
+
2 - v2 error format
104
+
105
+
Returns:
106
+
An object of the form:
107
+
108
+
{ # The response from listing docker images.
109
+
"dockerImages": [ # The docker images returned.
110
+
{ # DockerImage represents a docker artifact.
111
+
"imageSizeBytes": "A String", # Calculated size of the image.
112
+
"mediaType": "A String", # Media type of this image, e.g. "application/vnd.docker.distribution.manifest.v2+json".
113
+
"name": "A String", # Required. registry_location, project_id, repository_name and image id forms a unique image name:`projects//locations//repository//dockerImages/`. For example, "projects/test-project/locations/us-west4/repositories/test-repo/dockerImages/ nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf", where "us-west4" is the registry_location, "test-project" is the project_id, "test-repo" is the repository_name and "nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf" is the image's digest.
114
+
"tags": [ # Tags attached to this image.
115
+
"A String",
116
+
],
117
+
"uploadTime": "A String", # Time the image was uploaded.
118
+
"uri": "A String", # Required. URL to access the image. Example: us-west4-docker.pkg.dev/test-project/test-repo/nginx@sha256:e9954c1fc875017be1c3e36eca16be2d9e9bccc4bf072163515467d6a823c7cf
119
+
},
120
+
],
121
+
"nextPageToken": "A String", # The token to retrieve the next page of artifacts, or empty if there are no more artifacts to return.
0 commit comments