google-apis-networkservices_v1 0.62.0 → 0.63.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 +4 -0
- data/lib/google/apis/networkservices_v1/classes.rb +47 -16
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1/representations.rb +2 -0
- data/lib/google/apis/networkservices_v1/service.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca3740dc426eec448405b2baf01c6b1fd5fd4185259390bfdea65bcd0e3c705e
|
|
4
|
+
data.tar.gz: 8d7a3b64a4e250b76d756f7344bc4ac4703746183a874e2e8d3708639b1a9d4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de8256e474a0e94cf1b969f45f4b848d6e4e7ce1e5a819241c3cd494b992d625c1deb30d4a088e346fe6639375021b8507e968658649bb146bb78fcc4fa1066d
|
|
7
|
+
data.tar.gz: 27de5d04746099004a718f062262bb74c7acda8ffb9dd07ac5061bbfe33b5c9cb6aabc4a59e974aea7fc46a4743e15ed12046203818ae73a6c4eadf9b350c0c2
|
data/CHANGELOG.md
CHANGED
|
@@ -657,32 +657,59 @@ module Google
|
|
|
657
657
|
|
|
658
658
|
# Optional. The metadata provided here is included as part of the `
|
|
659
659
|
# metadata_context` (of type `google.protobuf.Struct`) in the `ProcessingRequest`
|
|
660
|
-
# message sent to the extension server.
|
|
661
|
-
#
|
|
662
|
-
#
|
|
663
|
-
#
|
|
664
|
-
#
|
|
665
|
-
#
|
|
666
|
-
#
|
|
667
|
-
#
|
|
668
|
-
#
|
|
669
|
-
#
|
|
670
|
-
#
|
|
671
|
-
# less than
|
|
672
|
-
#
|
|
660
|
+
# message sent to the extension server. For `AuthzExtension` resources, the
|
|
661
|
+
# metadata is available under the namespace `com.google.authz_extension.`. For
|
|
662
|
+
# other types of extensions, the metadata is available under the namespace `com.
|
|
663
|
+
# google....`. For example: `com.google.lb_traffic_extension.lbtrafficextension1.
|
|
664
|
+
# chain1.ext1`. The following variables are supported in the metadata: ``
|
|
665
|
+
# forwarding_rule_id`` - substituted with the forwarding rule's fully qualified
|
|
666
|
+
# resource name. This field must not be set for plugin extensions. Setting it
|
|
667
|
+
# results in a validation error. You can set metadata at either the resource
|
|
668
|
+
# level or the extension level. The extension level metadata is recommended
|
|
669
|
+
# because you can pass a different set of metadata through each extension to the
|
|
670
|
+
# backend. This field is subject to following limitations: * The total size of
|
|
671
|
+
# the metadata must be less than 1KiB. * The total number of keys in the
|
|
672
|
+
# metadata must be less than 16. * The length of each key must be less than 64
|
|
673
|
+
# characters. * The length of each value must be less than 1024 characters. *
|
|
674
|
+
# All values must be strings.
|
|
673
675
|
# Corresponds to the JSON property `metadata`
|
|
674
676
|
# @return [Hash<String,Object>]
|
|
675
677
|
attr_accessor :metadata
|
|
676
678
|
|
|
677
|
-
#
|
|
679
|
+
# Optional. The name for this extension. The name is logged as part of the HTTP
|
|
678
680
|
# request logs. The name must conform with RFC-1034, is restricted to lower-
|
|
679
681
|
# cased letters, numbers and hyphens, and can have a maximum length of 63
|
|
680
682
|
# characters. Additionally, the first character must be a letter and the last a
|
|
681
|
-
# letter or a number.
|
|
683
|
+
# letter or a number. This field is required except for AuthzExtension.
|
|
682
684
|
# Corresponds to the JSON property `name`
|
|
683
685
|
# @return [String]
|
|
684
686
|
attr_accessor :name
|
|
685
687
|
|
|
688
|
+
# Optional. Configures the send mode for request body processing. The field can
|
|
689
|
+
# only be set if `supported_events` includes `REQUEST_BODY`. If `
|
|
690
|
+
# supported_events` includes `REQUEST_BODY`, but `request_body_send_mode` is
|
|
691
|
+
# unset, the default value `STREAMED` is used. When this field is set to `
|
|
692
|
+
# FULL_DUPLEX_STREAMED`, `supported_events` must include both `REQUEST_BODY` and
|
|
693
|
+
# `REQUEST_TRAILERS`. This field can be set only for `LbTrafficExtension` and `
|
|
694
|
+
# LbRouteExtension` resources, and only when the `service` field of the
|
|
695
|
+
# extension points to a `BackendService`. Only `FULL_DUPLEX_STREAMED` mode is
|
|
696
|
+
# supported for `LbRouteExtension` resources.
|
|
697
|
+
# Corresponds to the JSON property `requestBodySendMode`
|
|
698
|
+
# @return [String]
|
|
699
|
+
attr_accessor :request_body_send_mode
|
|
700
|
+
|
|
701
|
+
# Optional. Configures the send mode for response processing. If unspecified,
|
|
702
|
+
# the default value `STREAMED` is used. The field can only be set if `
|
|
703
|
+
# supported_events` includes `RESPONSE_BODY`. If `supported_events` includes `
|
|
704
|
+
# RESPONSE_BODY`, but `response_body_send_mode` is unset, the default value `
|
|
705
|
+
# STREAMED` is used. When this field is set to `FULL_DUPLEX_STREAMED`, `
|
|
706
|
+
# supported_events` must include both `RESPONSE_BODY` and `RESPONSE_TRAILERS`.
|
|
707
|
+
# This field can be set only for `LbTrafficExtension` resources, and only when
|
|
708
|
+
# the `service` field of the extension points to a `BackendService`.
|
|
709
|
+
# Corresponds to the JSON property `responseBodySendMode`
|
|
710
|
+
# @return [String]
|
|
711
|
+
attr_accessor :response_body_send_mode
|
|
712
|
+
|
|
686
713
|
# Required. The reference to the service that runs the extension. To configure a
|
|
687
714
|
# callout extension, `service` must be a fully-qualified reference to a [backend
|
|
688
715
|
# service](https://cloud.google.com/compute/docs/reference/rest/v1/
|
|
@@ -706,7 +733,9 @@ module Google
|
|
|
706
733
|
# required. For the `LbRouteExtension` resource, this field is optional. If
|
|
707
734
|
# unspecified, `REQUEST_HEADERS` event is assumed as supported. For the `
|
|
708
735
|
# LbEdgeExtension` resource, this field is required and must only contain `
|
|
709
|
-
# REQUEST_HEADERS` event.
|
|
736
|
+
# REQUEST_HEADERS` event. For the `AuthzExtension` resource, this field is
|
|
737
|
+
# optional. `REQUEST_HEADERS` is the only supported event. If unspecified, `
|
|
738
|
+
# REQUEST_HEADERS` event is assumed as supported.
|
|
710
739
|
# Corresponds to the JSON property `supportedEvents`
|
|
711
740
|
# @return [Array<String>]
|
|
712
741
|
attr_accessor :supported_events
|
|
@@ -730,6 +759,8 @@ module Google
|
|
|
730
759
|
@forward_headers = args[:forward_headers] if args.key?(:forward_headers)
|
|
731
760
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
732
761
|
@name = args[:name] if args.key?(:name)
|
|
762
|
+
@request_body_send_mode = args[:request_body_send_mode] if args.key?(:request_body_send_mode)
|
|
763
|
+
@response_body_send_mode = args[:response_body_send_mode] if args.key?(:response_body_send_mode)
|
|
733
764
|
@service = args[:service] if args.key?(:service)
|
|
734
765
|
@supported_events = args[:supported_events] if args.key?(:supported_events)
|
|
735
766
|
@timeout = args[:timeout] if args.key?(:timeout)
|
|
@@ -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.63.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251015"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -753,6 +753,8 @@ module Google
|
|
|
753
753
|
collection :forward_headers, as: 'forwardHeaders'
|
|
754
754
|
hash :metadata, as: 'metadata'
|
|
755
755
|
property :name, as: 'name'
|
|
756
|
+
property :request_body_send_mode, as: 'requestBodySendMode'
|
|
757
|
+
property :response_body_send_mode, as: 'responseBodySendMode'
|
|
756
758
|
property :service, as: 'service'
|
|
757
759
|
collection :supported_events, as: 'supportedEvents'
|
|
758
760
|
property :timeout, as: 'timeout'
|
|
@@ -85,8 +85,8 @@ module Google
|
|
|
85
85
|
# @param [String] name
|
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
|
88
|
-
# Optional.
|
|
89
|
-
#
|
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
90
90
|
# @param [String] filter
|
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.63.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-networkservices_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.63.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|