google-apis-servicenetworking_v1 0.71.0 → 0.72.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: e73bf812162f54775b247fcc7608e9f763d702277265926d802397295874c480
|
4
|
+
data.tar.gz: 23bd26d4d6b90c4ad67fed61d4c0f706fc9c6580a2c51edb7b0ce02879aa89d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84666b21021288de150e2af200cd02e51189c1e4afec031a9e60e90a7466c7d5ed12734089ff46f14cd25c799a649ddfc46824d212ff24103147657aef1e61f3
|
7
|
+
data.tar.gz: 72af70fcd7d7e85d124b484752ace56cf7b99b8739e383b26914a528db6ef40ec63c61a4ed8f86072169e38a297a90231b8065af10e99e9c309722e926945b58
|
data/CHANGELOG.md
CHANGED
@@ -483,6 +483,33 @@ module Google
|
|
483
483
|
end
|
484
484
|
end
|
485
485
|
|
486
|
+
# Aspect represents Generic aspect. It is used to configure an aspect without
|
487
|
+
# making direct changes to service.proto
|
488
|
+
class Aspect
|
489
|
+
include Google::Apis::Core::Hashable
|
490
|
+
|
491
|
+
# The type of this aspect configuration.
|
492
|
+
# Corresponds to the JSON property `kind`
|
493
|
+
# @return [String]
|
494
|
+
attr_accessor :kind
|
495
|
+
|
496
|
+
# Content of the configuration. The underlying schema should be defined by
|
497
|
+
# Aspect owners as protobuf message under `apiserving/configaspects/proto`.
|
498
|
+
# Corresponds to the JSON property `spec`
|
499
|
+
# @return [Hash<String,Object>]
|
500
|
+
attr_accessor :spec
|
501
|
+
|
502
|
+
def initialize(**args)
|
503
|
+
update!(**args)
|
504
|
+
end
|
505
|
+
|
506
|
+
# Update properties of this object
|
507
|
+
def update!(**args)
|
508
|
+
@kind = args[:kind] if args.key?(:kind)
|
509
|
+
@spec = args[:spec] if args.key?(:spec)
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
486
513
|
# Configuration for an authentication provider, including support for [JSON Web
|
487
514
|
# Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
|
488
515
|
class AuthProvider
|
@@ -740,6 +767,14 @@ module Google
|
|
740
767
|
# @return [String]
|
741
768
|
attr_accessor :jwt_audience
|
742
769
|
|
770
|
+
# The load balancing policy used for connection to the application backend.
|
771
|
+
# Defined as an arbitrary string to accomondate custom load balancing policies
|
772
|
+
# supported by the underlying channel, but suggest most users use one of the
|
773
|
+
# standard policies, such as the default, "RoundRobin".
|
774
|
+
# Corresponds to the JSON property `loadBalancingPolicy`
|
775
|
+
# @return [String]
|
776
|
+
attr_accessor :load_balancing_policy
|
777
|
+
|
743
778
|
# Deprecated, do not use.
|
744
779
|
# Corresponds to the JSON property `minDeadline`
|
745
780
|
# @return [Float]
|
@@ -790,6 +825,7 @@ module Google
|
|
790
825
|
@deadline = args[:deadline] if args.key?(:deadline)
|
791
826
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
792
827
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
828
|
+
@load_balancing_policy = args[:load_balancing_policy] if args.key?(:load_balancing_policy)
|
793
829
|
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
794
830
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
795
831
|
@overrides_by_request_protocol = args[:overrides_by_request_protocol] if args.key?(:overrides_by_request_protocol)
|
@@ -1651,9 +1687,8 @@ module Google
|
|
1651
1687
|
# @return [Array<Google::Apis::ServicenetworkingV1::DocumentationRule>]
|
1652
1688
|
attr_accessor :rules
|
1653
1689
|
|
1654
|
-
# Specifies section and content to override boilerplate content
|
1655
|
-
#
|
1656
|
-
# client_libraries
|
1690
|
+
# Specifies section and content to override the boilerplate content. Currently
|
1691
|
+
# overrides following sections: 1. rest.service.client_libraries
|
1657
1692
|
# Corresponds to the JSON property `sectionOverrides`
|
1658
1693
|
# @return [Array<Google::Apis::ServicenetworkingV1::Page>]
|
1659
1694
|
attr_accessor :section_overrides
|
@@ -1707,7 +1742,7 @@ module Google
|
|
1707
1742
|
attr_accessor :description
|
1708
1743
|
|
1709
1744
|
# String of comma or space separated case-sensitive words for which method/field
|
1710
|
-
# name replacement will be disabled
|
1745
|
+
# name replacement will be disabled.
|
1711
1746
|
# Corresponds to the JSON property `disableReplacementWords`
|
1712
1747
|
# @return [String]
|
1713
1748
|
attr_accessor :disable_replacement_words
|
@@ -1994,6 +2029,15 @@ module Google
|
|
1994
2029
|
attr_accessor :rest_async_io_enabled
|
1995
2030
|
alias_method :rest_async_io_enabled?, :rest_async_io_enabled
|
1996
2031
|
|
2032
|
+
# Disables generation of an unversioned Python package for this client library.
|
2033
|
+
# This means that the module names will need to be versioned in import
|
2034
|
+
# statements. For example `import google.cloud.library_v2` instead of `import
|
2035
|
+
# google.cloud.library`.
|
2036
|
+
# Corresponds to the JSON property `unversionedPackageDisabled`
|
2037
|
+
# @return [Boolean]
|
2038
|
+
attr_accessor :unversioned_package_disabled
|
2039
|
+
alias_method :unversioned_package_disabled?, :unversioned_package_disabled
|
2040
|
+
|
1997
2041
|
def initialize(**args)
|
1998
2042
|
update!(**args)
|
1999
2043
|
end
|
@@ -2002,6 +2046,7 @@ module Google
|
|
2002
2046
|
def update!(**args)
|
2003
2047
|
@protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
|
2004
2048
|
@rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
|
2049
|
+
@unversioned_package_disabled = args[:unversioned_package_disabled] if args.key?(:unversioned_package_disabled)
|
2005
2050
|
end
|
2006
2051
|
end
|
2007
2052
|
|
@@ -3617,7 +3662,7 @@ module Google
|
|
3617
3662
|
class Page
|
3618
3663
|
include Google::Apis::Core::Hashable
|
3619
3664
|
|
3620
|
-
# The Markdown content of the page. You can use (== include `path` ==) to
|
3665
|
+
# The Markdown content of the page. You can use ```(== include `path` ==)``` to
|
3621
3666
|
# include content from a Markdown file. The content can be used to produce the
|
3622
3667
|
# documentation page such as HTML format page.
|
3623
3668
|
# Corresponds to the JSON property `content`
|
@@ -4399,6 +4444,17 @@ module Google
|
|
4399
4444
|
class SelectiveGapicGeneration
|
4400
4445
|
include Google::Apis::Core::Hashable
|
4401
4446
|
|
4447
|
+
# Setting this to true indicates to the client generators that methods that
|
4448
|
+
# would be excluded from the generation should instead be generated in a way
|
4449
|
+
# that indicates these methods should not be consumed by end users. How this is
|
4450
|
+
# expressed is up to individual language implementations to decide. Some
|
4451
|
+
# examples may be: added annotations, obfuscated identifiers, or other language
|
4452
|
+
# idiomatic patterns.
|
4453
|
+
# Corresponds to the JSON property `generateOmittedAsInternal`
|
4454
|
+
# @return [Boolean]
|
4455
|
+
attr_accessor :generate_omitted_as_internal
|
4456
|
+
alias_method :generate_omitted_as_internal?, :generate_omitted_as_internal
|
4457
|
+
|
4402
4458
|
# An allowlist of the fully qualified names of RPCs that should be included on
|
4403
4459
|
# public client surfaces.
|
4404
4460
|
# Corresponds to the JSON property `methods`
|
@@ -4411,6 +4467,7 @@ module Google
|
|
4411
4467
|
|
4412
4468
|
# Update properties of this object
|
4413
4469
|
def update!(**args)
|
4470
|
+
@generate_omitted_as_internal = args[:generate_omitted_as_internal] if args.key?(:generate_omitted_as_internal)
|
4414
4471
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
4415
4472
|
end
|
4416
4473
|
end
|
@@ -4440,6 +4497,14 @@ module Google
|
|
4440
4497
|
# @return [Array<Google::Apis::ServicenetworkingV1::Api>]
|
4441
4498
|
attr_accessor :apis
|
4442
4499
|
|
4500
|
+
# Configuration aspects. This is a repeated field to allow multiple aspects to
|
4501
|
+
# be configured. The kind field in each ConfigAspect specifies the type of
|
4502
|
+
# aspect. The spec field contains the configuration for that aspect. The schema
|
4503
|
+
# for the spec field is defined by the backend service owners.
|
4504
|
+
# Corresponds to the JSON property `aspects`
|
4505
|
+
# @return [Array<Google::Apis::ServicenetworkingV1::Aspect>]
|
4506
|
+
attr_accessor :aspects
|
4507
|
+
|
4443
4508
|
# `Authentication` defines the authentication configuration for API methods
|
4444
4509
|
# provided by an API service. Example: name: calendar.googleapis.com
|
4445
4510
|
# authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
|
@@ -4719,6 +4784,7 @@ module Google
|
|
4719
4784
|
# Update properties of this object
|
4720
4785
|
def update!(**args)
|
4721
4786
|
@apis = args[:apis] if args.key?(:apis)
|
4787
|
+
@aspects = args[:aspects] if args.key?(:aspects)
|
4722
4788
|
@authentication = args[:authentication] if args.key?(:authentication)
|
4723
4789
|
@backend = args[:backend] if args.key?(:backend)
|
4724
4790
|
@billing = args[:billing] if args.key?(:billing)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1
|
18
18
|
# Version of the google-apis-servicenetworking_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250218"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,12 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class Aspect
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
85
91
|
class AuthProvider
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
93
|
|
@@ -880,6 +886,14 @@ module Google
|
|
880
886
|
end
|
881
887
|
end
|
882
888
|
|
889
|
+
class Aspect
|
890
|
+
# @private
|
891
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
892
|
+
property :kind, as: 'kind'
|
893
|
+
hash :spec, as: 'spec'
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
883
897
|
class AuthProvider
|
884
898
|
# @private
|
885
899
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -938,6 +952,7 @@ module Google
|
|
938
952
|
property :deadline, as: 'deadline'
|
939
953
|
property :disable_auth, as: 'disableAuth'
|
940
954
|
property :jwt_audience, as: 'jwtAudience'
|
955
|
+
property :load_balancing_policy, as: 'loadBalancingPolicy'
|
941
956
|
property :min_deadline, as: 'minDeadline'
|
942
957
|
property :operation_deadline, as: 'operationDeadline'
|
943
958
|
hash :overrides_by_request_protocol, as: 'overridesByRequestProtocol', class: Google::Apis::ServicenetworkingV1::BackendRule, decorator: Google::Apis::ServicenetworkingV1::BackendRule::Representation
|
@@ -1266,6 +1281,7 @@ module Google
|
|
1266
1281
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1267
1282
|
property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
|
1268
1283
|
property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
|
1284
|
+
property :unversioned_package_disabled, as: 'unversionedPackageDisabled'
|
1269
1285
|
end
|
1270
1286
|
end
|
1271
1287
|
|
@@ -1832,6 +1848,7 @@ module Google
|
|
1832
1848
|
class SelectiveGapicGeneration
|
1833
1849
|
# @private
|
1834
1850
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1851
|
+
property :generate_omitted_as_internal, as: 'generateOmittedAsInternal'
|
1835
1852
|
collection :methods_prop, as: 'methods'
|
1836
1853
|
end
|
1837
1854
|
end
|
@@ -1841,6 +1858,8 @@ module Google
|
|
1841
1858
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1842
1859
|
collection :apis, as: 'apis', class: Google::Apis::ServicenetworkingV1::Api, decorator: Google::Apis::ServicenetworkingV1::Api::Representation
|
1843
1860
|
|
1861
|
+
collection :aspects, as: 'aspects', class: Google::Apis::ServicenetworkingV1::Aspect, decorator: Google::Apis::ServicenetworkingV1::Aspect::Representation
|
1862
|
+
|
1844
1863
|
property :authentication, as: 'authentication', class: Google::Apis::ServicenetworkingV1::Authentication, decorator: Google::Apis::ServicenetworkingV1::Authentication::Representation
|
1845
1864
|
|
1846
1865
|
property :backend, as: 'backend', class: Google::Apis::ServicenetworkingV1::Backend, decorator: Google::Apis::ServicenetworkingV1::Backend::Representation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.72.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Service Networking API V1
|
79
79
|
test_files: []
|