google-apis-servicenetworking_v1beta 0.57.0 → 0.58.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: 65a8664b9b13ce8c9e66c27da74ecf32643a607bc61e116bff29e6e5aed30449
4
- data.tar.gz: 380fee60beeaa5051f19a64c87b091a7bd05d55195d79427965fa69f9e7107e2
3
+ metadata.gz: 922fb0cf20607b3f53b249c740c7c0d7ca86bca3f9bd5db9dc51b1da250521ce
4
+ data.tar.gz: ac8e7ea0188983386a549a8cf7fee915b3085b9adadb6ff25a079e3a877ea87b
5
5
  SHA512:
6
- metadata.gz: 4ca7848de51bc8f802d35443a93e9fdaae918bc4adc6d36f22711f95775f1ddcea0da8aeee9a236b4d7aec50058ab237ca01586470475c1e893de28a5ba96795
7
- data.tar.gz: 49d3a4722e1ce49d2a38b928b5c8844d35b5e35ddfbbd2f6527e24e0a8ece1b8f8fa3e3d5225f4985a733d5b062a72b29dd21eef54f27bc4c9041786fd6f62e6
6
+ metadata.gz: 718e84336b5a8388c69d58bb6ed80e15dc4a52504fd50e94b347e2f39cdf5bb6e1f9442ad07c2f31f80d904ca62ada152c8e44f01e4715c768d3e3d712598758
7
+ data.tar.gz: 7ef496b6cdd88de03e1dd58bbbb6742551dbcfda0f70c9d5cb0c7dcd7ca938d75ff477e90a38543ea64b8830119c11ac76b5444246f11f54686863efd7e5043a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-servicenetworking_v1beta
2
2
 
3
+ ### v0.58.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250218
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.57.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241212
@@ -265,6 +265,33 @@ module Google
265
265
  end
266
266
  end
267
267
 
268
+ # Aspect represents Generic aspect. It is used to configure an aspect without
269
+ # making direct changes to service.proto
270
+ class Aspect
271
+ include Google::Apis::Core::Hashable
272
+
273
+ # The type of this aspect configuration.
274
+ # Corresponds to the JSON property `kind`
275
+ # @return [String]
276
+ attr_accessor :kind
277
+
278
+ # Content of the configuration. The underlying schema should be defined by
279
+ # Aspect owners as protobuf message under `apiserving/configaspects/proto`.
280
+ # Corresponds to the JSON property `spec`
281
+ # @return [Hash<String,Object>]
282
+ attr_accessor :spec
283
+
284
+ def initialize(**args)
285
+ update!(**args)
286
+ end
287
+
288
+ # Update properties of this object
289
+ def update!(**args)
290
+ @kind = args[:kind] if args.key?(:kind)
291
+ @spec = args[:spec] if args.key?(:spec)
292
+ end
293
+ end
294
+
268
295
  # Configuration for an authentication provider, including support for [JSON Web
269
296
  # Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
270
297
  class AuthProvider
@@ -522,6 +549,14 @@ module Google
522
549
  # @return [String]
523
550
  attr_accessor :jwt_audience
524
551
 
552
+ # The load balancing policy used for connection to the application backend.
553
+ # Defined as an arbitrary string to accomondate custom load balancing policies
554
+ # supported by the underlying channel, but suggest most users use one of the
555
+ # standard policies, such as the default, "RoundRobin".
556
+ # Corresponds to the JSON property `loadBalancingPolicy`
557
+ # @return [String]
558
+ attr_accessor :load_balancing_policy
559
+
525
560
  # Deprecated, do not use.
526
561
  # Corresponds to the JSON property `minDeadline`
527
562
  # @return [Float]
@@ -572,6 +607,7 @@ module Google
572
607
  @deadline = args[:deadline] if args.key?(:deadline)
573
608
  @disable_auth = args[:disable_auth] if args.key?(:disable_auth)
574
609
  @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
610
+ @load_balancing_policy = args[:load_balancing_policy] if args.key?(:load_balancing_policy)
575
611
  @min_deadline = args[:min_deadline] if args.key?(:min_deadline)
576
612
  @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
577
613
  @overrides_by_request_protocol = args[:overrides_by_request_protocol] if args.key?(:overrides_by_request_protocol)
@@ -1331,9 +1367,8 @@ module Google
1331
1367
  # @return [Array<Google::Apis::ServicenetworkingV1beta::DocumentationRule>]
1332
1368
  attr_accessor :rules
1333
1369
 
1334
- # Specifies section and content to override boilerplate content provided by go/
1335
- # api-docgen. Currently overrides following sections: 1. rest.service.
1336
- # client_libraries
1370
+ # Specifies section and content to override the boilerplate content. Currently
1371
+ # overrides following sections: 1. rest.service.client_libraries
1337
1372
  # Corresponds to the JSON property `sectionOverrides`
1338
1373
  # @return [Array<Google::Apis::ServicenetworkingV1beta::Page>]
1339
1374
  attr_accessor :section_overrides
@@ -1387,7 +1422,7 @@ module Google
1387
1422
  attr_accessor :description
1388
1423
 
1389
1424
  # String of comma or space separated case-sensitive words for which method/field
1390
- # name replacement will be disabled by go/api-docgen.
1425
+ # name replacement will be disabled.
1391
1426
  # Corresponds to the JSON property `disableReplacementWords`
1392
1427
  # @return [String]
1393
1428
  attr_accessor :disable_replacement_words
@@ -1637,6 +1672,15 @@ module Google
1637
1672
  attr_accessor :rest_async_io_enabled
1638
1673
  alias_method :rest_async_io_enabled?, :rest_async_io_enabled
1639
1674
 
1675
+ # Disables generation of an unversioned Python package for this client library.
1676
+ # This means that the module names will need to be versioned in import
1677
+ # statements. For example `import google.cloud.library_v2` instead of `import
1678
+ # google.cloud.library`.
1679
+ # Corresponds to the JSON property `unversionedPackageDisabled`
1680
+ # @return [Boolean]
1681
+ attr_accessor :unversioned_package_disabled
1682
+ alias_method :unversioned_package_disabled?, :unversioned_package_disabled
1683
+
1640
1684
  def initialize(**args)
1641
1685
  update!(**args)
1642
1686
  end
@@ -1645,6 +1689,7 @@ module Google
1645
1689
  def update!(**args)
1646
1690
  @protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
1647
1691
  @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1692
+ @unversioned_package_disabled = args[:unversioned_package_disabled] if args.key?(:unversioned_package_disabled)
1648
1693
  end
1649
1694
  end
1650
1695
 
@@ -3150,7 +3195,7 @@ module Google
3150
3195
  class Page
3151
3196
  include Google::Apis::Core::Hashable
3152
3197
 
3153
- # The Markdown content of the page. You can use (== include `path` ==) to
3198
+ # The Markdown content of the page. You can use ```(== include `path` ==)``` to
3154
3199
  # include content from a Markdown file. The content can be used to produce the
3155
3200
  # documentation page such as HTML format page.
3156
3201
  # Corresponds to the JSON property `content`
@@ -3769,6 +3814,17 @@ module Google
3769
3814
  class SelectiveGapicGeneration
3770
3815
  include Google::Apis::Core::Hashable
3771
3816
 
3817
+ # Setting this to true indicates to the client generators that methods that
3818
+ # would be excluded from the generation should instead be generated in a way
3819
+ # that indicates these methods should not be consumed by end users. How this is
3820
+ # expressed is up to individual language implementations to decide. Some
3821
+ # examples may be: added annotations, obfuscated identifiers, or other language
3822
+ # idiomatic patterns.
3823
+ # Corresponds to the JSON property `generateOmittedAsInternal`
3824
+ # @return [Boolean]
3825
+ attr_accessor :generate_omitted_as_internal
3826
+ alias_method :generate_omitted_as_internal?, :generate_omitted_as_internal
3827
+
3772
3828
  # An allowlist of the fully qualified names of RPCs that should be included on
3773
3829
  # public client surfaces.
3774
3830
  # Corresponds to the JSON property `methods`
@@ -3781,6 +3837,7 @@ module Google
3781
3837
 
3782
3838
  # Update properties of this object
3783
3839
  def update!(**args)
3840
+ @generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
3784
3841
  @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
3785
3842
  end
3786
3843
  end
@@ -3810,6 +3867,14 @@ module Google
3810
3867
  # @return [Array<Google::Apis::ServicenetworkingV1beta::Api>]
3811
3868
  attr_accessor :apis
3812
3869
 
3870
+ # Configuration aspects. This is a repeated field to allow multiple aspects to
3871
+ # be configured. The kind field in each ConfigAspect specifies the type of
3872
+ # aspect. The spec field contains the configuration for that aspect. The schema
3873
+ # for the spec field is defined by the backend service owners.
3874
+ # Corresponds to the JSON property `aspects`
3875
+ # @return [Array<Google::Apis::ServicenetworkingV1beta::Aspect>]
3876
+ attr_accessor :aspects
3877
+
3813
3878
  # `Authentication` defines the authentication configuration for API methods
3814
3879
  # provided by an API service. Example: name: calendar.googleapis.com
3815
3880
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
@@ -4089,6 +4154,7 @@ module Google
4089
4154
  # Update properties of this object
4090
4155
  def update!(**args)
4091
4156
  @apis = args[:apis] if args.key?(:apis)
4157
+ @aspects = args[:aspects] if args.key?(:aspects)
4092
4158
  @authentication = args[:authentication] if args.key?(:authentication)
4093
4159
  @backend = args[:backend] if args.key?(:backend)
4094
4160
  @billing = args[:billing] if args.key?(:billing)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1beta
18
18
  # Version of the google-apis-servicenetworking_v1beta gem
19
- GEM_VERSION = "0.57.0"
19
+ GEM_VERSION = "0.58.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 = "20241212"
25
+ REVISION = "20250218"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class Aspect
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class AuthProvider
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -701,6 +707,14 @@ module Google
701
707
  end
702
708
  end
703
709
 
710
+ class Aspect
711
+ # @private
712
+ class Representation < Google::Apis::Core::JsonRepresentation
713
+ property :kind, as: 'kind'
714
+ hash :spec, as: 'spec'
715
+ end
716
+ end
717
+
704
718
  class AuthProvider
705
719
  # @private
706
720
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -759,6 +773,7 @@ module Google
759
773
  property :deadline, as: 'deadline'
760
774
  property :disable_auth, as: 'disableAuth'
761
775
  property :jwt_audience, as: 'jwtAudience'
776
+ property :load_balancing_policy, as: 'loadBalancingPolicy'
762
777
  property :min_deadline, as: 'minDeadline'
763
778
  property :operation_deadline, as: 'operationDeadline'
764
779
  hash :overrides_by_request_protocol, as: 'overridesByRequestProtocol', class: Google::Apis::ServicenetworkingV1beta::BackendRule, decorator: Google::Apis::ServicenetworkingV1beta::BackendRule::Representation
@@ -1037,6 +1052,7 @@ module Google
1037
1052
  class Representation < Google::Apis::Core::JsonRepresentation
1038
1053
  property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
1039
1054
  property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
1055
+ property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
1040
1056
  end
1041
1057
  end
1042
1058
 
@@ -1521,6 +1537,7 @@ module Google
1521
1537
  class SelectiveGapicGeneration
1522
1538
  # @private
1523
1539
  class Representation < Google::Apis::Core::JsonRepresentation
1540
+ property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
1524
1541
  collection :methods_prop, as: 'methods'
1525
1542
  end
1526
1543
  end
@@ -1530,6 +1547,8 @@ module Google
1530
1547
  class Representation < Google::Apis::Core::JsonRepresentation
1531
1548
  collection :apis, as: 'apis', class: Google::Apis::ServicenetworkingV1beta::Api, decorator: Google::Apis::ServicenetworkingV1beta::Api::Representation
1532
1549
 
1550
+ collection :aspects, as: 'aspects', class: Google::Apis::ServicenetworkingV1beta::Aspect, decorator: Google::Apis::ServicenetworkingV1beta::Aspect::Representation
1551
+
1533
1552
  property :authentication, as: 'authentication', class: Google::Apis::ServicenetworkingV1beta::Authentication, decorator: Google::Apis::ServicenetworkingV1beta::Authentication::Representation
1534
1553
 
1535
1554
  property :backend, as: 'backend', class: Google::Apis::ServicenetworkingV1beta::Backend, decorator: Google::Apis::ServicenetworkingV1beta::Backend::Representation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.58.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-servicenetworking_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.58.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
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 Networking API V1beta
82
79
  test_files: []