Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
feat: add v3 client (#423)
Browse files Browse the repository at this point in the history
* feat: add v3 client

* 馃 Updates from OwlBot

* fix declared dependencies

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
chingor13 and gcf-owl-bot[bot] committed Apr 9, 2021
1 parent 091fdea commit 159d6c5
Show file tree
Hide file tree
Showing 218 changed files with 103,393 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/.OwlBot.yaml
Expand Up @@ -18,7 +18,7 @@ docker:
deep-remove-regex:
- "/grpc-google-.*/src"
- "/proto-google-.*/src"
- "/google-.*/src"
- "/google-.*/src/main/java/com/google/cloud/resourcemanager/(v.*)"

deep-copy-regex:
- source: "/google/cloud/resourcemanager/(v.*)/.*-java/proto-google-.*/src"
Expand Down
10 changes: 10 additions & 0 deletions google-cloud-resourcemanager-bom/pom.xml
Expand Up @@ -58,6 +58,16 @@
<artifactId>google-cloud-resourcemanager</artifactId>
<version>0.118.13-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-resourcemanager:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-resourcemanager-v3</artifactId>
<version>0.118.13-alpha-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-resourcemanager-v3:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-resourcemanager-v3</artifactId>
<version>0.118.13-alpha-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-resourcemanager-v3:current} -->
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
48 changes: 48 additions & 0 deletions google-cloud-resourcemanager/pom.xml
Expand Up @@ -82,6 +82,15 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-resourcemanager-v3</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-resourcemanager-v3</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>api-common</artifactId>
Expand Down Expand Up @@ -119,6 +128,34 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax-grpc</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax</artifactId>
Expand Down Expand Up @@ -160,6 +197,17 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-resourcemanager-v3</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax-grpc</artifactId>
<classifier>testlib</classifier>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 159d6c5

Please sign in to comment.