Skip to content

Commit cc13f35

Browse files
1 parent 15c6447 commit cc13f35

8 files changed

Lines changed: 92 additions & 98 deletions

File tree

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

clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/CloudIdentity.java

Lines changed: 40 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -11470,53 +11470,50 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
1147011470
}
1147111471

1147211472
/**
11473-
* Optional. A CEL expression for filtering the results. Policies can be filtered by
11474-
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
11475-
* can be filtered by setting type with this expression:
11476-
* setting.type.matches('^.*\\.service_status$') Policies can be filtered by customer with
11477-
* this expression: customer == "customers/{customer}" Where `customer` is the `id` from the
11478-
* [Admin SDK `Customer` resource](https://developers.google.com/admin-
11479-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
11480-
* your own organization. When no customer is mentioned it will be default to
11481-
* customers/my_customer. You may only filter on policies for a single customer at a time. The
11482-
* above clauses can be combined together in a single filter expression with the `&&` and `||`
11483-
* operators, like in the following example: customer == "customers/my_customer" && (
11484-
* setting.type.matches('^settings/gmail\\..*$') ||
11485-
* setting.type.matches('^.*\\.service_status$') )
11473+
* Optional. A CEL expression for filtering the results. Policies can be filtered using the
11474+
* expression in the following ways: - Filter by application:
11475+
* `setting.type.matches('^settings/gmail\\..*$')` - Filter by setting type:
11476+
* `setting.type.matches('^.*\\.service_status$')` - Filter by customer: `customer ==
11477+
* "customers/{customer}"` Where `customer` is the `id` from the [Admin SDK `Customer`
11478+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
11479+
* You may use `customers/my_customer` to specify your own organization. When no `customer` is
11480+
* mentioned it will be default to `customers/my_customer`. You may only filter on policies
11481+
* for a single customer at a time. The above clauses can be combined together in a single
11482+
* filter expression with the `&&` and `||` operators, like in the following example:
11483+
* `customer == "customers/my_customer" && ( setting.type.matches('^settings/gmail\\..*$') ||
11484+
* setting.type.matches('^.*\\.service_status$') )`.
1148611485
*/
1148711486
@com.google.api.client.util.Key
1148811487
private java.lang.String filter;
1148911488

11490-
/** Optional. A CEL expression for filtering the results. Policies can be filtered by application with
11491-
this expression: setting.type.matches('^settings/gmail\\..*$') Policies can be filtered by setting
11492-
type with this expression: setting.type.matches('^.*\\.service_status$') Policies can be filtered
11493-
by customer with this expression: customer == "customers/{customer}" Where `customer` is the `id`
11494-
from the [Admin SDK `Customer` resource](https://developers.google.com/admin-
11495-
sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify your own
11496-
organization. When no customer is mentioned it will be default to customers/my_customer. You may
11497-
only filter on policies for a single customer at a time. The above clauses can be combined together
11498-
in a single filter expression with the `&&` and `||` operators, like in the following example:
11499-
customer == "customers/my_customer" && ( setting.type.matches('^settings/gmail\\..*$') ||
11500-
setting.type.matches('^.*\\.service_status$') )
11489+
/** Optional. A CEL expression for filtering the results. Policies can be filtered using the expression
11490+
in the following ways: - Filter by application: `setting.type.matches('^settings/gmail\\..*$')` -
11491+
Filter by setting type: `setting.type.matches('^.*\\.service_status$')` - Filter by customer:
11492+
`customer == "customers/{customer}"` Where `customer` is the `id` from the [Admin SDK `Customer`
11493+
resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may
11494+
use `customers/my_customer` to specify your own organization. When no `customer` is mentioned it
11495+
will be default to `customers/my_customer`. You may only filter on policies for a single customer
11496+
at a time. The above clauses can be combined together in a single filter expression with the `&&`
11497+
and `||` operators, like in the following example: `customer == "customers/my_customer" && (
11498+
setting.type.matches('^settings/gmail\\..*$') || setting.type.matches('^.*\\.service_status$') )`.
1150111499
*/
1150211500
public java.lang.String getFilter() {
1150311501
return filter;
1150411502
}
1150511503

1150611504
/**
11507-
* Optional. A CEL expression for filtering the results. Policies can be filtered by
11508-
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
11509-
* can be filtered by setting type with this expression:
11510-
* setting.type.matches('^.*\\.service_status$') Policies can be filtered by customer with
11511-
* this expression: customer == "customers/{customer}" Where `customer` is the `id` from the
11512-
* [Admin SDK `Customer` resource](https://developers.google.com/admin-
11513-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
11514-
* your own organization. When no customer is mentioned it will be default to
11515-
* customers/my_customer. You may only filter on policies for a single customer at a time. The
11516-
* above clauses can be combined together in a single filter expression with the `&&` and `||`
11517-
* operators, like in the following example: customer == "customers/my_customer" && (
11518-
* setting.type.matches('^settings/gmail\\..*$') ||
11519-
* setting.type.matches('^.*\\.service_status$') )
11505+
* Optional. A CEL expression for filtering the results. Policies can be filtered using the
11506+
* expression in the following ways: - Filter by application:
11507+
* `setting.type.matches('^settings/gmail\\..*$')` - Filter by setting type:
11508+
* `setting.type.matches('^.*\\.service_status$')` - Filter by customer: `customer ==
11509+
* "customers/{customer}"` Where `customer` is the `id` from the [Admin SDK `Customer`
11510+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
11511+
* You may use `customers/my_customer` to specify your own organization. When no `customer` is
11512+
* mentioned it will be default to `customers/my_customer`. You may only filter on policies
11513+
* for a single customer at a time. The above clauses can be combined together in a single
11514+
* filter expression with the `&&` and `||` operators, like in the following example:
11515+
* `customer == "customers/my_customer" && ( setting.type.matches('^settings/gmail\\..*$') ||
11516+
* setting.type.matches('^.*\\.service_status$') )`.
1152011517
*/
1152111518
public List setFilter(java.lang.String filter) {
1152211519
this.filter = filter;
@@ -11525,24 +11522,24 @@ public List setFilter(java.lang.String filter) {
1152511522

1152611523
/**
1152711524
* Optional. The maximum number of results to return. The service can return fewer than this
11528-
* number. If omitted or set to 0, the default is 50 results per page. The maximum allowed
11529-
* value is 100. `page_size` values greater than 100 default to 100.
11525+
* number. If omitted or set to `0`, the default is `50` results per page. The maximum allowed
11526+
* value is `100`. `page_size` values greater than `100` default to `100`.
1153011527
*/
1153111528
@com.google.api.client.util.Key
1153211529
private java.lang.Integer pageSize;
1153311530

1153411531
/** Optional. The maximum number of results to return. The service can return fewer than this number.
11535-
If omitted or set to 0, the default is 50 results per page. The maximum allowed value is 100.
11536-
`page_size` values greater than 100 default to 100.
11532+
If omitted or set to `0`, the default is `50` results per page. The maximum allowed value is `100`.
11533+
`page_size` values greater than `100` default to `100`.
1153711534
*/
1153811535
public java.lang.Integer getPageSize() {
1153911536
return pageSize;
1154011537
}
1154111538

1154211539
/**
1154311540
* Optional. The maximum number of results to return. The service can return fewer than this
11544-
* number. If omitted or set to 0, the default is 50 results per page. The maximum allowed
11545-
* value is 100. `page_size` values greater than 100 default to 100.
11541+
* number. If omitted or set to `0`, the default is `50` results per page. The maximum allowed
11542+
* value is `100`. `page_size` values greater than `100` default to `100`.
1154611543
*/
1154711544
public List setPageSize(java.lang.Integer pageSize) {
1154811545
this.pageSize = pageSize;

clients/google-api-services-cloudidentity/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-cloudidentity</artifactId>
11-
<version>v1-rev20260524-2.0.0</version>
12-
<name>Cloud Identity API v1-rev20260524-2.0.0</name>
11+
<version>v1-rev20260601-2.0.0</version>
12+
<name>Cloud Identity API v1-rev20260601-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-cloudidentity/v1beta1/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-cloudidentity</artifactId>
25-
<version>v1beta1-rev20260524-2.0.0</version>
25+
<version>v1beta1-rev20260601-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-cloudidentity:v1beta1-rev20260524-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20260601-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudidentity/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/CloudIdentity.java

Lines changed: 40 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -11673,53 +11673,50 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
1167311673
}
1167411674

1167511675
/**
11676-
* Optional. A CEL expression for filtering the results. Policies can be filtered by
11677-
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
11678-
* can be filtered by setting type with this expression:
11679-
* setting.type.matches('^.*\\.service_status$') Policies can be filtered by customer with
11680-
* this expression: customer == "customers/{customer}" Where `customer` is the `id` from the
11681-
* [Admin SDK `Customer` resource](https://developers.google.com/admin-
11682-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
11683-
* your own organization. When no customer is mentioned it will be default to
11684-
* customers/my_customer. You may only filter on policies for a single customer at a time. The
11685-
* above clauses can be combined together in a single filter expression with the `&&` and `||`
11686-
* operators, like in the following example: customer == "customers/my_customer" && (
11687-
* setting.type.matches('^settings/gmail\\..*$') ||
11688-
* setting.type.matches('^.*\\.service_status$') )
11676+
* Optional. A CEL expression for filtering the results. Policies can be filtered using the
11677+
* expression in the following ways: - Filter by application:
11678+
* `setting.type.matches('^settings/gmail\\..*$')` - Filter by setting type:
11679+
* `setting.type.matches('^.*\\.service_status$')` - Filter by customer: `customer ==
11680+
* "customers/{customer}"` Where `customer` is the `id` from the [Admin SDK `Customer`
11681+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
11682+
* You may use `customers/my_customer` to specify your own organization. When no `customer` is
11683+
* mentioned it will be default to `customers/my_customer`. You may only filter on policies
11684+
* for a single customer at a time. The above clauses can be combined together in a single
11685+
* filter expression with the `&&` and `||` operators, like in the following example:
11686+
* `customer == "customers/my_customer" && ( setting.type.matches('^settings/gmail\\..*$') ||
11687+
* setting.type.matches('^.*\\.service_status$') )`.
1168911688
*/
1169011689
@com.google.api.client.util.Key
1169111690
private java.lang.String filter;
1169211691

11693-
/** Optional. A CEL expression for filtering the results. Policies can be filtered by application with
11694-
this expression: setting.type.matches('^settings/gmail\\..*$') Policies can be filtered by setting
11695-
type with this expression: setting.type.matches('^.*\\.service_status$') Policies can be filtered
11696-
by customer with this expression: customer == "customers/{customer}" Where `customer` is the `id`
11697-
from the [Admin SDK `Customer` resource](https://developers.google.com/admin-
11698-
sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify your own
11699-
organization. When no customer is mentioned it will be default to customers/my_customer. You may
11700-
only filter on policies for a single customer at a time. The above clauses can be combined together
11701-
in a single filter expression with the `&&` and `||` operators, like in the following example:
11702-
customer == "customers/my_customer" && ( setting.type.matches('^settings/gmail\\..*$') ||
11703-
setting.type.matches('^.*\\.service_status$') )
11692+
/** Optional. A CEL expression for filtering the results. Policies can be filtered using the expression
11693+
in the following ways: - Filter by application: `setting.type.matches('^settings/gmail\\..*$')` -
11694+
Filter by setting type: `setting.type.matches('^.*\\.service_status$')` - Filter by customer:
11695+
`customer == "customers/{customer}"` Where `customer` is the `id` from the [Admin SDK `Customer`
11696+
resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may
11697+
use `customers/my_customer` to specify your own organization. When no `customer` is mentioned it
11698+
will be default to `customers/my_customer`. You may only filter on policies for a single customer
11699+
at a time. The above clauses can be combined together in a single filter expression with the `&&`
11700+
and `||` operators, like in the following example: `customer == "customers/my_customer" && (
11701+
setting.type.matches('^settings/gmail\\..*$') || setting.type.matches('^.*\\.service_status$') )`.
1170411702
*/
1170511703
public java.lang.String getFilter() {
1170611704
return filter;
1170711705
}
1170811706

1170911707
/**
11710-
* Optional. A CEL expression for filtering the results. Policies can be filtered by
11711-
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
11712-
* can be filtered by setting type with this expression:
11713-
* setting.type.matches('^.*\\.service_status$') Policies can be filtered by customer with
11714-
* this expression: customer == "customers/{customer}" Where `customer` is the `id` from the
11715-
* [Admin SDK `Customer` resource](https://developers.google.com/admin-
11716-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
11717-
* your own organization. When no customer is mentioned it will be default to
11718-
* customers/my_customer. You may only filter on policies for a single customer at a time. The
11719-
* above clauses can be combined together in a single filter expression with the `&&` and `||`
11720-
* operators, like in the following example: customer == "customers/my_customer" && (
11721-
* setting.type.matches('^settings/gmail\\..*$') ||
11722-
* setting.type.matches('^.*\\.service_status$') )
11708+
* Optional. A CEL expression for filtering the results. Policies can be filtered using the
11709+
* expression in the following ways: - Filter by application:
11710+
* `setting.type.matches('^settings/gmail\\..*$')` - Filter by setting type:
11711+
* `setting.type.matches('^.*\\.service_status$')` - Filter by customer: `customer ==
11712+
* "customers/{customer}"` Where `customer` is the `id` from the [Admin SDK `Customer`
11713+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
11714+
* You may use `customers/my_customer` to specify your own organization. When no `customer` is
11715+
* mentioned it will be default to `customers/my_customer`. You may only filter on policies
11716+
* for a single customer at a time. The above clauses can be combined together in a single
11717+
* filter expression with the `&&` and `||` operators, like in the following example:
11718+
* `customer == "customers/my_customer" && ( setting.type.matches('^settings/gmail\\..*$') ||
11719+
* setting.type.matches('^.*\\.service_status$') )`.
1172311720
*/
1172411721
public List setFilter(java.lang.String filter) {
1172511722
this.filter = filter;
@@ -11728,24 +11725,24 @@ public List setFilter(java.lang.String filter) {
1172811725

1172911726
/**
1173011727
* Optional. The maximum number of results to return. The service can return fewer than this
11731-
* number. If omitted or set to 0, the default is 50 results per page. The maximum allowed
11732-
* value is 100. `page_size` values greater than 100 default to 100.
11728+
* number. If omitted or set to `0`, the default is `50` results per page. The maximum allowed
11729+
* value is `100`. `page_size` values greater than `100` default to `100`.
1173311730
*/
1173411731
@com.google.api.client.util.Key
1173511732
private java.lang.Integer pageSize;
1173611733

1173711734
/** Optional. The maximum number of results to return. The service can return fewer than this number.
11738-
If omitted or set to 0, the default is 50 results per page. The maximum allowed value is 100.
11739-
`page_size` values greater than 100 default to 100.
11735+
If omitted or set to `0`, the default is `50` results per page. The maximum allowed value is `100`.
11736+
`page_size` values greater than `100` default to `100`.
1174011737
*/
1174111738
public java.lang.Integer getPageSize() {
1174211739
return pageSize;
1174311740
}
1174411741

1174511742
/**
1174611743
* Optional. The maximum number of results to return. The service can return fewer than this
11747-
* number. If omitted or set to 0, the default is 50 results per page. The maximum allowed
11748-
* value is 100. `page_size` values greater than 100 default to 100.
11744+
* number. If omitted or set to `0`, the default is `50` results per page. The maximum allowed
11745+
* value is `100`. `page_size` values greater than `100` default to `100`.
1174911746
*/
1175011747
public List setPageSize(java.lang.Integer pageSize) {
1175111748
this.pageSize = pageSize;

clients/google-api-services-cloudidentity/v1beta1/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-cloudidentity</artifactId>
11-
<version>v1beta1-rev20260524-2.0.0</version>
12-
<name>Cloud Identity API v1beta1-rev20260524-2.0.0</name>
11+
<version>v1beta1-rev20260601-2.0.0</version>
12+
<name>Cloud Identity API v1beta1-rev20260601-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)