Skip to content

Commit 6fc9656

Browse files
feat: Generate IAM v3beta Client Library (#3780)
See b/406871794 for more information --------- Co-authored-by: cloud-java-bot <[email protected]>
1 parent 25d9ed1 commit 6fc9656

File tree

66 files changed

+39371
-1
lines changed

Some content is hidden

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

66 files changed

+39371
-1
lines changed

gapic-generator-java-bom/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@
119119
<artifactId>proto-google-iam-v3</artifactId>
120120
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v3:current} -->
121121
</dependency>
122+
<dependency>
123+
<groupId>com.google.api.grpc</groupId>
124+
<artifactId>proto-google-iam-v3beta</artifactId>
125+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v3beta:current} -->
126+
</dependency>
122127

123128
<!-- Following test deps are kept to keep them consistent with versions above -->
124129
<dependency>
@@ -141,6 +146,11 @@
141146
<artifactId>grpc-google-iam-v3</artifactId>
142147
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v3:current} -->
143148
</dependency>
149+
<dependency>
150+
<groupId>com.google.api.grpc</groupId>
151+
<artifactId>grpc-google-iam-v3beta</artifactId>
152+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v3beta:current} -->
153+
</dependency>
144154
</dependencies>
145155

146156
</dependencyManagement>

generation_config.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@ libraries:
4949
- proto_path: google/iam/v1
5050
- proto_path: google/iam/v2
5151
- proto_path: google/iam/v2beta
52-
- proto_path: google/iam/v3
52+
- proto_path: google/iam/v3
53+
- proto_path: google/iam/v3beta
+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.google.api.grpc</groupId>
6+
<artifactId>grpc-google-iam-v3beta</artifactId>
7+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v3beta:current} -->
8+
<name>grpc-google-iam-v3beta</name>
9+
<description>GRPC library for proto-google-iam-v1</description>
10+
<parent>
11+
<groupId>com.google.cloud</groupId>
12+
<artifactId>google-iam-parent</artifactId>
13+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v1:current} -->
14+
</parent>
15+
<dependencies>
16+
<dependency>
17+
<groupId>io.grpc</groupId>
18+
<artifactId>grpc-api</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>io.grpc</groupId>
22+
<artifactId>grpc-stub</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>io.grpc</groupId>
26+
<artifactId>grpc-protobuf</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.google.protobuf</groupId>
30+
<artifactId>protobuf-java</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.api.grpc</groupId>
34+
<artifactId>proto-google-common-protos</artifactId>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.google.api.grpc</groupId>
38+
<artifactId>proto-google-iam-v3beta</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.google.guava</groupId>
42+
<artifactId>guava</artifactId>
43+
</dependency>
44+
</dependencies>
45+
</project>

java-iam/grpc-google-iam-v3beta/src/main/java/com/google/iam/v3beta/PolicyBindingsGrpc.java

+1,122
Large diffs are not rendered by default.

java-iam/grpc-google-iam-v3beta/src/main/java/com/google/iam/v3beta/PrincipalAccessBoundaryPoliciesGrpc.java

+1,184
Large diffs are not rendered by default.

java-iam/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@
5454
<type>pom</type>
5555
<scope>import</scope>
5656
</dependency>
57+
<dependency>
58+
<groupId>com.google.api.grpc</groupId>
59+
<artifactId>proto-google-iam-v3beta</artifactId>
60+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v3beta:current} -->
61+
</dependency>
62+
<dependency>
63+
<groupId>com.google.api.grpc</groupId>
64+
<artifactId>grpc-google-iam-v3beta</artifactId>
65+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-iam-v3beta:current} -->
66+
</dependency>
5767
<dependency>
5868
<groupId>com.google.guava</groupId>
5969
<artifactId>guava-bom</artifactId>
@@ -152,9 +162,11 @@
152162
<module>grpc-google-iam-v2beta</module>
153163
<module>grpc-google-iam-v2</module>
154164
<module>grpc-google-iam-v3</module>
165+
<module>grpc-google-iam-v3beta</module>
155166
<module>proto-google-iam-v2beta</module>
156167
<module>proto-google-iam-v2</module>
157168
<module>proto-google-iam-v3</module>
169+
<module>proto-google-iam-v3beta</module>
158170
<module>grpc-google-iam-v1</module>
159171
</modules>
160172

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
3+
<differences>
4+
5+
</differences>
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.google.api.grpc</groupId>
6+
<artifactId>proto-google-iam-v3beta</artifactId>
7+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v3beta:current} -->
8+
<name>proto-google-iam-v3beta</name>
9+
<description>Proto library for proto-google-iam-v1</description>
10+
<parent>
11+
<groupId>com.google.cloud</groupId>
12+
<artifactId>google-iam-parent</artifactId>
13+
<version>1.50.4-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v1:current} -->
14+
</parent>
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.google.protobuf</groupId>
18+
<artifactId>protobuf-java</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>com.google.api.grpc</groupId>
22+
<artifactId>proto-google-common-protos</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>com.google.api</groupId>
26+
<artifactId>api-common</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.google.guava</groupId>
30+
<artifactId>guava</artifactId>
31+
</dependency>
32+
</dependencies>
33+
</project>

0 commit comments

Comments
 (0)