google-apis-serviceconsumermanagement_v1beta1 0.51.0 → 0.53.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: bcb2a3e5f2d0803b3cc97ba1b985e5f282e9a1a289d1c6a90348cc680f67b691
4
- data.tar.gz: bec82414991d90b05570be19cfa1907a3488ac3694d36e610817e3ac1f2cd788
3
+ metadata.gz: 67d2631b4e6bec781454a192e9b848e2f8c5891efaeba7526e38009642af5d6f
4
+ data.tar.gz: a34f7007f3294bb12d4f0fa4d7c87faaf8d53d2051de3dfee23d8d86288f3da0
5
5
  SHA512:
6
- metadata.gz: 6c322440ba0f7a38f54bb503f5f7f66c0fb250cfa413aed3260f8fc8a42a7c49c264aec98923cfa99619b482b57388db1b9190710e08a29e641e50fb138d7590
7
- data.tar.gz: 2bcfbbc532ee866a9332b788f8b4333b62675d70af66a10f2d248e90df0bafce43c84816cf6cdb95996e9f3ede6ef7fc8d6fa5b5d84c5d0fa753e3e245e2de0d
6
+ metadata.gz: 2c3bcf9274262213ddb4352f07d7f6869108ad7dc1830b51431810f2d83e382d9493b4caf8537622cdca1aceda77d4b611c2b9b96a3e5f2325cea8fc8b19489a
7
+ data.tar.gz: 71479a70dee54d2210b45e4e27e8ccf3246533ca7d92572d759626da55be881dde6201573210a337a2ac725cbbf585de5ba38de506016ae369aec02e620e713b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.53.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241115
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.52.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240712
11
+
3
12
  ### v0.51.0 (2024-06-16)
4
13
 
5
14
  * Regenerated from discovery document revision 20240609
@@ -575,6 +575,12 @@ module Google
575
575
  # @return [String]
576
576
  attr_accessor :reference_docs_uri
577
577
 
578
+ # This message is used to configure the generation of a subset of the RPCs in a
579
+ # service for client libraries.
580
+ # Corresponds to the JSON property `selectiveGapicGeneration`
581
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::SelectiveGapicGeneration]
582
+ attr_accessor :selective_gapic_generation
583
+
578
584
  def initialize(**args)
579
585
  update!(**args)
580
586
  end
@@ -583,6 +589,7 @@ module Google
583
589
  def update!(**args)
584
590
  @destinations = args[:destinations] if args.key?(:destinations)
585
591
  @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
592
+ @selective_gapic_generation = args[:selective_gapic_generation] if args.key?(:selective_gapic_generation)
586
593
  end
587
594
  end
588
595
 
@@ -635,12 +642,14 @@ module Google
635
642
  # @return [Array<String>]
636
643
  attr_accessor :allowed_response_extensions
637
644
 
638
- # A list of full type names of provided contexts.
645
+ # A list of full type names of provided contexts. It is used to support
646
+ # propagating HTTP headers and ETags from the response extension.
639
647
  # Corresponds to the JSON property `provided`
640
648
  # @return [Array<String>]
641
649
  attr_accessor :provided
642
650
 
643
- # A list of full type names of requested contexts.
651
+ # A list of full type names of requested contexts, only the requested context
652
+ # will be made available to the backend.
644
653
  # Corresponds to the JSON property `requested`
645
654
  # @return [Array<String>]
646
655
  attr_accessor :requested
@@ -1147,6 +1156,39 @@ module Google
1147
1156
  end
1148
1157
  end
1149
1158
 
1159
+ # Experimental features to be included during client library generation. These
1160
+ # fields will be deprecated once the feature graduates and is enabled by default.
1161
+ class ExperimentalFeatures
1162
+ include Google::Apis::Core::Hashable
1163
+
1164
+ # Enables generation of protobuf code using new types that are more Pythonic
1165
+ # which are included in `protobuf>=5.29.x`. This feature will be enabled by
1166
+ # default 1 month after launching the feature in preview packages.
1167
+ # Corresponds to the JSON property `protobufPythonicTypesEnabled`
1168
+ # @return [Boolean]
1169
+ attr_accessor :protobuf_pythonic_types_enabled
1170
+ alias_method :protobuf_pythonic_types_enabled?, :protobuf_pythonic_types_enabled
1171
+
1172
+ # Enables generation of asynchronous REST clients if `rest` transport is enabled.
1173
+ # By default, asynchronous REST clients will not be generated. This feature
1174
+ # will be enabled by default 1 month after launching the feature in preview
1175
+ # packages.
1176
+ # Corresponds to the JSON property `restAsyncIoEnabled`
1177
+ # @return [Boolean]
1178
+ attr_accessor :rest_async_io_enabled
1179
+ alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1180
+
1181
+ def initialize(**args)
1182
+ update!(**args)
1183
+ end
1184
+
1185
+ # Update properties of this object
1186
+ def update!(**args)
1187
+ @protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
1188
+ @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1189
+ end
1190
+ end
1191
+
1150
1192
  # A single field of a message type.
1151
1193
  class Field
1152
1194
  include Google::Apis::Core::Hashable
@@ -1276,6 +1318,13 @@ module Google
1276
1318
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
1277
1319
  attr_accessor :common
1278
1320
 
1321
+ # Map of service names to renamed services. Keys are the package relative
1322
+ # service names and values are the name to be used for the service client and
1323
+ # call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
1324
+ # Corresponds to the JSON property `renamedServices`
1325
+ # @return [Hash<String,String>]
1326
+ attr_accessor :renamed_services
1327
+
1279
1328
  def initialize(**args)
1280
1329
  update!(**args)
1281
1330
  end
@@ -1283,6 +1332,7 @@ module Google
1283
1332
  # Update properties of this object
1284
1333
  def update!(**args)
1285
1334
  @common = args[:common] if args.key?(:common)
1335
+ @renamed_services = args[:renamed_services] if args.key?(:renamed_services)
1286
1336
  end
1287
1337
  end
1288
1338
 
@@ -1425,27 +1475,27 @@ module Google
1425
1475
  # effect as the proto annotation. This can be particularly useful if you have a
1426
1476
  # proto that is reused in multiple services. Note that any transcoding specified
1427
1477
  # in the service config will override any matching transcoding configuration in
1428
- # the proto. Example below selects a gRPC method and applies HttpRule to it.
1429
- # http: rules: - selector: example.v1.Messaging.GetMessage get: /v1/messages/`
1430
- # message_id`/`sub.subfield` Special notes When gRPC Transcoding is used to map
1431
- # a gRPC to JSON REST endpoints, the proto to JSON conversion must follow the [
1432
- # proto3 specification](https://developers.google.com/protocol-buffers/docs/
1433
- # proto3#json). While the single segment variable follows the semantics of [RFC
1434
- # 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
1435
- # Expansion, the multi segment variable **does not** follow RFC 6570 Section 3.2.
1436
- # 3 Reserved Expansion. The reason is that the Reserved Expansion does not
1437
- # expand special characters like `?` and `#`, which would lead to invalid URLs.
1438
- # As the result, gRPC Transcoding uses a custom encoding for multi segment
1439
- # variables. The path variables **must not** refer to any repeated or mapped
1440
- # field, because client libraries are not capable of handling such variable
1441
- # expansion. The path variables **must not** capture the leading "/" character.
1442
- # The reason is that the most common use case "`var`" does not capture the
1443
- # leading "/" character. For consistency, all path variables must share the same
1444
- # behavior. Repeated message fields must not be mapped to URL query parameters,
1445
- # because no client library can support such complicated mapping. If an API
1446
- # needs to use a JSON array for request or response body, it can map the request
1447
- # or response body to a repeated field. However, some gRPC Transcoding
1448
- # implementations may not support this feature.
1478
+ # the proto. The following example selects a gRPC method and applies an `
1479
+ # HttpRule` to it: http: rules: - selector: example.v1.Messaging.GetMessage get:
1480
+ # /v1/messages/`message_id`/`sub.subfield` Special notes When gRPC Transcoding
1481
+ # is used to map a gRPC to JSON REST endpoints, the proto to JSON conversion
1482
+ # must follow the [proto3 specification](https://developers.google.com/protocol-
1483
+ # buffers/docs/proto3#json). While the single segment variable follows the
1484
+ # semantics of [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2
1485
+ # Simple String Expansion, the multi segment variable **does not** follow RFC
1486
+ # 6570 Section 3.2.3 Reserved Expansion. The reason is that the Reserved
1487
+ # Expansion does not expand special characters like `?` and `#`, which would
1488
+ # lead to invalid URLs. As the result, gRPC Transcoding uses a custom encoding
1489
+ # for multi segment variables. The path variables **must not** refer to any
1490
+ # repeated or mapped field, because client libraries are not capable of handling
1491
+ # such variable expansion. The path variables **must not** capture the leading "/
1492
+ # " character. The reason is that the most common use case "`var`" does not
1493
+ # capture the leading "/" character. For consistency, all path variables must
1494
+ # share the same behavior. Repeated message fields must not be mapped to URL
1495
+ # query parameters, because no client library can support such complicated
1496
+ # mapping. If an API needs to use a JSON array for request or response body, it
1497
+ # can map the request or response body to a repeated field. However, some gRPC
1498
+ # Transcoding implementations may not support this feature.
1449
1499
  class HttpRule
1450
1500
  include Google::Apis::Core::Hashable
1451
1501
 
@@ -2093,6 +2143,11 @@ module Google
2093
2143
  # @return [String]
2094
2144
  attr_accessor :sample_period
2095
2145
 
2146
+ # The scope of the timeseries data of the metric.
2147
+ # Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
2148
+ # @return [Array<String>]
2149
+ attr_accessor :time_series_resource_hierarchy_level
2150
+
2096
2151
  def initialize(**args)
2097
2152
  update!(**args)
2098
2153
  end
@@ -2102,6 +2157,7 @@ module Google
2102
2157
  @ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
2103
2158
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
2104
2159
  @sample_period = args[:sample_period] if args.key?(:sample_period)
2160
+ @time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
2105
2161
  end
2106
2162
  end
2107
2163
 
@@ -2154,7 +2210,7 @@ module Google
2154
2210
  # AccessControl The mixin construct implies that all methods in `AccessControl`
2155
2211
  # are also declared with same name and request/response types in `Storage`. A
2156
2212
  # documentation generator or annotation processor will see the effective `
2157
- # Storage.GetAcl` method after inherting documentation and annotations as
2213
+ # Storage.GetAcl` method after inheriting documentation and annotations as
2158
2214
  # follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
2159
2215
  # GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
2160
2216
  # `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
@@ -2649,6 +2705,12 @@ module Google
2649
2705
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
2650
2706
  attr_accessor :common
2651
2707
 
2708
+ # Experimental features to be included during client library generation. These
2709
+ # fields will be deprecated once the feature graduates and is enabled by default.
2710
+ # Corresponds to the JSON property `experimentalFeatures`
2711
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::ExperimentalFeatures]
2712
+ attr_accessor :experimental_features
2713
+
2652
2714
  def initialize(**args)
2653
2715
  update!(**args)
2654
2716
  end
@@ -2656,6 +2718,7 @@ module Google
2656
2718
  # Update properties of this object
2657
2719
  def update!(**args)
2658
2720
  @common = args[:common] if args.key?(:common)
2721
+ @experimental_features = args[:experimental_features] if args.key?(:experimental_features)
2659
2722
  end
2660
2723
  end
2661
2724
 
@@ -2775,11 +2838,11 @@ module Google
2775
2838
  # @return [String]
2776
2839
  attr_accessor :name
2777
2840
 
2778
- # Specify the unit of the quota limit. It uses the same syntax as Metric.unit.
2779
- # The supported unit kinds are determined by the quota backend system. Here are
2780
- # some examples: * "1/min/`project`" for quota per minute per project. Note: the
2781
- # order of unit components is insignificant. The "1" at the beginning is
2782
- # required to follow the metric unit syntax.
2841
+ # Specify the unit of the quota limit. It uses the same syntax as
2842
+ # MetricDescriptor.unit. The supported unit kinds are determined by the quota
2843
+ # backend system. Here are some examples: * "1/min/`project`" for quota per
2844
+ # minute per project. Note: the order of unit components is insignificant. The "
2845
+ # 1" at the beginning is required to follow the metric unit syntax.
2783
2846
  # Corresponds to the JSON property `unit`
2784
2847
  # @return [String]
2785
2848
  attr_accessor :unit
@@ -2829,6 +2892,27 @@ module Google
2829
2892
  end
2830
2893
  end
2831
2894
 
2895
+ # This message is used to configure the generation of a subset of the RPCs in a
2896
+ # service for client libraries.
2897
+ class SelectiveGapicGeneration
2898
+ include Google::Apis::Core::Hashable
2899
+
2900
+ # An allowlist of the fully qualified names of RPCs that should be included on
2901
+ # public client surfaces.
2902
+ # Corresponds to the JSON property `methods`
2903
+ # @return [Array<String>]
2904
+ attr_accessor :methods_prop
2905
+
2906
+ def initialize(**args)
2907
+ update!(**args)
2908
+ end
2909
+
2910
+ # Update properties of this object
2911
+ def update!(**args)
2912
+ @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
2913
+ end
2914
+ end
2915
+
2832
2916
  # `Service` is the root object of Google API service configuration (service
2833
2917
  # config). It describes the basic information about a logical service, such as
2834
2918
  # the service name and the user-facing title, and delegates other aspects to sub-
@@ -3736,21 +3820,30 @@ module Google
3736
3820
  class V1Beta1ImportProducerQuotaPoliciesRequest
3737
3821
  include Google::Apis::Core::Hashable
3738
3822
 
3739
- # Whether to force the import of the quota policies. If the policy import would
3740
- # decrease the default limit of any consumer tier by more than 10 percent, the
3741
- # call is rejected, as a safety measure to avoid accidentally decreasing quota
3742
- # too quickly. Setting the force parameter to true ignores this restriction.
3823
+ # Whether quota policy can result in a decrease of effective limit. Don't allow
3824
+ # any decreases if force is not specified. If force is specified, then don't
3825
+ # allow any decreases below 120% of the 7d quota usage, or for cases where usage
3826
+ # cannot be examined (custom dimensions/ per user/per resource), only allow a 10%
3827
+ # decrease.
3743
3828
  # Corresponds to the JSON property `force`
3744
3829
  # @return [Boolean]
3745
3830
  attr_accessor :force
3746
3831
  alias_method :force?, :force
3747
3832
 
3748
- # If force option is set to true, force_justification is suggested to be set to
3749
- # log the reason in audit logs.
3833
+ # If force or force_skip_quota_usage_check option is set to true,
3834
+ # force_justification is suggested to be set to log the reason in audit logs.
3750
3835
  # Corresponds to the JSON property `forceJustification`
3751
3836
  # @return [String]
3752
3837
  attr_accessor :force_justification
3753
3838
 
3839
+ # If set to true, skip the quota usage check. This field is only used when the
3840
+ # effective limit can be decreased. If the force field is not set, this field
3841
+ # will be ignored.
3842
+ # Corresponds to the JSON property `forceSkipQuotaUsageCheck`
3843
+ # @return [Boolean]
3844
+ attr_accessor :force_skip_quota_usage_check
3845
+ alias_method :force_skip_quota_usage_check?, :force_skip_quota_usage_check
3846
+
3754
3847
  # Import data embedded in the request message
3755
3848
  # Corresponds to the JSON property `inlineSource`
3756
3849
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource]
@@ -3770,6 +3863,7 @@ module Google
3770
3863
  def update!(**args)
3771
3864
  @force = args[:force] if args.key?(:force)
3772
3865
  @force_justification = args[:force_justification] if args.key?(:force_justification)
3866
+ @force_skip_quota_usage_check = args[:force_skip_quota_usage_check] if args.key?(:force_skip_quota_usage_check)
3773
3867
  @inline_source = args[:inline_source] if args.key?(:inline_source)
3774
3868
  @validate_only = args[:validate_only] if args.key?(:validate_only)
3775
3869
  end
@@ -4221,7 +4315,9 @@ module Google
4221
4315
  class V1beta1DefaultIdentity
4222
4316
  include Google::Apis::Core::Hashable
4223
4317
 
4224
- # The email address of the default identity.
4318
+ # The email address of the default identity. Calling GenerateDefaultIdentity
4319
+ # with a deleted or purged default identity should expect does_not_exist@invalid-
4320
+ # project.iam.gserviceaccount.com placeholder email.
4225
4321
  # Corresponds to the JSON property `email`
4226
4322
  # @return [String]
4227
4323
  attr_accessor :email
@@ -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.51.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240609"
25
+ REVISION = "20241115"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class ExperimentalFeatures
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class Field
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -370,6 +376,12 @@ module Google
370
376
  include Google::Apis::Core::JsonObjectSupport
371
377
  end
372
378
 
379
+ class SelectiveGapicGeneration
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
373
385
  class Service
374
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
387
 
@@ -741,6 +753,8 @@ module Google
741
753
  class Representation < Google::Apis::Core::JsonRepresentation
742
754
  collection :destinations, as: 'destinations'
743
755
  property :reference_docs_uri, as: 'referenceDocsUri'
756
+ property :selective_gapic_generation, as: 'selectiveGapicGeneration', class: Google::Apis::ServiceconsumermanagementV1beta1::SelectiveGapicGeneration, decorator: Google::Apis::ServiceconsumermanagementV1beta1::SelectiveGapicGeneration::Representation
757
+
744
758
  end
745
759
  end
746
760
 
@@ -885,6 +899,14 @@ module Google
885
899
  end
886
900
  end
887
901
 
902
+ class ExperimentalFeatures
903
+ # @private
904
+ class Representation < Google::Apis::Core::JsonRepresentation
905
+ property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
906
+ property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
907
+ end
908
+ end
909
+
888
910
  class Field
889
911
  # @private
890
912
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -916,6 +938,7 @@ module Google
916
938
  class Representation < Google::Apis::Core::JsonRepresentation
917
939
  property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
918
940
 
941
+ hash :renamed_services, as: 'renamedServices'
919
942
  end
920
943
  end
921
944
 
@@ -1072,6 +1095,7 @@ module Google
1072
1095
  property :ingest_delay, as: 'ingestDelay'
1073
1096
  property :launch_stage, as: 'launchStage'
1074
1097
  property :sample_period, as: 'samplePeriod'
1098
+ collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
1075
1099
  end
1076
1100
  end
1077
1101
 
@@ -1199,6 +1223,8 @@ module Google
1199
1223
  class Representation < Google::Apis::Core::JsonRepresentation
1200
1224
  property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
1201
1225
 
1226
+ property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServiceconsumermanagementV1beta1::ExperimentalFeatures, decorator: Google::Apis::ServiceconsumermanagementV1beta1::ExperimentalFeatures::Representation
1227
+
1202
1228
  end
1203
1229
  end
1204
1230
 
@@ -1236,6 +1262,13 @@ module Google
1236
1262
  end
1237
1263
  end
1238
1264
 
1265
+ class SelectiveGapicGeneration
1266
+ # @private
1267
+ class Representation < Google::Apis::Core::JsonRepresentation
1268
+ collection :methods_prop, as: 'methods'
1269
+ end
1270
+ end
1271
+
1239
1272
  class Service
1240
1273
  # @private
1241
1274
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1456,6 +1489,7 @@ module Google
1456
1489
  class Representation < Google::Apis::Core::JsonRepresentation
1457
1490
  property :force, as: 'force'
1458
1491
  property :force_justification, as: 'forceJustification'
1492
+ property :force_skip_quota_usage_check, as: 'forceSkipQuotaUsageCheck'
1459
1493
  property :inline_source, as: 'inlineSource', class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource, decorator: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource::Representation
1460
1494
 
1461
1495
  property :validate_only, as: 'validateOnly'
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.51.0
4
+ version: 0.53.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-06-16 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.53.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Consumer Management API V1beta1