Yandex Cloud Registry API, gRPC: RegistryService.List
Retrieves the list of Registry resources in the specified folder.
gRPC request
rpc List (ListRegistriesRequest) returns (ListRegistriesResponse)
ListRegistriesRequest
{
"folder_id": "string",
"page_size": "int64",
"page_token": "string",
"name_filter": "string",
"kind": [
"Kind"
],
"type": [
"Type"
],
"status": [
"Status"
]
}
|
Field |
Description |
|
folder_id |
string Required field. ID of the folder to list registries in. The maximum string length in characters is 50. |
|
page_size |
int64 The maximum number of results per page to return. If the number of available The maximum value is 1000. |
|
page_token |
string Page token. To get the next page of results, set |
|
name_filter |
string Filter by registry name.
The maximum string length in characters is 1000. |
|
kind[] |
enum Kind Match by registry kind (for example DOCKER, MAVEN, NPM).
|
|
type[] |
enum Type Match by registry type (for example LOCAL, REMOTE).
|
|
status[] |
enum Status Match by registry status. Empty list means any status.
|
ListRegistriesResponse
{
"registries": [
{
"id": "string",
"folder_id": "string",
"name": "string",
"description": "string",
"kind": "Kind",
"type": "Type",
"status": "Status",
"labels": "map<string, string>",
"properties": "map<string, string>",
"created_at": "google.protobuf.Timestamp",
"modified_at": "google.protobuf.Timestamp",
"pattern_filter": {
"include_patterns": [
"string"
],
"exclude_patterns": [
"string"
]
}
}
],
"next_page_token": "string"
}
|
Field |
Description |
|
registries[] |
List of Registry resources. |
|
next_page_token |
string This token allows you to get the next page of results for list requests. If the number of results |
Registry
A Registry resource. For more information, see the Registry section of the documentation.
|
Field |
Description |
|
id |
string Output only. ID of the registry. |
|
folder_id |
string ID of the folder that the registry belongs to. |
|
name |
string Name of the registry. |
|
description |
string Description of the registry. |
|
kind |
enum Kind Kind of the registry.
|
|
type |
enum Type Type of the registry.
|
|
status |
enum Status Output only. Status of the registry.
|
|
labels |
object (map<string, string>) Resource labels as |
|
properties |
object (map<string, string>) Resource properties as |
|
created_at |
Output only. Creation timestamp in RFC3339 |
|
modified_at |
Output only. Modification timestamp in RFC3339 |
|
pattern_filter |
Pattern filters for artifacts in the registry. |
PatternFilter
Default filter includes all artifacts ("**") and excludes none.
|
Field |
Description |
|
include_patterns[] |
string List of patterns for artifacts to include. Each value must match the regular expression |
|
exclude_patterns[] |
string List of patterns for artifacts to exclude. Each value must match the regular expression |