Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74932,9 +74932,11 @@
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.list/parent": parent
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup": lookup_device_device_user
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/androidId": android_id
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/iosDeviceId": ios_device_id
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/pageSize": page_size
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/pageToken": page_token
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/parent": parent
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/partner": partner
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/rawResourceId": raw_resource_id
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.lookup/userId": user_id
"/cloudidentity:v1/cloudidentity.devices.deviceUsers.wipe": wipe_device_device_user
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-cloudidentity_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-cloudidentity_v1

### v0.52.0 (2025-09-28)

* Regenerated from discovery document revision 20250923

### v0.51.0 (2025-08-10)

* Regenerated from discovery document revision 20250805
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module CloudidentityV1
# Version of the google-apis-cloudidentity_v1 gem
GEM_VERSION = "0.51.0"
GEM_VERSION = "0.52.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250805"
REVISION = "20250923"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -762,16 +762,19 @@ def list_device_device_users(parent, customer: nil, filter: nil, order_by: nil,
# provided, only DeviceUsers having all of these properties are considered as
# matches - i.e. the query behaves like an AND. Different platforms require
# different amounts of information from the caller to ensure that the DeviceUser
# is uniquely identified. - iOS: No properties need to be passed, the caller's
# credentials are sufficient to identify the corresponding DeviceUser. - Android:
# Specifying the 'android_id' field is required. - Desktop: Specifying the '
# raw_resource_id' field is required.
# is uniquely identified. - iOS: Specifying the 'partner' and 'ios_device_id'
# fields is required. - Android: Specifying the 'android_id' field is required. -
# Desktop: Specifying the 'raw_resource_id' field is required.
# @param [String] parent
# Must be set to "devices/-/deviceUsers" to search across all DeviceUser
# belonging to the user.
# @param [String] android_id
# Android Id returned by [Settings.Secure#ANDROID_ID](https://developer.android.
# com/reference/android/provider/Settings.Secure.html#ANDROID_ID).
# @param [String] ios_device_id
# Optional. The partner-specified device identifier assigned to the iOS device
# that initiated the Lookup API call. This string must match the value of the
# iosDeviceId key in the app config dictionary provided to Google Workspace apps.
# @param [Fixnum] page_size
# The maximum number of DeviceUsers to return. If unspecified, at most 20
# DeviceUsers will be returned. The maximum value is 20; values above 20 will be
Expand All @@ -781,12 +784,16 @@ def list_device_device_users(parent, customer: nil, filter: nil, order_by: nil,
# to retrieve the subsequent page. When paginating, all other parameters
# provided to `LookupDeviceUsers` must match the call that provided the page
# token.
# @param [String] partner
# Optional. The partner ID of the calling iOS app. This string must match the
# value of the partner key within the app configuration dictionary provided to
# Google Workspace apps.
# @param [String] raw_resource_id
# Raw Resource Id used by Google Endpoint Verification. If the user is enrolled
# into Google Endpoint Verification, this id will be saved as the '
# device_resource_id' field in the following platform dependent files. * macOS: ~
# /.secureConnect/context_aware_config.json * Windows: %USERPROFILE%\AppData\
# Local\Google\Endpoint Verification\accounts.json * Linux: ~/.secureConnect/
# device_resource_id' field in the following platform dependent files. Mac: ~/.
# secureConnect/context_aware_config.json Windows: C:\Users\%USERPROFILE%\.
# secureConnect\context_aware_config.json Linux: ~/.secureConnect/
# context_aware_config.json
# @param [String] user_id
# The user whose DeviceUser's resource name will be fetched. Must be set to 'me'
Expand All @@ -808,14 +815,16 @@ def list_device_device_users(parent, customer: nil, filter: nil, order_by: nil,
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
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)
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)
command = make_simple_command(:get, 'v1/{+parent}:lookup', options)
command.response_representation = Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse::Representation
command.response_class = Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse
command.params['parent'] = parent unless parent.nil?
command.query['androidId'] = android_id unless android_id.nil?
command.query['iosDeviceId'] = ios_device_id unless ios_device_id.nil?
command.query['pageSize'] = page_size unless page_size.nil?
command.query['pageToken'] = page_token unless page_token.nil?
command.query['partner'] = partner unless partner.nil?
command.query['rawResourceId'] = raw_resource_id unless raw_resource_id.nil?
command.query['userId'] = user_id unless user_id.nil?
command.query['fields'] = fields unless fields.nil?
Expand Down
Loading