google-apis-servicenetworking_v1 0.85.0 → 0.86.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/servicenetworking_v1/classes.rb +52 -7
- data/lib/google/apis/servicenetworking_v1/gem_version.rb +3 -3
- data/lib/google/apis/servicenetworking_v1/representations.rb +17 -0
- data/lib/google/apis/servicenetworking_v1/service.rb +6 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a5d7894516052836c002d6b1d77c249b84b9a53d9b78344c92ffc8dcd0a9e78
|
|
4
|
+
data.tar.gz: a3a7e16b620dece4742931352bc0ed40b04a3522fe1a27fc1e3a7206d7b37bf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4315c3d9644f26aadc6210324d78cc09eeda3bce50dc3d968e5d3d7cfef416edcb2dae9122b4430a3bd7d41563c2a8a8ac889e505981fab9e7af99d946609ded
|
|
7
|
+
data.tar.gz: d2eb83dbea3473fadda777ef748736425aaa884bc5432c878d7b4f0bef78bc7ba470b7b8c9646d9c10c36c0e12ce139f65b324290abe865d3fbf73378f01f9e0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1
|
|
2
2
|
|
|
3
|
+
### v0.86.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260406
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.85.0 (2025-11-02)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20251027
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/service-infrastructure/docs
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -501,6 +501,11 @@ module Google
|
|
|
501
501
|
# @return [String]
|
|
502
502
|
attr_accessor :kind
|
|
503
503
|
|
|
504
|
+
# Optional. Rules of the Configuration.
|
|
505
|
+
# Corresponds to the JSON property `rules`
|
|
506
|
+
# @return [Array<Google::Apis::ServicenetworkingV1::AspectRule>]
|
|
507
|
+
attr_accessor :rules
|
|
508
|
+
|
|
504
509
|
# Content of the configuration. The underlying schema should be defined by
|
|
505
510
|
# Aspect owners as protobuf message under `google/api/configaspects/proto`.
|
|
506
511
|
# Corresponds to the JSON property `spec`
|
|
@@ -514,10 +519,38 @@ module Google
|
|
|
514
519
|
# Update properties of this object
|
|
515
520
|
def update!(**args)
|
|
516
521
|
@kind = args[:kind] if args.key?(:kind)
|
|
522
|
+
@rules = args[:rules] if args.key?(:rules)
|
|
517
523
|
@spec = args[:spec] if args.key?(:spec)
|
|
518
524
|
end
|
|
519
525
|
end
|
|
520
526
|
|
|
527
|
+
# Rule-based configuration for an aspect.
|
|
528
|
+
class AspectRule
|
|
529
|
+
include Google::Apis::Core::Hashable
|
|
530
|
+
|
|
531
|
+
# Required. Rules of the configuration. The underlying schema should be defined
|
|
532
|
+
# by Aspect owners as protobuf message under `google/api/configaspects/proto`.
|
|
533
|
+
# Corresponds to the JSON property `config`
|
|
534
|
+
# @return [Hash<String,Object>]
|
|
535
|
+
attr_accessor :config
|
|
536
|
+
|
|
537
|
+
# Required. Selects the RPC methods to which this rule applies. Refer to
|
|
538
|
+
# selector for syntax details.
|
|
539
|
+
# Corresponds to the JSON property `selector`
|
|
540
|
+
# @return [String]
|
|
541
|
+
attr_accessor :selector
|
|
542
|
+
|
|
543
|
+
def initialize(**args)
|
|
544
|
+
update!(**args)
|
|
545
|
+
end
|
|
546
|
+
|
|
547
|
+
# Update properties of this object
|
|
548
|
+
def update!(**args)
|
|
549
|
+
@config = args[:config] if args.key?(:config)
|
|
550
|
+
@selector = args[:selector] if args.key?(:selector)
|
|
551
|
+
end
|
|
552
|
+
end
|
|
553
|
+
|
|
521
554
|
# Configuration for an authentication provider, including support for [JSON Web
|
|
522
555
|
# Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
|
|
523
556
|
class AuthProvider
|
|
@@ -799,7 +832,9 @@ module Google
|
|
|
799
832
|
# @return [Hash<String,Google::Apis::ServicenetworkingV1::BackendRule>]
|
|
800
833
|
attr_accessor :overrides_by_request_protocol
|
|
801
834
|
|
|
802
|
-
#
|
|
835
|
+
# Path translation specifies how to combine the backend address with the request
|
|
836
|
+
# path in order to produce the appropriate forwarding URL for the request. See
|
|
837
|
+
# PathTranslation for more details.
|
|
803
838
|
# Corresponds to the JSON property `pathTranslation`
|
|
804
839
|
# @return [String]
|
|
805
840
|
attr_accessor :path_translation
|
|
@@ -1198,7 +1233,8 @@ module Google
|
|
|
1198
1233
|
attr_accessor :reference_docs_uri
|
|
1199
1234
|
|
|
1200
1235
|
# This message is used to configure the generation of a subset of the RPCs in a
|
|
1201
|
-
# service for client libraries.
|
|
1236
|
+
# service for client libraries. Note: This feature should not be used in most
|
|
1237
|
+
# cases.
|
|
1202
1238
|
# Corresponds to the JSON property `selectiveGapicGeneration`
|
|
1203
1239
|
# @return [Google::Apis::ServicenetworkingV1::SelectiveGapicGeneration]
|
|
1204
1240
|
attr_accessor :selective_gapic_generation
|
|
@@ -1301,6 +1337,12 @@ module Google
|
|
|
1301
1337
|
attr_accessor :consumer_import_subnet_routes_with_public_ip
|
|
1302
1338
|
alias_method :consumer_import_subnet_routes_with_public_ip?, :consumer_import_subnet_routes_with_public_ip
|
|
1303
1339
|
|
|
1340
|
+
# Output only. If this is true, consumer peering is active.
|
|
1341
|
+
# Corresponds to the JSON property `consumerPeeringActive`
|
|
1342
|
+
# @return [Boolean]
|
|
1343
|
+
attr_accessor :consumer_peering_active
|
|
1344
|
+
alias_method :consumer_peering_active?, :consumer_peering_active
|
|
1345
|
+
|
|
1304
1346
|
# Export custom routes flag value for peering from producer to consumer.
|
|
1305
1347
|
# Corresponds to the JSON property `producerExportCustomRoutes`
|
|
1306
1348
|
# @return [Boolean]
|
|
@@ -1363,6 +1405,7 @@ module Google
|
|
|
1363
1405
|
@consumer_export_subnet_routes_with_public_ip = args[:consumer_export_subnet_routes_with_public_ip] if args.key?(:consumer_export_subnet_routes_with_public_ip)
|
|
1364
1406
|
@consumer_import_custom_routes = args[:consumer_import_custom_routes] if args.key?(:consumer_import_custom_routes)
|
|
1365
1407
|
@consumer_import_subnet_routes_with_public_ip = args[:consumer_import_subnet_routes_with_public_ip] if args.key?(:consumer_import_subnet_routes_with_public_ip)
|
|
1408
|
+
@consumer_peering_active = args[:consumer_peering_active] if args.key?(:consumer_peering_active)
|
|
1366
1409
|
@producer_export_custom_routes = args[:producer_export_custom_routes] if args.key?(:producer_export_custom_routes)
|
|
1367
1410
|
@producer_export_subnet_routes_with_public_ip = args[:producer_export_subnet_routes_with_public_ip] if args.key?(:producer_export_subnet_routes_with_public_ip)
|
|
1368
1411
|
@producer_import_custom_routes = args[:producer_import_custom_routes] if args.key?(:producer_import_custom_routes)
|
|
@@ -2945,8 +2988,9 @@ module Google
|
|
|
2945
2988
|
attr_accessor :operations
|
|
2946
2989
|
|
|
2947
2990
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2948
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
2949
|
-
# when attempting to list all resources across all supported
|
|
2991
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
2992
|
+
# For example, when attempting to list all resources across all supported
|
|
2993
|
+
# locations.
|
|
2950
2994
|
# Corresponds to the JSON property `unreachable`
|
|
2951
2995
|
# @return [Array<String>]
|
|
2952
2996
|
attr_accessor :unreachable
|
|
@@ -4650,7 +4694,8 @@ module Google
|
|
|
4650
4694
|
end
|
|
4651
4695
|
|
|
4652
4696
|
# This message is used to configure the generation of a subset of the RPCs in a
|
|
4653
|
-
# service for client libraries.
|
|
4697
|
+
# service for client libraries. Note: This feature should not be used in most
|
|
4698
|
+
# cases.
|
|
4654
4699
|
class SelectiveGapicGeneration
|
|
4655
4700
|
include Google::Apis::Core::Hashable
|
|
4656
4701
|
|
|
@@ -4872,8 +4917,8 @@ module Google
|
|
|
4872
4917
|
# @return [Array<Google::Apis::ServicenetworkingV1::MetricDescriptor>]
|
|
4873
4918
|
attr_accessor :metrics
|
|
4874
4919
|
|
|
4875
|
-
# Defines the monitored resources used by this service. This is required by the
|
|
4876
|
-
# Service.monitoring and Service.logging configurations.
|
|
4920
|
+
# Defines the monitored resources used by this service. This is required by the `
|
|
4921
|
+
# Service.monitoring` and `Service.logging` configurations.
|
|
4877
4922
|
# Corresponds to the JSON property `monitoredResources`
|
|
4878
4923
|
# @return [Array<Google::Apis::ServicenetworkingV1::MonitoredResourceDescriptor>]
|
|
4879
4924
|
attr_accessor :monitored_resources
|
|
@@ -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.86.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260406"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -88,6 +88,12 @@ module Google
|
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
|
89
89
|
end
|
|
90
90
|
|
|
91
|
+
class AspectRule
|
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
|
+
|
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
95
|
+
end
|
|
96
|
+
|
|
91
97
|
class AuthProvider
|
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
99
|
|
|
@@ -915,10 +921,20 @@ module Google
|
|
|
915
921
|
# @private
|
|
916
922
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
917
923
|
property :kind, as: 'kind'
|
|
924
|
+
collection :rules, as: 'rules', class: Google::Apis::ServicenetworkingV1::AspectRule, decorator: Google::Apis::ServicenetworkingV1::AspectRule::Representation
|
|
925
|
+
|
|
918
926
|
hash :spec, as: 'spec'
|
|
919
927
|
end
|
|
920
928
|
end
|
|
921
929
|
|
|
930
|
+
class AspectRule
|
|
931
|
+
# @private
|
|
932
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
933
|
+
hash :config, as: 'config'
|
|
934
|
+
property :selector, as: 'selector'
|
|
935
|
+
end
|
|
936
|
+
end
|
|
937
|
+
|
|
922
938
|
class AuthProvider
|
|
923
939
|
# @private
|
|
924
940
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1112,6 +1128,7 @@ module Google
|
|
|
1112
1128
|
property :consumer_export_subnet_routes_with_public_ip, as: 'consumerExportSubnetRoutesWithPublicIp'
|
|
1113
1129
|
property :consumer_import_custom_routes, as: 'consumerImportCustomRoutes'
|
|
1114
1130
|
property :consumer_import_subnet_routes_with_public_ip, as: 'consumerImportSubnetRoutesWithPublicIp'
|
|
1131
|
+
property :consumer_peering_active, as: 'consumerPeeringActive'
|
|
1115
1132
|
property :producer_export_custom_routes, as: 'producerExportCustomRoutes'
|
|
1116
1133
|
property :producer_export_subnet_routes_with_public_ip, as: 'producerExportSubnetRoutesWithPublicIp'
|
|
1117
1134
|
property :producer_import_custom_routes, as: 'producerImportCustomRoutes'
|
|
@@ -168,11 +168,12 @@ module Google
|
|
|
168
168
|
# The standard list page token.
|
|
169
169
|
# @param [Boolean] return_partial_success
|
|
170
170
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
171
|
-
# those that are unreachable are returned in the
|
|
172
|
-
# unreachable
|
|
173
|
-
#
|
|
174
|
-
# by default
|
|
175
|
-
# explicitly documented otherwise in service or product specific
|
|
171
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
172
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
173
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
174
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
175
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
176
|
+
# documentation.
|
|
176
177
|
# @param [String] fields
|
|
177
178
|
# Selector specifying which fields to include in a partial response.
|
|
178
179
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.86.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.86.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|