google-apis-serviceusage_v1beta1 0.52.0 → 0.54.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: ad6bf1293459c632c6815b9ed3c10a89a2542218cbf3da5ef0509637a4f803d4
4
- data.tar.gz: 40d510c346153dabe38754ed8607cfb34419c9b3b8367d37881bcb91965957e7
3
+ metadata.gz: 53e58d6436301d432cefd27b8c8701345de0050f5c2b5133245ed6a1cb355882
4
+ data.tar.gz: f6424cbc4b74a83b93f1504cdd0103b0bbc96e914ecf45c0b77cd841d06f2ca5
5
5
  SHA512:
6
- metadata.gz: f632b4f63f07426cd556e5d454c7584a4f58ff8299cb5f125779df23136d15844de7e0b9452c400f97bb2c4a0da950467ad58be56185d1c3385a2a8fbd4a9659
7
- data.tar.gz: b4cb5f91cd0697b63867ad6885c7fe817f29d17ccdb6f7d293320ba62034e2f09f69b08c29fa9b6deae7bb67ab8d1a4fc03febc7f1585f2d365038dc640051da
6
+ metadata.gz: 432ca2adc83a77b5a4eb7ca68381c8b9506af5a90045847a267e96f0ee87455c6e9e134147ea77d7996533f8eecc1e66afe45f5abd667ac7e405782cc21f7983
7
+ data.tar.gz: de47b2b1f72bee042415580bb5643787f1a246d3ba6c0e62b63a42d4d3c063112c49ba88fbff831489029f1238e17eb149ed69ad11e2b51fdc54457adec4d2f9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.54.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240317
6
+
7
+ ### v0.53.0 (2024-03-10)
8
+
9
+ * Regenerated from discovery document revision 20240303
10
+
3
11
  ### v0.52.0 (2024-02-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240220
@@ -2808,7 +2808,9 @@ module Google
2808
2808
 
2809
2809
  # Whether to force the creation of the quota overrides. Setting the force
2810
2810
  # parameter to 'true' ignores all quota safety checks that would fail the
2811
- # request. QuotaSafetyCheck lists all such validations.
2811
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
2812
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
2813
+ # sending the request.
2812
2814
  # Corresponds to the JSON property `force`
2813
2815
  # @return [Boolean]
2814
2816
  attr_accessor :force
@@ -2817,7 +2819,9 @@ module Google
2817
2819
  # The list of quota safety checks to ignore before the override mutation. Unlike
2818
2820
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
2819
2821
  # ignores only the specified checks; other checks are still enforced. The 'force'
2820
- # and 'force_only' fields cannot both be set.
2822
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
2823
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
2824
+ # sending the request.
2821
2825
  # Corresponds to the JSON property `forceOnly`
2822
2826
  # @return [Array<String>]
2823
2827
  attr_accessor :force_only
@@ -2913,7 +2917,9 @@ module Google
2913
2917
 
2914
2918
  # Whether to force the creation of the quota overrides. Setting the force
2915
2919
  # parameter to 'true' ignores all quota safety checks that would fail the
2916
- # request. QuotaSafetyCheck lists all such validations.
2920
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
2921
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
2922
+ # sending the request.
2917
2923
  # Corresponds to the JSON property `force`
2918
2924
  # @return [Boolean]
2919
2925
  attr_accessor :force
@@ -2922,7 +2928,9 @@ module Google
2922
2928
  # The list of quota safety checks to ignore before the override mutation. Unlike
2923
2929
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
2924
2930
  # ignores only the specified checks; other checks are still enforced. The 'force'
2925
- # and 'force_only' fields cannot both be set.
2931
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
2932
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
2933
+ # sending the request.
2926
2934
  # Corresponds to the JSON property `forceOnly`
2927
2935
  # @return [Array<String>]
2928
2936
  attr_accessor :force_only
@@ -4420,6 +4428,11 @@ module Google
4420
4428
  # @return [Google::Apis::ServiceusageV1beta1::ProducerQuotaPolicy]
4421
4429
  attr_accessor :producer_quota_policy
4422
4430
 
4431
+ # [Output only] Rollout information of a quota.
4432
+ # Corresponds to the JSON property `rolloutInfo`
4433
+ # @return [Google::Apis::ServiceusageV1beta1::RolloutInfo]
4434
+ attr_accessor :rollout_info
4435
+
4423
4436
  def initialize(**args)
4424
4437
  update!(**args)
4425
4438
  end
@@ -4433,6 +4446,7 @@ module Google
4433
4446
  @effective_limit = args[:effective_limit] if args.key?(:effective_limit)
4434
4447
  @producer_override = args[:producer_override] if args.key?(:producer_override)
4435
4448
  @producer_quota_policy = args[:producer_quota_policy] if args.key?(:producer_quota_policy)
4449
+ @rollout_info = args[:rollout_info] if args.key?(:rollout_info)
4436
4450
  end
4437
4451
  end
4438
4452
 
@@ -4658,6 +4672,26 @@ module Google
4658
4672
  end
4659
4673
  end
4660
4674
 
4675
+ # [Output only] Rollout information of a quota.
4676
+ class RolloutInfo
4677
+ include Google::Apis::Core::Hashable
4678
+
4679
+ # Whether there is an ongoing rollout for the default limit or not.
4680
+ # Corresponds to the JSON property `defaultLimitOngoingRollout`
4681
+ # @return [Boolean]
4682
+ attr_accessor :default_limit_ongoing_rollout
4683
+ alias_method :default_limit_ongoing_rollout?, :default_limit_ongoing_rollout
4684
+
4685
+ def initialize(**args)
4686
+ update!(**args)
4687
+ end
4688
+
4689
+ # Update properties of this object
4690
+ def update!(**args)
4691
+ @default_limit_ongoing_rollout = args[:default_limit_ongoing_rollout] if args.key?(:default_limit_ongoing_rollout)
4692
+ end
4693
+ end
4694
+
4661
4695
  # Settings for Ruby client libraries.
4662
4696
  class RubySettings
4663
4697
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1beta1
18
18
  # Version of the google-apis-serviceusage_v1beta1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.54.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 = "20240220"
25
+ REVISION = "20240317"
26
26
  end
27
27
  end
28
28
  end
@@ -658,6 +658,12 @@ module Google
658
658
  include Google::Apis::Core::JsonObjectSupport
659
659
  end
660
660
 
661
+ class RolloutInfo
662
+ class Representation < Google::Apis::Core::JsonRepresentation; end
663
+
664
+ include Google::Apis::Core::JsonObjectSupport
665
+ end
666
+
661
667
  class RubySettings
662
668
  class Representation < Google::Apis::Core::JsonRepresentation; end
663
669
 
@@ -1812,6 +1818,8 @@ module Google
1812
1818
 
1813
1819
  property :producer_quota_policy, as: 'producerQuotaPolicy', class: Google::Apis::ServiceusageV1beta1::ProducerQuotaPolicy, decorator: Google::Apis::ServiceusageV1beta1::ProducerQuotaPolicy::Representation
1814
1820
 
1821
+ property :rollout_info, as: 'rolloutInfo', class: Google::Apis::ServiceusageV1beta1::RolloutInfo, decorator: Google::Apis::ServiceusageV1beta1::RolloutInfo::Representation
1822
+
1815
1823
  end
1816
1824
  end
1817
1825
 
@@ -1857,6 +1865,13 @@ module Google
1857
1865
  end
1858
1866
  end
1859
1867
 
1868
+ class RolloutInfo
1869
+ # @private
1870
+ class Representation < Google::Apis::Core::JsonRepresentation
1871
+ property :default_limit_ongoing_rollout, as: 'defaultLimitOngoingRollout'
1872
+ end
1873
+ end
1874
+
1860
1875
  class RubySettings
1861
1876
  # @private
1862
1877
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -557,12 +557,16 @@ module Google
557
557
  # @param [Boolean] force
558
558
  # Whether to force the creation of the quota override. Setting the force
559
559
  # parameter to 'true' ignores all quota safety checks that would fail the
560
- # request. QuotaSafetyCheck lists all such validations.
560
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
561
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
562
+ # sending the request.
561
563
  # @param [Array<String>, String] force_only
562
564
  # The list of quota safety checks to ignore before the override mutation. Unlike
563
565
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
564
566
  # ignores only the specified checks; other checks are still enforced. The 'force'
565
- # and 'force_only' fields cannot both be set.
567
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
568
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
569
+ # sending the request.
566
570
  # @param [String] fields
567
571
  # Selector specifying which fields to include in a partial response.
568
572
  # @param [String] quota_user
@@ -602,12 +606,16 @@ module Google
602
606
  # @param [Boolean] force
603
607
  # Whether to force the deletion of the quota override. Setting the force
604
608
  # parameter to 'true' ignores all quota safety checks that would fail the
605
- # request. QuotaSafetyCheck lists all such validations.
609
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
610
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
611
+ # sending the request.
606
612
  # @param [Array<String>, String] force_only
607
613
  # The list of quota safety checks to ignore before the override mutation. Unlike
608
614
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
609
615
  # ignores only the specified checks; other checks are still enforced. The 'force'
610
- # and 'force_only' fields cannot both be set.
616
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
617
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
618
+ # sending the request.
611
619
  # @param [String] fields
612
620
  # Selector specifying which fields to include in a partial response.
613
621
  # @param [String] quota_user
@@ -685,12 +693,16 @@ module Google
685
693
  # @param [Boolean] force
686
694
  # Whether to force the update of the quota override. Setting the force parameter
687
695
  # to 'true' ignores all quota safety checks that would fail the request.
688
- # QuotaSafetyCheck lists all such validations.
696
+ # QuotaSafetyCheck lists all such validations. If force is set to true, it is
697
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
698
+ # sending the request.
689
699
  # @param [Array<String>, String] force_only
690
700
  # The list of quota safety checks to ignore before the override mutation. Unlike
691
701
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
692
702
  # ignores only the specified checks; other checks are still enforced. The 'force'
693
- # and 'force_only' fields cannot both be set.
703
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
704
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
705
+ # sending the request.
694
706
  # @param [String] update_mask
695
707
  # Update only the specified fields of the override. If unset, all fields will be
696
708
  # updated.
@@ -739,12 +751,16 @@ module Google
739
751
  # @param [Boolean] force
740
752
  # Whether to force the creation of the quota override. Setting the force
741
753
  # parameter to 'true' ignores all quota safety checks that would fail the
742
- # request. QuotaSafetyCheck lists all such validations.
754
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
755
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
756
+ # sending the request.
743
757
  # @param [Array<String>, String] force_only
744
758
  # The list of quota safety checks to ignore before the override mutation. Unlike
745
759
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
746
760
  # ignores only the specified checks; other checks are still enforced. The 'force'
747
- # and 'force_only' fields cannot both be set.
761
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
762
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
763
+ # sending the request.
748
764
  # @param [String] fields
749
765
  # Selector specifying which fields to include in a partial response.
750
766
  # @param [String] quota_user
@@ -784,12 +800,16 @@ module Google
784
800
  # @param [Boolean] force
785
801
  # Whether to force the deletion of the quota override. Setting the force
786
802
  # parameter to 'true' ignores all quota safety checks that would fail the
787
- # request. QuotaSafetyCheck lists all such validations.
803
+ # request. QuotaSafetyCheck lists all such validations. If force is set to true,
804
+ # it is recommended to include a case id in "X-Goog-Request-Reason" header when
805
+ # sending the request.
788
806
  # @param [Array<String>, String] force_only
789
807
  # The list of quota safety checks to ignore before the override mutation. Unlike
790
808
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
791
809
  # ignores only the specified checks; other checks are still enforced. The 'force'
792
- # and 'force_only' fields cannot both be set.
810
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
811
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
812
+ # sending the request.
793
813
  # @param [String] fields
794
814
  # Selector specifying which fields to include in a partial response.
795
815
  # @param [String] quota_user
@@ -867,12 +887,16 @@ module Google
867
887
  # @param [Boolean] force
868
888
  # Whether to force the update of the quota override. Setting the force parameter
869
889
  # to 'true' ignores all quota safety checks that would fail the request.
870
- # QuotaSafetyCheck lists all such validations.
890
+ # QuotaSafetyCheck lists all such validations. If force is set to true, it is
891
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
892
+ # sending the request.
871
893
  # @param [Array<String>, String] force_only
872
894
  # The list of quota safety checks to ignore before the override mutation. Unlike
873
895
  # 'force' field that ignores all the quota safety checks, the 'force_only' field
874
896
  # ignores only the specified checks; other checks are still enforced. The 'force'
875
- # and 'force_only' fields cannot both be set.
897
+ # and 'force_only' fields cannot both be set. If force_only is specified, it is
898
+ # recommended to include a case id in "X-Goog-Request-Reason" header when
899
+ # sending the request.
876
900
  # @param [String] update_mask
877
901
  # Update only the specified fields of the override. If unset, all fields will be
878
902
  # updated.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.54.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-03-24 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-serviceusage_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.54.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []