Skip to content

Commit 9729ef5

Browse files
1 parent 434090c commit 9729ef5

File tree

5 files changed

+72
-21
lines changed

5 files changed

+72
-21
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-rev20250502-2.0.0</version>
25+
<version>v1-rev20250509-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-rev20250502-2.0.0'
38+
implementation 'com.google.apis:google-api-services-iam:v1-rev20250509-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,34 +31,55 @@
3131
public final class GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2ClientQueryParameters extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Optional. The filter used to request specific records from IdP. In case of attributes type as
35-
* AZURE_AD_GROUPS_MAIL, it represents the filter used to request specific groups for users from
36-
* IdP. By default, all of the groups associated with the user are fetched. The groups should be
37-
* mail enabled and security enabled. See https://learn.microsoft.com/en-us/graph/search-query-
38-
* parameter for more details.
34+
* Optional. The filter used to request specific records from the IdP. By default, all of the
35+
* groups that are associated with a user are fetched. For Microsoft Entra ID, you can add
36+
* `$search` query parameters using [Keyword Query Language] (https://learn.microsoft.com/en-
37+
* us/sharepoint/dev/general-development/keyword-query-language-kql-syntax-reference). To learn
38+
* more about `$search` querying in Microsoft Entra ID, see [Use the `$search` query parameter]
39+
* (https://learn.microsoft.com/en-us/graph/search-query-parameter). Additionally, Workforce
40+
* Identity Federation automatically adds the following [`$filter` query parameters]
41+
* (https://learn.microsoft.com/en-us/graph/filter-query-parameter), based on the value of
42+
* `attributes_type`. Values passed to `filter` are converted to `$search` query parameters.
43+
* Additional `$filter` query parameters cannot be added using this field. *
44+
* `AZURE_AD_GROUPS_MAIL`: `mailEnabled` and `securityEnabled` filters are applied. *
45+
* `AZURE_AD_GROUPS_ID`: `securityEnabled` filter is applied.
3946
* The value may be {@code null}.
4047
*/
4148
@com.google.api.client.util.Key
4249
private java.lang.String filter;
4350

4451
/**
45-
* Optional. The filter used to request specific records from IdP. In case of attributes type as
46-
* AZURE_AD_GROUPS_MAIL, it represents the filter used to request specific groups for users from
47-
* IdP. By default, all of the groups associated with the user are fetched. The groups should be
48-
* mail enabled and security enabled. See https://learn.microsoft.com/en-us/graph/search-query-
49-
* parameter for more details.
52+
* Optional. The filter used to request specific records from the IdP. By default, all of the
53+
* groups that are associated with a user are fetched. For Microsoft Entra ID, you can add
54+
* `$search` query parameters using [Keyword Query Language] (https://learn.microsoft.com/en-
55+
* us/sharepoint/dev/general-development/keyword-query-language-kql-syntax-reference). To learn
56+
* more about `$search` querying in Microsoft Entra ID, see [Use the `$search` query parameter]
57+
* (https://learn.microsoft.com/en-us/graph/search-query-parameter). Additionally, Workforce
58+
* Identity Federation automatically adds the following [`$filter` query parameters]
59+
* (https://learn.microsoft.com/en-us/graph/filter-query-parameter), based on the value of
60+
* `attributes_type`. Values passed to `filter` are converted to `$search` query parameters.
61+
* Additional `$filter` query parameters cannot be added using this field. *
62+
* `AZURE_AD_GROUPS_MAIL`: `mailEnabled` and `securityEnabled` filters are applied. *
63+
* `AZURE_AD_GROUPS_ID`: `securityEnabled` filter is applied.
5064
* @return value or {@code null} for none
5165
*/
5266
public java.lang.String getFilter() {
5367
return filter;
5468
}
5569

5670
/**
57-
* Optional. The filter used to request specific records from IdP. In case of attributes type as
58-
* AZURE_AD_GROUPS_MAIL, it represents the filter used to request specific groups for users from
59-
* IdP. By default, all of the groups associated with the user are fetched. The groups should be
60-
* mail enabled and security enabled. See https://learn.microsoft.com/en-us/graph/search-query-
61-
* parameter for more details.
71+
* Optional. The filter used to request specific records from the IdP. By default, all of the
72+
* groups that are associated with a user are fetched. For Microsoft Entra ID, you can add
73+
* `$search` query parameters using [Keyword Query Language] (https://learn.microsoft.com/en-
74+
* us/sharepoint/dev/general-development/keyword-query-language-kql-syntax-reference). To learn
75+
* more about `$search` querying in Microsoft Entra ID, see [Use the `$search` query parameter]
76+
* (https://learn.microsoft.com/en-us/graph/search-query-parameter). Additionally, Workforce
77+
* Identity Federation automatically adds the following [`$filter` query parameters]
78+
* (https://learn.microsoft.com/en-us/graph/filter-query-parameter), based on the value of
79+
* `attributes_type`. Values passed to `filter` are converted to `$search` query parameters.
80+
* Additional `$filter` query parameters cannot be added using this field. *
81+
* `AZURE_AD_GROUPS_MAIL`: `mailEnabled` and `securityEnabled` filters are applied. *
82+
* `AZURE_AD_GROUPS_ID`: `securityEnabled` filter is applied.
6283
* @param filter filter or {@code null} for none
6384
*/
6485
public GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2ClientQueryParameters setFilter(java.lang.String filter) {

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,15 @@ public final class WorkforcePoolProvider extends com.google.api.client.json.Gene
9595
@com.google.api.client.util.Key
9696
private java.lang.String description;
9797

98+
/**
99+
* Optional. If true, populates additional debug information in Cloud Audit Logs for this
100+
* provider. Logged attribute mappings and values can be found in `sts.googleapis.com` data access
101+
* logs. Default value is false.
102+
* The value may be {@code null}.
103+
*/
104+
@com.google.api.client.util.Key
105+
private java.lang.Boolean detailedAuditLogging;
106+
98107
/**
99108
* Optional. Disables the workforce pool provider. You cannot use a disabled provider to exchange
100109
* tokens. However, existing tokens still grant access.
@@ -295,6 +304,27 @@ public WorkforcePoolProvider setDescription(java.lang.String description) {
295304
return this;
296305
}
297306

307+
/**
308+
* Optional. If true, populates additional debug information in Cloud Audit Logs for this
309+
* provider. Logged attribute mappings and values can be found in `sts.googleapis.com` data access
310+
* logs. Default value is false.
311+
* @return value or {@code null} for none
312+
*/
313+
public java.lang.Boolean getDetailedAuditLogging() {
314+
return detailedAuditLogging;
315+
}
316+
317+
/**
318+
* Optional. If true, populates additional debug information in Cloud Audit Logs for this
319+
* provider. Logged attribute mappings and values can be found in `sts.googleapis.com` data access
320+
* logs. Default value is false.
321+
* @param detailedAuditLogging detailedAuditLogging or {@code null} for none
322+
*/
323+
public WorkforcePoolProvider setDetailedAuditLogging(java.lang.Boolean detailedAuditLogging) {
324+
this.detailedAuditLogging = detailedAuditLogging;
325+
return this;
326+
}
327+
298328
/**
299329
* Optional. Disables the workforce pool provider. You cannot use a disabled provider to exchange
300330
* tokens. However, existing tokens still grant access.

clients/google-api-services-iam/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-iam</artifactId>
11-
<version>v1-rev20250502-2.0.0</version>
12-
<name>Identity and Access Management (IAM) API v1-rev20250502-2.0.0</name>
11+
<version>v1-rev20250509-2.0.0</version>
12+
<name>Identity and Access Management (IAM) API v1-rev20250509-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-iam/v1/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-rev20250502-2.0.0</version>
25+
<version>v1-rev20250509-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-rev20250502-2.0.0'
38+
implementation 'com.google.apis:google-api-services-iam:v1-rev20250509-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)