video_stitcher_service.proto 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  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.stitcher.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/stitcher/v1/ad_tag_details.proto";
  21. import "google/cloud/video/stitcher/v1/cdn_keys.proto";
  22. import "google/cloud/video/stitcher/v1/sessions.proto";
  23. import "google/cloud/video/stitcher/v1/slates.proto";
  24. import "google/cloud/video/stitcher/v1/stitch_details.proto";
  25. import "google/protobuf/empty.proto";
  26. import "google/protobuf/field_mask.proto";
  27. option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
  28. option java_multiple_files = true;
  29. option java_outer_classname = "VideoStitcherServiceProto";
  30. option java_package = "com.google.cloud.video.stitcher.v1";
  31. // Video-On-Demand content stitching API allows you to insert ads
  32. // into (VoD) video on demand files. You will be able to render custom
  33. // scrubber bars with highlighted ads, enforce ad policies, allow
  34. // seamless playback and tracking on native players and monetize
  35. // content with any standard VMAP compliant ad server.
  36. service VideoStitcherService {
  37. option (google.api.default_host) = "videostitcher.googleapis.com";
  38. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  39. // Creates a new CDN key.
  40. rpc CreateCdnKey(CreateCdnKeyRequest) returns (CdnKey) {
  41. option (google.api.http) = {
  42. post: "/v1/{parent=projects/*/locations/*}/cdnKeys"
  43. body: "cdn_key"
  44. };
  45. option (google.api.method_signature) = "parent,cdn_key,cdn_key_id";
  46. }
  47. // Lists all CDN keys in the specified project and location.
  48. rpc ListCdnKeys(ListCdnKeysRequest) returns (ListCdnKeysResponse) {
  49. option (google.api.http) = {
  50. get: "/v1/{parent=projects/*/locations/*}/cdnKeys"
  51. };
  52. option (google.api.method_signature) = "parent";
  53. }
  54. // Returns the specified CDN key.
  55. rpc GetCdnKey(GetCdnKeyRequest) returns (CdnKey) {
  56. option (google.api.http) = {
  57. get: "/v1/{name=projects/*/locations/*/cdnKeys/*}"
  58. };
  59. option (google.api.method_signature) = "name";
  60. }
  61. // Deletes the specified CDN key.
  62. rpc DeleteCdnKey(DeleteCdnKeyRequest) returns (google.protobuf.Empty) {
  63. option (google.api.http) = {
  64. delete: "/v1/{name=projects/*/locations/*/cdnKeys/*}"
  65. };
  66. option (google.api.method_signature) = "name";
  67. }
  68. // Updates the specified CDN key. Only update fields specified
  69. // in the call method body.
  70. rpc UpdateCdnKey(UpdateCdnKeyRequest) returns (CdnKey) {
  71. option (google.api.http) = {
  72. patch: "/v1/{cdn_key.name=projects/*/locations/*/cdnKeys/*}"
  73. body: "cdn_key"
  74. };
  75. option (google.api.method_signature) = "cdn_key,update_mask";
  76. }
  77. // Creates a client side playback VOD session and returns the full
  78. // tracking and playback metadata of the session.
  79. rpc CreateVodSession(CreateVodSessionRequest) returns (VodSession) {
  80. option (google.api.http) = {
  81. post: "/v1/{parent=projects/*/locations/*}/vodSessions"
  82. body: "vod_session"
  83. };
  84. option (google.api.method_signature) = "parent,vod_session";
  85. }
  86. // Returns the full tracking, playback metadata, and relevant ad-ops
  87. // logs for the specified VOD session.
  88. rpc GetVodSession(GetVodSessionRequest) returns (VodSession) {
  89. option (google.api.http) = {
  90. get: "/v1/{name=projects/*/locations/*/vodSessions/*}"
  91. };
  92. option (google.api.method_signature) = "name";
  93. }
  94. // Returns a list of detailed stitching information of the specified VOD
  95. // session.
  96. rpc ListVodStitchDetails(ListVodStitchDetailsRequest) returns (ListVodStitchDetailsResponse) {
  97. option (google.api.http) = {
  98. get: "/v1/{parent=projects/*/locations/*/vodSessions/*}/vodStitchDetails"
  99. };
  100. option (google.api.method_signature) = "parent";
  101. }
  102. // Returns the specified stitching information for the specified VOD session.
  103. rpc GetVodStitchDetail(GetVodStitchDetailRequest) returns (VodStitchDetail) {
  104. option (google.api.http) = {
  105. get: "/v1/{name=projects/*/locations/*/vodSessions/*/vodStitchDetails/*}"
  106. };
  107. option (google.api.method_signature) = "name";
  108. }
  109. // Return the list of ad tag details for the specified VOD session.
  110. rpc ListVodAdTagDetails(ListVodAdTagDetailsRequest) returns (ListVodAdTagDetailsResponse) {
  111. option (google.api.http) = {
  112. get: "/v1/{parent=projects/*/locations/*/vodSessions/*}/vodAdTagDetails"
  113. };
  114. option (google.api.method_signature) = "parent";
  115. }
  116. // Returns the specified ad tag detail for the specified VOD session.
  117. rpc GetVodAdTagDetail(GetVodAdTagDetailRequest) returns (VodAdTagDetail) {
  118. option (google.api.http) = {
  119. get: "/v1/{name=projects/*/locations/*/vodSessions/*/vodAdTagDetails/*}"
  120. };
  121. option (google.api.method_signature) = "name";
  122. }
  123. // Return the list of ad tag details for the specified live session.
  124. rpc ListLiveAdTagDetails(ListLiveAdTagDetailsRequest) returns (ListLiveAdTagDetailsResponse) {
  125. option (google.api.http) = {
  126. get: "/v1/{parent=projects/*/locations/*/liveSessions/*}/liveAdTagDetails"
  127. };
  128. option (google.api.method_signature) = "parent";
  129. }
  130. // Returns the specified ad tag detail for the specified live session.
  131. rpc GetLiveAdTagDetail(GetLiveAdTagDetailRequest) returns (LiveAdTagDetail) {
  132. option (google.api.http) = {
  133. get: "/v1/{name=projects/*/locations/*/liveSessions/*/liveAdTagDetails/*}"
  134. };
  135. option (google.api.method_signature) = "name";
  136. }
  137. // Creates a slate.
  138. rpc CreateSlate(CreateSlateRequest) returns (Slate) {
  139. option (google.api.http) = {
  140. post: "/v1/{parent=projects/*/locations/*}/slates"
  141. body: "slate"
  142. };
  143. option (google.api.method_signature) = "parent,slate,slate_id";
  144. }
  145. // Lists all slates in the specified project and location.
  146. rpc ListSlates(ListSlatesRequest) returns (ListSlatesResponse) {
  147. option (google.api.http) = {
  148. get: "/v1/{parent=projects/*/locations/*}/slates"
  149. };
  150. option (google.api.method_signature) = "parent";
  151. }
  152. // Returns the specified slate.
  153. rpc GetSlate(GetSlateRequest) returns (Slate) {
  154. option (google.api.http) = {
  155. get: "/v1/{name=projects/*/locations/*/slates/*}"
  156. };
  157. option (google.api.method_signature) = "name";
  158. }
  159. // Updates the specified slate.
  160. rpc UpdateSlate(UpdateSlateRequest) returns (Slate) {
  161. option (google.api.http) = {
  162. patch: "/v1/{slate.name=projects/*/locations/*/slates/*}"
  163. body: "slate"
  164. };
  165. option (google.api.method_signature) = "slate,update_mask";
  166. }
  167. // Deletes the specified slate.
  168. rpc DeleteSlate(DeleteSlateRequest) returns (google.protobuf.Empty) {
  169. option (google.api.http) = {
  170. delete: "/v1/{name=projects/*/locations/*/slates/*}"
  171. };
  172. option (google.api.method_signature) = "name";
  173. }
  174. // Creates a new live session.
  175. rpc CreateLiveSession(CreateLiveSessionRequest) returns (LiveSession) {
  176. option (google.api.http) = {
  177. post: "/v1/{parent=projects/*/locations/*}/liveSessions"
  178. body: "live_session"
  179. };
  180. option (google.api.method_signature) = "parent,live_session";
  181. }
  182. // Returns the details for the specified live session.
  183. rpc GetLiveSession(GetLiveSessionRequest) returns (LiveSession) {
  184. option (google.api.http) = {
  185. get: "/v1/{name=projects/*/locations/*/liveSessions/*}"
  186. };
  187. option (google.api.method_signature) = "name";
  188. }
  189. }
  190. // Request message for VideoStitcherService.createCdnKey.
  191. message CreateCdnKeyRequest {
  192. // Required. The project in which the CDN key should be created, in the form of
  193. // `projects/{project_number}/locations/{location}`.
  194. string parent = 1 [
  195. (google.api.field_behavior) = REQUIRED,
  196. (google.api.resource_reference) = {
  197. child_type: "videostitcher.googleapis.com/CdnKey"
  198. }
  199. ];
  200. // Required. The CDN key resource to create.
  201. CdnKey cdn_key = 2 [(google.api.field_behavior) = REQUIRED];
  202. // Required. The ID to use for the CDN key, which will become the final component of
  203. // the CDN key's resource name.
  204. //
  205. // This value should conform to RFC-1034, which restricts to
  206. // lower-case letters, numbers, and hyphen, with the first character a
  207. // letter, the last a letter or a number, and a 63 character maximum.
  208. string cdn_key_id = 3 [(google.api.field_behavior) = REQUIRED];
  209. }
  210. // Request message for VideoStitcherService.listCdnKeys.
  211. message ListCdnKeysRequest {
  212. // Required. The project that contains the list of CDN keys, in the form of
  213. // `projects/{project_number}/locations/{location}`.
  214. string parent = 1 [
  215. (google.api.field_behavior) = REQUIRED,
  216. (google.api.resource_reference) = {
  217. child_type: "videostitcher.googleapis.com/CdnKey"
  218. }
  219. ];
  220. // Requested page size. Server may return fewer items than requested.
  221. // If unspecified, server will pick an appropriate default.
  222. int32 page_size = 2;
  223. // A token identifying a page of results the server should return.
  224. string page_token = 3;
  225. // Filtering results
  226. string filter = 4;
  227. // Hint for how to order the results
  228. string order_by = 5;
  229. }
  230. // Response message for VideoStitcher.ListCdnKeys.
  231. message ListCdnKeysResponse {
  232. // List of CDN keys.
  233. repeated CdnKey cdn_keys = 1;
  234. // A token identifying a page of results the server should return.
  235. string next_page_token = 2;
  236. // Locations that could not be reached.
  237. repeated string unreachable = 3;
  238. }
  239. // Request message for VideoStitcherService.getCdnKey.
  240. message GetCdnKeyRequest {
  241. // Required. The name of the CDN key to be retrieved, in the form of
  242. // `projects/{project}/locations/{location}/cdnKeys/{id}`.
  243. string name = 1 [
  244. (google.api.field_behavior) = REQUIRED,
  245. (google.api.resource_reference) = {
  246. type: "videostitcher.googleapis.com/CdnKey"
  247. }
  248. ];
  249. }
  250. // Request message for VideoStitcherService.deleteCdnKey.
  251. message DeleteCdnKeyRequest {
  252. // Required. The name of the CDN key to be deleted, in the form of
  253. // `projects/{project_number}/locations/{location}/cdnKeys/{id}`.
  254. string name = 1 [
  255. (google.api.field_behavior) = REQUIRED,
  256. (google.api.resource_reference) = {
  257. type: "videostitcher.googleapis.com/CdnKey"
  258. }
  259. ];
  260. }
  261. // Request message for VideoStitcherService.updateCdnKey.
  262. message UpdateCdnKeyRequest {
  263. // Required. The CDN key resource which replaces the resource on the server.
  264. CdnKey cdn_key = 1 [(google.api.field_behavior) = REQUIRED];
  265. // Required. The update mask applies to the resource.
  266. // For the `FieldMask` definition, see
  267. // https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask
  268. google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
  269. }
  270. // Request message for VideoStitcherService.createVodSession
  271. message CreateVodSessionRequest {
  272. // Required. The project and location in which the VOD session should be created, in the
  273. // form of `projects/{project_number}/locations/{location}`.
  274. string parent = 1 [
  275. (google.api.field_behavior) = REQUIRED,
  276. (google.api.resource_reference) = {
  277. child_type: "videostitcher.googleapis.com/VodSession"
  278. }
  279. ];
  280. // Required. Parameters for creating a session.
  281. VodSession vod_session = 2 [(google.api.field_behavior) = REQUIRED];
  282. }
  283. // Request message for VideoStitcherService.getVodSession
  284. message GetVodSessionRequest {
  285. // Required. The name of the VOD session to be retrieved, in the form of
  286. // `projects/{project_number}/locations/{location}/vodSessions/{id}`.
  287. string name = 1 [
  288. (google.api.field_behavior) = REQUIRED,
  289. (google.api.resource_reference) = {
  290. type: "videostitcher.googleapis.com/VodSession"
  291. }
  292. ];
  293. }
  294. // Request message for VideoStitcherService.listVodStitchDetails.
  295. message ListVodStitchDetailsRequest {
  296. // Required. The VOD session where the stitch details belong to, in the form of
  297. // `projects/{project}/locations/{location}/vodSessions/{id}`.
  298. string parent = 1 [
  299. (google.api.field_behavior) = REQUIRED,
  300. (google.api.resource_reference) = {
  301. child_type: "videostitcher.googleapis.com/VodStitchDetail"
  302. }
  303. ];
  304. // The maximum number of items to return.
  305. int32 page_size = 2;
  306. // The next_page_token value returned from a previous List request, if any.
  307. string page_token = 3;
  308. }
  309. // Response message for VideoStitcherService.listVodStitchDetails.
  310. message ListVodStitchDetailsResponse {
  311. // A List of stitch Details.
  312. repeated VodStitchDetail vod_stitch_details = 1;
  313. // The pagination token.
  314. string next_page_token = 2;
  315. }
  316. // Request message for VideoStitcherService.getVodStitchDetail.
  317. message GetVodStitchDetailRequest {
  318. // Required. The name of the stitch detail in the specified VOD session, in the form of
  319. // `projects/{project}/locations/{location}/vodSessions/{vod_session_id}/vodStitchDetails/{id}`.
  320. string name = 1 [
  321. (google.api.field_behavior) = REQUIRED,
  322. (google.api.resource_reference) = {
  323. type: "videostitcher.googleapis.com/VodStitchDetail"
  324. }
  325. ];
  326. }
  327. // Request message for VideoStitcherService.listVodAdTagDetails.
  328. message ListVodAdTagDetailsRequest {
  329. // Required. The VOD session which the ad tag details belong to, in the form of
  330. // `projects/{project}/locations/{location}/vodSessions/{vod_session_id}`.
  331. string parent = 1 [
  332. (google.api.field_behavior) = REQUIRED,
  333. (google.api.resource_reference) = {
  334. child_type: "videostitcher.googleapis.com/VodAdTagDetail"
  335. }
  336. ];
  337. // The maximum number of items to return.
  338. int32 page_size = 2;
  339. // The next_page_token value returned from a previous List request, if any.
  340. string page_token = 3;
  341. }
  342. // Response message for VideoStitcherService.listVodAdTagDetails.
  343. message ListVodAdTagDetailsResponse {
  344. // A List of ad tag details.
  345. repeated VodAdTagDetail vod_ad_tag_details = 1;
  346. // The pagination token.
  347. string next_page_token = 2;
  348. }
  349. // Request message for VideoStitcherService.getVodAdTagDetail
  350. message GetVodAdTagDetailRequest {
  351. // Required. The name of the ad tag detail for the specified VOD session, in the form of
  352. // `projects/{project}/locations/{location}/vodSessions/{vod_session_id}/vodAdTagDetails/{vod_ad_tag_detail}`.
  353. string name = 1 [
  354. (google.api.field_behavior) = REQUIRED,
  355. (google.api.resource_reference) = {
  356. type: "videostitcher.googleapis.com/VodAdTagDetail"
  357. }
  358. ];
  359. }
  360. // Request message for VideoStitcherService.listLiveAdTagDetails.
  361. message ListLiveAdTagDetailsRequest {
  362. // Required. The resource parent in the form of
  363. // `projects/{project}/locations/{location}/liveSessions/{live_session}`.
  364. string parent = 1 [
  365. (google.api.field_behavior) = REQUIRED,
  366. (google.api.resource_reference) = {
  367. child_type: "videostitcher.googleapis.com/LiveAdTagDetail"
  368. }
  369. ];
  370. // The maximum number of items to return.
  371. int32 page_size = 2;
  372. // The pagination token returned from a previous List request.
  373. string page_token = 3;
  374. }
  375. // Response message for VideoStitcherService.listLiveAdTagDetails.
  376. message ListLiveAdTagDetailsResponse {
  377. // A list of live session ad tag details.
  378. repeated LiveAdTagDetail live_ad_tag_details = 1;
  379. // The pagination token.
  380. string next_page_token = 2;
  381. }
  382. // Request message for VideoStitcherService.getLiveAdTagDetail
  383. message GetLiveAdTagDetailRequest {
  384. // Required. The resource name in the form of
  385. // `projects/{project}/locations/{location}/liveSessions/{live_session}/liveAdTagDetails/{live_ad_tag_detail}`.
  386. string name = 1 [
  387. (google.api.field_behavior) = REQUIRED,
  388. (google.api.resource_reference) = {
  389. type: "videostitcher.googleapis.com/LiveAdTagDetail"
  390. }
  391. ];
  392. }
  393. // Request message for VideoStitcherService.createSlate.
  394. message CreateSlateRequest {
  395. // Required. The project in which the slate should be created, in the form of
  396. // `projects/{project_number}`.
  397. string parent = 1 [
  398. (google.api.field_behavior) = REQUIRED,
  399. (google.api.resource_reference) = {
  400. child_type: "videostitcher.googleapis.com/Slate"
  401. }
  402. ];
  403. // Required. The unique identifier for the slate.
  404. // This value should conform to RFC-1034, which restricts to
  405. // lower-case letters, numbers, and hyphen, with the first character a
  406. // letter, the last a letter or a number, and a 63 character maximum.
  407. string slate_id = 2 [(google.api.field_behavior) = REQUIRED];
  408. // Required. The slate to create.
  409. Slate slate = 3 [(google.api.field_behavior) = REQUIRED];
  410. }
  411. // Request message for VideoStitcherService.getSlate.
  412. message GetSlateRequest {
  413. // Required. The name of the slate to be retrieved, of the slate, in the form of
  414. // `projects/{project_number}/locations/{location}/slates/{id}`.
  415. string name = 1 [
  416. (google.api.field_behavior) = REQUIRED,
  417. (google.api.resource_reference) = {
  418. type: "videostitcher.googleapis.com/Slate"
  419. }
  420. ];
  421. }
  422. // Request message for VideoStitcherService.listSlates.
  423. message ListSlatesRequest {
  424. // Required. The project to list slates, in the form of `projects/{project_number}`.
  425. string parent = 1 [
  426. (google.api.field_behavior) = REQUIRED,
  427. (google.api.resource_reference) = {
  428. child_type: "videostitcher.googleapis.com/Slate"
  429. }
  430. ];
  431. // Requested page size. Server may return fewer items than requested.
  432. // If unspecified, server will pick an appropriate default.
  433. int32 page_size = 2;
  434. // A token identifying a page of results the server should return.
  435. string page_token = 3;
  436. // Filtering results
  437. string filter = 4;
  438. // Hint for how to order the results
  439. string order_by = 5;
  440. }
  441. // Response message for VideoStitcherService.listSlates.
  442. message ListSlatesResponse {
  443. // The list of slates
  444. repeated Slate slates = 1;
  445. // A token identifying a page of results the server should return.
  446. string next_page_token = 2;
  447. // Locations that could not be reached.
  448. repeated string unreachable = 3;
  449. }
  450. // Request message for VideoStitcherService.updateSlate.
  451. message UpdateSlateRequest {
  452. // Required. The resource with updated fields.
  453. Slate slate = 1 [(google.api.field_behavior) = REQUIRED];
  454. // Required. The update mask which specifies fields which should be updated.
  455. google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
  456. }
  457. // Request message for VideoStitcherService.deleteSlate.
  458. message DeleteSlateRequest {
  459. // Required. The name of the slate to be deleted, in the form of
  460. // `projects/{project_number}/locations/{location}/slates/{id}`.
  461. string name = 1 [
  462. (google.api.field_behavior) = REQUIRED,
  463. (google.api.resource_reference) = {
  464. type: "videostitcher.googleapis.com/Slate"
  465. }
  466. ];
  467. }
  468. // Request message for VideoStitcherService.createLiveSession.
  469. message CreateLiveSessionRequest {
  470. // Required. The project and location in which the live session should be created,
  471. // in the form of `projects/{project_number}/locations/{location}`.
  472. string parent = 1 [
  473. (google.api.field_behavior) = REQUIRED,
  474. (google.api.resource_reference) = {
  475. type: "videostitcher.googleapis.com/LiveSession"
  476. }
  477. ];
  478. // Required. Parameters for creating a live session.
  479. LiveSession live_session = 2 [(google.api.field_behavior) = REQUIRED];
  480. }
  481. // Request message for VideoStitcherService.getSession.
  482. message GetLiveSessionRequest {
  483. // Required. The name of the live session, in the form of
  484. // `projects/{project_number}/locations/{location}/liveSessions/{id}`.
  485. string name = 1 [
  486. (google.api.field_behavior) = REQUIRED,
  487. (google.api.resource_reference) = {
  488. type: "videostitcher.googleapis.com/LiveSession"
  489. }
  490. ];
  491. }