google-apis-serviceconsumermanagement_v1beta1 0.54.0 → 0.55.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: 1f9171bb8b31cc3635825c53274a0c489445b82132d8d62af4faedc14cddc3b3
4
- data.tar.gz: edc9a1250ca6d3402425fa9be0b70ce617885cfd4ba5cbddda9df2fac088da20
3
+ metadata.gz: 0b321677ffe9e6557cbeb7076b9ad679e6e867ea9be3b9965b21d2ad377c432d
4
+ data.tar.gz: 475ef2af77472a24ff7ddfbb12cf57986d7397320c12fada927a5c90ec2a185d
5
5
  SHA512:
6
- metadata.gz: f719e1073c2e38e1974884473009f383c4e44e31cf865b7991ada6e838ed4f26b97060bff7d672f4ebe8a939372c4ac4258e7af2af405826a1339c2306fa0cdf
7
- data.tar.gz: beb62419f58076e6ff1e58c5fdf71ced00a2720a874b69e0e788dd4a5107c643002519f397f01cb84e3f4cbe72d7c5e584967312dd19f7b94e2fac98e959134f
6
+ metadata.gz: 3c5a7ca421fee6eacf6ab8d94eb370e7840556c1f3c5d98e487b428ad3ae9b333a7034505af8dadaa308e05e8f9d28ff325a518e7059ba80479158e7cc2873e6
7
+ data.tar.gz: bc03e6bd7b1f8ec431ad184b243a8195af6bd3b497c3d42ca9d5f184cfcf00302700ca67dfdf3c9a44ccfdf70968fadbc2c0a3c28ded641ecd9834dd0d599954
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.55.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250218
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.54.0 (2024-12-15)
4
9
 
5
10
  * 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 provided by go/
867
- # api-docgen. Currently overrides following sections: 1. rest.service.
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 by go/api-docgen.
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)
@@ -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.54.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241205"
25
+ REVISION = "20250218"
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.54.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-02 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.54.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.55.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.23
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: []