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

Commit 9619ec1

Browse files
authored
feat: v1 client generation (#240)
1 parent 563e22b commit 9619ec1

Some content is hidden

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

43 files changed

+17447
-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:984b2b7b8d75fa16ff0e0b3dcdd1e86561b44e8eac23f7a1378db3d339f11333
3+
image: gcr.io/repo-automation-bots/owlbot-java:latest

.github/.OwlBot.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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-copy-regex:
24+
- source: "/google/cloud/workflows/(v.*)/.*-java/proto-google-.*/src"
25+
dest: "/owl-bot-staging/$1/proto-google-cloud-workflows-$1/src"
26+
- source: "/google/cloud/workflows/(v.*)/.*-java/grpc-google-.*/src"
27+
dest: "/owl-bot-staging/$1/grpc-google-cloud-workflows-$1/src"
28+
- source: "/google/cloud/workflows/(v.*)/.*-java/gapic-google-.*/src"
29+
dest: "/owl-bot-staging/$1/google-cloud-workflows/src"

google-cloud-workflows-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>
@@ -64,21 +64,30 @@
6464

6565
<dependencyManagement>
6666
<dependencies>
67-
6867
<dependency>
6968
<groupId>com.google.cloud</groupId>
7069
<artifactId>google-cloud-workflows</artifactId>
7170
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-workflows:current} -->
7271
</dependency>
72+
<dependency>
73+
<groupId>com.google.api.grpc</groupId>
74+
<artifactId>grpc-google-cloud-workflows-v1beta</artifactId>
75+
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-workflows-v1beta:current} -->
76+
</dependency>
77+
<dependency>
78+
<groupId>com.google.api.grpc</groupId>
79+
<artifactId>grpc-google-cloud-workflows-v1</artifactId>
80+
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-workflows-v1:current} -->
81+
</dependency>
7382
<dependency>
7483
<groupId>com.google.api.grpc</groupId>
7584
<artifactId>proto-google-cloud-workflows-v1beta</artifactId>
7685
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-workflows-v1beta:current} -->
7786
</dependency>
7887
<dependency>
7988
<groupId>com.google.api.grpc</groupId>
80-
<artifactId>grpc-google-cloud-workflows-v1beta</artifactId>
81-
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-workflows-v1beta:current} -->
89+
<artifactId>proto-google-cloud-workflows-v1</artifactId>
90+
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-workflows-v1:current} -->
8291
</dependency>
8392
</dependencies>
8493
</dependencyManagement>
@@ -94,4 +103,4 @@
94103
</plugin>
95104
</plugins>
96105
</build>
97-
</project>
106+
</project>

google-cloud-workflows/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-workflows-v1</artifactId>
48+
</dependency>
4549
<dependency>
4650
<groupId>com.google.api.grpc</groupId>
4751
<artifactId>proto-google-cloud-workflows-v1beta</artifactId>
@@ -76,6 +80,11 @@
7680
<artifactId>grpc-google-cloud-workflows-v1beta</artifactId>
7781
<scope>test</scope>
7882
</dependency>
83+
<dependency>
84+
<groupId>com.google.api.grpc</groupId>
85+
<artifactId>grpc-google-cloud-workflows-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)