@@ -762,16 +762,19 @@ def list_device_device_users(parent, customer: nil, filter: nil, order_by: nil,
762762 # provided, only DeviceUsers having all of these properties are considered as
763763 # matches - i.e. the query behaves like an AND. Different platforms require
764764 # different amounts of information from the caller to ensure that the DeviceUser
765- # is uniquely identified. - iOS: No properties need to be passed, the caller's
766- # credentials are sufficient to identify the corresponding DeviceUser. - Android:
767- # Specifying the 'android_id' field is required. - Desktop: Specifying the '
768- # raw_resource_id' field is required.
765+ # is uniquely identified. - iOS: Specifying the 'partner' and 'ios_device_id'
766+ # fields is required. - Android: Specifying the 'android_id' field is required. -
767+ # Desktop: Specifying the 'raw_resource_id' field is required.
769768 # @param [String] parent
770769 # Must be set to "devices/-/deviceUsers" to search across all DeviceUser
771770 # belonging to the user.
772771 # @param [String] android_id
773772 # Android Id returned by [Settings.Secure#ANDROID_ID](https://developer.android.
774773 # com/reference/android/provider/Settings.Secure.html#ANDROID_ID).
774+ # @param [String] ios_device_id
775+ # Optional. The partner-specified device identifier assigned to the iOS device
776+ # that initiated the Lookup API call. This string must match the value of the
777+ # iosDeviceId key in the app config dictionary provided to Google Workspace apps.
775778 # @param [Fixnum] page_size
776779 # The maximum number of DeviceUsers to return. If unspecified, at most 20
777780 # DeviceUsers will be returned. The maximum value is 20; values above 20 will be
@@ -781,12 +784,16 @@ def list_device_device_users(parent, customer: nil, filter: nil, order_by: nil,
781784 # to retrieve the subsequent page. When paginating, all other parameters
782785 # provided to `LookupDeviceUsers` must match the call that provided the page
783786 # token.
787+ # @param [String] partner
788+ # Optional. The partner ID of the calling iOS app. This string must match the
789+ # value of the partner key within the app configuration dictionary provided to
790+ # Google Workspace apps.
784791 # @param [String] raw_resource_id
785792 # Raw Resource Id used by Google Endpoint Verification. If the user is enrolled
786793 # into Google Endpoint Verification, this id will be saved as the '
787- # device_resource_id' field in the following platform dependent files. * macOS : ~
788- # /. secureConnect/context_aware_config.json * Windows: %USERPROFILE%\AppData\
789- # Local\Google\Endpoint Verification\accounts .json * Linux: ~/.secureConnect/
794+ # device_resource_id' field in the following platform dependent files. Mac : ~/.
795+ # secureConnect/context_aware_config.json Windows: C:\Users\ %USERPROFILE%\.
796+ # secureConnect\context_aware_config .json Linux: ~/.secureConnect/
790797 # context_aware_config.json
791798 # @param [String] user_id
792799 # The user whose DeviceUser's resource name will be fetched. Must be set to 'me'
@@ -808,14 +815,16 @@ def list_device_device_users(parent, customer: nil, filter: nil, order_by: nil,
808815 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
809816 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
810817 # @raise [Google::Apis::AuthorizationError] Authorization is required
811- def lookup_device_device_user ( parent , android_id : nil , page_size : nil , page_token : nil , raw_resource_id : nil , user_id : nil , fields : nil , quota_user : nil , options : nil , &block )
818+ def lookup_device_device_user ( parent , android_id : nil , ios_device_id : nil , page_size : nil , page_token : nil , partner : nil , raw_resource_id : nil , user_id : nil , fields : nil , quota_user : nil , options : nil , &block )
812819 command = make_simple_command ( :get , 'v1/{+parent}:lookup' , options )
813820 command . response_representation = Google ::Apis ::CloudidentityV1 ::GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse ::Representation
814821 command . response_class = Google ::Apis ::CloudidentityV1 ::GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse
815822 command . params [ 'parent' ] = parent unless parent . nil?
816823 command . query [ 'androidId' ] = android_id unless android_id . nil?
824+ command . query [ 'iosDeviceId' ] = ios_device_id unless ios_device_id . nil?
817825 command . query [ 'pageSize' ] = page_size unless page_size . nil?
818826 command . query [ 'pageToken' ] = page_token unless page_token . nil?
827+ command . query [ 'partner' ] = partner unless partner . nil?
819828 command . query [ 'rawResourceId' ] = raw_resource_id unless raw_resource_id . nil?
820829 command . query [ 'userId' ] = user_id unless user_id . nil?
821830 command . query [ 'fields' ] = fields unless fields . nil?
0 commit comments