google-apis-networkservices_v1 0.61.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39ebefe40b218202fe79beb27bdee81147e747555ec783085afe3409e4f6c901
4
- data.tar.gz: 1eefef7c7983ec92e7c7a57c8b5e357e8a69941b4b7d09e7d2cbd693f8c1df4a
3
+ metadata.gz: ca3740dc426eec448405b2baf01c6b1fd5fd4185259390bfdea65bcd0e3c705e
4
+ data.tar.gz: 8d7a3b64a4e250b76d756f7344bc4ac4703746183a874e2e8d3708639b1a9d4d
5
5
  SHA512:
6
- metadata.gz: 88428016ccf79a92ccb652d1461a08789155ea1274140cedca9803d63f52b644b2eec4a54dd050468e6185abcc9f09f4d31a7bee77aeb1964a63bf5614314c2a
7
- data.tar.gz: 5ebbd454fed5e0cfdb37d7df73935f91ab2b23e3d0883e748dfb0d5c7f5e6834336d454b0aa3c3dc26ed4e18e0e0748d29dcfe90b1c4c9c5b4083ea198e56ccd
6
+ metadata.gz: de8256e474a0e94cf1b969f45f4b848d6e4e7ce1e5a819241c3cd494b992d625c1deb30d4a088e346fe6639375021b8507e968658649bb146bb78fcc4fa1066d
7
+ data.tar.gz: 27de5d04746099004a718f062262bb74c7acda8ffb9dd07ac5061bbfe33b5c9cb6aabc4a59e974aea7fc46a4743e15ed12046203818ae73a6c4eadf9b350c0c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.63.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251015
6
+
7
+ ### v0.62.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250723
10
+
3
11
  ### v0.61.0 (2025-07-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20250709
@@ -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. The metadata is available under the
661
- # namespace `com.google....`. For example: `com.google.lb_traffic_extension.
662
- # lbtrafficextension1.chain1.ext1`. The following variables are supported in the
663
- # metadata: ``forwarding_rule_id`` - substituted with the forwarding rule's
664
- # fully qualified resource name. This field must not be set for plugin
665
- # extensions. Setting it results in a validation error. You can set metadata at
666
- # either the resource level or the extension level. The extension level metadata
667
- # is recommended because you can pass a different set of metadata through each
668
- # extension to the backend. This field is subject to following limitations: *
669
- # The total size of the metadata must be less than 1KiB. * The total number of
670
- # keys in the metadata must be less than 16. * The length of each key must be
671
- # less than 64 characters. * The length of each value must be less than 1024
672
- # characters. * All values must be strings.
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
- # Required. The name for this extension. The name is logged as part of the HTTP
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)
@@ -4473,18 +4504,27 @@ module Google
4473
4504
  # @return [String]
4474
4505
  attr_accessor :description
4475
4506
 
4476
- # Output only. The resolved digest for the image specified in the `image` field.
4477
- # The digest is resolved during the creation of `WasmPluginVersion` resource.
4478
- # This field holds the digest value, regardless of whether a tag or digest was
4479
- # originally specified in the `image` field.
4507
+ # Output only. This field holds the digest (usually checksum) value for the
4508
+ # plugin image. The value is calculated based on the `image_uri` field. If the `
4509
+ # image_uri` field refers to a container image, the digest value is obtained
4510
+ # from the container image. If the `image_uri` field refers to a generic
4511
+ # artifact, the digest value is calculated based on the contents of the file.
4480
4512
  # Corresponds to the JSON property `imageDigest`
4481
4513
  # @return [String]
4482
4514
  attr_accessor :image_digest
4483
4515
 
4484
- # Optional. URI of the container image containing the plugin, stored in the
4485
- # Artifact Registry. When a new `WasmPluginVersion` resource is created, the
4486
- # digest of the container image is saved in the `image_digest` field. When
4487
- # downloading an image, the digest value is used instead of an image tag.
4516
+ # Optional. URI of the image containing the Wasm module, stored in Artifact
4517
+ # Registry. The URI can refer to one of the following repository formats: *
4518
+ # Container images: the `image_uri` must point to a container that contains a
4519
+ # single file with the name `plugin.wasm`. When a new `WasmPluginVersion`
4520
+ # resource is created, the digest of the image is saved in the `image_digest`
4521
+ # field. When pulling a container image from Artifact Registry, the digest value
4522
+ # is used instead of an image tag. * Generic artifacts: the `image_uri` must be
4523
+ # in this format: `projects/`project`/locations/`location`/repositories/`
4524
+ # repository`/ genericArtifacts/`package`:`version``. The specified package and
4525
+ # version must contain a file with the name `plugin.wasm`. When a new `
4526
+ # WasmPluginVersion` resource is created, the checksum of the contents of the
4527
+ # file is saved in the `image_digest` field.
4488
4528
  # Corresponds to the JSON property `imageUri`
4489
4529
  # @return [String]
4490
4530
  attr_accessor :image_uri
@@ -4512,7 +4552,7 @@ module Google
4512
4552
 
4513
4553
  # Output only. This field holds the digest (usually checksum) value for the
4514
4554
  # plugin configuration. The value is calculated based on the contents of `
4515
- # plugin_config_data` or the container image defined by the `plugin_config_uri`
4555
+ # plugin_config_data` field or the image defined by the `plugin_config_uri`
4516
4556
  # field.
4517
4557
  # Corresponds to the JSON property `pluginConfigDigest`
4518
4558
  # @return [String]
@@ -4520,9 +4560,18 @@ module Google
4520
4560
 
4521
4561
  # URI of the plugin configuration stored in the Artifact Registry. The
4522
4562
  # configuration is provided to the plugin at runtime through the `ON_CONFIGURE`
4523
- # callback. The container image must contain only a single file with the name `
4524
- # plugin.config`. When a new `WasmPluginVersion` resource is created, the digest
4525
- # of the container image is saved in the `plugin_config_digest` field.
4563
+ # callback. The URI can refer to one of the following repository formats: *
4564
+ # Container images: the `plugin_config_uri` must point to a container that
4565
+ # contains a single file with the name `plugin.config`. When a new `
4566
+ # WasmPluginVersion` resource is created, the digest of the image is saved in
4567
+ # the `plugin_config_digest` field. When pulling a container image from Artifact
4568
+ # Registry, the digest value is used instead of an image tag. * Generic
4569
+ # artifacts: the `plugin_config_uri` must be in this format: `projects/`project`/
4570
+ # locations/`location`/repositories/`repository`/ genericArtifacts/`package`:`
4571
+ # version``. The specified package and version must contain a file with the name
4572
+ # `plugin.config`. When a new `WasmPluginVersion` resource is created, the
4573
+ # checksum of the contents of the file is saved in the `plugin_config_digest`
4574
+ # field.
4526
4575
  # Corresponds to the JSON property `pluginConfigUri`
4527
4576
  # @return [String]
4528
4577
  attr_accessor :plugin_config_uri
@@ -4566,18 +4615,27 @@ module Google
4566
4615
  # @return [String]
4567
4616
  attr_accessor :description
4568
4617
 
4569
- # Output only. The resolved digest for the image specified in `image`. The
4570
- # digest is resolved during the creation of a `WasmPluginVersion` resource. This
4571
- # field holds the digest value regardless of whether a tag or digest was
4572
- # originally specified in the `image` field.
4618
+ # Output only. This field holds the digest (usually checksum) value for the
4619
+ # plugin image. The value is calculated based on the `image_uri` field. If the `
4620
+ # image_uri` field refers to a container image, the digest value is obtained
4621
+ # from the container image. If the `image_uri` field refers to a generic
4622
+ # artifact, the digest value is calculated based on the contents of the file.
4573
4623
  # Corresponds to the JSON property `imageDigest`
4574
4624
  # @return [String]
4575
4625
  attr_accessor :image_digest
4576
4626
 
4577
- # Optional. URI of the container image containing the Wasm module, stored in the
4578
- # Artifact Registry. The container image must contain only a single file with
4579
- # the name `plugin.wasm`. When a new `WasmPluginVersion` resource is created,
4580
- # the URI gets resolved to an image digest and saved in the `image_digest` field.
4627
+ # Optional. URI of the image containing the Wasm module, stored in Artifact
4628
+ # Registry. The URI can refer to one of the following repository formats: *
4629
+ # Container images: the `image_uri` must point to a container that contains a
4630
+ # single file with the name `plugin.wasm`. When a new `WasmPluginVersion`
4631
+ # resource is created, the digest of the image is saved in the `image_digest`
4632
+ # field. When pulling a container image from Artifact Registry, the digest value
4633
+ # is used instead of an image tag. * Generic artifacts: the `image_uri` must be
4634
+ # in this format: `projects/`project`/locations/`location`/repositories/`
4635
+ # repository`/ genericArtifacts/`package`:`version``. The specified package and
4636
+ # version must contain a file with the name `plugin.wasm`. When a new `
4637
+ # WasmPluginVersion` resource is created, the checksum of the contents of the
4638
+ # file is saved in the `image_digest` field.
4581
4639
  # Corresponds to the JSON property `imageUri`
4582
4640
  # @return [String]
4583
4641
  attr_accessor :image_uri
@@ -4597,18 +4655,27 @@ module Google
4597
4655
  attr_accessor :plugin_config_data
4598
4656
 
4599
4657
  # Output only. This field holds the digest (usually checksum) value for the
4600
- # plugin configuration. The value is calculated based on the contents of the `
4601
- # plugin_config_data` field or the container image defined by the `
4602
- # plugin_config_uri` field.
4658
+ # plugin configuration. The value is calculated based on the contents of `
4659
+ # plugin_config_data` field or the image defined by the `plugin_config_uri`
4660
+ # field.
4603
4661
  # Corresponds to the JSON property `pluginConfigDigest`
4604
4662
  # @return [String]
4605
4663
  attr_accessor :plugin_config_digest
4606
4664
 
4607
4665
  # URI of the plugin configuration stored in the Artifact Registry. The
4608
4666
  # configuration is provided to the plugin at runtime through the `ON_CONFIGURE`
4609
- # callback. The container image must contain only a single file with the name `
4610
- # plugin.config`. When a new `WasmPluginVersion` resource is created, the digest
4611
- # of the container image is saved in the `plugin_config_digest` field.
4667
+ # callback. The URI can refer to one of the following repository formats: *
4668
+ # Container images: the `plugin_config_uri` must point to a container that
4669
+ # contains a single file with the name `plugin.config`. When a new `
4670
+ # WasmPluginVersion` resource is created, the digest of the image is saved in
4671
+ # the `plugin_config_digest` field. When pulling a container image from Artifact
4672
+ # Registry, the digest value is used instead of an image tag. * Generic
4673
+ # artifacts: the `plugin_config_uri` must be in this format: `projects/`project`/
4674
+ # locations/`location`/repositories/`repository`/ genericArtifacts/`package`:`
4675
+ # version``. The specified package and version must contain a file with the name
4676
+ # `plugin.config`. When a new `WasmPluginVersion` resource is created, the
4677
+ # checksum of the contents of the file is saved in the `plugin_config_digest`
4678
+ # field.
4612
4679
  # Corresponds to the JSON property `pluginConfigUri`
4613
4680
  # @return [String]
4614
4681
  attr_accessor :plugin_config_uri
@@ -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.61.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 = "20250709"
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. A list of extra location types that should be used as conditions for
89
- # controlling the visibility of the locations.
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.61.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.61.0
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: