google-apis-serviceconsumermanagement_v1 0.55.0 → 0.57.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: 33987a1cee2b62c3cdbfefacf01d09533f44dea296c62ac52ea800f4dbfa6e91
|
4
|
+
data.tar.gz: e605a6cd03c159194b5b78b00fe57e8f2f37b67e9f68b0c66b9c1cdaf879bc49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad220363a3e012dcb818ebaa94e8f18b6b40f02aeb61f75ef5e04add6504ada9b2c82236d2f3a04d6f2fd3b3d1ef1fc91b0dfcf9f6958a73556b46982076eb64
|
7
|
+
data.tar.gz: b14e833d9ac92052e8f600a950120716b47cbbfea329295c374274f86bfb9bd39c868874b5fce6649f6b530ec3519d7c70c08f18edcd2ba5e317204d5b3b2ced
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1
|
2
2
|
|
3
|
+
### v0.57.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250227
|
6
|
+
|
7
|
+
### v0.56.0 (2025-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250218
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.55.0 (2024-12-22)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241210
|
@@ -153,6 +153,33 @@ module Google
|
|
153
153
|
end
|
154
154
|
end
|
155
155
|
|
156
|
+
# Aspect represents Generic aspect. It is used to configure an aspect without
|
157
|
+
# making direct changes to service.proto
|
158
|
+
class Aspect
|
159
|
+
include Google::Apis::Core::Hashable
|
160
|
+
|
161
|
+
# The type of this aspect configuration.
|
162
|
+
# Corresponds to the JSON property `kind`
|
163
|
+
# @return [String]
|
164
|
+
attr_accessor :kind
|
165
|
+
|
166
|
+
# Content of the configuration. The underlying schema should be defined by
|
167
|
+
# Aspect owners as protobuf message under `apiserving/configaspects/proto`.
|
168
|
+
# Corresponds to the JSON property `spec`
|
169
|
+
# @return [Hash<String,Object>]
|
170
|
+
attr_accessor :spec
|
171
|
+
|
172
|
+
def initialize(**args)
|
173
|
+
update!(**args)
|
174
|
+
end
|
175
|
+
|
176
|
+
# Update properties of this object
|
177
|
+
def update!(**args)
|
178
|
+
@kind = args[:kind] if args.key?(:kind)
|
179
|
+
@spec = args[:spec] if args.key?(:spec)
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
156
183
|
# Request to attach an existing project to the tenancy unit as a new tenant
|
157
184
|
# resource.
|
158
185
|
class AttachTenantProjectRequest
|
@@ -446,6 +473,14 @@ module Google
|
|
446
473
|
# @return [String]
|
447
474
|
attr_accessor :jwt_audience
|
448
475
|
|
476
|
+
# The load balancing policy used for connection to the application backend.
|
477
|
+
# Defined as an arbitrary string to accomondate custom load balancing policies
|
478
|
+
# supported by the underlying channel, but suggest most users use one of the
|
479
|
+
# standard policies, such as the default, "RoundRobin".
|
480
|
+
# Corresponds to the JSON property `loadBalancingPolicy`
|
481
|
+
# @return [String]
|
482
|
+
attr_accessor :load_balancing_policy
|
483
|
+
|
449
484
|
# Deprecated, do not use.
|
450
485
|
# Corresponds to the JSON property `minDeadline`
|
451
486
|
# @return [Float]
|
@@ -496,6 +531,7 @@ module Google
|
|
496
531
|
@deadline = args[:deadline] if args.key?(:deadline)
|
497
532
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
498
533
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
534
|
+
@load_balancing_policy = args[:load_balancing_policy] if args.key?(:load_balancing_policy)
|
499
535
|
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
500
536
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
501
537
|
@overrides_by_request_protocol = args[:overrides_by_request_protocol] if args.key?(:overrides_by_request_protocol)
|
@@ -1032,9 +1068,8 @@ module Google
|
|
1032
1068
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::DocumentationRule>]
|
1033
1069
|
attr_accessor :rules
|
1034
1070
|
|
1035
|
-
# Specifies section and content to override boilerplate content
|
1036
|
-
#
|
1037
|
-
# client_libraries
|
1071
|
+
# Specifies section and content to override the boilerplate content. Currently
|
1072
|
+
# overrides following sections: 1. rest.service.client_libraries
|
1038
1073
|
# Corresponds to the JSON property `sectionOverrides`
|
1039
1074
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::Page>]
|
1040
1075
|
attr_accessor :section_overrides
|
@@ -1088,7 +1123,7 @@ module Google
|
|
1088
1123
|
attr_accessor :description
|
1089
1124
|
|
1090
1125
|
# String of comma or space separated case-sensitive words for which method/field
|
1091
|
-
# name replacement will be disabled
|
1126
|
+
# name replacement will be disabled.
|
1092
1127
|
# Corresponds to the JSON property `disableReplacementWords`
|
1093
1128
|
# @return [String]
|
1094
1129
|
attr_accessor :disable_replacement_words
|
@@ -1354,6 +1389,15 @@ module Google
|
|
1354
1389
|
attr_accessor :rest_async_io_enabled
|
1355
1390
|
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1356
1391
|
|
1392
|
+
# Disables generation of an unversioned Python package for this client library.
|
1393
|
+
# This means that the module names will need to be versioned in import
|
1394
|
+
# statements. For example `import google.cloud.library_v2` instead of `import
|
1395
|
+
# google.cloud.library`.
|
1396
|
+
# Corresponds to the JSON property `unversionedPackageDisabled`
|
1397
|
+
# @return [Boolean]
|
1398
|
+
attr_accessor :unversioned_package_disabled
|
1399
|
+
alias_method :unversioned_package_disabled?, :unversioned_package_disabled
|
1400
|
+
|
1357
1401
|
def initialize(**args)
|
1358
1402
|
update!(**args)
|
1359
1403
|
end
|
@@ -1362,6 +1406,7 @@ module Google
|
|
1362
1406
|
def update!(**args)
|
1363
1407
|
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
1364
1408
|
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1409
|
+
@unversioned_package_disabled = args[:unversioned_package_disabled] if args.key?(:unversioned_package_disabled)
|
1365
1410
|
end
|
1366
1411
|
end
|
1367
1412
|
|
@@ -2775,7 +2820,7 @@ module Google
|
|
2775
2820
|
class Page
|
2776
2821
|
include Google::Apis::Core::Hashable
|
2777
2822
|
|
2778
|
-
# The Markdown content of the page. You can use (== include `path` ==) to
|
2823
|
+
# The Markdown content of the page. You can use ```(== include `path` ==)``` to
|
2779
2824
|
# include content from a Markdown file. The content can be used to produce the
|
2780
2825
|
# documentation page such as HTML format page.
|
2781
2826
|
# Corresponds to the JSON property `content`
|
@@ -3195,6 +3240,17 @@ module Google
|
|
3195
3240
|
class SelectiveGapicGeneration
|
3196
3241
|
include Google::Apis::Core::Hashable
|
3197
3242
|
|
3243
|
+
# Setting this to true indicates to the client generators that methods that
|
3244
|
+
# would be excluded from the generation should instead be generated in a way
|
3245
|
+
# that indicates these methods should not be consumed by end users. How this is
|
3246
|
+
# expressed is up to individual language implementations to decide. Some
|
3247
|
+
# examples may be: added annotations, obfuscated identifiers, or other language
|
3248
|
+
# idiomatic patterns.
|
3249
|
+
# Corresponds to the JSON property `generateOmittedAsInternal`
|
3250
|
+
# @return [Boolean]
|
3251
|
+
attr_accessor :generate_omitted_as_internal
|
3252
|
+
alias_method :generate_omitted_as_internal?, :generate_omitted_as_internal
|
3253
|
+
|
3198
3254
|
# An allowlist of the fully qualified names of RPCs that should be included on
|
3199
3255
|
# public client surfaces.
|
3200
3256
|
# Corresponds to the JSON property `methods`
|
@@ -3207,6 +3263,7 @@ module Google
|
|
3207
3263
|
|
3208
3264
|
# Update properties of this object
|
3209
3265
|
def update!(**args)
|
3266
|
+
@generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
|
3210
3267
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
3211
3268
|
end
|
3212
3269
|
end
|
@@ -3236,6 +3293,14 @@ module Google
|
|
3236
3293
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1::Api>]
|
3237
3294
|
attr_accessor :apis
|
3238
3295
|
|
3296
|
+
# Configuration aspects. This is a repeated field to allow multiple aspects to
|
3297
|
+
# be configured. The kind field in each ConfigAspect specifies the type of
|
3298
|
+
# aspect. The spec field contains the configuration for that aspect. The schema
|
3299
|
+
# for the spec field is defined by the backend service owners.
|
3300
|
+
# Corresponds to the JSON property `aspects`
|
3301
|
+
# @return [Array<Google::Apis::ServiceconsumermanagementV1::Aspect>]
|
3302
|
+
attr_accessor :aspects
|
3303
|
+
|
3239
3304
|
# `Authentication` defines the authentication configuration for API methods
|
3240
3305
|
# provided by an API service. Example: name: calendar.googleapis.com
|
3241
3306
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
@@ -3515,6 +3580,7 @@ module Google
|
|
3515
3580
|
# Update properties of this object
|
3516
3581
|
def update!(**args)
|
3517
3582
|
@apis = args[:apis] if args.key?(:apis)
|
3583
|
+
@aspects = args[:aspects] if args.key?(:aspects)
|
3518
3584
|
@authentication = args[:authentication] if args.key?(:authentication)
|
3519
3585
|
@backend = args[:backend] if args.key?(:backend)
|
3520
3586
|
@billing = args[:billing] if args.key?(:billing)
|
@@ -4024,21 +4090,15 @@ module Google
|
|
4024
4090
|
end
|
4025
4091
|
end
|
4026
4092
|
|
4027
|
-
# Usage configuration rules for the service.
|
4028
|
-
# rule to configure unregistered calls for the service. Unregistered calls are
|
4029
|
-
# calls that do not contain consumer project identity. (Example: calls that do
|
4030
|
-
# not contain an API key). By default, API methods do not allow unregistered
|
4031
|
-
# calls, and each method call must be identified by a consumer project identity.
|
4032
|
-
# Use this rule to allow/disallow unregistered calls. Example of an API that
|
4033
|
-
# wants to allow unregistered calls for entire service. usage: rules: - selector:
|
4034
|
-
# "*" allow_unregistered_calls: true Example of a method that wants to allow
|
4035
|
-
# unregistered calls. usage: rules: - selector: "google.example.library.v1.
|
4036
|
-
# LibraryService.CreateBook" allow_unregistered_calls: true
|
4093
|
+
# Usage configuration rules for the service.
|
4037
4094
|
class UsageRule
|
4038
4095
|
include Google::Apis::Core::Hashable
|
4039
4096
|
|
4040
|
-
#
|
4041
|
-
#
|
4097
|
+
# Use this rule to configure unregistered calls for the service. Unregistered
|
4098
|
+
# calls are calls that do not contain consumer project identity. (Example: calls
|
4099
|
+
# that do not contain an API key). WARNING: By default, API methods do not allow
|
4100
|
+
# unregistered calls, and each method call must be identified by a consumer
|
4101
|
+
# project identity.
|
4042
4102
|
# Corresponds to the JSON property `allowUnregisteredCalls`
|
4043
4103
|
# @return [Boolean]
|
4044
4104
|
attr_accessor :allow_unregistered_calls
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServiceconsumermanagementV1
|
18
18
|
# Version of the google-apis-serviceconsumermanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250227"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class Aspect
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class AttachTenantProjectRequest
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -699,6 +705,14 @@ module Google
|
|
699
705
|
end
|
700
706
|
end
|
701
707
|
|
708
|
+
class Aspect
|
709
|
+
# @private
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
711
|
+
property :kind, as: 'kind'
|
712
|
+
hash :spec, as: 'spec'
|
713
|
+
end
|
714
|
+
end
|
715
|
+
|
702
716
|
class AttachTenantProjectRequest
|
703
717
|
# @private
|
704
718
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -766,6 +780,7 @@ module Google
|
|
766
780
|
property :deadline, as: 'deadline'
|
767
781
|
property :disable_auth, as: 'disableAuth'
|
768
782
|
property :jwt_audience, as: 'jwtAudience'
|
783
|
+
property :load_balancing_policy, as: 'loadBalancingPolicy'
|
769
784
|
property :min_deadline, as: 'minDeadline'
|
770
785
|
property :operation_deadline, as: 'operationDeadline'
|
771
786
|
hash :overrides_by_request_protocol, as: 'overridesByRequestProtocol', class: Google::Apis::ServiceconsumermanagementV1::BackendRule, decorator: Google::Apis::ServiceconsumermanagementV1::BackendRule::Representation
|
@@ -1001,6 +1016,7 @@ module Google
|
|
1001
1016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1002
1017
|
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
1003
1018
|
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1019
|
+
property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
|
1004
1020
|
end
|
1005
1021
|
end
|
1006
1022
|
|
@@ -1404,6 +1420,7 @@ module Google
|
|
1404
1420
|
class SelectiveGapicGeneration
|
1405
1421
|
# @private
|
1406
1422
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1423
|
+
property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
|
1407
1424
|
collection :methods_prop, as: 'methods'
|
1408
1425
|
end
|
1409
1426
|
end
|
@@ -1413,6 +1430,8 @@ module Google
|
|
1413
1430
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1414
1431
|
collection :apis, as: 'apis', class: Google::Apis::ServiceconsumermanagementV1::Api, decorator: Google::Apis::ServiceconsumermanagementV1::Api::Representation
|
1415
1432
|
|
1433
|
+
collection :aspects, as: 'aspects', class: Google::Apis::ServiceconsumermanagementV1::Aspect, decorator: Google::Apis::ServiceconsumermanagementV1::Aspect::Representation
|
1434
|
+
|
1416
1435
|
property :authentication, as: 'authentication', class: Google::Apis::ServiceconsumermanagementV1::Authentication, decorator: Google::Apis::ServiceconsumermanagementV1::Authentication::Representation
|
1417
1436
|
|
1418
1437
|
property :backend, as: 'backend', class: Google::Apis::ServiceconsumermanagementV1::Backend, decorator: Google::Apis::ServiceconsumermanagementV1::Backend::Representation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-serviceconsumermanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.57.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Service Consumer Management API V1
|
82
79
|
test_files: []
|