Skip to content

Commit 0b8dd07

Browse files
1 parent 8a4effa commit 0b8dd07

File tree

4 files changed

+61
-14
lines changed

4 files changed

+61
-14
lines changed

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-rev20250805-2.0.0</version>
25+
<version>v1beta1-rev20250916-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-rev20250805-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20250916-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: 55 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3133,10 +3133,9 @@ public List set(String parameterName, Object value) {
31333133
* the scope: https://www.googleapis.com/auth/cloud-identity.devices.lookup If multiple properties
31343134
* are provided, only DeviceUsers having all of these properties are considered as matches - i.e.
31353135
* the query behaves like an AND. Different platforms require different amounts of information from
3136-
* the caller to ensure that the DeviceUser is uniquely identified. - iOS: No properties need to be
3137-
* passed, the caller's credentials are sufficient to identify the corresponding DeviceUser. -
3138-
* Android: Specifying the 'android_id' field is required. - Desktop: Specifying the
3139-
* 'raw_resource_id' field is required.
3136+
* the caller to ensure that the DeviceUser is uniquely identified. - iOS: Specifying the 'partner'
3137+
* and 'ios_device_id' fields is required. - Android: Specifying the 'android_id' field is required.
3138+
* - Desktop: Specifying the 'raw_resource_id' field is required.
31403139
*
31413140
* Create a request for the method "deviceUsers.lookup".
31423141
*
@@ -3165,10 +3164,9 @@ public class Lookup extends CloudIdentityRequest<com.google.api.services.cloudid
31653164
* with the scope: https://www.googleapis.com/auth/cloud-identity.devices.lookup If multiple
31663165
* properties are provided, only DeviceUsers having all of these properties are considered as
31673166
* matches - i.e. the query behaves like an AND. Different platforms require different amounts of
3168-
* information from the caller to ensure that the DeviceUser is uniquely identified. - iOS: No
3169-
* properties need to be passed, the caller's credentials are sufficient to identify the
3170-
* corresponding DeviceUser. - Android: Specifying the 'android_id' field is required. - Desktop:
3171-
* Specifying the 'raw_resource_id' field is required.
3167+
* information from the caller to ensure that the DeviceUser is uniquely identified. - iOS:
3168+
* Specifying the 'partner' and 'ios_device_id' fields is required. - Android: Specifying the
3169+
* 'android_id' field is required. - Desktop: Specifying the 'raw_resource_id' field is required.
31723170
*
31733171
* Create a request for the method "deviceUsers.lookup".
31743172
*
@@ -3306,6 +3304,32 @@ public Lookup setAndroidId(java.lang.String androidId) {
33063304
return this;
33073305
}
33083306

3307+
/**
3308+
* Optional. The partner-specified device identifier assigned to the iOS device that
3309+
* initiated the Lookup API call. This string must match the value of the iosDeviceId key in
3310+
* the app config dictionary provided to Google Workspace apps.
3311+
*/
3312+
@com.google.api.client.util.Key
3313+
private java.lang.String iosDeviceId;
3314+
3315+
/** Optional. The partner-specified device identifier assigned to the iOS device that initiated the
3316+
Lookup API call. This string must match the value of the iosDeviceId key in the app config
3317+
dictionary provided to Google Workspace apps.
3318+
*/
3319+
public java.lang.String getIosDeviceId() {
3320+
return iosDeviceId;
3321+
}
3322+
3323+
/**
3324+
* Optional. The partner-specified device identifier assigned to the iOS device that
3325+
* initiated the Lookup API call. This string must match the value of the iosDeviceId key in
3326+
* the app config dictionary provided to Google Workspace apps.
3327+
*/
3328+
public Lookup setIosDeviceId(java.lang.String iosDeviceId) {
3329+
this.iosDeviceId = iosDeviceId;
3330+
return this;
3331+
}
3332+
33093333
/**
33103334
* The maximum number of DeviceUsers to return. If unspecified, at most 20 DeviceUsers will
33113335
* be returned. The maximum value is 20; values above 20 will be coerced to 20.
@@ -3355,6 +3379,29 @@ public Lookup setPageToken(java.lang.String pageToken) {
33553379
return this;
33563380
}
33573381

3382+
/**
3383+
* Optional. The partner ID of the calling iOS app. This string must match the value of the
3384+
* partner key within the app configuration dictionary provided to Google Workspace apps.
3385+
*/
3386+
@com.google.api.client.util.Key
3387+
private java.lang.String partner;
3388+
3389+
/** Optional. The partner ID of the calling iOS app. This string must match the value of the partner
3390+
key within the app configuration dictionary provided to Google Workspace apps.
3391+
*/
3392+
public java.lang.String getPartner() {
3393+
return partner;
3394+
}
3395+
3396+
/**
3397+
* Optional. The partner ID of the calling iOS app. This string must match the value of the
3398+
* partner key within the app configuration dictionary provided to Google Workspace apps.
3399+
*/
3400+
public Lookup setPartner(java.lang.String partner) {
3401+
this.partner = partner;
3402+
return this;
3403+
}
3404+
33583405
/**
33593406
* Raw Resource Id used by Google Endpoint Verification. If the user is enrolled into Google
33603407
* Endpoint Verification, this id will be saved as the 'device_resource_id' field in the

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-rev20250805-2.0.0</version>
12-
<name>Cloud Identity API v1beta1-rev20250805-2.0.0</name>
11+
<version>v1beta1-rev20250916-2.0.0</version>
12+
<name>Cloud Identity API v1beta1-rev20250916-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-rev20250805-2.0.0</version>
25+
<version>v1beta1-rev20250916-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-rev20250805-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20250916-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)