Yandex Cloud Registry API, gRPC: RegistryService.ListArtifacts
Retrieves the list of registry artifact resources in the specified registry.
gRPC request
rpc ListArtifacts (ListArtifactsRequest) returns (ListArtifactsResponse)
ListArtifactsRequest
{
"registry_id": "string",
"path": "string",
"page_size": "int64",
"page_token": "string"
}
Field |
Description |
registry_id |
string ID of the registry artifact to list repositories in. To get the registry ID use a ArtifactService.List request. |
path |
string The path to a specific node where the registry artifact is located. |
page_size |
int64 The maximum number of results per page to return. If the number of available |
page_token |
string Page token. To get the next page of results, set |
ListArtifactsResponse
{
"artifacts": [
{
"id": "string",
"path": "string",
"name": "string",
"kind": "Kind",
"status": "Status",
"created_at": "google.protobuf.Timestamp",
"modified_at": "google.protobuf.Timestamp"
}
],
"next_page_token": "string"
}
Field |
Description |
artifacts[] |
List of Registry artifact resources. |
next_page_token |
string This token allows you to get the next page of results for list requests. If the number of results |
Artifact
A Artifact resource.
Field |
Description |
id |
string Output only. ID of the artifact. |
path |
string Path where the artifact is located. |
name |
string Name of the artifact. |
kind |
enum Kind Kind of the artifact.
|
status |
enum Status Output only. Status of the artifact.
|
created_at |
Output only. Creation timestamp in RFC3339 |
modified_at |
Output only. Modification timestamp in RFC3339 |