google-apis-networkservices_v1beta1 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: 964908b67e8d43d3e4d3280096c9fff3ca71401fb4ea72a41e21a46bf696d9c3
4
- data.tar.gz: '09ab110541cb2a8dfb9cc9e3e03520daa32ccba7dcbbe0b01a51fa161e29b989'
3
+ metadata.gz: d0f568ef2150c7ce448d0befa558e929c05acb6daaa060b2174664a9599f2090
4
+ data.tar.gz: a7bbb1d812daee92e460bf9dd52c175f0a71318a91fcdd41fae740eadcfad919
5
5
  SHA512:
6
- metadata.gz: 79d8d5b7c42dd154ddcf99275eb4549b4c555cf01441d03b74995f3abae096f8cb035e7872fd63fa458520c2d48ca7bf41e543bde83f0f4a279801eb3d3ed514
7
- data.tar.gz: 99d78b73bca6dbbfa86691ba0ffbe72e64242b9d90bbc60638b0967981ca3b8ef3ff4374d912cde3b43bf22bda58a50f564ecd481ec6e2965b268087c942efda
6
+ metadata.gz: 55464da5db51709d58a42c77b9d9771ed800ce3051c2ae6f98959a4b6fdacb310d42f6cd60ce4f1962caa906bf9969bd158a56fa33eafdc8cf1cf57c654e85ad
7
+ data.tar.gz: efea3cd07ac783e9031d6f861c657734a2fdbed9fab7142a3d38b5867154ab8b7fde2ac5e62b31fec092b2291417b3e61851a891f0f0caac5bf0da4753328692
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.41.0 (2024-04-21)
4
9
 
5
10
  * Regenerated from discovery document revision 20240410
@@ -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's not relevant for the `LbRouteExtension` resource.
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: 32
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
@@ -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.41.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.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240410"
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
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.41.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-04-21 00:00:00.000000000 Z
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.14.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.14.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.41.0
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: []