Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 3a39c8a

Browse files
authored
feat: add v1 client (#180)
1 parent e2a29da commit 3a39c8a

File tree

88 files changed

+81887
-42
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+81887
-42
lines changed

.github/.OwlBot.lock.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
docker:
2+
digest: sha256:2e88a4a7fe3377cf8de1fa5982134f6ef2768980fa2f94edcc1ba6604ae2e7ca
3+
image: gcr.io/repo-automation-bots/owlbot-java:latest

.github/.OwlBot.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright 2021 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+
15+
docker:
16+
image: "gcr.io/repo-automation-bots/owlbot-java:latest"
17+
18+
deep-remove-regex:
19+
- "/grpc-google-.*/src"
20+
- "/proto-google-.*/src"
21+
- "/google-.*/src"
22+
23+
deep-preserve-regex:
24+
- "/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java"
25+
26+
deep-copy-regex:
27+
- source: "/google/cloud/video/transcoder/(v.*)/.*-java/proto-google-.*/src"
28+
dest: "/owl-bot-staging/$1/proto-google-cloud-video-transcoder-$1/src"
29+
- source: "/google/cloud/video/transcoder/(v.*)/.*-java/grpc-google-.*/src"
30+
dest: "/owl-bot-staging/$1/grpc-google-cloud-video-transcoder-$1/src"
31+
- source: "/google/cloud/video/transcoder/(v.*)/.*-java/gapic-google-.*/src"
32+
dest: "/owl-bot-staging/$1/google-cloud-video-transcoder/src"

google-cloud-video-transcoder-bom/pom.xml

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version='1.0' encoding='UTF-8'?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.cloud</groupId>
@@ -54,21 +54,30 @@
5454

5555
<dependencyManagement>
5656
<dependencies>
57-
5857
<dependency>
5958
<groupId>com.google.cloud</groupId>
6059
<artifactId>google-cloud-video-transcoder</artifactId>
6160
<version>0.1.10-SNAPSHOT</version><!-- {x-version-update:google-cloud-video-transcoder:current} -->
6261
</dependency>
62+
<dependency>
63+
<groupId>com.google.api.grpc</groupId>
64+
<artifactId>grpc-google-cloud-video-transcoder-v1beta1</artifactId>
65+
<version>0.1.10-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-video-transcoder-v1beta1:current} -->
66+
</dependency>
67+
<dependency>
68+
<groupId>com.google.api.grpc</groupId>
69+
<artifactId>grpc-google-cloud-video-transcoder-v1</artifactId>
70+
<version>0.1.10-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-video-transcoder-v1:current} -->
71+
</dependency>
6372
<dependency>
6473
<groupId>com.google.api.grpc</groupId>
6574
<artifactId>proto-google-cloud-video-transcoder-v1beta1</artifactId>
6675
<version>0.1.10-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-video-transcoder-v1beta1:current} -->
6776
</dependency>
6877
<dependency>
6978
<groupId>com.google.api.grpc</groupId>
70-
<artifactId>grpc-google-cloud-video-transcoder-v1beta1</artifactId>
71-
<version>0.1.10-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-video-transcoder-v1beta1:current} -->
79+
<artifactId>proto-google-cloud-video-transcoder-v1</artifactId>
80+
<version>0.1.10-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-video-transcoder-v1:current} -->
7281
</dependency>
7382
</dependencies>
7483
</dependencyManagement>
@@ -84,4 +93,4 @@
8493
</plugin>
8594
</plugins>
8695
</build>
87-
</project>
96+
</project>

google-cloud-video-transcoder/pom.xml

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version='1.0' encoding='UTF-8'?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.cloud</groupId>
@@ -42,6 +42,10 @@
4242
<artifactId>proto-google-common-protos</artifactId>
4343
</dependency>
4444

45+
<dependency>
46+
<groupId>com.google.api.grpc</groupId>
47+
<artifactId>proto-google-cloud-video-transcoder-v1</artifactId>
48+
</dependency>
4549
<dependency>
4650
<groupId>com.google.api.grpc</groupId>
4751
<artifactId>proto-google-cloud-video-transcoder-v1beta1</artifactId>
@@ -76,6 +80,11 @@
7680
<artifactId>grpc-google-cloud-video-transcoder-v1beta1</artifactId>
7781
<scope>test</scope>
7882
</dependency>
83+
<dependency>
84+
<groupId>com.google.api.grpc</groupId>
85+
<artifactId>grpc-google-cloud-video-transcoder-v1</artifactId>
86+
<scope>test</scope>
87+
</dependency>
7988
<!-- Need testing utility classes for generated gRPC clients tests -->
8089
<dependency>
8190
<groupId>com.google.api</groupId>
@@ -108,4 +117,4 @@
108117
</plugin>
109118
</plugins>
110119
</build>
111-
</project>
120+
</project>

0 commit comments

Comments
 (0)