blob: 56ed703c2397fc3ffc69d445f1fbb300b8dc7152 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
syntax = "proto3";
package yandex.cloud.containerregistry.v1;
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/containerregistry/v1;containerregistry";
option java_package = "yandex.cloud.api.containerregistry.v1";
// A Blob resource.
message Blob {
// Output only. ID of the blob.
string id = 1;
// Content-addressable identifier of the blob.
string digest = 2;
// Size of the blob, specified in bytes.
int64 size = 3;
// List of blob urls.
repeated string urls = 4;
}
|