diff options
author | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:12:13 +0300 |
---|---|---|
committer | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:22:43 +0300 |
commit | 07f57e35443ab7f09471caf2dbf1afbcced4d9f7 (patch) | |
tree | a4a7b66ead62e83fa988a2ec2ce6576311c1f4b1 /contrib/libs/yandex-cloud-api-protos/yandex/cloud/video/v1/channel.proto | |
parent | 6db3b8ca95e44179e48306a58656fb1f9317d9c3 (diff) | |
download | ydb-07f57e35443ab7f09471caf2dbf1afbcced4d9f7.tar.gz |
add contrib/python/yandexcloud to import
03b7d3cad2237366b55b393e18d4dc5eb222798c
Diffstat (limited to 'contrib/libs/yandex-cloud-api-protos/yandex/cloud/video/v1/channel.proto')
-rw-r--r-- | contrib/libs/yandex-cloud-api-protos/yandex/cloud/video/v1/channel.proto | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/video/v1/channel.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/video/v1/channel.proto new file mode 100644 index 0000000000..e7f4d2a833 --- /dev/null +++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/video/v1/channel.proto @@ -0,0 +1,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; +} |