Skip to content

Commit 12df9e2

Browse files
1 parent e63790e commit 12df9e2

11 files changed

+2683
-6
lines changed

clients/google-api-services-iam/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-iam</artifactId>
25-
<version>v1-rev20250627-2.0.0</version>
25+
<version>v1-rev20250718-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-iam:v1-rev20250627-2.0.0'
38+
implementation 'com.google.apis:google-api-services-iam:v1-rev20250718-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/Iam.java

Lines changed: 1982 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.iam.v1.model;
18+
19+
/**
20+
* Response message for ListWorkforcePoolProviderScimTenants.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Identity and Access Management (IAM) API. For a
24+
* detailed explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ListWorkforcePoolProviderScimTenantsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field
35+
* is omitted, there are no subsequent pages.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* Output only. A list of scim tenants.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<WorkforcePoolProviderScimTenant> workforcePoolProviderScimTenants;
47+
48+
/**
49+
* Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field
50+
* is omitted, there are no subsequent pages.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getNextPageToken() {
54+
return nextPageToken;
55+
}
56+
57+
/**
58+
* Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field
59+
* is omitted, there are no subsequent pages.
60+
* @param nextPageToken nextPageToken or {@code null} for none
61+
*/
62+
public ListWorkforcePoolProviderScimTenantsResponse setNextPageToken(java.lang.String nextPageToken) {
63+
this.nextPageToken = nextPageToken;
64+
return this;
65+
}
66+
67+
/**
68+
* Output only. A list of scim tenants.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.util.List<WorkforcePoolProviderScimTenant> getWorkforcePoolProviderScimTenants() {
72+
return workforcePoolProviderScimTenants;
73+
}
74+
75+
/**
76+
* Output only. A list of scim tenants.
77+
* @param workforcePoolProviderScimTenants workforcePoolProviderScimTenants or {@code null} for none
78+
*/
79+
public ListWorkforcePoolProviderScimTenantsResponse setWorkforcePoolProviderScimTenants(java.util.List<WorkforcePoolProviderScimTenant> workforcePoolProviderScimTenants) {
80+
this.workforcePoolProviderScimTenants = workforcePoolProviderScimTenants;
81+
return this;
82+
}
83+
84+
@Override
85+
public ListWorkforcePoolProviderScimTenantsResponse set(String fieldName, Object value) {
86+
return (ListWorkforcePoolProviderScimTenantsResponse) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public ListWorkforcePoolProviderScimTenantsResponse clone() {
91+
return (ListWorkforcePoolProviderScimTenantsResponse) super.clone();
92+
}
93+
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.iam.v1.model;
18+
19+
/**
20+
* Response message for ListWorkforcePoolProviderScimTokens.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Identity and Access Management (IAM) API. For a
24+
* detailed explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ListWorkforcePoolProviderScimTokensResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field
35+
* is omitted, there are no subsequent pages.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String nextPageToken;
40+
41+
/**
42+
* Output only. A list of scim tokens.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<WorkforcePoolProviderScimToken> workforcePoolProviderScimTokens;
47+
48+
/**
49+
* Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field
50+
* is omitted, there are no subsequent pages.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getNextPageToken() {
54+
return nextPageToken;
55+
}
56+
57+
/**
58+
* Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field
59+
* is omitted, there are no subsequent pages.
60+
* @param nextPageToken nextPageToken or {@code null} for none
61+
*/
62+
public ListWorkforcePoolProviderScimTokensResponse setNextPageToken(java.lang.String nextPageToken) {
63+
this.nextPageToken = nextPageToken;
64+
return this;
65+
}
66+
67+
/**
68+
* Output only. A list of scim tokens.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.util.List<WorkforcePoolProviderScimToken> getWorkforcePoolProviderScimTokens() {
72+
return workforcePoolProviderScimTokens;
73+
}
74+
75+
/**
76+
* Output only. A list of scim tokens.
77+
* @param workforcePoolProviderScimTokens workforcePoolProviderScimTokens or {@code null} for none
78+
*/
79+
public ListWorkforcePoolProviderScimTokensResponse setWorkforcePoolProviderScimTokens(java.util.List<WorkforcePoolProviderScimToken> workforcePoolProviderScimTokens) {
80+
this.workforcePoolProviderScimTokens = workforcePoolProviderScimTokens;
81+
return this;
82+
}
83+
84+
@Override
85+
public ListWorkforcePoolProviderScimTokensResponse set(String fieldName, Object value) {
86+
return (ListWorkforcePoolProviderScimTokensResponse) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public ListWorkforcePoolProviderScimTokensResponse clone() {
91+
return (ListWorkforcePoolProviderScimTokensResponse) super.clone();
92+
}
93+
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.iam.v1.model;
18+
19+
/**
20+
* Request message for UndeleteWorkforcePoolProviderScimTenant.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Identity and Access Management (IAM) API. For a
24+
* detailed explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class UndeleteWorkforcePoolProviderScimTenantRequest extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public UndeleteWorkforcePoolProviderScimTenantRequest set(String fieldName, Object value) {
35+
return (UndeleteWorkforcePoolProviderScimTenantRequest) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public UndeleteWorkforcePoolProviderScimTenantRequest clone() {
40+
return (UndeleteWorkforcePoolProviderScimTenantRequest) super.clone();
41+
}
42+
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.iam.v1.model;
18+
19+
/**
20+
* Request message for UndeleteWorkforcePoolProviderScimToken.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Identity and Access Management (IAM) API. For a
24+
* detailed explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class UndeleteWorkforcePoolProviderScimTokenRequest extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public UndeleteWorkforcePoolProviderScimTokenRequest set(String fieldName, Object value) {
35+
return (UndeleteWorkforcePoolProviderScimTokenRequest) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public UndeleteWorkforcePoolProviderScimTokenRequest clone() {
40+
return (UndeleteWorkforcePoolProviderScimTokenRequest) super.clone();
41+
}
42+
43+
}

clients/google-api-services-iam/v1/2.0.0/com/google/api/services/iam/v1/model/WorkforcePoolProvider.java

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,20 @@ public final class WorkforcePoolProvider extends com.google.api.client.json.Gene
127127
@com.google.api.client.util.Key
128128
private String expireTime;
129129

130+
/**
131+
* Optional. The configuration for OAuth 2.0 client used to get the extended group memberships for
132+
* user identities. Only the `AZURE_AD_GROUPS_ID` attribute type is supported. Extended groups
133+
* supports a subset of Google Cloud services. When the user accesses these services, extended
134+
* group memberships override the mapped `google.groups` attribute. Extended group memberships
135+
* cannot be used in attribute mapping or attribute condition expressions. To keep extended group
136+
* memberships up to date, extended groups are retrieved when the user signs in and at regular
137+
* intervals during the user's active session. Each user identity in the workforce identity pool
138+
* must map to a specific, unique Microsoft Entra ID user.
139+
* The value may be {@code null}.
140+
*/
141+
@com.google.api.client.util.Key
142+
private GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client extendedAttributesOauth2Client;
143+
130144
/**
131145
* Optional. The configuration for OAuth 2.0 client used to get the additional user attributes.
132146
* This should be used when users can't get the desired claims in authentication credentials.
@@ -380,6 +394,37 @@ public WorkforcePoolProvider setExpireTime(String expireTime) {
380394
return this;
381395
}
382396

397+
/**
398+
* Optional. The configuration for OAuth 2.0 client used to get the extended group memberships for
399+
* user identities. Only the `AZURE_AD_GROUPS_ID` attribute type is supported. Extended groups
400+
* supports a subset of Google Cloud services. When the user accesses these services, extended
401+
* group memberships override the mapped `google.groups` attribute. Extended group memberships
402+
* cannot be used in attribute mapping or attribute condition expressions. To keep extended group
403+
* memberships up to date, extended groups are retrieved when the user signs in and at regular
404+
* intervals during the user's active session. Each user identity in the workforce identity pool
405+
* must map to a specific, unique Microsoft Entra ID user.
406+
* @return value or {@code null} for none
407+
*/
408+
public GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client getExtendedAttributesOauth2Client() {
409+
return extendedAttributesOauth2Client;
410+
}
411+
412+
/**
413+
* Optional. The configuration for OAuth 2.0 client used to get the extended group memberships for
414+
* user identities. Only the `AZURE_AD_GROUPS_ID` attribute type is supported. Extended groups
415+
* supports a subset of Google Cloud services. When the user accesses these services, extended
416+
* group memberships override the mapped `google.groups` attribute. Extended group memberships
417+
* cannot be used in attribute mapping or attribute condition expressions. To keep extended group
418+
* memberships up to date, extended groups are retrieved when the user signs in and at regular
419+
* intervals during the user's active session. Each user identity in the workforce identity pool
420+
* must map to a specific, unique Microsoft Entra ID user.
421+
* @param extendedAttributesOauth2Client extendedAttributesOauth2Client or {@code null} for none
422+
*/
423+
public WorkforcePoolProvider setExtendedAttributesOauth2Client(GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client extendedAttributesOauth2Client) {
424+
this.extendedAttributesOauth2Client = extendedAttributesOauth2Client;
425+
return this;
426+
}
427+
383428
/**
384429
* Optional. The configuration for OAuth 2.0 client used to get the additional user attributes.
385430
* This should be used when users can't get the desired claims in authentication credentials.

0 commit comments

Comments
 (0)