google-apis-cloudidentity_v1 0.56.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb6d6f3f62cd981f0b33a99ccdf6c8979282e41dff0cab1567b03f4b6ed5aff5
4
- data.tar.gz: a1a40e14dddca85dacd6351dd1b70b8c08bfc79a6cb7cf159fc15ea981403578
3
+ metadata.gz: a030c4da9bbee2ed65b429646d936228394872f41401d33b9f286b38bb7f3b9c
4
+ data.tar.gz: 1425fb4997a9dac3997db817f9dc0467fe7c7842dde1bb0eaef6b538c06d2c8a
5
5
  SHA512:
6
- metadata.gz: 7db12dea8c81dcc44442246f52b89b418150e43427fc927999cb0d8fc3bfccd625192a3f7d245e906d2534bf00767e1ca10fbf6fe09f59d460f9ec777c305f64
7
- data.tar.gz: 8209ff5cda585b912ed7bf6d423dd1362818948c66233f40e651562e8fc9f105fe87d649d18479ac624c2f86ab7729f05a9fff618ba1a5aa24e9c57e4f9a79f0
6
+ metadata.gz: 0ef472601ff8575fa320a2336c670d17c57b1fea4f3af2ff82550fb517f895ebf91eb1b90be2f47d0d17a5dec0d3dc1844370eb76055952b4926c94a1d37d1e7
7
+ data.tar.gz: e7d8ec5a6c3ee84915fb729c45e36d543617ec8c55a6d7e162a8fe43df9398e2216a7556aed1879b72595e6ebb6b6c752d5732e6b2ecc4ddece1f974b4c154fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.56.0 (2026-01-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20260113
@@ -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.56.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 = "20260113"
25
+ REVISION = "20260513"
26
26
  end
27
27
  end
28
28
  end
@@ -2569,6 +2569,66 @@ module Google
2569
2569
  execute_or_queue_command(command, &block)
2570
2570
  end
2571
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
+
2572
2632
  # Get a policy.
2573
2633
  # @param [String] name
2574
2634
  # Required. The name of the policy to retrieve. Format: `policies/`policy``.
@@ -2651,6 +2711,40 @@ module Google
2651
2711
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2652
2712
  execute_or_queue_command(command, &block)
2653
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
2654
2748
 
2655
2749
  protected
2656
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.56.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.56.0
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: