google-apis-serviceconsumermanagement_v1beta1 0.52.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67d2631b4e6bec781454a192e9b848e2f8c5891efaeba7526e38009642af5d6f
|
4
|
+
data.tar.gz: a34f7007f3294bb12d4f0fa4d7c87faaf8d53d2051de3dfee23d8d86288f3da0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c3bcf9274262213ddb4352f07d7f6869108ad7dc1830b51431810f2d83e382d9493b4caf8537622cdca1aceda77d4b611c2b9b96a3e5f2325cea8fc8b19489a
|
7
|
+
data.tar.gz: 71479a70dee54d2210b45e4e27e8ccf3246533ca7d92572d759626da55be881dde6201573210a337a2ac725cbbf585de5ba38de506016ae369aec02e620e713b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
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
|
+
|
3
8
|
### v0.52.0 (2024-07-25)
|
4
9
|
|
5
10
|
* 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
|
|
@@ -1149,6 +1156,39 @@ module Google
|
|
1149
1156
|
end
|
1150
1157
|
end
|
1151
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
|
+
|
1152
1192
|
# A single field of a message type.
|
1153
1193
|
class Field
|
1154
1194
|
include Google::Apis::Core::Hashable
|
@@ -1278,6 +1318,13 @@ module Google
|
|
1278
1318
|
# @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
|
1279
1319
|
attr_accessor :common
|
1280
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
|
+
|
1281
1328
|
def initialize(**args)
|
1282
1329
|
update!(**args)
|
1283
1330
|
end
|
@@ -1285,6 +1332,7 @@ module Google
|
|
1285
1332
|
# Update properties of this object
|
1286
1333
|
def update!(**args)
|
1287
1334
|
@common = args[:common] if args.key?(:common)
|
1335
|
+
@renamed_services = args[:renamed_services] if args.key?(:renamed_services)
|
1288
1336
|
end
|
1289
1337
|
end
|
1290
1338
|
|
@@ -2095,6 +2143,11 @@ module Google
|
|
2095
2143
|
# @return [String]
|
2096
2144
|
attr_accessor :sample_period
|
2097
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
|
+
|
2098
2151
|
def initialize(**args)
|
2099
2152
|
update!(**args)
|
2100
2153
|
end
|
@@ -2104,6 +2157,7 @@ module Google
|
|
2104
2157
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
2105
2158
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
2106
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)
|
2107
2161
|
end
|
2108
2162
|
end
|
2109
2163
|
|
@@ -2156,7 +2210,7 @@ module Google
|
|
2156
2210
|
# AccessControl The mixin construct implies that all methods in `AccessControl`
|
2157
2211
|
# are also declared with same name and request/response types in `Storage`. A
|
2158
2212
|
# documentation generator or annotation processor will see the effective `
|
2159
|
-
# Storage.GetAcl` method after
|
2213
|
+
# Storage.GetAcl` method after inheriting documentation and annotations as
|
2160
2214
|
# follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
|
2161
2215
|
# GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
|
2162
2216
|
# `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
|
@@ -2651,6 +2705,12 @@ module Google
|
|
2651
2705
|
# @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
|
2652
2706
|
attr_accessor :common
|
2653
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
|
+
|
2654
2714
|
def initialize(**args)
|
2655
2715
|
update!(**args)
|
2656
2716
|
end
|
@@ -2658,6 +2718,7 @@ module Google
|
|
2658
2718
|
# Update properties of this object
|
2659
2719
|
def update!(**args)
|
2660
2720
|
@common = args[:common] if args.key?(:common)
|
2721
|
+
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
2661
2722
|
end
|
2662
2723
|
end
|
2663
2724
|
|
@@ -2777,11 +2838,11 @@ module Google
|
|
2777
2838
|
# @return [String]
|
2778
2839
|
attr_accessor :name
|
2779
2840
|
|
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.
|
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.
|
2785
2846
|
# Corresponds to the JSON property `unit`
|
2786
2847
|
# @return [String]
|
2787
2848
|
attr_accessor :unit
|
@@ -2831,6 +2892,27 @@ module Google
|
|
2831
2892
|
end
|
2832
2893
|
end
|
2833
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
|
+
|
2834
2916
|
# `Service` is the root object of Google API service configuration (service
|
2835
2917
|
# config). It describes the basic information about a logical service, such as
|
2836
2918
|
# the service name and the user-facing title, and delegates other aspects to sub-
|
@@ -3738,21 +3820,30 @@ module Google
|
|
3738
3820
|
class V1Beta1ImportProducerQuotaPoliciesRequest
|
3739
3821
|
include Google::Apis::Core::Hashable
|
3740
3822
|
|
3741
|
-
# Whether
|
3742
|
-
#
|
3743
|
-
#
|
3744
|
-
#
|
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.
|
3745
3828
|
# Corresponds to the JSON property `force`
|
3746
3829
|
# @return [Boolean]
|
3747
3830
|
attr_accessor :force
|
3748
3831
|
alias_method :force?, :force
|
3749
3832
|
|
3750
|
-
# If force option is set to true,
|
3751
|
-
# 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.
|
3752
3835
|
# Corresponds to the JSON property `forceJustification`
|
3753
3836
|
# @return [String]
|
3754
3837
|
attr_accessor :force_justification
|
3755
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
|
+
|
3756
3847
|
# Import data embedded in the request message
|
3757
3848
|
# Corresponds to the JSON property `inlineSource`
|
3758
3849
|
# @return [Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1PolicyInlineSource]
|
@@ -3772,6 +3863,7 @@ module Google
|
|
3772
3863
|
def update!(**args)
|
3773
3864
|
@force = args[:force] if args.key?(:force)
|
3774
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)
|
3775
3867
|
@inline_source = args[:inline_source] if args.key?(:inline_source)
|
3776
3868
|
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
3777
3869
|
end
|
@@ -4223,7 +4315,9 @@ module Google
|
|
4223
4315
|
class V1beta1DefaultIdentity
|
4224
4316
|
include Google::Apis::Core::Hashable
|
4225
4317
|
|
4226
|
-
# 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.
|
4227
4321
|
# Corresponds to the JSON property `email`
|
4228
4322
|
# @return [String]
|
4229
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.
|
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.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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.
|
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-
|
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.
|
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.
|
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
|