google-apis-serviceconsumermanagement_v1beta1 0.46.0 → 0.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17def12fbd871db7fc39decd03a20eec28e2035dd0556ac02c49f0f74764b287
4
- data.tar.gz: 1325ec7631fae020fb2e9cd9bdaa7480c945a6dd740710c8ac4d2fea9928fc8c
3
+ metadata.gz: d1306127c4f98864e60fdf65b0bd05b94857396f606777842d62f457d6c1eb8a
4
+ data.tar.gz: 69663f9e9650001817191387041eb7b106033419dec71f09cd08e4b424b7b896
5
5
  SHA512:
6
- metadata.gz: 12fbb81c413492ddae9bc6f8410b9b7c6ed0d707bcfc893f43b84141f2d1495bec79cf5ae37a7eaa45036dcf9cf0118ba55a097fdf9c7b0293ac99a5f548d25f
7
- data.tar.gz: a4aa799cd4bf668a0a6e5563c59e519a7e29d3a4c5e0ec7437e86590ed75327feb2c2f648f6cb5760de38e4690f13d802153d6d3608c0f2342d048eb8584f3ee
6
+ metadata.gz: 5aa29531363d718282a8f7c50ae3310c36fa258f0b1c63fcac338ecf738be9f74d0a8d23623d2ce1e0921c84000e0812735e6ed1d8363f3d531beeb540cb6a3f
7
+ data.tar.gz: b9366975970c45c21a3b35c0b175564805ac2fc12572552c3a08b5e05ecfbb3b8d147b1304a490c215b4744277ca372045ae9a738267aadbdfc28ebf246676d3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.48.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240414
6
+
7
+ ### v0.47.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240317
10
+
3
11
  ### v0.46.0 (2024-02-24)
4
12
 
5
13
  * Regenerated using generator version 0.14.0
@@ -1908,7 +1908,9 @@ module Google
1908
1908
  attr_accessor :long_running
1909
1909
 
1910
1910
  # The fully qualified name of the method, for which the options below apply.
1911
- # This is used to find the method to apply the options.
1911
+ # This is used to find the method to apply the options. Example: publishing:
1912
+ # method_settings: - selector: google.storage.control.v2.StorageControl.
1913
+ # CreateFolder # method settings for CreateFolder...
1912
1914
  # Corresponds to the JSON property `selector`
1913
1915
  # @return [String]
1914
1916
  attr_accessor :selector
@@ -3674,7 +3676,9 @@ module Google
3674
3676
 
3675
3677
  # Whether to force the creation of the quota overrides. Setting the force
3676
3678
  # parameter to 'true' ignores all quota safety checks that would fail the
3677
- # request. QuotaSafetyCheck lists all such validations.
3679
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
3680
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
3681
+ # sending the request.
3678
3682
  # Corresponds to the JSON property `force`
3679
3683
  # @return [Boolean]
3680
3684
  attr_accessor :force
@@ -3683,7 +3687,9 @@ module Google
3683
3687
  # The list of quota safety checks to ignore before the override mutation. Unlike
3684
3688
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
3685
3689
  # ignores only the specified checks; other checks are still enforced. The 'force'
3686
- # and 'force_only' fields cannot both be set.
3690
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
3691
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
3692
+ # sending the request.
3687
3693
  # Corresponds to the JSON property `forceOnly`
3688
3694
  # @return [Array<String>]
3689
3695
  attr_accessor :force_only
@@ -3932,6 +3938,11 @@ module Google
3932
3938
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ProducerQuotaPolicy]
3933
3939
  attr_accessor :producer_quota_policy
3934
3940
 
3941
+ # [Output only] Rollout information of a quota.
3942
+ # Corresponds to the JSON property `rolloutInfo`
3943
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1RolloutInfo]
3944
+ attr_accessor :rollout_info
3945
+
3935
3946
  def initialize(**args)
3936
3947
  update!(**args)
3937
3948
  end
@@ -3945,6 +3956,7 @@ module Google
3945
3956
  @effective_limit = args[:effective_limit] if args.key?(:effective_limit)
3946
3957
  @producer_override = args[:producer_override] if args.key?(:producer_override)
3947
3958
  @producer_quota_policy = args[:producer_quota_policy] if args.key?(:producer_quota_policy)
3959
+ @rollout_info = args[:rollout_info] if args.key?(:rollout_info)
3948
3960
  end
3949
3961
  end
3950
3962
 
@@ -4033,6 +4045,26 @@ module Google
4033
4045
  end
4034
4046
  end
4035
4047
 
4048
+ # [Output only] Rollout information of a quota.
4049
+ class V1Beta1RolloutInfo
4050
+ include Google::Apis::Core::Hashable
4051
+
4052
+ # Whether there is an ongoing rollout for the default limit or not.
4053
+ # Corresponds to the JSON property `defaultLimitOngoingRollout`
4054
+ # @return [Boolean]
4055
+ attr_accessor :default_limit_ongoing_rollout
4056
+ alias_method :default_limit_ongoing_rollout?, :default_limit_ongoing_rollout
4057
+
4058
+ def initialize(**args)
4059
+ update!(**args)
4060
+ end
4061
+
4062
+ # Update properties of this object
4063
+ def update!(**args)
4064
+ @default_limit_ongoing_rollout = args[:default_limit_ongoing_rollout] if args.key?(:default_limit_ongoing_rollout)
4065
+ end
4066
+ end
4067
+
4036
4068
  # A service identity in the Identity and Access Management API.
4037
4069
  class V1Beta1ServiceIdentity
4038
4070
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1beta1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1beta1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240102"
25
+ REVISION = "20240414"
26
26
  end
27
27
  end
28
28
  end
@@ -526,6 +526,12 @@ module Google
526
526
  include Google::Apis::Core::JsonObjectSupport
527
527
  end
528
528
 
529
+ class V1Beta1RolloutInfo
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
529
535
  class V1Beta1ServiceIdentity
530
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
537
 
@@ -1486,6 +1492,8 @@ module Google
1486
1492
 
1487
1493
  property :producer_quota_policy, as: 'producerQuotaPolicy', class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ProducerQuotaPolicy, decorator: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ProducerQuotaPolicy::Representation
1488
1494
 
1495
+ property :rollout_info, as: 'rolloutInfo', class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1RolloutInfo, decorator: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1RolloutInfo::Representation
1496
+
1489
1497
  end
1490
1498
  end
1491
1499
 
@@ -1507,6 +1515,13 @@ module Google
1507
1515
  end
1508
1516
  end
1509
1517
 
1518
+ class V1Beta1RolloutInfo
1519
+ # @private
1520
+ class Representation < Google::Apis::Core::JsonRepresentation
1521
+ property :default_limit_ongoing_rollout, as: 'defaultLimitOngoingRollout'
1522
+ end
1523
+ end
1524
+
1510
1525
  class V1Beta1ServiceIdentity
1511
1526
  # @private
1512
1527
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -249,12 +249,16 @@ module Google
249
249
  # @param [Boolean] force
250
250
  # Whether to force the creation of the quota override. Setting the force
251
251
  # parameter to 'true' ignores all quota safety checks that would fail the
252
- # request. QuotaSafetyCheck lists all such validations.
252
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
253
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
254
+ # sending the request.
253
255
  # @param [Array<String>, String] force_only
254
256
  # The list of quota safety checks to ignore before the override mutation. Unlike
255
257
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
256
258
  # ignores only the specified checks; other checks are still enforced. The 'force'
257
- # and 'force_only' fields cannot both be set.
259
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
260
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
261
+ # sending the request.
258
262
  # @param [String] fields
259
263
  # Selector specifying which fields to include in a partial response.
260
264
  # @param [String] quota_user
@@ -294,12 +298,16 @@ module Google
294
298
  # @param [Boolean] force
295
299
  # Whether to force the deletion of the quota override. Setting the force
296
300
  # parameter to 'true' ignores all quota safety checks that would fail the
297
- # request. QuotaSafetyCheck lists all such validations.
301
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
302
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
303
+ # sending the request.
298
304
  # @param [Array<String>, String] force_only
299
305
  # The list of quota safety checks to ignore before the override mutation. Unlike
300
306
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
301
307
  # ignores only the specified checks; other checks are still enforced. The 'force'
302
- # and 'force_only' fields cannot both be set.
308
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
309
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
310
+ # sending the request.
303
311
  # @param [String] fields
304
312
  # Selector specifying which fields to include in a partial response.
305
313
  # @param [String] quota_user
@@ -377,12 +385,16 @@ module Google
377
385
  # @param [Boolean] force
378
386
  # Whether to force the update of the quota override. Setting the force parameter
379
387
  # to 'true' ignores all quota safety checks that would fail the request.
380
- # QuotaSafetyCheck lists all such validations.
388
+ # QuotaSafetyCheck lists all such validations. If force is set to true, it is
389
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
390
+ # sending the request.
381
391
  # @param [Array<String>, String] force_only
382
392
  # The list of quota safety checks to ignore before the override mutation. Unlike
383
393
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
384
394
  # ignores only the specified checks; other checks are still enforced. The 'force'
385
- # and 'force_only' fields cannot both be set.
395
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
396
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
397
+ # sending the request.
386
398
  # @param [String] update_mask
387
399
  # Update only the specified fields. If unset, all modifiable fields will be
388
400
  # updated.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceconsumermanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.48.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []