You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/CloudIdentity.java
+61-14Lines changed: 61 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -3169,10 +3169,9 @@ public List set(String parameterName, Object value) {
3169
3169
* the scope: https://www.googleapis.com/auth/cloud-identity.devices.lookup If multiple properties
3170
3170
* are provided, only DeviceUsers having all of these properties are considered as matches - i.e.
3171
3171
* the query behaves like an AND. Different platforms require different amounts of information from
3172
-
* the caller to ensure that the DeviceUser is uniquely identified. - iOS: No properties need to be
3173
-
* passed, the caller's credentials are sufficient to identify the corresponding DeviceUser. -
3174
-
* Android: Specifying the 'android_id' field is required. - Desktop: Specifying the
3175
-
* 'raw_resource_id' field is required.
3172
+
* the caller to ensure that the DeviceUser is uniquely identified. - iOS: Specifying the 'partner'
3173
+
* and 'ios_device_id' fields is required. - Android: Specifying the 'android_id' field is required.
3174
+
* - Desktop: Specifying the 'raw_resource_id' field is required.
3176
3175
*
3177
3176
* Create a request for the method "deviceUsers.lookup".
3178
3177
*
@@ -3201,10 +3200,9 @@ public class Lookup extends CloudIdentityRequest<com.google.api.services.cloudid
3201
3200
* with the scope: https://www.googleapis.com/auth/cloud-identity.devices.lookup If multiple
3202
3201
* properties are provided, only DeviceUsers having all of these properties are considered as
3203
3202
* matches - i.e. the query behaves like an AND. Different platforms require different amounts of
3204
-
* information from the caller to ensure that the DeviceUser is uniquely identified. - iOS: No
3205
-
* properties need to be passed, the caller's credentials are sufficient to identify the
3206
-
* corresponding DeviceUser. - Android: Specifying the 'android_id' field is required. - Desktop:
3207
-
* Specifying the 'raw_resource_id' field is required.
3203
+
* information from the caller to ensure that the DeviceUser is uniquely identified. - iOS:
3204
+
* Specifying the 'partner' and 'ios_device_id' fields is required. - Android: Specifying the
3205
+
* 'android_id' field is required. - Desktop: Specifying the 'raw_resource_id' field is required.
3208
3206
*
3209
3207
* Create a request for the method "deviceUsers.lookup".
3210
3208
*
@@ -3342,6 +3340,32 @@ public Lookup setAndroidId(java.lang.String androidId) {
3342
3340
returnthis;
3343
3341
}
3344
3342
3343
+
/**
3344
+
* Optional. The partner-specified device identifier assigned to the iOS device that
3345
+
* initiated the Lookup API call. This string must match the value of the iosDeviceId key in
3346
+
* the app config dictionary provided to Google Workspace apps.
3347
+
*/
3348
+
@com.google.api.client.util.Key
3349
+
privatejava.lang.StringiosDeviceId;
3350
+
3351
+
/** Optional. The partner-specified device identifier assigned to the iOS device that initiated the
3352
+
Lookup API call. This string must match the value of the iosDeviceId key in the app config
3353
+
dictionary provided to Google Workspace apps.
3354
+
*/
3355
+
publicjava.lang.StringgetIosDeviceId() {
3356
+
returniosDeviceId;
3357
+
}
3358
+
3359
+
/**
3360
+
* Optional. The partner-specified device identifier assigned to the iOS device that
3361
+
* initiated the Lookup API call. This string must match the value of the iosDeviceId key in
3362
+
* the app config dictionary provided to Google Workspace apps.
0 commit comments