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;
}
