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: d77bdffb3c1bf123a1ad1c8f1dbcd695dbe676a202a488298233e72d78eaa9ef
4
- data.tar.gz: 8cc47f667947b2691a1c01662d613a667e6e8037f586b711c527c10bd5892716
3
+ metadata.gz: 109980802e4dbeb4becff80f8ff68f6522e207fdbf1440306fc9a7644ee9bd23
4
+ data.tar.gz: 9c894a35ad4ce4c20c43b46c86356f48e120b4225cac21eaa1aeb85b51fd7321
5
5
  SHA512:
6
- metadata.gz: de0596474ba58dbabdde69a39d68d3b14c4e26fa05574cbea6d4fbc7463aa40e32beee71b6fa63f008c363281850d1ae98a5860686a65295081235477131e10a
7
- data.tar.gz: 2820320bd333f3f5bfb75bf3fa2b0f29c85484c7803b6f9faf6331fc773b2ca2f3a7cff7365cee8c7ed50df4f5981189f58406943ee13f30010793bfd985fefd
6
+ metadata.gz: 8a40e2a35229635fdc1cf4e24ac76ed5f930da966dd51fcd68365defd392b5dff1a973470b6e8e3d3ab1dd33999ad4651f396dab9060f15e8771484062bfe634
7
+ data.tar.gz: ef24a12f502f9025ebbd74c05dd970ef9f69beeb33117067fe61acc7ad6fe5d4f0741f607a7bc53ddce6970f77e626b5e096dfc9d44a2170e95de7ffeed928b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.56.0 (2025-09-21)
4
+
5
+ * Regenerated from discovery document revision 20250916
6
+
3
7
  ### v0.55.0 (2025-08-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20250805
@@ -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.55.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 = "20250805"
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: No properties need to be passed, the caller's
749
- # credentials are sufficient to identify the corresponding DeviceUser. - Android:
750
- # Specifying the 'android_id' field is required. - Desktop: 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.55.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.55.0
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: