google-apis-networkservices_v1 0.41.0 → 0.42.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 928b6c3fbbac54f4fffd945741b325bdd12463805cd0858688cfe47afb98f35a
|
4
|
+
data.tar.gz: ba6aaa379adfa7f95219fc76b447ff6c5a8e080f8662a8de63df5d7a5d1aa616
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81889487c332a64941d3076a54dc0400aeed443d3e890c68ee55b3490bd1bda7e6be3925b58f50db920cf3dab31eafb69edc45039e7e9d904ac1ee170df26f90
|
7
|
+
data.tar.gz: 2e095f77a8ed321a3b87d738275b188b556b220108926de8e511a59250bd2ea49d341b464cd4737877624f0b8bdbb082295e89b2a1d54e7c1262dfef1bf8fe33
|
data/CHANGELOG.md
CHANGED
@@ -551,7 +551,7 @@ module Google
|
|
551
551
|
|
552
552
|
# Optional. A set of events during request or response processing for which this
|
553
553
|
# extension is called. This field is required for the `LbTrafficExtension`
|
554
|
-
# resource. It
|
554
|
+
# resource. It must not be set for the `LbRouteExtension` resource.
|
555
555
|
# Corresponds to the JSON property `supportedEvents`
|
556
556
|
# @return [Array<String>]
|
557
557
|
attr_accessor :supported_events
|
@@ -2171,6 +2171,16 @@ module Google
|
|
2171
2171
|
# @return [String]
|
2172
2172
|
attr_accessor :load_balancing_scheme
|
2173
2173
|
|
2174
|
+
# Optional. The metadata provided here will be included as part of the `
|
2175
|
+
# metadata_context` (of type `google.protobuf.Struct`) in the `ProcessingRequest`
|
2176
|
+
# message sent to the extension server. The metadata will be available under
|
2177
|
+
# the namespace `com.google.lb_route_extension.`. The following variables are
|
2178
|
+
# supported in the metadata Struct: ``forwarding_rule_id`` - substituted with
|
2179
|
+
# the forwarding rule's fully qualified resource name.
|
2180
|
+
# Corresponds to the JSON property `metadata`
|
2181
|
+
# @return [Hash<String,Object>]
|
2182
|
+
attr_accessor :metadata
|
2183
|
+
|
2174
2184
|
# Required. Identifier. Name of the `LbRouteExtension` resource in the following
|
2175
2185
|
# format: `projects/`project`/locations/`location`/lbRouteExtensions/`
|
2176
2186
|
# lb_route_extension``.
|
@@ -2195,6 +2205,7 @@ module Google
|
|
2195
2205
|
@forwarding_rules = args[:forwarding_rules] if args.key?(:forwarding_rules)
|
2196
2206
|
@labels = args[:labels] if args.key?(:labels)
|
2197
2207
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
2208
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
2198
2209
|
@name = args[:name] if args.key?(:name)
|
2199
2210
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2200
2211
|
end
|
@@ -2249,6 +2260,15 @@ module Google
|
|
2249
2260
|
# @return [String]
|
2250
2261
|
attr_accessor :load_balancing_scheme
|
2251
2262
|
|
2263
|
+
# Optional. The metadata provided here will be included in the `
|
2264
|
+
# ProcessingRequest.metadata_context.filter_metadata` map field. The metadata
|
2265
|
+
# will be available under the key `com.google.lb_traffic_extension.`. The
|
2266
|
+
# following variables are supported in the metadata: ``forwarding_rule_id`` -
|
2267
|
+
# substituted with the forwarding rule's fully qualified resource name.
|
2268
|
+
# Corresponds to the JSON property `metadata`
|
2269
|
+
# @return [Hash<String,Object>]
|
2270
|
+
attr_accessor :metadata
|
2271
|
+
|
2252
2272
|
# Required. Identifier. Name of the `LbTrafficExtension` resource in the
|
2253
2273
|
# following format: `projects/`project`/locations/`location`/lbTrafficExtensions/
|
2254
2274
|
# `lb_traffic_extension``.
|
@@ -2273,6 +2293,7 @@ module Google
|
|
2273
2293
|
@forwarding_rules = args[:forwarding_rules] if args.key?(:forwarding_rules)
|
2274
2294
|
@labels = args[:labels] if args.key?(:labels)
|
2275
2295
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
2296
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
2276
2297
|
@name = args[:name] if args.key?(:name)
|
2277
2298
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2278
2299
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1
|
18
18
|
# Version of the google-apis-networkservices_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240515"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1024,6 +1024,7 @@ module Google
|
|
1024
1024
|
collection :forwarding_rules, as: 'forwardingRules'
|
1025
1025
|
hash :labels, as: 'labels'
|
1026
1026
|
property :load_balancing_scheme, as: 'loadBalancingScheme'
|
1027
|
+
hash :metadata, as: 'metadata'
|
1027
1028
|
property :name, as: 'name'
|
1028
1029
|
property :update_time, as: 'updateTime'
|
1029
1030
|
end
|
@@ -1039,6 +1040,7 @@ module Google
|
|
1039
1040
|
collection :forwarding_rules, as: 'forwardingRules'
|
1040
1041
|
hash :labels, as: 'labels'
|
1041
1042
|
property :load_balancing_scheme, as: 'loadBalancingScheme'
|
1043
|
+
hash :metadata, as: 'metadata'
|
1042
1044
|
property :name, as: 'name'
|
1043
1045
|
property :update_time, as: 'updateTime'
|
1044
1046
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|