Skip to content

Commit d7fefef

Browse files
1 parent b367fcf commit d7fefef

File tree

9 files changed

+68
-56
lines changed

9 files changed

+68
-56
lines changed

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-rev20241208-2.0.0</version>
25+
<version>v1-rev20250121-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-rev20241208-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1-rev20250121-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: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10424,24 +10424,25 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
1042410424

1042510425
/**
1042610426
* Optional. A CEL expression for filtering the results. Policies can be filtered by
10427-
* application with this expression: setting.name = 'settings/gmail.*' Policies can be
10428-
* filtered by setting type with this expression: setting.name = '*.service_status' A maximum
10429-
* of one of the above setting.name clauses can be used. Policies can be filtered by customer
10430-
* with this expression: customer = "customers/{customer}" Where `customer` is the `id` from
10431-
* the [Admin SDK `Customer` resource](https://developers.google.com/admin-
10432-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
10433-
* your own organization. When no customer is mentioned it will be default to
10434-
* customers/my_customer. A maximum of one customer clause can be used. The above clauses can
10435-
* only be combined together in a single filter expression with the `&&` operator.
10427+
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
10428+
* can be filtered by setting type with this expression:
10429+
* setting.type.matches('^.*\\.service_status$') A maximum of one of the above setting.type
10430+
* clauses can be used. Policies can be filtered by customer with this expression: customer ==
10431+
* "customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
10432+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
10433+
* You may use `customers/my_customer` to specify your own organization. When no customer is
10434+
* mentioned it will be default to customers/my_customer. A maximum of one customer clause can
10435+
* be used. The above clauses can only be combined together in a single filter expression with
10436+
* the `&&` operator.
1043610437
*/
1043710438
@com.google.api.client.util.Key
1043810439
private java.lang.String filter;
1043910440

1044010441
/** Optional. A CEL expression for filtering the results. Policies can be filtered by application with
10441-
this expression: setting.name = 'settings/gmail.*' Policies can be filtered by setting type with
10442-
this expression: setting.name = '*.service_status' A maximum of one of the above setting.name
10443-
clauses can be used. Policies can be filtered by customer with this expression: customer =
10444-
"customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
10442+
this expression: setting.type.matches('^settings/gmail\\..*$') Policies can be filtered by setting
10443+
type with this expression: setting.type.matches('^.*\\.service_status$') A maximum of one of the
10444+
above setting.type clauses can be used. Policies can be filtered by customer with this expression:
10445+
customer == "customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
1044510446
resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may
1044610447
use `customers/my_customer` to specify your own organization. When no customer is mentioned it will
1044710448
be default to customers/my_customer. A maximum of one customer clause can be used. The above
@@ -10453,15 +10454,16 @@ public java.lang.String getFilter() {
1045310454

1045410455
/**
1045510456
* Optional. A CEL expression for filtering the results. Policies can be filtered by
10456-
* application with this expression: setting.name = 'settings/gmail.*' Policies can be
10457-
* filtered by setting type with this expression: setting.name = '*.service_status' A maximum
10458-
* of one of the above setting.name clauses can be used. Policies can be filtered by customer
10459-
* with this expression: customer = "customers/{customer}" Where `customer` is the `id` from
10460-
* the [Admin SDK `Customer` resource](https://developers.google.com/admin-
10461-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
10462-
* your own organization. When no customer is mentioned it will be default to
10463-
* customers/my_customer. A maximum of one customer clause can be used. The above clauses can
10464-
* only be combined together in a single filter expression with the `&&` operator.
10457+
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
10458+
* can be filtered by setting type with this expression:
10459+
* setting.type.matches('^.*\\.service_status$') A maximum of one of the above setting.type
10460+
* clauses can be used. Policies can be filtered by customer with this expression: customer ==
10461+
* "customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
10462+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
10463+
* You may use `customers/my_customer` to specify your own organization. When no customer is
10464+
* mentioned it will be default to customers/my_customer. A maximum of one customer clause can
10465+
* be used. The above clauses can only be combined together in a single filter expression with
10466+
* the `&&` operator.
1046510467
*/
1046610468
public List setFilter(java.lang.String filter) {
1046710469
this.filter = filter;

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-rev20241208-2.0.0</version>
12-
<name>Cloud Identity API v1-rev20241208-2.0.0</name>
11+
<version>v1-rev20250121-2.0.0</version>
12+
<name>Cloud Identity API v1-rev20250121-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-rev20241208-2.0.0</version>
25+
<version>v1-rev20250121-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-rev20241208-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1-rev20250121-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-rev20250107-2.0.0</version>
25+
<version>v1beta1-rev20250121-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-rev20250107-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20250121-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: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10627,24 +10627,25 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
1062710627

1062810628
/**
1062910629
* Optional. A CEL expression for filtering the results. Policies can be filtered by
10630-
* application with this expression: setting.name = 'settings/gmail.*' Policies can be
10631-
* filtered by setting type with this expression: setting.name = '*.service_status' A maximum
10632-
* of one of the above setting.name clauses can be used. Policies can be filtered by customer
10633-
* with this expression: customer = "customers/{customer}" Where `customer` is the `id` from
10634-
* the [Admin SDK `Customer` resource](https://developers.google.com/admin-
10635-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
10636-
* your own organization. When no customer is mentioned it will be default to
10637-
* customers/my_customer. A maximum of one customer clause can be used. The above clauses can
10638-
* only be combined together in a single filter expression with the `&&` operator.
10630+
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
10631+
* can be filtered by setting type with this expression:
10632+
* setting.type.matches('^.*\\.service_status$') A maximum of one of the above setting.type
10633+
* clauses can be used. Policies can be filtered by customer with this expression: customer ==
10634+
* "customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
10635+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
10636+
* You may use `customers/my_customer` to specify your own organization. When no customer is
10637+
* mentioned it will be default to customers/my_customer. A maximum of one customer clause can
10638+
* be used. The above clauses can only be combined together in a single filter expression with
10639+
* the `&&` operator.
1063910640
*/
1064010641
@com.google.api.client.util.Key
1064110642
private java.lang.String filter;
1064210643

1064310644
/** Optional. A CEL expression for filtering the results. Policies can be filtered by application with
10644-
this expression: setting.name = 'settings/gmail.*' Policies can be filtered by setting type with
10645-
this expression: setting.name = '*.service_status' A maximum of one of the above setting.name
10646-
clauses can be used. Policies can be filtered by customer with this expression: customer =
10647-
"customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
10645+
this expression: setting.type.matches('^settings/gmail\\..*$') Policies can be filtered by setting
10646+
type with this expression: setting.type.matches('^.*\\.service_status$') A maximum of one of the
10647+
above setting.type clauses can be used. Policies can be filtered by customer with this expression:
10648+
customer == "customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
1064810649
resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). You may
1064910650
use `customers/my_customer` to specify your own organization. When no customer is mentioned it will
1065010651
be default to customers/my_customer. A maximum of one customer clause can be used. The above
@@ -10656,15 +10657,16 @@ public java.lang.String getFilter() {
1065610657

1065710658
/**
1065810659
* Optional. A CEL expression for filtering the results. Policies can be filtered by
10659-
* application with this expression: setting.name = 'settings/gmail.*' Policies can be
10660-
* filtered by setting type with this expression: setting.name = '*.service_status' A maximum
10661-
* of one of the above setting.name clauses can be used. Policies can be filtered by customer
10662-
* with this expression: customer = "customers/{customer}" Where `customer` is the `id` from
10663-
* the [Admin SDK `Customer` resource](https://developers.google.com/admin-
10664-
* sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer` to specify
10665-
* your own organization. When no customer is mentioned it will be default to
10666-
* customers/my_customer. A maximum of one customer clause can be used. The above clauses can
10667-
* only be combined together in a single filter expression with the `&&` operator.
10660+
* application with this expression: setting.type.matches('^settings/gmail\\..*$') Policies
10661+
* can be filtered by setting type with this expression:
10662+
* setting.type.matches('^.*\\.service_status$') A maximum of one of the above setting.type
10663+
* clauses can be used. Policies can be filtered by customer with this expression: customer ==
10664+
* "customers/{customer}" Where `customer` is the `id` from the [Admin SDK `Customer`
10665+
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
10666+
* You may use `customers/my_customer` to specify your own organization. When no customer is
10667+
* mentioned it will be default to customers/my_customer. A maximum of one customer clause can
10668+
* be used. The above clauses can only be combined together in a single filter expression with
10669+
* the `&&` operator.
1066810670
*/
1066910671
public List setFilter(java.lang.String filter) {
1067010672
this.filter = filter;

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ public class CloudIdentityScopes {
4444
/** See all of the Inbound SSO profiles and their assignments to any Org Units or Google Groups in your Cloud Identity Organization.. */
4545
public static final String CLOUD_IDENTITY_INBOUNDSSO_READONLY = "https://www.googleapis.com/auth/cloud-identity.inboundsso.readonly";
4646

47+
/** List, Move orgmembers of an OrgUnit in your Cloud Identity Organization.. */
48+
public static final String CLOUD_IDENTITY_ORGUNITS = "https://www.googleapis.com/auth/cloud-identity.orgunits";
49+
50+
/** List org members of an OrgUnit in your Cloud Identity Organization.. */
51+
public static final String CLOUD_IDENTITY_ORGUNITS_READONLY = "https://www.googleapis.com/auth/cloud-identity.orgunits.readonly";
52+
4753
/** See and edit policies in your Cloud Identity Organization.. */
4854
public static final String CLOUD_IDENTITY_POLICIES = "https://www.googleapis.com/auth/cloud-identity.policies";
4955

@@ -67,6 +73,8 @@ public static java.util.Set<String> all() {
6773
set.add(CLOUD_IDENTITY_GROUPS_READONLY);
6874
set.add(CLOUD_IDENTITY_INBOUNDSSO);
6975
set.add(CLOUD_IDENTITY_INBOUNDSSO_READONLY);
76+
set.add(CLOUD_IDENTITY_ORGUNITS);
77+
set.add(CLOUD_IDENTITY_ORGUNITS_READONLY);
7078
set.add(CLOUD_IDENTITY_POLICIES);
7179
set.add(CLOUD_IDENTITY_POLICIES_READONLY);
7280
set.add(CLOUD_PLATFORM);

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-rev20250107-2.0.0</version>
12-
<name>Cloud Identity API v1beta1-rev20250107-2.0.0</name>
11+
<version>v1beta1-rev20250121-2.0.0</version>
12+
<name>Cloud Identity API v1beta1-rev20250121-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)