Skip to content

Commit

Permalink
feat: [videostitcher] Add support for Media CDN (googleapis#8690)
Browse files Browse the repository at this point in the history
* feat: Add support for Media CDN

PiperOrigin-RevId: 483999352

Source-Link: googleapis/googleapis@d0a9cd5

Source-Link: https://github.com/googleapis/googleapis-gen/commit/b40f231195019a20fba164e6b9fdb344e6283a13
Copy-Tag: eyJwIjoiamF2YS12aWRlby1zdGl0Y2hlci8uT3dsQm90LnlhbWwiLCJoIjoiYjQwZjIzMTE5NTAxOWEyMGZiYTE2NGU2YjlmZGIzNDRlNjI4M2ExMyJ9

* 🦉 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 Oct 27, 2022
1 parent 7a0fa4d commit 54f750d
Show file tree
Hide file tree
Showing 9 changed files with 1,170 additions and 16 deletions.
17 changes: 17 additions & 0 deletions java-video-stitcher/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Maven
target/

# Eclipse
.classpath
.project
.settings

# Intellij
*.iml
.idea/

# python utilities
*.pyc
__pycache__

.flattened-pom.xml
6 changes: 3 additions & 3 deletions java-video-stitcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-video-stitcher</artifactId>
<version>0.3.6</version>
<version>0.5.0</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-video-stitcher:0.3.6'
implementation 'com.google.cloud:google-cloud-video-stitcher:0.5.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-video-stitcher" % "0.3.6"
libraryDependencies += "com.google.cloud" % "google-cloud-video-stitcher" % "0.5.0"
```

## Authentication
Expand Down
3 changes: 2 additions & 1 deletion java-video-stitcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,5 @@
<module>proto-google-cloud-video-stitcher-v1</module>
<module>google-cloud-video-stitcher-bom</module>
</modules>
</project>

</project>

0 comments on commit 54f750d

Please sign in to comment.