google-apis-serviceconsumermanagement_v1beta1 0.52.0 → 0.54.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f9171bb8b31cc3635825c53274a0c489445b82132d8d62af4faedc14cddc3b3
|
4
|
+
data.tar.gz: edc9a1250ca6d3402425fa9be0b70ce617885cfd4ba5cbddda9df2fac088da20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f719e1073c2e38e1974884473009f383c4e44e31cf865b7991ada6e838ed4f26b97060bff7d672f4ebe8a939372c4ac4258e7af2af405826a1339c2306fa0cdf
|
7
|
+
data.tar.gz: beb62419f58076e6ff1e58c5fdf71ced00a2720a874b69e0e788dd4a5107c643002519f397f01cb84e3f4cbe72d7c5e584967312dd19f7b94e2fac98e959134f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.54.0 (2024-12-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241205
|
6
|
+
|
7
|
+
### v0.53.0 (2024-12-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241115
|
10
|
+
* Regenerated using generator version 0.15.1
|
11
|
+
|
3
12
|
### v0.52.0 (2024-07-25)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240712
|
@@ -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
|
|
@@ -825,6 +832,12 @@ module Google
|
|
825
832
|
class Documentation
|
826
833
|
include Google::Apis::Core::Hashable
|
827
834
|
|
835
|
+
# Optional information about the IAM configuration. This is typically used to
|
836
|
+
# link to documentation about a product's IAM roles and permissions.
|
837
|
+
# Corresponds to the JSON property `additionalIamInfo`
|
838
|
+
# @return [String]
|
839
|
+
attr_accessor :additional_iam_info
|
840
|
+
|
828
841
|
# The URL to the root of documentation.
|
829
842
|
# Corresponds to the JSON property `documentationRootUrl`
|
830
843
|
# @return [String]
|
@@ -877,6 +890,7 @@ module Google
|
|
877
890
|
|
878
891
|
# Update properties of this object
|
879
892
|
def update!(**args)
|
893
|
+
@additional_iam_info = args[:additional_iam_info] if args.key?(:additional_iam_info)
|
880
894
|
@documentation_root_url = args[:documentation_root_url] if args.key?(:documentation_root_url)
|
881
895
|
@overview = args[:overview] if args.key?(:overview)
|
882
896
|
@pages = args[:pages] if args.key?(:pages)
|
@@ -1149,6 +1163,39 @@ module Google
|
|
1149
1163
|
end
|
1150
1164
|
end
|
1151
1165
|
|
1166
|
+
# Experimental features to be included during client library generation. These
|
1167
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
1168
|
+
class ExperimentalFeatures
|
1169
|
+
include Google::Apis::Core::Hashable
|
1170
|
+
|
1171
|
+
# Enables generation of protobuf code using new types that are more Pythonic
|
1172
|
+
# which are included in `protobuf>=5.29.x`. This feature will be enabled by
|
1173
|
+
# default 1 month after launching the feature in preview packages.
|
1174
|
+
# Corresponds to the JSON property `protobufPythonicTypesEnabled`
|
1175
|
+
# @return [Boolean]
|
1176
|
+
attr_accessor :protobuf_pythonic_types_enabled
|
1177
|
+
alias_method :protobuf_pythonic_types_enabled?, :protobuf_pythonic_types_enabled
|
1178
|
+
|
1179
|
+
# Enables generation of asynchronous REST clients if `rest` transport is enabled.
|
1180
|
+
# By default, asynchronous REST clients will not be generated. This feature
|
1181
|
+
# will be enabled by default 1 month after launching the feature in preview
|
1182
|
+
# packages.
|
1183
|
+
# Corresponds to the JSON property `restAsyncIoEnabled`
|
1184
|
+
# @return [Boolean]
|
1185
|
+
attr_accessor :rest_async_io_enabled
|
1186
|
+
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1187
|
+
|
1188
|
+
def initialize(**args)
|
1189
|
+
update!(**args)
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
# Update properties of this object
|
1193
|
+
def update!(**args)
|
1194
|
+
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
1195
|
+
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1196
|
+
end
|
1197
|
+
end
|
1198
|
+
|
1152
1199
|
# A single field of a message type.
|
1153
1200
|
class Field
|
1154
1201
|
include Google::Apis::Core::Hashable
|
@@ -1278,6 +1325,13 @@ module Google
|
|
1278
1325
|
# @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
|
1279
1326
|
attr_accessor :common
|
1280
1327
|
|
1328
|
+
# Map of service names to renamed services. Keys are the package relative
|
1329
|
+
# service names and values are the name to be used for the service client and
|
1330
|
+
# call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
|
1331
|
+
# Corresponds to the JSON property `renamedServices`
|
1332
|
+
# @return [Hash<String,String>]
|
1333
|
+
attr_accessor :renamed_services
|
1334
|
+
|
1281
1335
|
def initialize(**args)
|
1282
1336
|
update!(**args)
|
1283
1337
|
end
|
@@ -1285,6 +1339,7 @@ module Google
|
|
1285
1339
|
# Update properties of this object
|
1286
1340
|
def update!(**args)
|
1287
1341
|
@common = args[:common] if args.key?(:common)
|
1342
|
+
@renamed_services = args[:renamed_services] if args.key?(:renamed_services)
|
1288
1343
|
end
|
1289
1344
|
end
|
1290
1345
|
|
@@ -2095,6 +2150,11 @@ module Google
|
|
2095
2150
|
# @return [String]
|
2096
2151
|
attr_accessor :sample_period
|
2097
2152
|
|
2153
|
+
# The scope of the timeseries data of the metric.
|
2154
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
2155
|
+
# @return [Array<String>]
|
2156
|
+
attr_accessor :time_series_resource_hierarchy_level
|
2157
|
+
|
2098
2158
|
def initialize(**args)
|
2099
2159
|
update!(**args)
|
2100
2160
|
end
|
@@ -2104,6 +2164,7 @@ module Google
|
|
2104
2164
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
2105
2165
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
2106
2166
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
2167
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
2107
2168
|
end
|
2108
2169
|
end
|
2109
2170
|
|
@@ -2156,7 +2217,7 @@ module Google
|
|
2156
2217
|
# AccessControl The mixin construct implies that all methods in `AccessControl`
|
2157
2218
|
# are also declared with same name and request/response types in `Storage`. A
|
2158
2219
|
# documentation generator or annotation processor will see the effective `
|
2159
|
-
# Storage.GetAcl` method after
|
2220
|
+
# Storage.GetAcl` method after inheriting documentation and annotations as
|
2160
2221
|
# follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
|
2161
2222
|
# GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
|
2162
2223
|
# `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
|
@@ -2651,6 +2712,12 @@ module Google
|
|
2651
2712
|
# @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
|
2652
2713
|
attr_accessor :common
|
2653
2714
|
|
2715
|
+
# Experimental features to be included during client library generation. These
|
2716
|
+
# fields will be deprecated once the feature graduates and is enabled by default.
|
2717
|
+
# Corresponds to the JSON property `experimentalFeatures`
|
2718
|
+
# @return [Google::Apis::ServiceconsumermanagementV1beta1::ExperimentalFeatures]
|
2719
|
+
attr_accessor :experimental_features
|
2720
|
+
|
2654
2721
|
def initialize(**args)
|
2655
2722
|
update!(**args)
|
2656
2723
|
end
|
@@ -2658,6 +2725,7 @@ module Google
|
|
2658
2725
|
# Update properties of this object
|
2659
2726
|
def update!(**args)
|
2660
2727
|
@common = args[:common] if args.key?(:common)
|
2728
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
2661
2729
|
end
|
2662
2730
|
end
|
2663
2731
|
|
@@ -2777,11 +2845,11 @@ module Google
|
|
2777
2845
|
# @return [String]
|
2778
2846
|
attr_accessor :name
|
2779
2847
|
|
2780
|
-
# Specify the unit of the quota limit. It uses the same syntax as
|
2781
|
-
# The supported unit kinds are determined by the quota
|
2782
|
-
# some examples: * "1/min/`project`" for quota per
|
2783
|
-
# order of unit components is insignificant. The "
|
2784
|
-
# required to follow the metric unit syntax.
|
2848
|
+
# Specify the unit of the quota limit. It uses the same syntax as
|
2849
|
+
# MetricDescriptor.unit. The supported unit kinds are determined by the quota
|
2850
|
+
# backend system. Here are some examples: * "1/min/`project`" for quota per
|
2851
|
+
# minute per project. Note: the order of unit components is insignificant. The "
|
2852
|
+
# 1" at the beginning is required to follow the metric unit syntax.
|
2785
2853
|
# Corresponds to the JSON property `unit`
|
2786
2854
|
# @return [String]
|
2787
2855
|
attr_accessor :unit
|
@@ -2831,6 +2899,27 @@ module Google
|
|
2831
2899
|
end
|
2832
2900
|
end
|
2833
2901
|
|
2902
|
+
# This message is used to configure the generation of a subset of the RPCs in a
|
2903
|
+
# service for client libraries.
|
2904
|
+
class SelectiveGapicGeneration
|
2905
|
+
include Google::Apis::Core::Hashable
|
2906
|
+
|
2907
|
+
# An allowlist of the fully qualified names of RPCs that should be included on
|
2908
|
+
# public client surfaces.
|
2909
|
+
# Corresponds to the JSON property `methods`
|
2910
|
+
# @return [Array<String>]
|
2911
|
+
attr_accessor :methods_prop
|
2912
|
+
|
2913
|
+
def initialize(**args)
|
2914
|
+
update!(**args)
|
2915
|
+
end
|
2916
|
+
|
2917
|
+
# Update properties of this object
|
2918
|
+
def update!(**args)
|
2919
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
2920
|
+
end
|
2921
|
+
end
|
2922
|
+
|
2834
2923
|
# `Service` is the root object of Google API service configuration (service
|
2835
2924
|
# config). It describes the basic information about a logical service, such as
|
2836
2925
|
# the service name and the user-facing title, and delegates other aspects to sub-
|
@@ -3738,21 +3827,30 @@ module Google
|
|
3738
3827
|
class V1Beta1ImportProducerQuotaPoliciesRequest
|
3739
3828
|
include Google::Apis::Core::Hashable
|
3740
3829
|
|
3741
|
-
# Whether
|
3742
|
-
#
|
3743
|
-
#
|
3744
|
-
#
|
3830
|
+
# Whether quota policy can result in a decrease of effective limit. Don't allow
|
3831
|
+
# any decreases if force is not specified. If force is specified, then don't
|
3832
|
+
# allow any decreases below 120% of the 7d quota usage, or for cases where usage
|
3833
|
+
# cannot be examined (custom dimensions/ per user/per resource), only allow a 10%
|
3834
|
+
# decrease.
|
3745
3835
|
# Corresponds to the JSON property `force`
|
3746
3836
|
# @return [Boolean]
|
3747
3837
|
attr_accessor :force
|
3748
3838
|
alias_method :force?, :force
|
3749
3839
|
|
3750
|
-
# If force option is set to true,
|
3751
|
-
# log the reason in audit logs.
|
3840
|
+
# If force or force_skip_quota_usage_check option is set to true,
|
3841
|
+
# force_justification is suggested to be set to log the reason in audit logs.
|
3752
3842
|
# Corresponds to the JSON property `forceJustification`
|
3753
3843
|
# @return [String]
|
3754
3844
|
attr_accessor :force_justification
|
3755
3845
|
|
3846
|
+
# If set to true, skip the quota usage check. This field is only used when the
|
3847
|
+
# effective limit can be decreased. If the force field is not set, this field
|
3848
|
+
# will be ignored.
|
3849
|
+
# Corresponds to the JSON property `forceSkipQuotaUsageCheck`
|
3850
|
+
# @return [Boolean]
|
3851
|
+
attr_accessor :force_skip_quota_usage_check
|
3852
|
+
alias_method :force_skip_quota_usage_check?, :force_skip_quota_usage_check
|
3853
|
+
|
3756
3854
|
# Import data embedded in the request message
|
3757
3855
|
# Corresponds to the JSON property `inlineSource`
|
3758
3856
|
# @return [Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource]
|
@@ -3772,6 +3870,7 @@ module Google
|
|
3772
3870
|
def update!(**args)
|
3773
3871
|
@force = args[:force] if args.key?(:force)
|
3774
3872
|
@force_justification = args[:force_justification] if args.key?(:force_justification)
|
3873
|
+
@force_skip_quota_usage_check = args[:force_skip_quota_usage_check] if args.key?(:force_skip_quota_usage_check)
|
3775
3874
|
@inline_source = args[:inline_source] if args.key?(:inline_source)
|
3776
3875
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
3777
3876
|
end
|
@@ -4223,7 +4322,9 @@ module Google
|
|
4223
4322
|
class V1beta1DefaultIdentity
|
4224
4323
|
include Google::Apis::Core::Hashable
|
4225
4324
|
|
4226
|
-
# The email address of the default identity.
|
4325
|
+
# The email address of the default identity. Calling GenerateDefaultIdentity
|
4326
|
+
# with a deleted or purged default identity should expect does_not_exist@invalid-
|
4327
|
+
# project.iam.gserviceaccount.com placeholder email.
|
4227
4328
|
# Corresponds to the JSON property `email`
|
4228
4329
|
# @return [String]
|
4229
4330
|
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.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241205"
|
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
|
|
@@ -808,6 +822,7 @@ module Google
|
|
808
822
|
class Documentation
|
809
823
|
# @private
|
810
824
|
class Representation < Google::Apis::Core::JsonRepresentation
|
825
|
+
property :additional_iam_info, as: 'additionalIamInfo'
|
811
826
|
property :documentation_root_url, as: 'documentationRootUrl'
|
812
827
|
property :overview, as: 'overview'
|
813
828
|
collection :pages, as: 'pages', class: Google::Apis::ServiceconsumermanagementV1beta1::Page, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Page::Representation
|
@@ -885,6 +900,14 @@ module Google
|
|
885
900
|
end
|
886
901
|
end
|
887
902
|
|
903
|
+
class ExperimentalFeatures
|
904
|
+
# @private
|
905
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
906
|
+
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
907
|
+
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
908
|
+
end
|
909
|
+
end
|
910
|
+
|
888
911
|
class Field
|
889
912
|
# @private
|
890
913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -916,6 +939,7 @@ module Google
|
|
916
939
|
class Representation < Google::Apis::Core::JsonRepresentation
|
917
940
|
property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
|
918
941
|
|
942
|
+
hash :renamed_services, as: 'renamedServices'
|
919
943
|
end
|
920
944
|
end
|
921
945
|
|
@@ -1072,6 +1096,7 @@ module Google
|
|
1072
1096
|
property :ingest_delay, as: 'ingestDelay'
|
1073
1097
|
property :launch_stage, as: 'launchStage'
|
1074
1098
|
property :sample_period, as: 'samplePeriod'
|
1099
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1075
1100
|
end
|
1076
1101
|
end
|
1077
1102
|
|
@@ -1199,6 +1224,8 @@ module Google
|
|
1199
1224
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1200
1225
|
property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
|
1201
1226
|
|
1227
|
+
property :experimental_features, as: 'experimentalFeatures', class: Google::Apis::ServiceconsumermanagementV1beta1::ExperimentalFeatures, decorator: Google::Apis::ServiceconsumermanagementV1beta1::ExperimentalFeatures::Representation
|
1228
|
+
|
1202
1229
|
end
|
1203
1230
|
end
|
1204
1231
|
|
@@ -1236,6 +1263,13 @@ module Google
|
|
1236
1263
|
end
|
1237
1264
|
end
|
1238
1265
|
|
1266
|
+
class SelectiveGapicGeneration
|
1267
|
+
# @private
|
1268
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1269
|
+
collection :methods_prop, as: 'methods'
|
1270
|
+
end
|
1271
|
+
end
|
1272
|
+
|
1239
1273
|
class Service
|
1240
1274
|
# @private
|
1241
1275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1456,6 +1490,7 @@ module Google
|
|
1456
1490
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1457
1491
|
property :force, as: 'force'
|
1458
1492
|
property :force_justification, as: 'forceJustification'
|
1493
|
+
property :force_skip_quota_usage_check, as: 'forceSkipQuotaUsageCheck'
|
1459
1494
|
property :inline_source, as: 'inlineSource', class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource, decorator: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource::Representation
|
1460
1495
|
|
1461
1496
|
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.
|
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-
|
11
|
+
date: 2024-12-15 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.54.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.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Consumer Management API V1beta1
|