google-apis-networkservices_v1beta1 0.40.0 → 0.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/networkservices_v1beta1/classes.rb +24 -3
- data/lib/google/apis/networkservices_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/networkservices_v1beta1/representations.rb +2 -0
- data/lib/google/apis/networkservices_v1beta1/service.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0f568ef2150c7ce448d0befa558e929c05acb6daaa060b2174664a9599f2090
|
4
|
+
data.tar.gz: a7bbb1d812daee92e460bf9dd52c175f0a71318a91fcdd41fae740eadcfad919
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55464da5db51709d58a42c77b9d9771ed800ce3051c2ae6f98959a4b6fdacb310d42f6cd60ce4f1962caa906bf9969bd158a56fa33eafdc8cf1cf57c654e85ad
|
7
|
+
data.tar.gz: efea3cd07ac783e9031d6f861c657734a2fdbed9fab7142a3d38b5867154ab8b7fde2ac5e62b31fec092b2291417b3e61851a891f0f0caac5bf0da4753328692
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1beta1
|
2
2
|
|
3
|
+
### v0.42.0 (2024-05-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240515
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
8
|
+
### v0.41.0 (2024-04-21)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240410
|
11
|
+
|
3
12
|
### v0.40.0 (2024-03-24)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240315
|
@@ -486,7 +486,7 @@ module Google
|
|
486
486
|
|
487
487
|
# Optional. A set of events during request or response processing for which this
|
488
488
|
# extension is called. This field is required for the `LbTrafficExtension`
|
489
|
-
# resource. It
|
489
|
+
# resource. It must not be set for the `LbRouteExtension` resource.
|
490
490
|
# Corresponds to the JSON property `supportedEvents`
|
491
491
|
# @return [Array<String>]
|
492
492
|
attr_accessor :supported_events
|
@@ -538,7 +538,7 @@ module Google
|
|
538
538
|
# Gateway represents the configuration for a proxy, typically a load balancer.
|
539
539
|
# It captures the ip:port over which the services are exposed by the proxy,
|
540
540
|
# along with any policy configurations. Routes have reference to to Gateways to
|
541
|
-
# dictate how requests should be routed by this Gateway. Next id:
|
541
|
+
# dictate how requests should be routed by this Gateway. Next id: 33
|
542
542
|
class Gateway
|
543
543
|
include Google::Apis::Core::Hashable
|
544
544
|
|
@@ -2106,6 +2106,16 @@ module Google
|
|
2106
2106
|
# @return [String]
|
2107
2107
|
attr_accessor :load_balancing_scheme
|
2108
2108
|
|
2109
|
+
# Optional. The metadata provided here will be included as part of the `
|
2110
|
+
# metadata_context` (of type `google.protobuf.Struct`) in the `ProcessingRequest`
|
2111
|
+
# message sent to the extension server. The metadata will be available under
|
2112
|
+
# the namespace `com.google.lb_route_extension.`. The following variables are
|
2113
|
+
# supported in the metadata Struct: ``forwarding_rule_id`` - substituted with
|
2114
|
+
# the forwarding rule's fully qualified resource name.
|
2115
|
+
# Corresponds to the JSON property `metadata`
|
2116
|
+
# @return [Hash<String,Object>]
|
2117
|
+
attr_accessor :metadata
|
2118
|
+
|
2109
2119
|
# Required. Identifier. Name of the `LbRouteExtension` resource in the following
|
2110
2120
|
# format: `projects/`project`/locations/`location`/lbRouteExtensions/`
|
2111
2121
|
# lb_route_extension``.
|
@@ -2130,6 +2140,7 @@ module Google
|
|
2130
2140
|
@forwarding_rules = args[:forwarding_rules] if args.key?(:forwarding_rules)
|
2131
2141
|
@labels = args[:labels] if args.key?(:labels)
|
2132
2142
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
2143
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
2133
2144
|
@name = args[:name] if args.key?(:name)
|
2134
2145
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2135
2146
|
end
|
@@ -2184,6 +2195,15 @@ module Google
|
|
2184
2195
|
# @return [String]
|
2185
2196
|
attr_accessor :load_balancing_scheme
|
2186
2197
|
|
2198
|
+
# Optional. The metadata provided here will be included in the `
|
2199
|
+
# ProcessingRequest.metadata_context.filter_metadata` map field. The metadata
|
2200
|
+
# will be available under the key `com.google.lb_traffic_extension.`. The
|
2201
|
+
# following variables are supported in the metadata: ``forwarding_rule_id`` -
|
2202
|
+
# substituted with the forwarding rule's fully qualified resource name.
|
2203
|
+
# Corresponds to the JSON property `metadata`
|
2204
|
+
# @return [Hash<String,Object>]
|
2205
|
+
attr_accessor :metadata
|
2206
|
+
|
2187
2207
|
# Required. Identifier. Name of the `LbTrafficExtension` resource in the
|
2188
2208
|
# following format: `projects/`project`/locations/`location`/lbTrafficExtensions/
|
2189
2209
|
# `lb_traffic_extension``.
|
@@ -2208,6 +2228,7 @@ module Google
|
|
2208
2228
|
@forwarding_rules = args[:forwarding_rules] if args.key?(:forwarding_rules)
|
2209
2229
|
@labels = args[:labels] if args.key?(:labels)
|
2210
2230
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
2231
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
2211
2232
|
@name = args[:name] if args.key?(:name)
|
2212
2233
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2213
2234
|
end
|
@@ -3640,7 +3661,7 @@ module Google
|
|
3640
3661
|
# against all wildcard domains, i.e. `www.example.com` will be first matched
|
3641
3662
|
# against `www.example.com`, then `*.example.com`, then `*.com.` Partial
|
3642
3663
|
# wildcards are not supported, and values like *w.example.com are invalid. At
|
3643
|
-
# least one of sni_host and alpn is required. Up to
|
3664
|
+
# least one of sni_host and alpn is required. Up to 100 sni hosts across all
|
3644
3665
|
# matches can be set.
|
3645
3666
|
# Corresponds to the JSON property `sniHost`
|
3646
3667
|
# @return [Array<String>]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1beta1
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 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
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -1007,6 +1007,7 @@ module Google
|
|
1007
1007
|
collection :forwarding_rules, as: 'forwardingRules'
|
1008
1008
|
hash :labels, as: 'labels'
|
1009
1009
|
property :load_balancing_scheme, as: 'loadBalancingScheme'
|
1010
|
+
hash :metadata, as: 'metadata'
|
1010
1011
|
property :name, as: 'name'
|
1011
1012
|
property :update_time, as: 'updateTime'
|
1012
1013
|
end
|
@@ -1022,6 +1023,7 @@ module Google
|
|
1022
1023
|
collection :forwarding_rules, as: 'forwardingRules'
|
1023
1024
|
hash :labels, as: 'labels'
|
1024
1025
|
property :load_balancing_scheme, as: 'loadBalancingScheme'
|
1026
|
+
hash :metadata, as: 'metadata'
|
1025
1027
|
property :name, as: 'name'
|
1026
1028
|
property :update_time, as: 'updateTime'
|
1027
1029
|
end
|
@@ -1271,7 +1271,7 @@ module Google
|
|
1271
1271
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
1272
1272
|
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1273
1273
|
# @param [String] update_mask
|
1274
|
-
#
|
1274
|
+
# Optional. Used to specify the fields to be overwritten in the `
|
1275
1275
|
# LbRouteExtension` resource by the update. The fields specified in the
|
1276
1276
|
# update_mask are relative to the resource, not the full request. A field is
|
1277
1277
|
# overwritten if it is in the mask. If the user does not specify a mask, then
|
@@ -1495,7 +1495,7 @@ module Google
|
|
1495
1495
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
1496
1496
|
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1497
1497
|
# @param [String] update_mask
|
1498
|
-
#
|
1498
|
+
# Optional. Used to specify the fields to be overwritten in the `
|
1499
1499
|
# LbTrafficExtension` resource by the update. The fields specified in the
|
1500
1500
|
# update_mask are relative to the resource, not the full request. A field is
|
1501
1501
|
# overwritten if it is in the mask. If the user does not specify a mask, then
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1beta1
|
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-
|
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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|