google-apis-cloudidentity_v1 0.55.0 → 0.57.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/cloudidentity_v1/gem_version.rb +2 -2
- data/lib/google/apis/cloudidentity_v1/service.rb +98 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a030c4da9bbee2ed65b429646d936228394872f41401d33b9f286b38bb7f3b9c
|
|
4
|
+
data.tar.gz: 1425fb4997a9dac3997db817f9dc0467fe7c7842dde1bb0eaef6b538c06d2c8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ef472601ff8575fa320a2336c670d17c57b1fea4f3af2ff82550fb517f895ebf91eb1b90be2f47d0d17a5dec0d3dc1844370eb76055952b4926c94a1d37d1e7
|
|
7
|
+
data.tar.gz: e7d8ec5a6c3ee84915fb729c45e36d543617ec8c55a6d7e162a8fe43df9398e2216a7556aed1879b72595e6ebb6b6c752d5732e6b2ecc4ddece1f974b4c154fb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudidentity_v1
|
|
2
2
|
|
|
3
|
+
### v0.57.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260513
|
|
6
|
+
|
|
7
|
+
### v0.56.0 (2026-01-18)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260113
|
|
10
|
+
|
|
3
11
|
### v0.55.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251208
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudidentityV1
|
|
18
18
|
# Version of the google-apis-cloudidentity_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.57.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 = "20260513"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -762,9 +762,10 @@ module Google
|
|
|
762
762
|
# provided, only DeviceUsers having all of these properties are considered as
|
|
763
763
|
# matches - i.e. the query behaves like an AND. Different platforms require
|
|
764
764
|
# different amounts of information from the caller to ensure that the DeviceUser
|
|
765
|
-
# is uniquely identified. - iOS:
|
|
766
|
-
#
|
|
767
|
-
# Desktop: Specifying the
|
|
765
|
+
# is uniquely identified. - iOS: If either the `partner` or `ios_device_id`
|
|
766
|
+
# field is provided, then both fields are required. - Android: Specifying the `
|
|
767
|
+
# android_id` field is required. - Desktop: Specifying the `raw_resource_id`
|
|
768
|
+
# field is required.
|
|
768
769
|
# @param [String] parent
|
|
769
770
|
# Must be set to "devices/-/deviceUsers" to search across all DeviceUser
|
|
770
771
|
# belonging to the user.
|
|
@@ -2568,6 +2569,66 @@ module Google
|
|
|
2568
2569
|
execute_or_queue_command(command, &block)
|
|
2569
2570
|
end
|
|
2570
2571
|
|
|
2572
|
+
# Create a policy.
|
|
2573
|
+
# @param [Google::Apis::CloudidentityV1::Policy] policy_object
|
|
2574
|
+
# @param [String] fields
|
|
2575
|
+
# Selector specifying which fields to include in a partial response.
|
|
2576
|
+
# @param [String] quota_user
|
|
2577
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2578
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2579
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2580
|
+
# Request-specific options
|
|
2581
|
+
#
|
|
2582
|
+
# @yield [result, err] Result & error if block supplied
|
|
2583
|
+
# @yieldparam result [Google::Apis::CloudidentityV1::Operation] parsed result object
|
|
2584
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2585
|
+
#
|
|
2586
|
+
# @return [Google::Apis::CloudidentityV1::Operation]
|
|
2587
|
+
#
|
|
2588
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2589
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2590
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2591
|
+
def create_policy(policy_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2592
|
+
command = make_simple_command(:post, 'v1/policies', options)
|
|
2593
|
+
command.request_representation = Google::Apis::CloudidentityV1::Policy::Representation
|
|
2594
|
+
command.request_object = policy_object
|
|
2595
|
+
command.response_representation = Google::Apis::CloudidentityV1::Operation::Representation
|
|
2596
|
+
command.response_class = Google::Apis::CloudidentityV1::Operation
|
|
2597
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2598
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2599
|
+
execute_or_queue_command(command, &block)
|
|
2600
|
+
end
|
|
2601
|
+
|
|
2602
|
+
# Delete a policy.
|
|
2603
|
+
# @param [String] name
|
|
2604
|
+
# Required. The name of the policy to delete. Format: `policies/`policy``.
|
|
2605
|
+
# @param [String] fields
|
|
2606
|
+
# Selector specifying which fields to include in a partial response.
|
|
2607
|
+
# @param [String] quota_user
|
|
2608
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2609
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2610
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2611
|
+
# Request-specific options
|
|
2612
|
+
#
|
|
2613
|
+
# @yield [result, err] Result & error if block supplied
|
|
2614
|
+
# @yieldparam result [Google::Apis::CloudidentityV1::Operation] parsed result object
|
|
2615
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2616
|
+
#
|
|
2617
|
+
# @return [Google::Apis::CloudidentityV1::Operation]
|
|
2618
|
+
#
|
|
2619
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2620
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2621
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2622
|
+
def delete_policy(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
2623
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
|
2624
|
+
command.response_representation = Google::Apis::CloudidentityV1::Operation::Representation
|
|
2625
|
+
command.response_class = Google::Apis::CloudidentityV1::Operation
|
|
2626
|
+
command.params['name'] = name unless name.nil?
|
|
2627
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2628
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2629
|
+
execute_or_queue_command(command, &block)
|
|
2630
|
+
end
|
|
2631
|
+
|
|
2571
2632
|
# Get a policy.
|
|
2572
2633
|
# @param [String] name
|
|
2573
2634
|
# Required. The name of the policy to retrieve. Format: `policies/`policy``.
|
|
@@ -2650,6 +2711,40 @@ module Google
|
|
|
2650
2711
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2651
2712
|
execute_or_queue_command(command, &block)
|
|
2652
2713
|
end
|
|
2714
|
+
|
|
2715
|
+
# Update a policy.
|
|
2716
|
+
# @param [String] name
|
|
2717
|
+
# Output only. Identifier. The [resource name](https://cloud.google.com/apis/
|
|
2718
|
+
# design/resource_names) of the Policy. Format: policies/`policy`.
|
|
2719
|
+
# @param [Google::Apis::CloudidentityV1::Policy] policy_object
|
|
2720
|
+
# @param [String] fields
|
|
2721
|
+
# Selector specifying which fields to include in a partial response.
|
|
2722
|
+
# @param [String] quota_user
|
|
2723
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2724
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2725
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2726
|
+
# Request-specific options
|
|
2727
|
+
#
|
|
2728
|
+
# @yield [result, err] Result & error if block supplied
|
|
2729
|
+
# @yieldparam result [Google::Apis::CloudidentityV1::Operation] parsed result object
|
|
2730
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2731
|
+
#
|
|
2732
|
+
# @return [Google::Apis::CloudidentityV1::Operation]
|
|
2733
|
+
#
|
|
2734
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2735
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2736
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2737
|
+
def patch_policy(name, policy_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2738
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
2739
|
+
command.request_representation = Google::Apis::CloudidentityV1::Policy::Representation
|
|
2740
|
+
command.request_object = policy_object
|
|
2741
|
+
command.response_representation = Google::Apis::CloudidentityV1::Operation::Representation
|
|
2742
|
+
command.response_class = Google::Apis::CloudidentityV1::Operation
|
|
2743
|
+
command.params['name'] = name unless name.nil?
|
|
2744
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2745
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2746
|
+
execute_or_queue_command(command, &block)
|
|
2747
|
+
end
|
|
2653
2748
|
|
|
2654
2749
|
protected
|
|
2655
2750
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudidentity_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.57.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.57.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|