resources.proto 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.video.livestream.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/video/livestream/v1/outputs.proto";
  19. import "google/protobuf/duration.proto";
  20. import "google/protobuf/timestamp.proto";
  21. import "google/rpc/status.proto";
  22. option csharp_namespace = "Google.Cloud.Video.LiveStream.V1";
  23. option go_package = "google.golang.org/genproto/googleapis/cloud/video/livestream/v1;livestream";
  24. option java_multiple_files = true;
  25. option java_outer_classname = "ResourcesProto";
  26. option java_package = "com.google.cloud.video.livestream.v1";
  27. option php_namespace = "Google\\Cloud\\Video\\LiveStream\\V1";
  28. option ruby_package = "Google::Cloud::Video::LiveStream::V1";
  29. // Input resource represents the endpoint from which the channel ingests
  30. // the input stream.
  31. message Input {
  32. option (google.api.resource) = {
  33. type: "livestream.googleapis.com/Input"
  34. pattern: "projects/{project}/locations/{location}/inputs/{input}"
  35. };
  36. // The type of the input.
  37. enum Type {
  38. // Input type is not specified.
  39. TYPE_UNSPECIFIED = 0;
  40. // Input will take an rtmp input stream.
  41. RTMP_PUSH = 1;
  42. // Input will take an srt (Secure Reliable Transport) input stream.
  43. SRT_PUSH = 2;
  44. }
  45. // Tier of the input specification.
  46. enum Tier {
  47. // Tier is not specified.
  48. TIER_UNSPECIFIED = 0;
  49. // Resolution < 1280x720. Bitrate <= 6 Mbps. FPS <= 60.
  50. SD = 1;
  51. // Resolution <= 1920x1080. Bitrate <= 25 Mbps. FPS <= 60.
  52. HD = 2;
  53. // Resolution <= 4096x2160. Not supported yet.
  54. UHD = 3;
  55. }
  56. // Security rules for access control. Each field represents one security rule.
  57. // Only when the source of the input stream satisfies all the fields, this
  58. // input stream can be accepted.
  59. message SecurityRule {
  60. // At least one ip range must match unless none specified. The IP range is
  61. // defined by CIDR block: for example, `192.0.1.0/24` for a range and
  62. // `192.0.1.0/32` for a single IP address.
  63. repeated string ip_ranges = 1;
  64. }
  65. // The resource name of the input, in the form of:
  66. // `projects/{project}/locations/{location}/inputs/{inputId}`.
  67. string name = 1;
  68. // Output only. The creation time.
  69. google.protobuf.Timestamp create_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  70. // Output only. The update time.
  71. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  72. // User-defined key/value metadata.
  73. map<string, string> labels = 4;
  74. // Source type.
  75. Type type = 5;
  76. // Tier defines the maximum input specification that is accepted by the
  77. // video pipeline. The billing is charged based on the tier specified here.
  78. // See [Pricing](https://cloud.google.com/livestream/pricing) for more detail.
  79. // The default is `HD`.
  80. Tier tier = 14;
  81. // Output only. URI to push the input stream to.
  82. // Its format depends on the input [type][google.cloud.video.livestream.v1.Input.type], for example:
  83. //
  84. // * `RTMP_PUSH`: `rtmp://1.2.3.4/live/{STREAM-ID}`
  85. // * `SRT_PUSH`: `srt://1.2.3.4:4201?streamid={STREAM-ID}`
  86. string uri = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  87. // Preprocessing configurations.
  88. PreprocessingConfig preprocessing_config = 9;
  89. // Security rule for access control.
  90. SecurityRule security_rules = 12;
  91. // Output only. The information for the input stream. This field will be present only when
  92. // this input receives the input stream.
  93. InputStreamProperty input_stream_property = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
  94. }
  95. // Channel resource represents the processor that does a user-defined
  96. // "streaming" operation, which includes getting an input stream through an
  97. // input, transcoding it to multiple renditions, and publishing output live
  98. // streams in certain formats (for example, HLS or DASH) to the specified
  99. // location.
  100. message Channel {
  101. option (google.api.resource) = {
  102. type: "livestream.googleapis.com/Channel"
  103. pattern: "projects/{project}/locations/{location}/channels/{channel}"
  104. };
  105. // Location of output file(s) in a Google Cloud Storage bucket.
  106. message Output {
  107. // URI for the output file(s). For example, `gs://my-bucket/outputs/`.
  108. string uri = 1;
  109. }
  110. // State of streaming operation that the channel is running.
  111. enum StreamingState {
  112. // Streaming state is not specified.
  113. STREAMING_STATE_UNSPECIFIED = 0;
  114. // Channel is getting the input stream, generating the live streams to the
  115. // specified output location.
  116. STREAMING = 1;
  117. // Channel is waiting for the input stream through the input.
  118. AWAITING_INPUT = 2;
  119. // Channel is running, but has trouble publishing the live streams onto the
  120. // specified output location (for example, the specified Cloud Storage
  121. // bucket is not writable).
  122. STREAMING_ERROR = 4;
  123. // Channel is generating live streams with no input stream. Live streams are
  124. // filled out with black screen, while input stream is missing.
  125. // Not supported yet.
  126. STREAMING_NO_INPUT = 5;
  127. // Channel is stopped, finishing live streams.
  128. STOPPED = 6;
  129. // Channel is starting.
  130. STARTING = 7;
  131. // Channel is stopping.
  132. STOPPING = 8;
  133. }
  134. // The resource name of the channel, in the form of:
  135. // `projects/{project}/locations/{location}/channels/{channelId}`.
  136. string name = 1;
  137. // Output only. The creation time.
  138. google.protobuf.Timestamp create_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  139. // Output only. The update time.
  140. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  141. // User-defined key/value metadata.
  142. map<string, string> labels = 4;
  143. // A list of input attachments that this channel uses.
  144. // One channel can have multiple inputs as the input sources. Only one
  145. // input can be selected as the input source at one time.
  146. repeated InputAttachment input_attachments = 16;
  147. // Output only. The [InputAttachment.key][google.cloud.video.livestream.v1.InputAttachment.key] that serves as the current input source. The
  148. // first input in the [input_attachments][google.cloud.video.livestream.v1.Channel.input_attachments] is the initial input source.
  149. string active_input = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  150. // Required. Information about the output (that is, the Cloud Storage bucket to store
  151. // the generated live stream).
  152. Output output = 9 [(google.api.field_behavior) = REQUIRED];
  153. // List of elementary streams.
  154. repeated ElementaryStream elementary_streams = 10;
  155. // List of multiplexing settings for output streams.
  156. repeated MuxStream mux_streams = 11;
  157. // List of output manifests.
  158. repeated Manifest manifests = 12;
  159. // List of output sprite sheets.
  160. repeated SpriteSheet sprite_sheets = 13;
  161. // Output only. State of the streaming operation.
  162. StreamingState streaming_state = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
  163. // Output only. A description of the reason for the streaming error. This property is
  164. // always present when [streaming_state][google.cloud.video.livestream.v1.Channel.streaming_state] is
  165. // [STREAMING_ERROR][google.cloud.video.livestream.v1.Channel.StreamingState.STREAMING_ERROR].
  166. google.rpc.Status streaming_error = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
  167. // Configuration of platform logs for this channel.
  168. LogConfig log_config = 19;
  169. }
  170. // Configuration of platform logs.
  171. // See [Using and managing platform
  172. // logs](https://cloud.google.com/logging/docs/api/platform-logs#managing-logs)
  173. // for more information about how to view platform logs through Cloud Logging.
  174. message LogConfig {
  175. // The severity level of platform logging for this channel. Logs with a
  176. // severity level higher than or equal to the chosen severity level will be
  177. // logged and can be viewed through Cloud Logging.
  178. // The severity level of a log is ranked as followed from low to high: DEBUG <
  179. // INFO < NOTICE < WARNING < ERROR < CRITICAL < ALERT < EMERGENCY.
  180. // See
  181. // [LogSeverity](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#logseverity)
  182. // for more information.
  183. enum LogSeverity {
  184. // Log severity is not specified. This is the same as log severity is OFF.
  185. LOG_SEVERITY_UNSPECIFIED = 0;
  186. // Log is turned off.
  187. OFF = 1;
  188. // Log with severity higher than or equal to DEBUG are logged.
  189. DEBUG = 100;
  190. // Logs with severity higher than or equal to INFO are logged.
  191. INFO = 200;
  192. // Logs with severity higher than or equal to WARNING are logged.
  193. WARNING = 400;
  194. // Logs with severity higher than or equal to ERROR are logged.
  195. ERROR = 500;
  196. }
  197. // The severity level of platform logging for this resource.
  198. LogSeverity log_severity = 1;
  199. }
  200. // Properties of the input stream.
  201. message InputStreamProperty {
  202. // The time that the current input stream is accepted and the connection is
  203. // established.
  204. google.protobuf.Timestamp last_establish_time = 1;
  205. // Properties of the video streams.
  206. repeated VideoStreamProperty video_streams = 2;
  207. // Properties of the audio streams.
  208. repeated AudioStreamProperty audio_streams = 3;
  209. }
  210. // Properties of the video stream.
  211. message VideoStreamProperty {
  212. // Index of this video stream.
  213. int32 index = 1;
  214. // Properties of the video format.
  215. VideoFormat video_format = 2;
  216. }
  217. // Properties of the video format.
  218. message VideoFormat {
  219. // Video codec used in this video stream.
  220. string codec = 1;
  221. // The width of the video stream in pixels.
  222. int32 width_pixels = 2;
  223. // The height of the video stream in pixels.
  224. int32 height_pixels = 3;
  225. // The frame rate of the input video stream.
  226. double frame_rate = 4;
  227. }
  228. // Properties of the audio stream.
  229. message AudioStreamProperty {
  230. // Index of this audio stream.
  231. int32 index = 1;
  232. // Properties of the audio format.
  233. AudioFormat audio_format = 2;
  234. }
  235. // Properties of the audio format.
  236. message AudioFormat {
  237. // Audio codec used in this audio stream.
  238. string codec = 1;
  239. // The number of audio channels.
  240. int32 channel_count = 2;
  241. // A list of channel names specifying the layout of the audio channels.
  242. repeated string channel_layout = 3;
  243. }
  244. // A group of information for attaching an input resource to this channel.
  245. message InputAttachment {
  246. // Configurations to follow when automatic failover happens.
  247. message AutomaticFailover {
  248. // The [InputAttachment.key][google.cloud.video.livestream.v1.InputAttachment.key]s of inputs to failover to when this input is
  249. // disconnected. Currently, only up to one backup input is supported.
  250. repeated string input_keys = 1;
  251. }
  252. // A unique key for this input attachment.
  253. string key = 1;
  254. // The resource name of an existing input, in the form of:
  255. // `projects/{project}/locations/{location}/inputs/{inputId}`.
  256. string input = 2 [(google.api.resource_reference) = {
  257. type: "livestream.googleapis.com/Input"
  258. }];
  259. // Automatic failover configurations.
  260. AutomaticFailover automatic_failover = 3;
  261. }
  262. // Event is a sub-resource of a channel, which can be scheduled by the user to
  263. // execute operations on a channel resource without having to stop the channel.
  264. message Event {
  265. option (google.api.resource) = {
  266. type: "livestream.googleapis.com/Event"
  267. pattern: "projects/{project}/locations/{location}/channels/{channel}/events/{event}"
  268. };
  269. // Inserts a new ad opportunity.
  270. message AdBreakTask {
  271. // Duration of an ad opportunity. Must be greater than 0.
  272. google.protobuf.Duration duration = 1;
  273. }
  274. // State of the event
  275. enum State {
  276. // Event state is not specified.
  277. STATE_UNSPECIFIED = 0;
  278. // Event is scheduled but not executed yet.
  279. SCHEDULED = 1;
  280. // Event is being executed.
  281. RUNNING = 2;
  282. // Event has been successfully executed.
  283. SUCCEEDED = 3;
  284. // Event fails to be executed.
  285. FAILED = 4;
  286. // Event has been created but not scheduled yet.
  287. PENDING = 5;
  288. // Event was stopped before running for its full duration.
  289. STOPPED = 6;
  290. }
  291. // The resource name of the event, in the form of:
  292. // `projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}`.
  293. string name = 1;
  294. // Output only. The creation time.
  295. google.protobuf.Timestamp create_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  296. // Output only. The update time.
  297. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  298. // User-defined key/value metadata.
  299. map<string, string> labels = 4;
  300. // Required. Operation to be executed by this event.
  301. oneof task {
  302. // Required. Inserts a new ad opportunity.
  303. AdBreakTask ad_break = 6 [(google.api.field_behavior) = REQUIRED];
  304. }
  305. // When this field is set to true, the event will be executed at the earliest
  306. // time that the server can schedule the event and [execution_time][google.cloud.video.livestream.v1.Event.execution_time] will be
  307. // populated with the time that the server actually schedules the event.
  308. bool execute_now = 9;
  309. // The time when the event should be executed. When [execute_now][google.cloud.video.livestream.v1.Event.execute_now] is set to
  310. // `true`, this field should not be set in `CreateEvent` request and will be
  311. // populated with the time that the server schedules the event.
  312. google.protobuf.Timestamp execution_time = 10;
  313. // Output only. The state of the event.
  314. State state = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  315. // Output only. An error object that describes the reason for the failure.
  316. // This property is always present when `state` is `FAILED`.
  317. google.rpc.Status error = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  318. }