google-apis-serviceconsumermanagement_v1beta1 0.54.0 → 0.56.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: bef897b039c94f64f22aacddd47aa6157e69f60912596d22069452cacdcb8bb9
|
4
|
+
data.tar.gz: 28be72d92d77ef2df9fce2f743c8709947e29d1f6529a217f36cd4b077c3bacb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8518ee5e6a3a4a328a81a17b86504ca55b6390dda152c248d4e43f65d07d6a1326cbf6dece1622c0333ef745a5b4f29f48594bf4214cb9542c926abc3a65a34e
|
7
|
+
data.tar.gz: c034c634730505d694b7dd5cf1464d17e4525d2281121116db97d4f99268b810c97127afeac14b6eddedac1a299a3a325d23196ab7757acfb0d4e8a5507ae728
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-serviceconsumermanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.56.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250227
|
6
|
+
|
7
|
+
### v0.55.0 (2025-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250218
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.54.0 (2024-12-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241205
|
@@ -97,6 +97,33 @@ module Google
|
|
97
97
|
end
|
98
98
|
end
|
99
99
|
|
100
|
+
# Aspect represents Generic aspect. It is used to configure an aspect without
|
101
|
+
# making direct changes to service.proto
|
102
|
+
class Aspect
|
103
|
+
include Google::Apis::Core::Hashable
|
104
|
+
|
105
|
+
# The type of this aspect configuration.
|
106
|
+
# Corresponds to the JSON property `kind`
|
107
|
+
# @return [String]
|
108
|
+
attr_accessor :kind
|
109
|
+
|
110
|
+
# Content of the configuration. The underlying schema should be defined by
|
111
|
+
# Aspect owners as protobuf message under `apiserving/configaspects/proto`.
|
112
|
+
# Corresponds to the JSON property `spec`
|
113
|
+
# @return [Hash<String,Object>]
|
114
|
+
attr_accessor :spec
|
115
|
+
|
116
|
+
def initialize(**args)
|
117
|
+
update!(**args)
|
118
|
+
end
|
119
|
+
|
120
|
+
# Update properties of this object
|
121
|
+
def update!(**args)
|
122
|
+
@kind = args[:kind] if args.key?(:kind)
|
123
|
+
@spec = args[:spec] if args.key?(:spec)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
100
127
|
# Configuration for an authentication provider, including support for [JSON Web
|
101
128
|
# Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
|
102
129
|
class AuthProvider
|
@@ -354,6 +381,14 @@ module Google
|
|
354
381
|
# @return [String]
|
355
382
|
attr_accessor :jwt_audience
|
356
383
|
|
384
|
+
# The load balancing policy used for connection to the application backend.
|
385
|
+
# Defined as an arbitrary string to accomondate custom load balancing policies
|
386
|
+
# supported by the underlying channel, but suggest most users use one of the
|
387
|
+
# standard policies, such as the default, "RoundRobin".
|
388
|
+
# Corresponds to the JSON property `loadBalancingPolicy`
|
389
|
+
# @return [String]
|
390
|
+
attr_accessor :load_balancing_policy
|
391
|
+
|
357
392
|
# Deprecated, do not use.
|
358
393
|
# Corresponds to the JSON property `minDeadline`
|
359
394
|
# @return [Float]
|
@@ -404,6 +439,7 @@ module Google
|
|
404
439
|
@deadline = args[:deadline] if args.key?(:deadline)
|
405
440
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
406
441
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
442
|
+
@load_balancing_policy = args[:load_balancing_policy] if args.key?(:load_balancing_policy)
|
407
443
|
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
408
444
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
409
445
|
@overrides_by_request_protocol = args[:overrides_by_request_protocol] if args.key?(:overrides_by_request_protocol)
|
@@ -863,9 +899,8 @@ module Google
|
|
863
899
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::DocumentationRule>]
|
864
900
|
attr_accessor :rules
|
865
901
|
|
866
|
-
# Specifies section and content to override boilerplate content
|
867
|
-
#
|
868
|
-
# client_libraries
|
902
|
+
# Specifies section and content to override the boilerplate content. Currently
|
903
|
+
# overrides following sections: 1. rest.service.client_libraries
|
869
904
|
# Corresponds to the JSON property `sectionOverrides`
|
870
905
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::Page>]
|
871
906
|
attr_accessor :section_overrides
|
@@ -919,7 +954,7 @@ module Google
|
|
919
954
|
attr_accessor :description
|
920
955
|
|
921
956
|
# String of comma or space separated case-sensitive words for which method/field
|
922
|
-
# name replacement will be disabled
|
957
|
+
# name replacement will be disabled.
|
923
958
|
# Corresponds to the JSON property `disableReplacementWords`
|
924
959
|
# @return [String]
|
925
960
|
attr_accessor :disable_replacement_words
|
@@ -1185,6 +1220,15 @@ module Google
|
|
1185
1220
|
attr_accessor :rest_async_io_enabled
|
1186
1221
|
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1187
1222
|
|
1223
|
+
# Disables generation of an unversioned Python package for this client library.
|
1224
|
+
# This means that the module names will need to be versioned in import
|
1225
|
+
# statements. For example `import google.cloud.library_v2` instead of `import
|
1226
|
+
# google.cloud.library`.
|
1227
|
+
# Corresponds to the JSON property `unversionedPackageDisabled`
|
1228
|
+
# @return [Boolean]
|
1229
|
+
attr_accessor :unversioned_package_disabled
|
1230
|
+
alias_method :unversioned_package_disabled?, :unversioned_package_disabled
|
1231
|
+
|
1188
1232
|
def initialize(**args)
|
1189
1233
|
update!(**args)
|
1190
1234
|
end
|
@@ -1193,6 +1237,7 @@ module Google
|
|
1193
1237
|
def update!(**args)
|
1194
1238
|
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
1195
1239
|
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
1240
|
+
@unversioned_package_disabled = args[:unversioned_package_disabled] if args.key?(:unversioned_package_disabled)
|
1196
1241
|
end
|
1197
1242
|
end
|
1198
1243
|
|
@@ -2556,7 +2601,7 @@ module Google
|
|
2556
2601
|
class Page
|
2557
2602
|
include Google::Apis::Core::Hashable
|
2558
2603
|
|
2559
|
-
# The Markdown content of the page. You can use (== include `path` ==) to
|
2604
|
+
# The Markdown content of the page. You can use ```(== include `path` ==)``` to
|
2560
2605
|
# include content from a Markdown file. The content can be used to produce the
|
2561
2606
|
# documentation page such as HTML format page.
|
2562
2607
|
# Corresponds to the JSON property `content`
|
@@ -2904,6 +2949,17 @@ module Google
|
|
2904
2949
|
class SelectiveGapicGeneration
|
2905
2950
|
include Google::Apis::Core::Hashable
|
2906
2951
|
|
2952
|
+
# Setting this to true indicates to the client generators that methods that
|
2953
|
+
# would be excluded from the generation should instead be generated in a way
|
2954
|
+
# that indicates these methods should not be consumed by end users. How this is
|
2955
|
+
# expressed is up to individual language implementations to decide. Some
|
2956
|
+
# examples may be: added annotations, obfuscated identifiers, or other language
|
2957
|
+
# idiomatic patterns.
|
2958
|
+
# Corresponds to the JSON property `generateOmittedAsInternal`
|
2959
|
+
# @return [Boolean]
|
2960
|
+
attr_accessor :generate_omitted_as_internal
|
2961
|
+
alias_method :generate_omitted_as_internal?, :generate_omitted_as_internal
|
2962
|
+
|
2907
2963
|
# An allowlist of the fully qualified names of RPCs that should be included on
|
2908
2964
|
# public client surfaces.
|
2909
2965
|
# Corresponds to the JSON property `methods`
|
@@ -2916,6 +2972,7 @@ module Google
|
|
2916
2972
|
|
2917
2973
|
# Update properties of this object
|
2918
2974
|
def update!(**args)
|
2975
|
+
@generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
|
2919
2976
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
2920
2977
|
end
|
2921
2978
|
end
|
@@ -2945,6 +3002,14 @@ module Google
|
|
2945
3002
|
# @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::Api>]
|
2946
3003
|
attr_accessor :apis
|
2947
3004
|
|
3005
|
+
# Configuration aspects. This is a repeated field to allow multiple aspects to
|
3006
|
+
# be configured. The kind field in each ConfigAspect specifies the type of
|
3007
|
+
# aspect. The spec field contains the configuration for that aspect. The schema
|
3008
|
+
# for the spec field is defined by the backend service owners.
|
3009
|
+
# Corresponds to the JSON property `aspects`
|
3010
|
+
# @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::Aspect>]
|
3011
|
+
attr_accessor :aspects
|
3012
|
+
|
2948
3013
|
# `Authentication` defines the authentication configuration for API methods
|
2949
3014
|
# provided by an API service. Example: name: calendar.googleapis.com
|
2950
3015
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
@@ -3224,6 +3289,7 @@ module Google
|
|
3224
3289
|
# Update properties of this object
|
3225
3290
|
def update!(**args)
|
3226
3291
|
@apis = args[:apis] if args.key?(:apis)
|
3292
|
+
@aspects = args[:aspects] if args.key?(:aspects)
|
3227
3293
|
@authentication = args[:authentication] if args.key?(:authentication)
|
3228
3294
|
@backend = args[:backend] if args.key?(:backend)
|
3229
3295
|
@billing = args[:billing] if args.key?(:billing)
|
@@ -3526,21 +3592,15 @@ module Google
|
|
3526
3592
|
end
|
3527
3593
|
end
|
3528
3594
|
|
3529
|
-
# Usage configuration rules for the service.
|
3530
|
-
# rule to configure unregistered calls for the service. Unregistered calls are
|
3531
|
-
# calls that do not contain consumer project identity. (Example: calls that do
|
3532
|
-
# not contain an API key). By default, API methods do not allow unregistered
|
3533
|
-
# calls, and each method call must be identified by a consumer project identity.
|
3534
|
-
# Use this rule to allow/disallow unregistered calls. Example of an API that
|
3535
|
-
# wants to allow unregistered calls for entire service. usage: rules: - selector:
|
3536
|
-
# "*" allow_unregistered_calls: true Example of a method that wants to allow
|
3537
|
-
# unregistered calls. usage: rules: - selector: "google.example.library.v1.
|
3538
|
-
# LibraryService.CreateBook" allow_unregistered_calls: true
|
3595
|
+
# Usage configuration rules for the service.
|
3539
3596
|
class UsageRule
|
3540
3597
|
include Google::Apis::Core::Hashable
|
3541
3598
|
|
3542
|
-
#
|
3543
|
-
#
|
3599
|
+
# Use this rule to configure unregistered calls for the service. Unregistered
|
3600
|
+
# calls are calls that do not contain consumer project identity. (Example: calls
|
3601
|
+
# that do not contain an API key). WARNING: By default, API methods do not allow
|
3602
|
+
# unregistered calls, and each method call must be identified by a consumer
|
3603
|
+
# project identity.
|
3544
3604
|
# Corresponds to the JSON property `allowUnregisteredCalls`
|
3545
3605
|
# @return [Boolean]
|
3546
3606
|
attr_accessor :allow_unregistered_calls
|
@@ -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.56.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
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class Aspect
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AuthProvider
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -639,6 +645,14 @@ module Google
|
|
639
645
|
end
|
640
646
|
end
|
641
647
|
|
648
|
+
class Aspect
|
649
|
+
# @private
|
650
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
651
|
+
property :kind, as: 'kind'
|
652
|
+
hash :spec, as: 'spec'
|
653
|
+
end
|
654
|
+
end
|
655
|
+
|
642
656
|
class AuthProvider
|
643
657
|
# @private
|
644
658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -697,6 +711,7 @@ module Google
|
|
697
711
|
property :deadline, as: 'deadline'
|
698
712
|
property :disable_auth, as: 'disableAuth'
|
699
713
|
property :jwt_audience, as: 'jwtAudience'
|
714
|
+
property :load_balancing_policy, as: 'loadBalancingPolicy'
|
700
715
|
property :min_deadline, as: 'minDeadline'
|
701
716
|
property :operation_deadline, as: 'operationDeadline'
|
702
717
|
hash :overrides_by_request_protocol, as: 'overridesByRequestProtocol', class: Google::Apis::ServiceconsumermanagementV1beta1::BackendRule, decorator: Google::Apis::ServiceconsumermanagementV1beta1::BackendRule::Representation
|
@@ -905,6 +920,7 @@ module Google
|
|
905
920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
906
921
|
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
907
922
|
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
923
|
+
property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
|
908
924
|
end
|
909
925
|
end
|
910
926
|
|
@@ -1266,6 +1282,7 @@ module Google
|
|
1266
1282
|
class SelectiveGapicGeneration
|
1267
1283
|
# @private
|
1268
1284
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1285
|
+
property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
|
1269
1286
|
collection :methods_prop, as: 'methods'
|
1270
1287
|
end
|
1271
1288
|
end
|
@@ -1275,6 +1292,8 @@ module Google
|
|
1275
1292
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1276
1293
|
collection :apis, as: 'apis', class: Google::Apis::ServiceconsumermanagementV1beta1::Api, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Api::Representation
|
1277
1294
|
|
1295
|
+
collection :aspects, as: 'aspects', class: Google::Apis::ServiceconsumermanagementV1beta1::Aspect, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Aspect::Representation
|
1296
|
+
|
1278
1297
|
property :authentication, as: 'authentication', class: Google::Apis::ServiceconsumermanagementV1beta1::Authentication, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Authentication::Representation
|
1279
1298
|
|
1280
1299
|
property :backend, as: 'backend', class: Google::Apis::ServiceconsumermanagementV1beta1::Backend, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Backend::Representation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.56.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.56.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1beta1
|
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 V1beta1
|
82
79
|
test_files: []
|