Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudidentity</artifactId>
<version>v1-rev20260524-2.0.0</version>
<version>v1-rev20260601-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudidentity:v1-rev20260524-2.0.0'
implementation 'com.google.apis:google-api-services-cloudidentity:v1-rev20260601-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11470,53 +11470,50 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
}

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

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

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

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

/** Optional. The maximum number of results to return. The service can return fewer than this number.
If omitted or set to 0, the default is 50 results per page. The maximum allowed value is 100.
`page_size` values greater than 100 default to 100.
If omitted or set to `0`, the default is `50` results per page. The maximum allowed value is `100`.
`page_size` values greater than `100` default to `100`.
*/
public java.lang.Integer getPageSize() {
return pageSize;
}

/**
* Optional. The maximum number of results to return. The service can return fewer than this
* number. If omitted or set to 0, the default is 50 results per page. The maximum allowed
* value is 100. `page_size` values greater than 100 default to 100.
* number. If omitted or set to `0`, the default is `50` results per page. The maximum allowed
* value is `100`. `page_size` values greater than `100` default to `100`.
*/
public List setPageSize(java.lang.Integer pageSize) {
this.pageSize = pageSize;
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudidentity/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudidentity</artifactId>
<version>v1-rev20260524-2.0.0</version>
<name>Cloud Identity API v1-rev20260524-2.0.0</name>
<version>v1-rev20260601-2.0.0</version>
<name>Cloud Identity API v1-rev20260601-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudidentity/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudidentity</artifactId>
<version>v1-rev20260524-2.0.0</version>
<version>v1-rev20260601-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudidentity:v1-rev20260524-2.0.0'
implementation 'com.google.apis:google-api-services-cloudidentity:v1-rev20260601-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudidentity</artifactId>
<version>v1beta1-rev20260524-2.0.0</version>
<version>v1beta1-rev20260601-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20260524-2.0.0'
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20260601-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11673,53 +11673,50 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
}

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

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

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

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

/** Optional. The maximum number of results to return. The service can return fewer than this number.
If omitted or set to 0, the default is 50 results per page. The maximum allowed value is 100.
`page_size` values greater than 100 default to 100.
If omitted or set to `0`, the default is `50` results per page. The maximum allowed value is `100`.
`page_size` values greater than `100` default to `100`.
*/
public java.lang.Integer getPageSize() {
return pageSize;
}

/**
* Optional. The maximum number of results to return. The service can return fewer than this
* number. If omitted or set to 0, the default is 50 results per page. The maximum allowed
* value is 100. `page_size` values greater than 100 default to 100.
* number. If omitted or set to `0`, the default is `50` results per page. The maximum allowed
* value is `100`. `page_size` values greater than `100` default to `100`.
*/
public List setPageSize(java.lang.Integer pageSize) {
this.pageSize = pageSize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudidentity</artifactId>
<version>v1beta1-rev20260524-2.0.0</version>
<name>Cloud Identity API v1beta1-rev20260524-2.0.0</name>
<version>v1beta1-rev20260601-2.0.0</version>
<name>Cloud Identity API v1beta1-rev20260601-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Loading