google-apis-serviceconsumermanagement_v1 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: a03e3c90b47e13d4e95dc2fe36020c43fb41254fd6ed85e1f58273ccbf58e5d2
4
- data.tar.gz: 541304a6355de8804ce979c2ffbb6042591e82097f0cd98e6be0e6f6cfb9b765
3
+ metadata.gz: b4deba3b0db2a09031003c8b27a07fbfc97c7b661aa6f61f44b34b41e7d9af66
4
+ data.tar.gz: 293183b76e950fcb22f6aab93e434891330fb3ad5d907d3aa4452fbdc721fc48
5
5
  SHA512:
6
- metadata.gz: fed0665df1781e190fee31ea8e1a46402d92c76d8d38752093ad8468fcd50c100514bbf8494c5d465db51ce7d96f76ad405f23356fbafb94ee285a6c05a7073b
7
- data.tar.gz: 3cb628c03bce846860e35144ee7b0947544f81eb6e2899dade7e66833204c7d5544d0b860f045f2e3010baba767f2472060e3742349b63d72a7f70260884ec34
6
+ metadata.gz: 207a2002180006fa8443ea0ee8360ad219cc0dfd872f3dc328676c47c7ad3a1874a4a934908d6f88c1ef1d9a15d0faab6aaf083d453ed52609aced9b25d792fe
7
+ data.tar.gz: 44a52a86e151f57cc140f02a967bc59a7546feaae2e5be2ba79bf5a34a9c9fc7f65262c14a825ec016004ec39177a1fc7c4b81d6531336eaa878e8061453d745
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.56.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250218
6
+ * Regenerated using generator version 0.16.0
7
+
8
+ ### v0.55.0 (2024-12-22)
9
+
10
+ * Regenerated from discovery document revision 20241210
11
+
3
12
  ### v0.54.0 (2024-11-24)
4
13
 
5
14
  * Regenerated from discovery document revision 20241115
@@ -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)
@@ -1001,6 +1037,12 @@ module Google
1001
1037
  class Documentation
1002
1038
  include Google::Apis::Core::Hashable
1003
1039
 
1040
+ # Optional information about the IAM configuration. This is typically used to
1041
+ # link to documentation about a product's IAM roles and permissions.
1042
+ # Corresponds to the JSON property `additionalIamInfo`
1043
+ # @return [String]
1044
+ attr_accessor :additional_iam_info
1045
+
1004
1046
  # The URL to the root of documentation.
1005
1047
  # Corresponds to the JSON property `documentationRootUrl`
1006
1048
  # @return [String]
@@ -1026,9 +1068,8 @@ module Google
1026
1068
  # @return [Array<Google::Apis::ServiceconsumermanagementV1::DocumentationRule>]
1027
1069
  attr_accessor :rules
1028
1070
 
1029
- # Specifies section and content to override boilerplate content provided by go/
1030
- # api-docgen. Currently overrides following sections: 1. rest.service.
1031
- # client_libraries
1071
+ # Specifies section and content to override the boilerplate content. Currently
1072
+ # overrides following sections: 1. rest.service.client_libraries
1032
1073
  # Corresponds to the JSON property `sectionOverrides`
1033
1074
  # @return [Array<Google::Apis::ServiceconsumermanagementV1::Page>]
1034
1075
  attr_accessor :section_overrides
@@ -1053,6 +1094,7 @@ module Google
1053
1094
 
1054
1095
  # Update properties of this object
1055
1096
  def update!(**args)
1097
+ @additional_iam_info = args[:additional_iam_info] if args.key?(:additional_iam_info)
1056
1098
  @documentation_root_url = args[:documentation_root_url] if args.key?(:documentation_root_url)
1057
1099
  @overview = args[:overview] if args.key?(:overview)
1058
1100
  @pages = args[:pages] if args.key?(:pages)
@@ -1081,7 +1123,7 @@ module Google
1081
1123
  attr_accessor :description
1082
1124
 
1083
1125
  # String of comma or space separated case-sensitive words for which method/field
1084
- # name replacement will be disabled by go/api-docgen.
1126
+ # name replacement will be disabled.
1085
1127
  # Corresponds to the JSON property `disableReplacementWords`
1086
1128
  # @return [String]
1087
1129
  attr_accessor :disable_replacement_words
@@ -1347,6 +1389,15 @@ module Google
1347
1389
  attr_accessor :rest_async_io_enabled
1348
1390
  alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1349
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
+
1350
1401
  def initialize(**args)
1351
1402
  update!(**args)
1352
1403
  end
@@ -1355,6 +1406,7 @@ module Google
1355
1406
  def update!(**args)
1356
1407
  @protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
1357
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)
1358
1410
  end
1359
1411
  end
1360
1412
 
@@ -2768,7 +2820,7 @@ module Google
2768
2820
  class Page
2769
2821
  include Google::Apis::Core::Hashable
2770
2822
 
2771
- # 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
2772
2824
  # include content from a Markdown file. The content can be used to produce the
2773
2825
  # documentation page such as HTML format page.
2774
2826
  # Corresponds to the JSON property `content`
@@ -3188,6 +3240,17 @@ module Google
3188
3240
  class SelectiveGapicGeneration
3189
3241
  include Google::Apis::Core::Hashable
3190
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
+
3191
3254
  # An allowlist of the fully qualified names of RPCs that should be included on
3192
3255
  # public client surfaces.
3193
3256
  # Corresponds to the JSON property `methods`
@@ -3200,6 +3263,7 @@ module Google
3200
3263
 
3201
3264
  # Update properties of this object
3202
3265
  def update!(**args)
3266
+ @generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
3203
3267
  @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
3204
3268
  end
3205
3269
  end
@@ -3229,6 +3293,14 @@ module Google
3229
3293
  # @return [Array<Google::Apis::ServiceconsumermanagementV1::Api>]
3230
3294
  attr_accessor :apis
3231
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
+
3232
3304
  # `Authentication` defines the authentication configuration for API methods
3233
3305
  # provided by an API service. Example: name: calendar.googleapis.com
3234
3306
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
@@ -3508,6 +3580,7 @@ module Google
3508
3580
  # Update properties of this object
3509
3581
  def update!(**args)
3510
3582
  @apis = args[:apis] if args.key?(:apis)
3583
+ @aspects = args[:aspects] if args.key?(:aspects)
3511
3584
  @authentication = args[:authentication] if args.key?(:authentication)
3512
3585
  @backend = args[:backend] if args.key?(:backend)
3513
3586
  @billing = args[:billing] if args.key?(:billing)
@@ -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.54.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.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241115"
25
+ REVISION = "20250218"
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
@@ -918,6 +933,7 @@ module Google
918
933
  class Documentation
919
934
  # @private
920
935
  class Representation < Google::Apis::Core::JsonRepresentation
936
+ property :additional_iam_info, as: 'additionalIamInfo'
921
937
  property :documentation_root_url, as: 'documentationRootUrl'
922
938
  property :overview, as: 'overview'
923
939
  collection :pages, as: 'pages', class: Google::Apis::ServiceconsumermanagementV1::Page, decorator: Google::Apis::ServiceconsumermanagementV1::Page::Representation
@@ -1000,6 +1016,7 @@ module Google
1000
1016
  class Representation < Google::Apis::Core::JsonRepresentation
1001
1017
  property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
1002
1018
  property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
1019
+ property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
1003
1020
  end
1004
1021
  end
1005
1022
 
@@ -1403,6 +1420,7 @@ module Google
1403
1420
  class SelectiveGapicGeneration
1404
1421
  # @private
1405
1422
  class Representation < Google::Apis::Core::JsonRepresentation
1423
+ property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
1406
1424
  collection :methods_prop, as: 'methods'
1407
1425
  end
1408
1426
  end
@@ -1412,6 +1430,8 @@ module Google
1412
1430
  class Representation < Google::Apis::Core::JsonRepresentation
1413
1431
  collection :apis, as: 'apis', class: Google::Apis::ServiceconsumermanagementV1::Api, decorator: Google::Apis::ServiceconsumermanagementV1::Api::Representation
1414
1432
 
1433
+ collection :aspects, as: 'aspects', class: Google::Apis::ServiceconsumermanagementV1::Aspect, decorator: Google::Apis::ServiceconsumermanagementV1::Aspect::Representation
1434
+
1415
1435
  property :authentication, as: 'authentication', class: Google::Apis::ServiceconsumermanagementV1::Authentication, decorator: Google::Apis::ServiceconsumermanagementV1::Authentication::Representation
1416
1436
 
1417
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.54.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: 2024-12-04 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.54.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.56.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.22
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: []