google-apis-cloudidentity_v1beta1 0.57.0 → 0.58.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: 20ab0f1c65f6800d4aa0abd659da02664afc175b3d6805e728c0a27b022f1b45
|
|
4
|
+
data.tar.gz: 0c260d8ea0a82add0faa1dd2c4b10c271f2dc41732040e36890d753dc91199b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80075840de7150704dc44f66f007802c0a45b64b0ab574dabff71e36f7bbdb89a6a801a168a1da5c627fc40a3b193d6ca4ddfff4126a00c45c5e660011026250
|
|
7
|
+
data.tar.gz: f146e952e5de680473bb2e5bcdc5190fd078103aee8b5cdb633c5863424653c89e726af26e6949125f64061b299f119a69c752e578a8e4d29d14370e697cda36
|
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.58.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 = "20251027"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2592,6 +2592,66 @@ module Google
|
|
|
2592
2592
|
execute_or_queue_command(command, &block)
|
|
2593
2593
|
end
|
|
2594
2594
|
|
|
2595
|
+
# Create a policy.
|
|
2596
|
+
# @param [Google::Apis::CloudidentityV1beta1::Policy] policy_object
|
|
2597
|
+
# @param [String] fields
|
|
2598
|
+
# Selector specifying which fields to include in a partial response.
|
|
2599
|
+
# @param [String] quota_user
|
|
2600
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2601
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2602
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2603
|
+
# Request-specific options
|
|
2604
|
+
#
|
|
2605
|
+
# @yield [result, err] Result & error if block supplied
|
|
2606
|
+
# @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
|
|
2607
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2608
|
+
#
|
|
2609
|
+
# @return [Google::Apis::CloudidentityV1beta1::Operation]
|
|
2610
|
+
#
|
|
2611
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2612
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2613
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2614
|
+
def create_policy(policy_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2615
|
+
command = make_simple_command(:post, 'v1beta1/policies', options)
|
|
2616
|
+
command.request_representation = Google::Apis::CloudidentityV1beta1::Policy::Representation
|
|
2617
|
+
command.request_object = policy_object
|
|
2618
|
+
command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
|
|
2619
|
+
command.response_class = Google::Apis::CloudidentityV1beta1::Operation
|
|
2620
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2621
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2622
|
+
execute_or_queue_command(command, &block)
|
|
2623
|
+
end
|
|
2624
|
+
|
|
2625
|
+
# Delete a policy.
|
|
2626
|
+
# @param [String] name
|
|
2627
|
+
# Required. The name of the policy to retrieve. Format: "policies/`policy`".
|
|
2628
|
+
# @param [String] fields
|
|
2629
|
+
# Selector specifying which fields to include in a partial response.
|
|
2630
|
+
# @param [String] quota_user
|
|
2631
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2632
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2633
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2634
|
+
# Request-specific options
|
|
2635
|
+
#
|
|
2636
|
+
# @yield [result, err] Result & error if block supplied
|
|
2637
|
+
# @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
|
|
2638
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2639
|
+
#
|
|
2640
|
+
# @return [Google::Apis::CloudidentityV1beta1::Operation]
|
|
2641
|
+
#
|
|
2642
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2643
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2644
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2645
|
+
def delete_policy(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
2646
|
+
command = make_simple_command(:delete, 'v1beta1/{+name}', options)
|
|
2647
|
+
command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
|
|
2648
|
+
command.response_class = Google::Apis::CloudidentityV1beta1::Operation
|
|
2649
|
+
command.params['name'] = name unless name.nil?
|
|
2650
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2651
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2652
|
+
execute_or_queue_command(command, &block)
|
|
2653
|
+
end
|
|
2654
|
+
|
|
2595
2655
|
# Get a policy.
|
|
2596
2656
|
# @param [String] name
|
|
2597
2657
|
# Required. The name of the policy to retrieve. Format: "policies/`policy`".
|
|
@@ -2674,6 +2734,40 @@ module Google
|
|
|
2674
2734
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2675
2735
|
execute_or_queue_command(command, &block)
|
|
2676
2736
|
end
|
|
2737
|
+
|
|
2738
|
+
# Update a policy.
|
|
2739
|
+
# @param [String] name
|
|
2740
|
+
# Output only. Identifier. The [resource name](https://cloud.google.com/apis/
|
|
2741
|
+
# design/resource_names) of the Policy. Format: policies/`policy`.
|
|
2742
|
+
# @param [Google::Apis::CloudidentityV1beta1::Policy] policy_object
|
|
2743
|
+
# @param [String] fields
|
|
2744
|
+
# Selector specifying which fields to include in a partial response.
|
|
2745
|
+
# @param [String] quota_user
|
|
2746
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2747
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2748
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2749
|
+
# Request-specific options
|
|
2750
|
+
#
|
|
2751
|
+
# @yield [result, err] Result & error if block supplied
|
|
2752
|
+
# @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
|
|
2753
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2754
|
+
#
|
|
2755
|
+
# @return [Google::Apis::CloudidentityV1beta1::Operation]
|
|
2756
|
+
#
|
|
2757
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2758
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2759
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2760
|
+
def patch_policy(name, policy_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2761
|
+
command = make_simple_command(:patch, 'v1beta1/{+name}', options)
|
|
2762
|
+
command.request_representation = Google::Apis::CloudidentityV1beta1::Policy::Representation
|
|
2763
|
+
command.request_object = policy_object
|
|
2764
|
+
command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
|
|
2765
|
+
command.response_class = Google::Apis::CloudidentityV1beta1::Operation
|
|
2766
|
+
command.params['name'] = name unless name.nil?
|
|
2767
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2768
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2769
|
+
execute_or_queue_command(command, &block)
|
|
2770
|
+
end
|
|
2677
2771
|
|
|
2678
2772
|
protected
|
|
2679
2773
|
|
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.58.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.58.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:
|