google-apis-serviceconsumermanagement_v1beta1 0.47.0 → 0.49.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: 9129fce60b9021050a1763dc92540cf0c4df2aa44e933c7304364d0e1fc1e545
4
- data.tar.gz: 97ff907ce0c1d7d4173bc23bb193d60f2c78cffadafe3cb15a1a50fc36a538a6
3
+ metadata.gz: 4501723f56df29a09a9d822fe8c1cd0ccb3b96500c988eb5c33cd835f408569b
4
+ data.tar.gz: bb1b03318dc672c64fc015fa67dab8545302a5a44a4d0b81760bfc6ba01a92d2
5
5
  SHA512:
6
- metadata.gz: 437672332b395c4755718ed898b2cdb9bf90f9dcff3b5338f12cbbdf50b8a16cc920627ac94b82e0943e3b24b737dac5179d527007c995c315b2b0140b0ac76b
7
- data.tar.gz: 352191b8b29698bae374ae4613122c42a05d9adeac0c48632f9df9cbbacd15cbe161f5a57abba94db5b5f800b77462e864946d152f00fa58d69dbc32190bda4d
6
+ metadata.gz: 63cdb8c972520ca6aa6f73afcffb11b6794997a2344e2908b398d259a40dbdb9c9c27225be3f789b6cbb15e06f8b30cf795e37ca238ea0aef9becbaa4d8f5ef8
7
+ data.tar.gz: 6183535ba88218849b06bc70b593e184cb0a8772d38ab1c1b8e63b388b73c4e22df81e44cda2f5c4760ab2d9e3a98592f2d3d24b573e36b4838f0b5a1d7aee05
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.49.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240429
6
+
7
+ ### v0.48.0 (2024-04-21)
8
+
9
+ * Regenerated from discovery document revision 20240414
10
+
3
11
  ### v0.47.0 (2024-03-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240317
@@ -1023,9 +1023,9 @@ module Google
1023
1023
  class Endpoint
1024
1024
  include Google::Apis::Core::Hashable
1025
1025
 
1026
- # Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
1027
- # Instead of using aliases, please specify multiple google.api.Endpoint for each
1028
- # of the intended aliases. Additional names that this endpoint will be hosted on.
1026
+ # Aliases for this endpoint, these will be served by the same UrlMap as the
1027
+ # parent endpoint, and will be provisioned in the GCP stack for the Regional
1028
+ # Endpoints.
1029
1029
  # Corresponds to the JSON property `aliases`
1030
1030
  # @return [Array<String>]
1031
1031
  attr_accessor :aliases
@@ -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
@@ -3936,6 +3938,11 @@ module Google
3936
3938
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ProducerQuotaPolicy]
3937
3939
  attr_accessor :producer_quota_policy
3938
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
+
3939
3946
  def initialize(**args)
3940
3947
  update!(**args)
3941
3948
  end
@@ -3949,6 +3956,7 @@ module Google
3949
3956
  @effective_limit = args[:effective_limit] if args.key?(:effective_limit)
3950
3957
  @producer_override = args[:producer_override] if args.key?(:producer_override)
3951
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)
3952
3960
  end
3953
3961
  end
3954
3962
 
@@ -4037,6 +4045,26 @@ module Google
4037
4045
  end
4038
4046
  end
4039
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
+
4040
4068
  # A service identity in the Identity and Access Management API.
4041
4069
  class V1Beta1ServiceIdentity
4042
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.47.0"
19
+ GEM_VERSION = "0.49.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 = "20240317"
25
+ REVISION = "20240429"
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
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.47.0
4
+ version: 0.49.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-03-24 00:00:00.000000000 Z
11
+ date: 2024-05-05 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.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.49.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: []