services.proto 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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.transcoder.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/transcoder/v1/resources.proto";
  21. import "google/protobuf/empty.proto";
  22. option csharp_namespace = "Google.Cloud.Video.Transcoder.V1";
  23. option go_package = "google.golang.org/genproto/googleapis/cloud/video/transcoder/v1;transcoder";
  24. option java_multiple_files = true;
  25. option java_outer_classname = "ServicesProto";
  26. option java_package = "com.google.cloud.video.transcoder.v1";
  27. option php_namespace = "Google\\Cloud\\Video\\Transcoder\\V1";
  28. option ruby_package = "Google::Cloud::Video::Transcoder::V1";
  29. // Using the Transcoder API, you can queue asynchronous jobs for transcoding
  30. // media into various output formats. Output formats may include different
  31. // streaming standards such as HTTP Live Streaming (HLS) and Dynamic Adaptive
  32. // Streaming over HTTP (DASH). You can also customize jobs using advanced
  33. // features such as Digital Rights Management (DRM), audio equalization, content
  34. // concatenation, and digital ad-stitch ready content generation.
  35. service TranscoderService {
  36. option (google.api.default_host) = "transcoder.googleapis.com";
  37. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  38. // Creates a job in the specified region.
  39. rpc CreateJob(CreateJobRequest) returns (Job) {
  40. option (google.api.http) = {
  41. post: "/v1/{parent=projects/*/locations/*}/jobs"
  42. body: "job"
  43. };
  44. option (google.api.method_signature) = "parent,job";
  45. }
  46. // Lists jobs in the specified region.
  47. rpc ListJobs(ListJobsRequest) returns (ListJobsResponse) {
  48. option (google.api.http) = {
  49. get: "/v1/{parent=projects/*/locations/*}/jobs"
  50. };
  51. option (google.api.method_signature) = "parent";
  52. }
  53. // Returns the job data.
  54. rpc GetJob(GetJobRequest) returns (Job) {
  55. option (google.api.http) = {
  56. get: "/v1/{name=projects/*/locations/*/jobs/*}"
  57. };
  58. option (google.api.method_signature) = "name";
  59. }
  60. // Deletes a job.
  61. rpc DeleteJob(DeleteJobRequest) returns (google.protobuf.Empty) {
  62. option (google.api.http) = {
  63. delete: "/v1/{name=projects/*/locations/*/jobs/*}"
  64. };
  65. option (google.api.method_signature) = "name";
  66. }
  67. // Creates a job template in the specified region.
  68. rpc CreateJobTemplate(CreateJobTemplateRequest) returns (JobTemplate) {
  69. option (google.api.http) = {
  70. post: "/v1/{parent=projects/*/locations/*}/jobTemplates"
  71. body: "job_template"
  72. };
  73. option (google.api.method_signature) = "parent,job_template,job_template_id";
  74. }
  75. // Lists job templates in the specified region.
  76. rpc ListJobTemplates(ListJobTemplatesRequest) returns (ListJobTemplatesResponse) {
  77. option (google.api.http) = {
  78. get: "/v1/{parent=projects/*/locations/*}/jobTemplates"
  79. };
  80. option (google.api.method_signature) = "parent";
  81. }
  82. // Returns the job template data.
  83. rpc GetJobTemplate(GetJobTemplateRequest) returns (JobTemplate) {
  84. option (google.api.http) = {
  85. get: "/v1/{name=projects/*/locations/*/jobTemplates/*}"
  86. };
  87. option (google.api.method_signature) = "name";
  88. }
  89. // Deletes a job template.
  90. rpc DeleteJobTemplate(DeleteJobTemplateRequest) returns (google.protobuf.Empty) {
  91. option (google.api.http) = {
  92. delete: "/v1/{name=projects/*/locations/*/jobTemplates/*}"
  93. };
  94. option (google.api.method_signature) = "name";
  95. }
  96. }
  97. // Request message for `TranscoderService.CreateJob`.
  98. message CreateJobRequest {
  99. // Required. The parent location to create and process this job.
  100. // Format: `projects/{project}/locations/{location}`
  101. string parent = 1 [
  102. (google.api.field_behavior) = REQUIRED,
  103. (google.api.resource_reference) = {
  104. type: "locations.googleapis.com/Location"
  105. }
  106. ];
  107. // Required. Parameters for creating transcoding job.
  108. Job job = 2 [(google.api.field_behavior) = REQUIRED];
  109. }
  110. // Request message for `TranscoderService.ListJobs`.
  111. // The parent location from which to retrieve the collection of jobs.
  112. message ListJobsRequest {
  113. // Required. Format: `projects/{project}/locations/{location}`
  114. string parent = 1 [
  115. (google.api.field_behavior) = REQUIRED,
  116. (google.api.resource_reference) = {
  117. type: "locations.googleapis.com/Location"
  118. }
  119. ];
  120. // The maximum number of items to return.
  121. int32 page_size = 2;
  122. // The `next_page_token` value returned from a previous List request, if
  123. // any.
  124. string page_token = 3;
  125. // The filter expression, following the syntax outlined in
  126. // https://google.aip.dev/160.
  127. string filter = 4;
  128. // One or more fields to compare and use to sort the output.
  129. // See https://google.aip.dev/132#ordering.
  130. string order_by = 5;
  131. }
  132. // Request message for `TranscoderService.GetJob`.
  133. message GetJobRequest {
  134. // Required. The name of the job to retrieve.
  135. // Format: `projects/{project}/locations/{location}/jobs/{job}`
  136. string name = 1 [
  137. (google.api.field_behavior) = REQUIRED,
  138. (google.api.resource_reference) = {
  139. type: "transcoder.googleapis.com/Job"
  140. }
  141. ];
  142. }
  143. // Request message for `TranscoderService.DeleteJob`.
  144. message DeleteJobRequest {
  145. // Required. The name of the job to delete.
  146. // Format: `projects/{project}/locations/{location}/jobs/{job}`
  147. string name = 1 [
  148. (google.api.field_behavior) = REQUIRED,
  149. (google.api.resource_reference) = {
  150. type: "transcoder.googleapis.com/Job"
  151. }
  152. ];
  153. // If set to true, and the job is not found, the request will succeed but no
  154. // action will be taken on the server.
  155. bool allow_missing = 2;
  156. }
  157. // Response message for `TranscoderService.ListJobs`.
  158. message ListJobsResponse {
  159. // List of jobs in the specified region.
  160. repeated Job jobs = 1;
  161. // The pagination token.
  162. string next_page_token = 2;
  163. // List of regions that could not be reached.
  164. repeated string unreachable = 3;
  165. }
  166. // Request message for `TranscoderService.CreateJobTemplate`.
  167. message CreateJobTemplateRequest {
  168. // Required. The parent location to create this job template.
  169. // Format: `projects/{project}/locations/{location}`
  170. string parent = 1 [
  171. (google.api.field_behavior) = REQUIRED,
  172. (google.api.resource_reference) = {
  173. type: "locations.googleapis.com/Location"
  174. }
  175. ];
  176. // Required. Parameters for creating job template.
  177. JobTemplate job_template = 2 [(google.api.field_behavior) = REQUIRED];
  178. // Required. The ID to use for the job template, which will become the final component
  179. // of the job template's resource name.
  180. //
  181. // This value should be 4-63 characters, and valid characters must match the
  182. // regular expression `[a-zA-Z][a-zA-Z0-9_-]*`.
  183. string job_template_id = 3 [(google.api.field_behavior) = REQUIRED];
  184. }
  185. // Request message for `TranscoderService.ListJobTemplates`.
  186. message ListJobTemplatesRequest {
  187. // Required. The parent location from which to retrieve the collection of job templates.
  188. // Format: `projects/{project}/locations/{location}`
  189. string parent = 1 [
  190. (google.api.field_behavior) = REQUIRED,
  191. (google.api.resource_reference) = {
  192. type: "locations.googleapis.com/Location"
  193. }
  194. ];
  195. // The maximum number of items to return.
  196. int32 page_size = 2;
  197. // The `next_page_token` value returned from a previous List request, if
  198. // any.
  199. string page_token = 3;
  200. // The filter expression, following the syntax outlined in
  201. // https://google.aip.dev/160.
  202. string filter = 4;
  203. // One or more fields to compare and use to sort the output.
  204. // See https://google.aip.dev/132#ordering.
  205. string order_by = 5;
  206. }
  207. // Request message for `TranscoderService.GetJobTemplate`.
  208. message GetJobTemplateRequest {
  209. // Required. The name of the job template to retrieve.
  210. // Format:
  211. // `projects/{project}/locations/{location}/jobTemplates/{job_template}`
  212. string name = 1 [
  213. (google.api.field_behavior) = REQUIRED,
  214. (google.api.resource_reference) = {
  215. type: "transcoder.googleapis.com/JobTemplate"
  216. }
  217. ];
  218. }
  219. // Request message for `TranscoderService.DeleteJobTemplate`.
  220. message DeleteJobTemplateRequest {
  221. // Required. The name of the job template to delete.
  222. // `projects/{project}/locations/{location}/jobTemplates/{job_template}`
  223. string name = 1 [
  224. (google.api.field_behavior) = REQUIRED,
  225. (google.api.resource_reference) = {
  226. type: "transcoder.googleapis.com/JobTemplate"
  227. }
  228. ];
  229. // If set to true, and the job template is not found, the request will succeed
  230. // but no action will be taken on the server.
  231. bool allow_missing = 2;
  232. }
  233. // Response message for `TranscoderService.ListJobTemplates`.
  234. message ListJobTemplatesResponse {
  235. // List of job templates in the specified region.
  236. repeated JobTemplate job_templates = 1;
  237. // The pagination token.
  238. string next_page_token = 2;
  239. // List of regions that could not be reached.
  240. repeated string unreachable = 3;
  241. }