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/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/CloudIdentity.java
+55-8Lines changed: 55 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3133,10 +3133,9 @@ public List set(String parameterName, Object value) {
3133
3133
* the scope: https://www.googleapis.com/auth/cloud-identity.devices.lookup If multiple properties
3134
3134
* are provided, only DeviceUsers having all of these properties are considered as matches - i.e.
3135
3135
* 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.
3140
3139
*
3141
3140
* Create a request for the method "deviceUsers.lookup".
3142
3141
*
@@ -3165,10 +3164,9 @@ public class Lookup extends CloudIdentityRequest<com.google.api.services.cloudid
3165
3164
* with the scope: https://www.googleapis.com/auth/cloud-identity.devices.lookup If multiple
3166
3165
* properties are provided, only DeviceUsers having all of these properties are considered as
3167
3166
* 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.
3172
3170
*
3173
3171
* Create a request for the method "deviceUsers.lookup".
3174
3172
*
@@ -3306,6 +3304,32 @@ public Lookup setAndroidId(java.lang.String androidId) {
3306
3304
returnthis;
3307
3305
}
3308
3306
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
+
privatejava.lang.StringiosDeviceId;
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
+
publicjava.lang.StringgetIosDeviceId() {
3320
+
returniosDeviceId;
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.
0 commit comments