Skip to content

Commit

Permalink
feat: [transcoder] added support for segment template manifest genera…
Browse files Browse the repository at this point in the history
…tion with DASH (#9629)

* feat: added support for segment template manifest generation with DASH
feat: added support for batch mode priority
feat: added support for disabling job processing optimizations
feat: added support for content encryption (DRM)

PiperOrigin-RevId: 546916731

Source-Link: googleapis/googleapis@f1f8ba4

Source-Link: googleapis/googleapis-gen@6ddcc2d
Copy-Tag: eyJwIjoiamF2YS12aWRlby10cmFuc2NvZGVyLy5Pd2xCb3QueWFtbCIsImgiOiI2ZGRjYzJkZDgyYmJhOTNjYmRmZTM5N2VlZWYxNjJlNWE0MDNkNThkIn0=

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Jul 11, 2023
1 parent 6f54595 commit 3c74216
Show file tree
Hide file tree
Showing 15 changed files with 11,362 additions and 218 deletions.
4 changes: 2 additions & 2 deletions java-video-transcoder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.16.0</version>
<version>26.18.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -195,7 +195,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
[stability-image]: https://img.shields.io/badge/stability-stable-green
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-video-transcoder.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-video-transcoder/1.18.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-video-transcoder/1.19.0
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public void createJobTest() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockService.addResponse(expectedResponse);

Expand Down Expand Up @@ -147,6 +148,7 @@ public void createJobTest2() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockService.addResponse(expectedResponse);

Expand Down Expand Up @@ -301,6 +303,7 @@ public void getJobTest() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockService.addResponse(expectedResponse);

Expand Down Expand Up @@ -353,6 +356,7 @@ public void getJobTest2() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockService.addResponse(expectedResponse);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public void createJobTest() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockTranscoderService.addResponse(expectedResponse);

Expand Down Expand Up @@ -145,6 +146,7 @@ public void createJobTest2() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockTranscoderService.addResponse(expectedResponse);

Expand Down Expand Up @@ -282,6 +284,7 @@ public void getJobTest() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockTranscoderService.addResponse(expectedResponse);

Expand Down Expand Up @@ -328,6 +331,7 @@ public void getJobTest2() throws Exception {
.setTtlAfterCompletionDays(107576420)
.putAllLabels(new HashMap<String, String>())
.setError(Status.newBuilder().build())
.setBatchModePriority(2137003131)
.build();
mockTranscoderService.addResponse(expectedResponse);

Expand Down
Loading

0 comments on commit 3c74216

Please sign in to comment.