google-apis-cloudidentity_v1beta1 0.55.0 → 0.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 109980802e4dbeb4becff80f8ff68f6522e207fdbf1440306fc9a7644ee9bd23
|
4
|
+
data.tar.gz: 9c894a35ad4ce4c20c43b46c86356f48e120b4225cac21eaa1aeb85b51fd7321
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a40e2a35229635fdc1cf4e24ac76ed5f930da966dd51fcd68365defd392b5dff1a973470b6e8e3d3ab1dd33999ad4651f396dab9060f15e8771484062bfe634
|
7
|
+
data.tar.gz: ef24a12f502f9025ebbd74c05dd970ef9f69beeb33117067fe61acc7ad6fe5d4f0741f607a7bc53ddce6970f77e626b5e096dfc9d44a2170e95de7ffeed928b2
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudidentityV1beta1
|
18
18
|
# Version of the google-apis-cloudidentity_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250916"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -745,16 +745,19 @@ module Google
|
|
745
745
|
# provided, only DeviceUsers having all of these properties are considered as
|
746
746
|
# matches - i.e. the query behaves like an AND. Different platforms require
|
747
747
|
# different amounts of information from the caller to ensure that the DeviceUser
|
748
|
-
# is uniquely identified. - iOS:
|
749
|
-
#
|
750
|
-
# Specifying the '
|
751
|
-
# raw_resource_id' field is required.
|
748
|
+
# is uniquely identified. - iOS: Specifying the 'partner' and 'ios_device_id'
|
749
|
+
# fields is required. - Android: Specifying the 'android_id' field is required. -
|
750
|
+
# Desktop: Specifying the 'raw_resource_id' field is required.
|
752
751
|
# @param [String] parent
|
753
752
|
# Must be set to "devices/-/deviceUsers" to search across all DeviceUser
|
754
753
|
# belonging to the user.
|
755
754
|
# @param [String] android_id
|
756
755
|
# Android Id returned by [Settings.Secure#ANDROID_ID](https://developer.android.
|
757
756
|
# com/reference/android/provider/Settings.Secure.html#ANDROID_ID).
|
757
|
+
# @param [String] ios_device_id
|
758
|
+
# Optional. The partner-specified device identifier assigned to the iOS device
|
759
|
+
# that initiated the Lookup API call. This string must match the value of the
|
760
|
+
# iosDeviceId key in the app config dictionary provided to Google Workspace apps.
|
758
761
|
# @param [Fixnum] page_size
|
759
762
|
# The maximum number of DeviceUsers to return. If unspecified, at most 20
|
760
763
|
# DeviceUsers will be returned. The maximum value is 20; values above 20 will be
|
@@ -764,6 +767,10 @@ module Google
|
|
764
767
|
# to retrieve the subsequent page. When paginating, all other parameters
|
765
768
|
# provided to `LookupDeviceUsers` must match the call that provided the page
|
766
769
|
# token.
|
770
|
+
# @param [String] partner
|
771
|
+
# Optional. The partner ID of the calling iOS app. This string must match the
|
772
|
+
# value of the partner key within the app configuration dictionary provided to
|
773
|
+
# Google Workspace apps.
|
767
774
|
# @param [String] raw_resource_id
|
768
775
|
# Raw Resource Id used by Google Endpoint Verification. If the user is enrolled
|
769
776
|
# into Google Endpoint Verification, this id will be saved as the '
|
@@ -791,14 +798,16 @@ module Google
|
|
791
798
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
792
799
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
793
800
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
794
|
-
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)
|
801
|
+
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)
|
795
802
|
command = make_simple_command(:get, 'v1beta1/{+parent}:lookup', options)
|
796
803
|
command.response_representation = Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse::Representation
|
797
804
|
command.response_class = Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse
|
798
805
|
command.params['parent'] = parent unless parent.nil?
|
799
806
|
command.query['androidId'] = android_id unless android_id.nil?
|
807
|
+
command.query['iosDeviceId'] = ios_device_id unless ios_device_id.nil?
|
800
808
|
command.query['pageSize'] = page_size unless page_size.nil?
|
801
809
|
command.query['pageToken'] = page_token unless page_token.nil?
|
810
|
+
command.query['partner'] = partner unless partner.nil?
|
802
811
|
command.query['rawResourceId'] = raw_resource_id unless raw_resource_id.nil?
|
803
812
|
command.query['userId'] = user_id unless user_id.nil?
|
804
813
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudidentity_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.56.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|