Container Registry API, gRPC: RegistryService.Create
Creates a registry in the specified folder.
gRPC request
rpc Create (CreateRegistryRequest) returns (operation.Operation)
CreateRegistryRequest
{
"folder_id": "string",
"name": "string",
"labels": "map<string, string>",
"secure": "bool"
}
Field |
Description |
folder_id |
string Required field. ID of the folder to create a registry in. To get the folder ID, use a yandex.cloud.resourcemanager.v1.FolderService.List request. |
name |
string Name of the registry. There may be only one registry per folder. |
labels |
object (map<string, string>) Resource labels as |
secure |
bool If true, registry will be created with pre-setup scanning policy (on push and on schedule every 7 days) |
operation.Operation
{
"id": "string",
"description": "string",
"created_at": "google.protobuf.Timestamp",
"created_by": "string",
"modified_at": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"registry_id": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"id": "string",
"folder_id": "string",
"name": "string",
"status": "Status",
"created_at": "google.protobuf.Timestamp",
"labels": "map<string, string>"
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
created_at |
Creation timestamp. |
created_by |
string ID of the user or service account who initiated the operation. |
modified_at |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
CreateRegistryMetadata
Field |
Description |
registry_id |
string ID of the registry that is being created. |
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. |
status |
enum Status Output only. Status of the registry.
|
created_at |
Output only. Creation timestamp in RFC3339 |
labels |
object (map<string, string>) Resource labels as |