service.proto 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  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/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/cloud/video/livestream/v1/resources.proto";
  21. import "google/longrunning/operations.proto";
  22. import "google/protobuf/empty.proto";
  23. import "google/protobuf/field_mask.proto";
  24. import "google/protobuf/timestamp.proto";
  25. option csharp_namespace = "Google.Cloud.Video.LiveStream.V1";
  26. option go_package = "google.golang.org/genproto/googleapis/cloud/video/livestream/v1;livestream";
  27. option java_multiple_files = true;
  28. option java_outer_classname = "ServiceProto";
  29. option java_package = "com.google.cloud.video.livestream.v1";
  30. option php_namespace = "Google\\Cloud\\Video\\LiveStream\\V1";
  31. option ruby_package = "Google::Cloud::Video::LiveStream::V1";
  32. // Using Live Stream API, you can generate live streams in the various
  33. // renditions and streaming formats. The streaming format include HTTP Live
  34. // Streaming (HLS) and Dynamic Adaptive Streaming over HTTP (DASH). You can send
  35. // a source stream in the various ways, including Real-Time Messaging
  36. // Protocol (RTMP) and Secure Reliable Transport (SRT).
  37. service LivestreamService {
  38. option (google.api.default_host) = "livestream.googleapis.com";
  39. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  40. // Creates a channel with the provided unique ID in the specified
  41. // region.
  42. rpc CreateChannel(CreateChannelRequest) returns (google.longrunning.Operation) {
  43. option (google.api.http) = {
  44. post: "/v1/{parent=projects/*/locations/*}/channels"
  45. body: "channel"
  46. };
  47. option (google.api.method_signature) = "parent,channel,channel_id";
  48. option (google.longrunning.operation_info) = {
  49. response_type: "Channel"
  50. metadata_type: "OperationMetadata"
  51. };
  52. }
  53. // Returns a list of all channels in the specified region.
  54. rpc ListChannels(ListChannelsRequest) returns (ListChannelsResponse) {
  55. option (google.api.http) = {
  56. get: "/v1/{parent=projects/*/locations/*}/channels"
  57. };
  58. option (google.api.method_signature) = "parent";
  59. }
  60. // Returns the specified channel.
  61. rpc GetChannel(GetChannelRequest) returns (Channel) {
  62. option (google.api.http) = {
  63. get: "/v1/{name=projects/*/locations/*/channels/*}"
  64. };
  65. option (google.api.method_signature) = "name";
  66. }
  67. // Deletes the specified channel.
  68. rpc DeleteChannel(DeleteChannelRequest) returns (google.longrunning.Operation) {
  69. option (google.api.http) = {
  70. delete: "/v1/{name=projects/*/locations/*/channels/*}"
  71. };
  72. option (google.api.method_signature) = "name";
  73. option (google.longrunning.operation_info) = {
  74. response_type: "google.protobuf.Empty"
  75. metadata_type: "OperationMetadata"
  76. };
  77. }
  78. // Updates the specified channel.
  79. rpc UpdateChannel(UpdateChannelRequest) returns (google.longrunning.Operation) {
  80. option (google.api.http) = {
  81. patch: "/v1/{channel.name=projects/*/locations/*/channels/*}"
  82. body: "channel"
  83. };
  84. option (google.api.method_signature) = "channel,update_mask";
  85. option (google.longrunning.operation_info) = {
  86. response_type: "Channel"
  87. metadata_type: "OperationMetadata"
  88. };
  89. }
  90. // Starts the specified channel. Part of the video pipeline will be created
  91. // only when the StartChannel request is received by the server.
  92. rpc StartChannel(StartChannelRequest) returns (google.longrunning.Operation) {
  93. option (google.api.http) = {
  94. post: "/v1/{name=projects/*/locations/*/channels/*}:start"
  95. body: "*"
  96. };
  97. option (google.api.method_signature) = "name";
  98. option (google.longrunning.operation_info) = {
  99. response_type: "ChannelOperationResponse"
  100. metadata_type: "OperationMetadata"
  101. };
  102. }
  103. // Stops the specified channel. Part of the video pipeline will be released
  104. // when the StopChannel request is received by the server.
  105. rpc StopChannel(StopChannelRequest) returns (google.longrunning.Operation) {
  106. option (google.api.http) = {
  107. post: "/v1/{name=projects/*/locations/*/channels/*}:stop"
  108. body: "*"
  109. };
  110. option (google.api.method_signature) = "name";
  111. option (google.longrunning.operation_info) = {
  112. response_type: "ChannelOperationResponse"
  113. metadata_type: "OperationMetadata"
  114. };
  115. }
  116. // Creates an input with the provided unique ID in the specified region.
  117. rpc CreateInput(CreateInputRequest) returns (google.longrunning.Operation) {
  118. option (google.api.http) = {
  119. post: "/v1/{parent=projects/*/locations/*}/inputs"
  120. body: "input"
  121. };
  122. option (google.api.method_signature) = "parent,input,input_id";
  123. option (google.longrunning.operation_info) = {
  124. response_type: "Input"
  125. metadata_type: "OperationMetadata"
  126. };
  127. }
  128. // Returns a list of all inputs in the specified region.
  129. rpc ListInputs(ListInputsRequest) returns (ListInputsResponse) {
  130. option (google.api.http) = {
  131. get: "/v1/{parent=projects/*/locations/*}/inputs"
  132. };
  133. option (google.api.method_signature) = "parent";
  134. }
  135. // Returns the specified input.
  136. rpc GetInput(GetInputRequest) returns (Input) {
  137. option (google.api.http) = {
  138. get: "/v1/{name=projects/*/locations/*/inputs/*}"
  139. };
  140. option (google.api.method_signature) = "name";
  141. }
  142. // Deletes the specified input.
  143. rpc DeleteInput(DeleteInputRequest) returns (google.longrunning.Operation) {
  144. option (google.api.http) = {
  145. delete: "/v1/{name=projects/*/locations/*/inputs/*}"
  146. };
  147. option (google.api.method_signature) = "name";
  148. option (google.longrunning.operation_info) = {
  149. response_type: "google.protobuf.Empty"
  150. metadata_type: "OperationMetadata"
  151. };
  152. }
  153. // Updates the specified input.
  154. rpc UpdateInput(UpdateInputRequest) returns (google.longrunning.Operation) {
  155. option (google.api.http) = {
  156. patch: "/v1/{input.name=projects/*/locations/*/inputs/*}"
  157. body: "input"
  158. };
  159. option (google.api.method_signature) = "input,update_mask";
  160. option (google.longrunning.operation_info) = {
  161. response_type: "Input"
  162. metadata_type: "OperationMetadata"
  163. };
  164. }
  165. // Creates an event with the provided unique ID in the specified channel.
  166. rpc CreateEvent(CreateEventRequest) returns (Event) {
  167. option (google.api.http) = {
  168. post: "/v1/{parent=projects/*/locations/*/channels/*}/events"
  169. body: "event"
  170. };
  171. option (google.api.method_signature) = "parent,event,event_id";
  172. }
  173. // Returns a list of all events in the specified channel.
  174. rpc ListEvents(ListEventsRequest) returns (ListEventsResponse) {
  175. option (google.api.http) = {
  176. get: "/v1/{parent=projects/*/locations/*/channels/*}/events"
  177. };
  178. option (google.api.method_signature) = "parent";
  179. }
  180. // Returns the specified event.
  181. rpc GetEvent(GetEventRequest) returns (Event) {
  182. option (google.api.http) = {
  183. get: "/v1/{name=projects/*/locations/*/channels/*/events/*}"
  184. };
  185. option (google.api.method_signature) = "name";
  186. }
  187. // Deletes the specified event.
  188. rpc DeleteEvent(DeleteEventRequest) returns (google.protobuf.Empty) {
  189. option (google.api.http) = {
  190. delete: "/v1/{name=projects/*/locations/*/channels/*/events/*}"
  191. };
  192. option (google.api.method_signature) = "name";
  193. }
  194. }
  195. // Request message for "LivestreamService.CreateChannel".
  196. message CreateChannelRequest {
  197. // Required. The parent location for the resource, in the form of:
  198. // `projects/{project}/locations/{location}`.
  199. string parent = 1 [
  200. (google.api.field_behavior) = REQUIRED,
  201. (google.api.resource_reference) = {
  202. child_type: "livestream.googleapis.com/Channel"
  203. }
  204. ];
  205. // Required. The channel resource to be created.
  206. Channel channel = 2 [(google.api.field_behavior) = REQUIRED];
  207. // Required. The ID of the channel resource to be created.
  208. // This value must be 1-63 characters, begin and end with `[a-z0-9]`,
  209. // could contain dashes (-) in between.
  210. string channel_id = 3 [(google.api.field_behavior) = REQUIRED];
  211. // A request ID to identify requests. Specify a unique request ID
  212. // so that if you must retry your request, the server will know to ignore
  213. // the request if it has already been completed. The server will guarantee
  214. // that for at least 60 minutes since the first request.
  215. //
  216. // For example, consider a situation where you make an initial request and the
  217. // request times out. If you make the request again with the same request ID,
  218. // the server can check if original operation with the same request ID was
  219. // received, and if so, will ignore the second request. This prevents clients
  220. // from accidentally creating duplicate commitments.
  221. //
  222. // The request ID must be a valid UUID with the exception that zero UUID is
  223. // not supported `(00000000-0000-0000-0000-000000000000)`.
  224. string request_id = 4;
  225. }
  226. // Request message for "LivestreamService.ListChannels".
  227. message ListChannelsRequest {
  228. // Required. The parent location for the resource, in the form of:
  229. // `projects/{project}/locations/{location}`.
  230. string parent = 1 [
  231. (google.api.field_behavior) = REQUIRED,
  232. (google.api.resource_reference) = {
  233. child_type: "livestream.googleapis.com/Channel"
  234. }
  235. ];
  236. // The maximum number of items to return. If unspecified, server
  237. // will pick an appropriate default. Server may return fewer items than
  238. // requested. A caller should only rely on response's
  239. // [next_page_token][google.cloud.video.livestream.v1.ListChannelsResponse.next_page_token] to
  240. // determine if there are more items left to be queried.
  241. int32 page_size = 2;
  242. // The next_page_token value returned from a previous List request, if any.
  243. string page_token = 3;
  244. // The filter to apply to list results.
  245. string filter = 4;
  246. // Specifies the ordering of results following syntax at
  247. // https://cloud.google.com/apis/design/design_patterns#sorting_order.
  248. string order_by = 5;
  249. }
  250. // Response message for "LivestreamService.ListChannels".
  251. message ListChannelsResponse {
  252. // A list of channels.
  253. repeated Channel channels = 1;
  254. // Token to retrieve the next page of results, or empty if there are no more
  255. // results in the list.
  256. string next_page_token = 2;
  257. // Locations that could not be reached.
  258. repeated string unreachable = 3;
  259. }
  260. // Request message for "LivestreamService.GetChannel".
  261. message GetChannelRequest {
  262. // Required. The name of the channel resource, in the form of:
  263. // `projects/{project}/locations/{location}/channels/{channelId}`.
  264. string name = 1 [
  265. (google.api.field_behavior) = REQUIRED,
  266. (google.api.resource_reference) = {
  267. type: "livestream.googleapis.com/Channel"
  268. }
  269. ];
  270. }
  271. // Request message for "LivestreamService.DeleteChannel".
  272. message DeleteChannelRequest {
  273. // Required. The name of the channel resource, in the form of:
  274. // `projects/{project}/locations/{location}/channels/{channelId}`.
  275. string name = 1 [
  276. (google.api.field_behavior) = REQUIRED,
  277. (google.api.resource_reference) = {
  278. type: "livestream.googleapis.com/Channel"
  279. }
  280. ];
  281. // A request ID to identify requests. Specify a unique request ID
  282. // so that if you must retry your request, the server will know to ignore
  283. // the request if it has already been completed. The server will guarantee
  284. // that for at least 60 minutes after the first request.
  285. //
  286. // For example, consider a situation where you make an initial request and the
  287. // request times out. If you make the request again with the same request ID,
  288. // the server can check if original operation with the same request ID was
  289. // received, and if so, will ignore the second request. This prevents clients
  290. // from accidentally creating duplicate commitments.
  291. //
  292. // The request ID must be a valid UUID with the exception that zero UUID is
  293. // not supported `(00000000-0000-0000-0000-000000000000)`.
  294. string request_id = 2;
  295. // If the `force` field is set to the default value of `false`, you must
  296. // delete all of a channel's events before you can delete the channel itself.
  297. // If the field is set to `true`, requests to delete a channel also delete
  298. // associated channel events.
  299. bool force = 3;
  300. }
  301. // Request message for "LivestreamService.UpdateChannel".
  302. message UpdateChannelRequest {
  303. // Field mask is used to specify the fields to be overwritten in the Channel
  304. // resource by the update. You can only update the following fields:
  305. //
  306. // * [`inputAttachments`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#inputattachment)
  307. // * [`output`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#output)
  308. // * [`elementaryStreams`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#ElementaryStream)
  309. // * [`muxStreams`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#muxstream)
  310. // * [`manifests`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#Manifest)
  311. // * [`spritesheets`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.channels#spritesheet)
  312. //
  313. // The fields specified in the update_mask are relative to the resource, not
  314. // the full request. A field will be overwritten if it is in the mask.
  315. google.protobuf.FieldMask update_mask = 1;
  316. // Required. The channel resource to be updated.
  317. Channel channel = 2 [(google.api.field_behavior) = REQUIRED];
  318. // A request ID to identify requests. Specify a unique request ID
  319. // so that if you must retry your request, the server will know to ignore
  320. // the request if it has already been completed. The server will guarantee
  321. // that for at least 60 minutes since the first request.
  322. //
  323. // For example, consider a situation where you make an initial request and the
  324. // request times out. If you make the request again with the same request ID,
  325. // the server can check if original operation with the same request ID was
  326. // received, and if so, will ignore the second request. This prevents clients
  327. // from accidentally creating duplicate commitments.
  328. //
  329. // The request ID must be a valid UUID with the exception that zero UUID is
  330. // not supported `(00000000-0000-0000-0000-000000000000)`.
  331. string request_id = 3;
  332. }
  333. // Request message for "LivestreamService.StartChannel".
  334. message StartChannelRequest {
  335. // Required. The name of the channel resource, in the form of:
  336. // `projects/{project}/locations/{location}/channels/{channelId}`.
  337. string name = 1 [
  338. (google.api.field_behavior) = REQUIRED,
  339. (google.api.resource_reference) = {
  340. type: "livestream.googleapis.com/Channel"
  341. }
  342. ];
  343. // A request ID to identify requests. Specify a unique request ID
  344. // so that if you must retry your request, the server will know to ignore
  345. // the request if it has already been completed. The server will guarantee
  346. // that for at least 60 minutes since the first request.
  347. //
  348. // For example, consider a situation where you make an initial request and the
  349. // request times out. If you make the request again with the same request ID,
  350. // the server can check if original operation with the same request ID was
  351. // received, and if so, will ignore the second request. This prevents clients
  352. // from accidentally creating duplicate commitments.
  353. //
  354. // The request ID must be a valid UUID with the exception that zero UUID is
  355. // not supported `(00000000-0000-0000-0000-000000000000)`.
  356. string request_id = 2;
  357. }
  358. // Request message for "LivestreamService.StopChannel".
  359. message StopChannelRequest {
  360. // Required. The name of the channel resource, in the form of:
  361. // `projects/{project}/locations/{location}/channels/{channelId}`.
  362. string name = 1 [
  363. (google.api.field_behavior) = REQUIRED,
  364. (google.api.resource_reference) = {
  365. type: "livestream.googleapis.com/Channel"
  366. }
  367. ];
  368. // A request ID to identify requests. Specify a unique request ID
  369. // so that if you must retry your request, the server will know to ignore
  370. // the request if it has already been completed. The server will guarantee
  371. // that for at least 60 minutes since the first request.
  372. //
  373. // For example, consider a situation where you make an initial request and the
  374. // request times out. If you make the request again with the same request ID,
  375. // the server can check if original operation with the same request ID was
  376. // received, and if so, will ignore the second request. This prevents clients
  377. // from accidentally creating duplicate commitments.
  378. //
  379. // The request ID must be a valid UUID with the exception that zero UUID is
  380. // not supported `(00000000-0000-0000-0000-000000000000)`.
  381. string request_id = 2;
  382. }
  383. // Request message for "LivestreamService.CreateInput".
  384. message CreateInputRequest {
  385. // Required. The parent location for the resource, in the form of:
  386. // `projects/{project}/locations/{location}`.
  387. string parent = 1 [
  388. (google.api.field_behavior) = REQUIRED,
  389. (google.api.resource_reference) = {
  390. child_type: "livestream.googleapis.com/Input"
  391. }
  392. ];
  393. // Required. The input resource to be created.
  394. Input input = 2 [(google.api.field_behavior) = REQUIRED];
  395. // Required. The ID of the input resource to be created.
  396. // This value must be 1-63 characters, begin and end with `[a-z0-9]`,
  397. // could contain dashes (-) in between.
  398. string input_id = 3 [(google.api.field_behavior) = REQUIRED];
  399. // A request ID to identify requests. Specify a unique request ID
  400. // so that if you must retry your request, the server will know to ignore
  401. // the request if it has already been completed. The server will guarantee
  402. // that for at least 60 minutes since the first request.
  403. //
  404. // For example, consider a situation where you make an initial request and the
  405. // request times out. If you make the request again with the same request ID,
  406. // the server can check if original operation with the same request ID was
  407. // received, and if so, will ignore the second request. This prevents clients
  408. // from accidentally creating duplicate commitments.
  409. //
  410. // The request ID must be a valid UUID with the exception that zero UUID is
  411. // not supported `(00000000-0000-0000-0000-000000000000)`.
  412. string request_id = 4;
  413. }
  414. // Request message for "LivestreamService.ListInputs".
  415. message ListInputsRequest {
  416. // Required. The parent location for the resource, in the form of:
  417. // `projects/{project}/locations/{location}`.
  418. string parent = 1 [
  419. (google.api.field_behavior) = REQUIRED,
  420. (google.api.resource_reference) = {
  421. child_type: "livestream.googleapis.com/Input"
  422. }
  423. ];
  424. // The maximum number of items to return. If unspecified, server
  425. // will pick an appropriate default. Server may return fewer items than
  426. // requested. A caller should only rely on response's
  427. // [next_page_token][google.cloud.video.livestream.v1.ListInputsResponse.next_page_token] to
  428. // determine if there are more items left to be queried.
  429. int32 page_size = 2;
  430. // The next_page_token value returned from a previous List request, if any.
  431. string page_token = 3;
  432. // The filter to apply to list results.
  433. string filter = 4;
  434. // Specifies the ordering of results following syntax at [Sorting
  435. // Order](https://cloud.google.com/apis/design/design_patterns#sorting_order).
  436. string order_by = 5;
  437. }
  438. // Response message for "LivestreamService.ListInputs".
  439. message ListInputsResponse {
  440. // A list of inputs.
  441. repeated Input inputs = 1;
  442. // Token to retrieve the next page of results, or empty if there are no more
  443. // results in the list.
  444. string next_page_token = 2;
  445. // Locations that could not be reached.
  446. repeated string unreachable = 3;
  447. }
  448. // Request message for "LivestreamService.GetInput".
  449. message GetInputRequest {
  450. // Required. The name of the input resource, in the form of:
  451. // `projects/{project}/locations/{location}/inputs/{inputId}`.
  452. string name = 1 [
  453. (google.api.field_behavior) = REQUIRED,
  454. (google.api.resource_reference) = {
  455. type: "livestream.googleapis.com/Input"
  456. }
  457. ];
  458. }
  459. // Request message for "LivestreamService.DeleteInput".
  460. message DeleteInputRequest {
  461. // Required. The name of the input resource, in the form of:
  462. // `projects/{project}/locations/{location}/inputs/{inputId}`.
  463. string name = 1 [
  464. (google.api.field_behavior) = REQUIRED,
  465. (google.api.resource_reference) = {
  466. type: "livestream.googleapis.com/Input"
  467. }
  468. ];
  469. // A request ID to identify requests. Specify a unique request ID
  470. // so that if you must retry your request, the server will know to ignore
  471. // the request if it has already been completed. The server will guarantee
  472. // that for at least 60 minutes since the first request.
  473. //
  474. // For example, consider a situation where you make an initial request and the
  475. // request times out. If you make the request again with the same request ID,
  476. // the server can check if original operation with the same request ID was
  477. // received, and if so, will ignore the second request. This prevents clients
  478. // from accidentally creating duplicate commitments.
  479. //
  480. // The request ID must be a valid UUID with the exception that zero UUID is
  481. // not supported `(00000000-0000-0000-0000-000000000000)`.
  482. string request_id = 2;
  483. }
  484. // Request message for "LivestreamService.UpdateInput".
  485. message UpdateInputRequest {
  486. // Field mask is used to specify the fields to be overwritten in the Input
  487. // resource by the update. You can only update the following fields:
  488. //
  489. // * [`preprocessingConfig`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.inputs#PreprocessingConfig)
  490. // * [`securityRules`](https://cloud.google.com/livestream/docs/reference/rest/v1/projects.locations.inputs#SecurityRule)
  491. //
  492. // The fields specified in the update_mask are relative to the resource, not
  493. // the full request. A field will be overwritten if it is in the mask.
  494. google.protobuf.FieldMask update_mask = 1;
  495. // Required. The input resource to be updated.
  496. Input input = 2 [(google.api.field_behavior) = REQUIRED];
  497. // A request ID to identify requests. Specify a unique request ID
  498. // so that if you must retry your request, the server will know to ignore
  499. // the request if it has already been completed. The server will guarantee
  500. // that for at least 60 minutes since the first request.
  501. //
  502. // For example, consider a situation where you make an initial request and the
  503. // request times out. If you make the request again with the same request ID,
  504. // the server can check if original operation with the same request ID was
  505. // received, and if so, will ignore the second request. This prevents clients
  506. // from accidentally creating duplicate commitments.
  507. //
  508. // The request ID must be a valid UUID with the exception that zero UUID is
  509. // not supported `(00000000-0000-0000-0000-000000000000)`.
  510. string request_id = 3;
  511. }
  512. // Request message for "LivestreamService.CreateEvent".
  513. message CreateEventRequest {
  514. // Required. The parent channel for the resource, in the form of:
  515. // `projects/{project}/locations/{location}/channels/{channelId}`.
  516. string parent = 1 [
  517. (google.api.field_behavior) = REQUIRED,
  518. (google.api.resource_reference) = {
  519. child_type: "livestream.googleapis.com/Event"
  520. }
  521. ];
  522. // Required. The event resource to be created.
  523. Event event = 2 [(google.api.field_behavior) = REQUIRED];
  524. // Required. The ID of the event resource to be created.
  525. // This value must be 1-63 characters, begin and end with `[a-z0-9]`,
  526. // could contain dashes (-) in between.
  527. string event_id = 3 [(google.api.field_behavior) = REQUIRED];
  528. // A request ID to identify requests. Specify a unique request ID
  529. // so that if you must retry your request, the server will know to ignore
  530. // the request if it has already been completed. The server will guarantee
  531. // that for at least 60 minutes since the first request.
  532. //
  533. // For example, consider a situation where you make an initial request and the
  534. // request times out. If you make the request again with the same request ID,
  535. // the server can check if original operation with the same request ID was
  536. // received, and if so, will ignore the second request. This prevents clients
  537. // from accidentally creating duplicate commitments.
  538. //
  539. // The request ID must be a valid UUID with the exception that zero UUID is
  540. // not supported `(00000000-0000-0000-0000-000000000000)`.
  541. string request_id = 4;
  542. }
  543. // Request message for "LivestreamService.ListEvents".
  544. message ListEventsRequest {
  545. // Required. The parent channel for the resource, in the form of:
  546. // `projects/{project}/locations/{location}/channels/{channelId}`.
  547. string parent = 1 [
  548. (google.api.field_behavior) = REQUIRED,
  549. (google.api.resource_reference) = {
  550. child_type: "livestream.googleapis.com/Event"
  551. }
  552. ];
  553. // The maximum number of items to return. If unspecified, server
  554. // will pick an appropriate default. Server may return fewer items than
  555. // requested. A caller should only rely on response's
  556. // [next_page_token][google.cloud.video.livestream.v1.ListEventsResponse.next_page_token] to
  557. // determine if there are more items left to be queried.
  558. int32 page_size = 2;
  559. // The next_page_token value returned from a previous List request, if any.
  560. string page_token = 3;
  561. // The filter to apply to list results.
  562. string filter = 4;
  563. // Specifies the ordering of results following syntax at
  564. // https://cloud.google.com/apis/design/design_patterns#sorting_order.
  565. string order_by = 5;
  566. }
  567. // Response message for "LivestreamService.ListEvents".
  568. message ListEventsResponse {
  569. // A list of events.
  570. repeated Event events = 1;
  571. // Token to retrieve the next page of results, or empty if there are no more
  572. // results in the list.
  573. string next_page_token = 2;
  574. // Locations that could not be reached.
  575. repeated string unreachable = 3;
  576. }
  577. // Request message for "LivestreamService.GetEvent".
  578. message GetEventRequest {
  579. // Required. The name of the event resource, in the form of:
  580. // `projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}`.
  581. string name = 1 [
  582. (google.api.field_behavior) = REQUIRED,
  583. (google.api.resource_reference) = {
  584. type: "livestream.googleapis.com/Event"
  585. }
  586. ];
  587. }
  588. // Request message for "LivestreamService.DeleteEvent".
  589. message DeleteEventRequest {
  590. // Required. The name of the event resource, in the form of:
  591. // `projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}`.
  592. string name = 1 [
  593. (google.api.field_behavior) = REQUIRED,
  594. (google.api.resource_reference) = {
  595. type: "livestream.googleapis.com/Event"
  596. }
  597. ];
  598. // A request ID to identify requests. Specify a unique request ID
  599. // so that if you must retry your request, the server will know to ignore
  600. // the request if it has already been completed. The server will guarantee
  601. // that for at least 60 minutes since the first request.
  602. //
  603. // For example, consider a situation where you make an initial request and the
  604. // request times out. If you make the request again with the same request ID,
  605. // the server can check if original operation with the same request ID was
  606. // received, and if so, will ignore the second request. This prevents clients
  607. // from accidentally creating duplicate commitments.
  608. //
  609. // The request ID must be a valid UUID with the exception that zero UUID is
  610. // not supported `(00000000-0000-0000-0000-000000000000)`.
  611. string request_id = 2;
  612. }
  613. // Response message for Start/Stop Channel long-running operations.
  614. message ChannelOperationResponse {
  615. }
  616. // Represents the metadata of the long-running operation.
  617. message OperationMetadata {
  618. // Output only. The time the operation was created.
  619. google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  620. // Output only. The time the operation finished running.
  621. google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  622. // Output only. Server-defined resource path for the target of the operation.
  623. string target = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  624. // Output only. Name of the verb executed by the operation.
  625. string verb = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  626. // Output only. Identifies whether the user has requested cancellation
  627. // of the operation. Operations that have successfully been cancelled
  628. // have [Operation.error][] value with a
  629. // [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
  630. // `Code.CANCELLED`.
  631. bool requested_cancellation = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  632. // Output only. API version used to start the operation.
  633. string api_version = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  634. }