Skip to content

Commit 481a7a7

Browse files
chore: generate libraries at Wed Apr 15 16:03:11 UTC 2026
1 parent c671df0 commit 481a7a7

File tree

579 files changed

+272499
-0
lines changed

Some content is hidden

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

579 files changed

+272499
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Copyright 2024 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+
16+
deep-remove-regex:
17+
- "/java-common-iam/grpc-google-.*/src"
18+
- "/java-common-iam/proto-google-.*/src"
19+
- "/java-common-iam/google-.*/src"
20+
- "/java-common-iam/samples/snippets/generated"
21+
22+
deep-preserve-regex:
23+
- "/java-common-iam/google-.*/src/test/java/com/google/cloud/.*/v.*/it/IT.*Test.java"
24+
- "/.*google-.*/src/main/java/.*/stub/Version.java"
25+
26+
deep-copy-regex:
27+
- source: "/google/iam/(v.*)/.*-java/proto-google-.*/src"
28+
dest: "/owl-bot-staging/java-common-iam/$1/proto-proto-google-iam-v1-$1/src"
29+
- source: "/google/iam/(v.*)/.*-java/grpc-google-.*/src"
30+
dest: "/owl-bot-staging/java-common-iam/$1/grpc-proto-google-iam-v1-$1/src"
31+
- source: "/google/iam/(v.*)/.*-java/gapic-google-.*/src"
32+
dest: "/owl-bot-staging/java-common-iam/$1/proto-google-iam-v1/src"
33+
- source: "/google/iam/(v.*)/.*-java/samples/snippets/generated"
34+
dest: "/owl-bot-staging/java-common-iam/$1/samples/snippets/generated"
35+
36+
api-name: common-iam
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"api_shortname": "common-iam",
3+
"name_pretty": "IAM",
4+
"product_documentation": "https://cloud.google.com/iam",
5+
"api_description": "Manages access control for Google Cloud Platform resources",
6+
"client_documentation": "https://cloud.google.com/java/docs/reference/proto-google-iam-v1/latest/overview",
7+
"release_level": "stable",
8+
"transport": "both",
9+
"language": "java",
10+
"repo": "googleapis/sdk-platform-java",
11+
"repo_short": "java-common-iam",
12+
"distribution_name": "com.google.api.grpc:proto-google-iam-v1",
13+
"library_type": "OTHER",
14+
"requires_billing": true,
15+
"excluded_dependencies": "grpc-google-iam-v1",
16+
"excluded_poms": "proto-google-iam-v1-bom,google-iam-policy,proto-google-iam-v1"
17+
}

java-common-iam/README.md

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
# Google IAM Client for Java
2+
3+
Java idiomatic client for [IAM][product-docs].
4+
5+
[![Maven][maven-version-image]][maven-version-link]
6+
![Stability][stability-image]
7+
8+
- [Product Documentation][product-docs]
9+
- [Client Library Documentation][javadocs]
10+
11+
12+
## Quickstart
13+
14+
15+
If you are using Maven, add this to your pom.xml file:
16+
17+
18+
```xml
19+
<dependency>
20+
<groupId>com.google.api.grpc</groupId>
21+
<artifactId>proto-google-iam-v1</artifactId>
22+
<version>0.0.0</version>
23+
</dependency>
24+
```
25+
26+
If you are using Gradle without BOM, add this to your dependencies:
27+
28+
```Groovy
29+
implementation 'com.google.api.grpc:proto-google-iam-v1:0.0.0'
30+
```
31+
32+
If you are using SBT, add this to your dependencies:
33+
34+
```Scala
35+
libraryDependencies += "com.google.api.grpc" % "proto-google-iam-v1" % "0.0.0"
36+
```
37+
38+
## Authentication
39+
40+
See the [Authentication][authentication] section in the base directory's README.
41+
42+
## Authorization
43+
44+
The client application making API calls must be granted [authorization scopes][auth-scopes] required for the desired IAM APIs, and the authenticated principal must have the [IAM role(s)][predefined-iam-roles] required to access GCP resources using the IAM API calls.
45+
46+
## Getting Started
47+
48+
### Prerequisites
49+
50+
You will need a [Google Cloud Platform Console][developer-console] project with the IAM [API enabled][enable-api].
51+
You will need to [enable billing][enable-billing] to use Google IAM.
52+
[Follow these instructions][create-project] to get your project set up. You will also need to set up the local development environment by
53+
[installing the Google Cloud Command Line Interface][cloud-cli] and running the following commands in command line:
54+
`gcloud auth login` and `gcloud config set project [YOUR PROJECT ID]`.
55+
56+
### Installation and setup
57+
58+
You'll need to obtain the `proto-google-iam-v1` library. See the [Quickstart](#quickstart) section
59+
to add `proto-google-iam-v1` as a dependency in your code.
60+
61+
## About IAM
62+
63+
64+
[IAM][product-docs] Manages access control for Google Cloud Platform resources
65+
66+
See the [IAM client library docs][javadocs] to learn how to
67+
use this IAM Client Library.
68+
69+
70+
71+
72+
73+
74+
## Troubleshooting
75+
76+
To get help, follow the instructions in the [shared Troubleshooting document][troubleshooting].
77+
78+
## Transport
79+
80+
IAM uses both gRPC and HTTP/JSON for the transport layer.
81+
82+
## Supported Java Versions
83+
84+
Java 8 or above is required for using this client.
85+
86+
Google's Java client libraries,
87+
[Google Cloud Client Libraries][cloudlibs]
88+
and
89+
[Google Cloud API Libraries][apilibs],
90+
follow the
91+
[Oracle Java SE support roadmap][oracle]
92+
(see the Oracle Java SE Product Releases section).
93+
94+
### For new development
95+
96+
In general, new feature development occurs with support for the lowest Java
97+
LTS version covered by Oracle's Premier Support (which typically lasts 5 years
98+
from initial General Availability). If the minimum required JVM for a given
99+
library is changed, it is accompanied by a [semver][semver] major release.
100+
101+
Java 11 and (in September 2021) Java 17 are the best choices for new
102+
development.
103+
104+
### Keeping production systems current
105+
106+
Google tests its client libraries with all current LTS versions covered by
107+
Oracle's Extended Support (which typically lasts 8 years from initial
108+
General Availability).
109+
110+
#### Legacy support
111+
112+
Google's client libraries support legacy versions of Java runtimes with long
113+
term stable libraries that don't receive feature updates on a best efforts basis
114+
as it may not be possible to backport all patches.
115+
116+
Google provides updates on a best efforts basis to apps that continue to use
117+
Java 7, though apps might need to upgrade to current versions of the library
118+
that supports their JVM.
119+
120+
#### Where to find specific information
121+
122+
The latest versions and the supported Java versions are identified on
123+
the individual GitHub repository `github.com/GoogleAPIs/java-SERVICENAME`
124+
and on [google-cloud-java][g-c-j].
125+
126+
## Versioning
127+
128+
129+
This library follows [Semantic Versioning](http://semver.org/).
130+
131+
132+
133+
## Contributing
134+
135+
136+
Contributions to this library are always welcome and highly encouraged.
137+
138+
See [CONTRIBUTING][contributing] for more information how to get started.
139+
140+
Please note that this project is released with a Contributor Code of Conduct. By participating in
141+
this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more
142+
information.
143+
144+
145+
## License
146+
147+
Apache 2.0 - See [LICENSE][license] for more information.
148+
149+
Java is a registered trademark of Oracle and/or its affiliates.
150+
151+
[product-docs]: https://cloud.google.com/iam
152+
[javadocs]: https://cloud.google.com/java/docs/reference/proto-google-iam-v1/latest/overview
153+
[stability-image]: https://img.shields.io/badge/stability-stable-green
154+
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.api.grpc/proto-google-iam-v1.svg
155+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.api.grpc/proto-google-iam-v1/0.0.0
156+
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
157+
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
158+
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
159+
[iam-policy]: https://cloud.google.com/iam/docs/overview#cloud-iam-policy
160+
[developer-console]: https://console.developers.google.com/
161+
[create-project]: https://cloud.google.com/resource-manager/docs/creating-managing-projects
162+
[cloud-cli]: https://cloud.google.com/cli
163+
[troubleshooting]: https://github.com/googleapis/google-cloud-java/blob/main/TROUBLESHOOTING.md
164+
[contributing]: https://github.com/googleapis/sdk-platform-java/blob/main/CONTRIBUTING.md
165+
[code-of-conduct]: https://github.com/googleapis/sdk-platform-java/blob/main/CODE_OF_CONDUCT.md#contributor-code-of-conduct
166+
[license]: https://github.com/googleapis/sdk-platform-java/blob/main/LICENSE
167+
[enable-billing]: https://cloud.google.com/apis/docs/getting-started#enabling_billing
168+
169+
[libraries-bom]: https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google-Cloud-Platform-Libraries-BOM
170+
[shell_img]: https://gstatic.com/cloudssh/images/open-btn.png
171+
172+
[semver]: https://semver.org/
173+
[cloudlibs]: https://cloud.google.com/apis/docs/client-libraries-explained
174+
[apilibs]: https://cloud.google.com/apis/docs/client-libraries-explained#google_api_client_libraries
175+
[oracle]: https://www.oracle.com/java/technologies/java-se-support-roadmap.html
176+
[g-c-j]: http://github.com/googleapis/google-cloud-java
Lines changed: 45 additions & 0 deletions
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.api.grpc</groupId>
6+
<artifactId>grpc-proto-google-iam-v1-v1</artifactId>
7+
<version>1.65.0</version><!-- {x-version-update:grpc-proto-google-iam-v1-v1:current} -->
8+
<name>grpc-proto-google-iam-v1-v1</name>
9+
<description>GRPC library for proto-google-iam-v1</description>
10+
<parent>
11+
<groupId>com.google.api.grpc</groupId>
12+
<artifactId>proto-google-iam-v1-parent</artifactId>
13+
<version>1.65.0</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.api.grpc</groupId>
38+
<artifactId>proto-proto-google-iam-v1-v1</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.google.guava</groupId>
42+
<artifactId>guava</artifactId>
43+
</dependency>
44+
</dependencies>
45+
</project>

0 commit comments

Comments
 (0)