blob: 4df727d8a793d10efc59de3fba2741422c09bcad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
syntax = "proto3";
package yandex.cloud.containerregistry.v1;
import "yandex/cloud/containerregistry/v1/blob.proto";
import "google/protobuf/timestamp.proto";
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/containerregistry/v1;containerregistry";
option java_package = "yandex.cloud.api.containerregistry.v1";
// An Image resource. For more information, see [Docker image](/docs/container-registry/concepts/docker-image).
message Image {
// Output only. ID of the Docker image.
string id = 1;
// Name of the Docker image.
// The name is unique within the registry.
string name = 2;
// Content-addressable identifier of the Docker image.
string digest = 3;
// Compressed size of the Docker image, specified in bytes.
int64 compressed_size = 4;
// Configuration of the Docker image.
Blob config = 5;
// Layers of the Docker image.
repeated Blob layers = 6;
// Tags of the Docker image.
//
// Each tag is unique within the repository.
repeated string tags = 7;
// Output only. Creation timestamp in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
google.protobuf.Timestamp created_at = 8;
}
|