blob: e7f4d2a833bb5486ed7c777174b42c8121f44009 (
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
|
syntax = "proto3";
package yandex.cloud.video.v1;
import "google/protobuf/timestamp.proto";
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/video/v1;video";
option java_package = "yandex.cloud.api.video.v1";
// Root entity for content separation.
message Channel {
reserved 102 to 199;
reserved 5 to 99;
// ID of the channel.
string id = 1;
// ID of the organization where channel should be created.
string organization_id = 2;
// Channel title.
string title = 3;
// Channel description.
string description = 4;
// Time when channel was created.
google.protobuf.Timestamp created_at = 100;
// Time of last channel update.
google.protobuf.Timestamp updated_at = 101;
// Custom labels as `` key:value `` pairs. Maximum 64 per resource.
map<string, string> labels = 200;
}
|