google-apis-networkservices_v1beta1 0.49.0 → 0.50.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: eecbc7e6da0d240c910c6ee94f60584ed0d93bd627e16e0c76f56babc010fd5e
|
4
|
+
data.tar.gz: c122e793274b020c424505dee709e4ff0ccffa3ec9775ec8107845f5490761d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f7da372d1e08abb2a3459c384ffc8150b8081c1e8f9f2aaab8bb05f42e2f68319390613c13d804541059ad59416c409dac08524c12a7041fe42e166f9acfff0
|
7
|
+
data.tar.gz: e5569399c8931b2f8239325ab7417b9ae400cdf83d70fabcb2a0fa4cefe6d990f39b988c4bfda03e4d145ce5684851092a3bbeb926bc5dd629cb6bee64442929
|
data/CHANGELOG.md
CHANGED
@@ -398,6 +398,29 @@ module Google
|
|
398
398
|
# @return [String]
|
399
399
|
attr_accessor :name
|
400
400
|
|
401
|
+
# Optional. Configures the send mode for request body processing. The field can
|
402
|
+
# only be set if `supported_events` includes `REQUEST_BODY`. If `
|
403
|
+
# supported_events` includes `REQUEST_BODY`, but `request_body_send_mode` is
|
404
|
+
# unset, the default value `STREAMED` is used. When this field is set to `
|
405
|
+
# FULL_DUPLEX_STREAMED`, `supported_events` must include both `REQUEST_BODY` and
|
406
|
+
# `REQUEST_TRAILERS`. This field can be set only for `LbTrafficExtension` and `
|
407
|
+
# LbRouteExtension` resources, and only when the `service` field of the
|
408
|
+
# extension points to a `BackendService`. Only `FULL_DUPLEX_STREAMED` mode is
|
409
|
+
# supported for `LbRouteExtension` resources.
|
410
|
+
# Corresponds to the JSON property `requestBodySendMode`
|
411
|
+
# @return [String]
|
412
|
+
attr_accessor :request_body_send_mode
|
413
|
+
|
414
|
+
# Optional. Configures the send mode for response processing. If unspecified,
|
415
|
+
# the default value `STREAMED` is used. When this field is set to `
|
416
|
+
# FULL_DUPLEX_STREAMED`, `supported_events` must include both `RESPONSE_BODY`
|
417
|
+
# and `RESPONSE_TRAILERS`. This field can be set only for `LbTrafficExtension`
|
418
|
+
# resources, and only when the `service` field of the extension points to a `
|
419
|
+
# BackendService`.
|
420
|
+
# Corresponds to the JSON property `responseBodySendMode`
|
421
|
+
# @return [String]
|
422
|
+
attr_accessor :response_body_send_mode
|
423
|
+
|
401
424
|
# Required. The reference to the service that runs the extension. To configure a
|
402
425
|
# callout extension, `service` must be a fully-qualified reference to a [backend
|
403
426
|
# service](https://cloud.google.com/compute/docs/reference/rest/v1/
|
@@ -443,6 +466,8 @@ module Google
|
|
443
466
|
@forward_headers = args[:forward_headers] if args.key?(:forward_headers)
|
444
467
|
@metadata = args[:metadata] if args.key?(:metadata)
|
445
468
|
@name = args[:name] if args.key?(:name)
|
469
|
+
@request_body_send_mode = args[:request_body_send_mode] if args.key?(:request_body_send_mode)
|
470
|
+
@response_body_send_mode = args[:response_body_send_mode] if args.key?(:response_body_send_mode)
|
446
471
|
@service = args[:service] if args.key?(:service)
|
447
472
|
@supported_events = args[:supported_events] if args.key?(:supported_events)
|
448
473
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -1132,8 +1157,9 @@ module Google
|
|
1132
1157
|
include Google::Apis::Core::Hashable
|
1133
1158
|
|
1134
1159
|
# Required. The cookie TTL value for the Set-Cookie header generated by the data
|
1135
|
-
# plane. The lifetime of the cookie may be set to a value from
|
1136
|
-
# seconds (24 hours) inclusive.
|
1160
|
+
# plane. The lifetime of the cookie may be set to a value from 0 to 86400
|
1161
|
+
# seconds (24 hours) inclusive. Set this to 0s to use a session cookie and
|
1162
|
+
# disable cookie expiration.
|
1137
1163
|
# Corresponds to the JSON property `cookieTtl`
|
1138
1164
|
# @return [String]
|
1139
1165
|
attr_accessor :cookie_ttl
|
@@ -2006,8 +2032,9 @@ module Google
|
|
2006
2032
|
include Google::Apis::Core::Hashable
|
2007
2033
|
|
2008
2034
|
# Required. The cookie TTL value for the Set-Cookie header generated by the data
|
2009
|
-
# plane. The lifetime of the cookie may be set to a value from
|
2010
|
-
# seconds (24 hours) inclusive.
|
2035
|
+
# plane. The lifetime of the cookie may be set to a value from 0 to 86400
|
2036
|
+
# seconds (24 hours) inclusive. Set this to 0s to use a session cookie and
|
2037
|
+
# disable cookie expiration.
|
2011
2038
|
# Corresponds to the JSON property `cookieTtl`
|
2012
2039
|
# @return [String]
|
2013
2040
|
attr_accessor :cookie_ttl
|
@@ -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.50.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 = "20250318"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -646,6 +646,8 @@ module Google
|
|
646
646
|
collection :forward_headers, as: 'forwardHeaders'
|
647
647
|
hash :metadata, as: 'metadata'
|
648
648
|
property :name, as: 'name'
|
649
|
+
property :request_body_send_mode, as: 'requestBodySendMode'
|
650
|
+
property :response_body_send_mode, as: 'responseBodySendMode'
|
649
651
|
property :service, as: 'service'
|
650
652
|
collection :supported_events, as: 'supportedEvents'
|
651
653
|
property :timeout, as: 'timeout'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 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-networkservices_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.50.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|