google-apis-networkservices_v1beta1 0.60.0 → 0.62.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: 95fc5b9dd78196c74dae1e514d6f40d608ae0e755273a97a3e643ed0f33179f4
4
- data.tar.gz: da44c5425c0203084b4192997413f9c3059a71b90d5740fed73128c1d62d8f57
3
+ metadata.gz: 9b2c13baa5df07dc3d7962b9e2e98109838d67c545efde5bba6f894dbae94bbd
4
+ data.tar.gz: 01c22f3b633ccec63c693db35ef0684406d5d870cd813a0091d1d0874d652cb2
5
5
  SHA512:
6
- metadata.gz: a580bbdba5cb2a9be3637f4070abd842a29b0d9df196d8d9ffd44c4802778a8e9ba135ca5ef4b8811a647e485eac1e08cf8cd31c8b1c216be0bddde1171c1af6
7
- data.tar.gz: 902695058b7f8f93b3420162cc9b261083a85e802e452a39040cfe269153c5a0dace036dc8cfb485b554331e95f93a36f731c74def4374878d46da89798c86d5
6
+ metadata.gz: 586d424de3a6eb2440018af8e8e8e0e5fd3dd298d73305675c04342cab380ac858a14834ff3fa6833d8e5cc0a804694510f5bd42bf0bcfeb1c49f1c15a873d5b
7
+ data.tar.gz: 8c8991ef33e617a0b631b963ee64e0ba00a5663853c769ac78a08d863577393eb7f5e29ec088d6a43a1b73b710d4400739b7962d118a3cecfa4d090fcc3f1381
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkservices_v1beta1
2
2
 
3
+ ### v0.62.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.61.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251029
10
+
3
11
  ### v0.60.0 (2025-11-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20251017
@@ -119,8 +119,10 @@ module Google
119
119
  # @return [String]
120
120
  attr_accessor :update_time
121
121
 
122
- # Optional. The format of communication supported by the callout extension. If
123
- # not specified, the default value `EXT_PROC_GRPC` is used.
122
+ # Optional. The format of communication supported by the callout extension. This
123
+ # field is supported only for regional `AuthzExtension` resources. If not
124
+ # specified, the default value `EXT_PROC_GRPC` is used. Global `AuthzExtension`
125
+ # resources use the `EXT_PROC_GRPC` wire format.
124
126
  # Corresponds to the JSON property `wireFormat`
125
127
  # @return [String]
126
128
  attr_accessor :wire_format
@@ -244,7 +246,7 @@ module Google
244
246
  attr_accessor :labels
245
247
 
246
248
  # Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/`
247
- # project`/locations/global/endpointPolicies/`endpoint_policy``.
249
+ # project`/locations/*/endpointPolicies/`endpoint_policy``.
248
250
  # Corresponds to the JSON property `name`
249
251
  # @return [String]
250
252
  attr_accessor :name
@@ -412,6 +414,20 @@ module Google
412
414
  # @return [String]
413
415
  attr_accessor :name
414
416
 
417
+ # Optional. When set to `TRUE`, enables `observability_mode` on the `ext_proc`
418
+ # filter. This makes `ext_proc` calls asynchronous. Envoy doesn't check for the
419
+ # response from `ext_proc` calls. For more information about the filter, see:
420
+ # https://www.envoyproxy.io/docs/envoy/v1.32.3/api-v3/extensions/filters/http/
421
+ # ext_proc/v3/ext_proc.proto#extensions-filters-http-ext-proc-v3-
422
+ # externalprocessor This field is helpful when you want to try out the extension
423
+ # in async log-only mode. Supported by regional `LbTrafficExtension` and `
424
+ # LbRouteExtension` resources. Only `STREAMED` (default) body processing mode is
425
+ # supported.
426
+ # Corresponds to the JSON property `observabilityMode`
427
+ # @return [Boolean]
428
+ attr_accessor :observability_mode
429
+ alias_method :observability_mode?, :observability_mode
430
+
415
431
  # Optional. Configures the send mode for request body processing. The field can
416
432
  # only be set if `supported_events` includes `REQUEST_BODY`. If `
417
433
  # supported_events` includes `REQUEST_BODY`, but `request_body_send_mode` is
@@ -487,6 +503,7 @@ module Google
487
503
  @forward_headers = args[:forward_headers] if args.key?(:forward_headers)
488
504
  @metadata = args[:metadata] if args.key?(:metadata)
489
505
  @name = args[:name] if args.key?(:name)
506
+ @observability_mode = args[:observability_mode] if args.key?(:observability_mode)
490
507
  @request_body_send_mode = args[:request_body_send_mode] if args.key?(:request_body_send_mode)
491
508
  @response_body_send_mode = args[:response_body_send_mode] if args.key?(:response_body_send_mode)
492
509
  @service = args[:service] if args.key?(:service)
@@ -731,8 +748,7 @@ module Google
731
748
 
732
749
  # Optional. Gateways defines a list of gateways this GrpcRoute is attached to,
733
750
  # as one of the routing rules to route the requests served by the gateway. Each
734
- # gateway reference should match the pattern: `projects/*/locations/global/
735
- # gateways/`
751
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
736
752
  # Corresponds to the JSON property `gateways`
737
753
  # @return [Array<String>]
738
754
  attr_accessor :gateways
@@ -767,13 +783,13 @@ module Google
767
783
 
768
784
  # Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as
769
785
  # one of the routing rules to route the requests served by the mesh. Each mesh
770
- # reference should match the pattern: `projects/*/locations/global/meshes/`
786
+ # reference should match the pattern: `projects/*/locations/*/meshes/`
771
787
  # Corresponds to the JSON property `meshes`
772
788
  # @return [Array<String>]
773
789
  attr_accessor :meshes
774
790
 
775
791
  # Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/
776
- # locations/global/grpcRoutes/`
792
+ # locations/*/grpcRoutes/`
777
793
  # Corresponds to the JSON property `name`
778
794
  # @return [String]
779
795
  attr_accessor :name
@@ -1212,8 +1228,7 @@ module Google
1212
1228
 
1213
1229
  # Optional. Gateways defines a list of gateways this HttpRoute is attached to,
1214
1230
  # as one of the routing rules to route the requests served by the gateway. Each
1215
- # gateway reference should match the pattern: `projects/*/locations/global/
1216
- # gateways/`
1231
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
1217
1232
  # Corresponds to the JSON property `gateways`
1218
1233
  # @return [Array<String>]
1219
1234
  attr_accessor :gateways
@@ -1246,14 +1261,14 @@ module Google
1246
1261
 
1247
1262
  # Optional. Meshes defines a list of meshes this HttpRoute is attached to, as
1248
1263
  # one of the routing rules to route the requests served by the mesh. Each mesh
1249
- # reference should match the pattern: `projects/*/locations/global/meshes/` The
1264
+ # reference should match the pattern: `projects/*/locations/*/meshes/` The
1250
1265
  # attached Mesh should be of a type SIDECAR
1251
1266
  # Corresponds to the JSON property `meshes`
1252
1267
  # @return [Array<String>]
1253
1268
  attr_accessor :meshes
1254
1269
 
1255
1270
  # Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/
1256
- # locations/global/httpRoutes/http_route_name>`.
1271
+ # locations/*/httpRoutes/http_route_name>`.
1257
1272
  # Corresponds to the JSON property `name`
1258
1273
  # @return [String]
1259
1274
  attr_accessor :name
@@ -2875,8 +2890,9 @@ module Google
2875
2890
  attr_accessor :operations
2876
2891
 
2877
2892
  # Unordered list. Unreachable resources. Populated when the request sets `
2878
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2879
- # when attempting to list all resources across all supported locations.
2893
+ # ListOperationsRequest.return_partial_success` and reads across collections.
2894
+ # For example, when attempting to list all resources across all supported
2895
+ # locations.
2880
2896
  # Corresponds to the JSON property `unreachable`
2881
2897
  # @return [Array<String>]
2882
2898
  attr_accessor :unreachable
@@ -3210,7 +3226,7 @@ module Google
3210
3226
  attr_accessor :labels
3211
3227
 
3212
3228
  # Identifier. Name of the Mesh resource. It matches pattern `projects/*/
3213
- # locations/global/meshes/`.
3229
+ # locations/*/meshes/`.
3214
3230
  # Corresponds to the JSON property `name`
3215
3231
  # @return [String]
3216
3232
  attr_accessor :name
@@ -3760,8 +3776,7 @@ module Google
3760
3776
 
3761
3777
  # Optional. Gateways defines a list of gateways this TcpRoute is attached to, as
3762
3778
  # one of the routing rules to route the requests served by the gateway. Each
3763
- # gateway reference should match the pattern: `projects/*/locations/global/
3764
- # gateways/`
3779
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
3765
3780
  # Corresponds to the JSON property `gateways`
3766
3781
  # @return [Array<String>]
3767
3782
  attr_accessor :gateways
@@ -3773,14 +3788,14 @@ module Google
3773
3788
 
3774
3789
  # Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one
3775
3790
  # of the routing rules to route the requests served by the mesh. Each mesh
3776
- # reference should match the pattern: `projects/*/locations/global/meshes/` The
3791
+ # reference should match the pattern: `projects/*/locations/*/meshes/` The
3777
3792
  # attached Mesh should be of a type SIDECAR
3778
3793
  # Corresponds to the JSON property `meshes`
3779
3794
  # @return [Array<String>]
3780
3795
  attr_accessor :meshes
3781
3796
 
3782
3797
  # Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
3783
- # locations/global/tcpRoutes/tcp_route_name>`.
3798
+ # locations/*/tcpRoutes/tcp_route_name>`.
3784
3799
  # Corresponds to the JSON property `name`
3785
3800
  # @return [String]
3786
3801
  attr_accessor :name
@@ -3969,8 +3984,7 @@ module Google
3969
3984
 
3970
3985
  # Optional. Gateways defines a list of gateways this TlsRoute is attached to, as
3971
3986
  # one of the routing rules to route the requests served by the gateway. Each
3972
- # gateway reference should match the pattern: `projects/*/locations/global/
3973
- # gateways/`
3987
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
3974
3988
  # Corresponds to the JSON property `gateways`
3975
3989
  # @return [Array<String>]
3976
3990
  attr_accessor :gateways
@@ -3982,14 +3996,14 @@ module Google
3982
3996
 
3983
3997
  # Optional. Meshes defines a list of meshes this TlsRoute is attached to, as one
3984
3998
  # of the routing rules to route the requests served by the mesh. Each mesh
3985
- # reference should match the pattern: `projects/*/locations/global/meshes/` The
3999
+ # reference should match the pattern: `projects/*/locations/*/meshes/` The
3986
4000
  # attached Mesh should be of a type SIDECAR
3987
4001
  # Corresponds to the JSON property `meshes`
3988
4002
  # @return [Array<String>]
3989
4003
  attr_accessor :meshes
3990
4004
 
3991
4005
  # Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
3992
- # locations/global/tlsRoutes/tls_route_name>`.
4006
+ # locations/*/tlsRoutes/tls_route_name>`.
3993
4007
  # Corresponds to the JSON property `name`
3994
4008
  # @return [String]
3995
4009
  attr_accessor :name
@@ -4183,6 +4197,31 @@ module Google
4183
4197
  # @return [String]
4184
4198
  attr_accessor :description
4185
4199
 
4200
+ # Optional. The name of the customer managed Cloud KMS key to be used to encrypt
4201
+ # the `WasmPlugin` image (provided by image_uri) and configuration (provided by
4202
+ # plugin_config_data or plugin_config_uri) that are stored by the `Service
4203
+ # Extensions` product at rest. Format: "projects/`project`/locations/`location`/
4204
+ # keyRings/`keyring`/cryptoKeys/`key`" By default, Google Cloud automatically
4205
+ # encrypts all data at rest using Google-owned and Google-managed encryption
4206
+ # keys. If you need ownership and control of the keys that protect your data at
4207
+ # rest, you can specify a customer-managed encryption key (CMEK) to encrypt your
4208
+ # `WasmPlugin` data. For more information, see [Using customer-managed
4209
+ # encryption keys](https://cloud.google.com/kms/docs/cmek).
4210
+ # Corresponds to the JSON property `kmsKeyName`
4211
+ # @return [String]
4212
+ attr_accessor :kms_key_name
4213
+
4214
+ # Output only. The name of the specific CryptoKeyVersion used to encrypt the `
4215
+ # WasmPlugin` data, if the kms_key_name field is set. Format: "projects/`project`
4216
+ # /locations/`location`/keyRings/`keyring`/cryptoKeys/`key`/cryptoKeyVersions/`
4217
+ # version`" This is a read-only field. `WasmPlugin` data is automatically
4218
+ # encrypted using the most recent `CryptoKeyVersion` of the `CryptoKey` provided
4219
+ # in the `kms_key_name` field. See [Cloud KMS resources](https://cloud.google.
4220
+ # com/kms/docs/resource-hierarchy) for more information.
4221
+ # Corresponds to the JSON property `kmsKeyVersion`
4222
+ # @return [String]
4223
+ attr_accessor :kms_key_version
4224
+
4186
4225
  # Optional. Set of labels associated with the `WasmPlugin` resource. The format
4187
4226
  # must comply with [the following requirements](/compute/docs/labeling-resources#
4188
4227
  # requirements).
@@ -4243,6 +4282,8 @@ module Google
4243
4282
  def update!(**args)
4244
4283
  @create_time = args[:create_time] if args.key?(:create_time)
4245
4284
  @description = args[:description] if args.key?(:description)
4285
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
4286
+ @kms_key_version = args[:kms_key_version] if args.key?(:kms_key_version)
4246
4287
  @labels = args[:labels] if args.key?(:labels)
4247
4288
  @log_config = args[:log_config] if args.key?(:log_config)
4248
4289
  @main_version_id = args[:main_version_id] if args.key?(:main_version_id)
@@ -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.60.0"
19
+ GEM_VERSION = "0.62.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 = "20251017"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -677,6 +677,7 @@ module Google
677
677
  collection :forward_headers, as: 'forwardHeaders'
678
678
  hash :metadata, as: 'metadata'
679
679
  property :name, as: 'name'
680
+ property :observability_mode, as: 'observabilityMode'
680
681
  property :request_body_send_mode, as: 'requestBodySendMode'
681
682
  property :response_body_send_mode, as: 'responseBodySendMode'
682
683
  property :service, as: 'service'
@@ -1598,6 +1599,8 @@ module Google
1598
1599
  class Representation < Google::Apis::Core::JsonRepresentation
1599
1600
  property :create_time, as: 'createTime'
1600
1601
  property :description, as: 'description'
1602
+ property :kms_key_name, as: 'kmsKeyName'
1603
+ property :kms_key_version, as: 'kmsKeyVersion'
1601
1604
  hash :labels, as: 'labels'
1602
1605
  property :log_config, as: 'logConfig', class: Google::Apis::NetworkservicesV1beta1::WasmPluginLogConfig, decorator: Google::Apis::NetworkservicesV1beta1::WasmPluginLogConfig::Representation
1603
1606
 
@@ -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. Unless explicitly documented otherwise, don't use this unsupported
89
- # field which is primarily intended for internal usage.
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
@@ -351,7 +351,7 @@ module Google
351
351
  # Creates a new EndpointPolicy in a given project and location.
352
352
  # @param [String] parent
353
353
  # Required. The parent resource of the EndpointPolicy. Must be in the format `
354
- # projects/*/locations/global`.
354
+ # projects/*/locations/*`.
355
355
  # @param [Google::Apis::NetworkservicesV1beta1::EndpointPolicy] endpoint_policy_object
356
356
  # @param [String] endpoint_policy_id
357
357
  # Required. Short name of the EndpointPolicy resource to be created. E.g. "
@@ -389,7 +389,7 @@ module Google
389
389
  # Deletes a single EndpointPolicy.
390
390
  # @param [String] name
391
391
  # Required. A name of the EndpointPolicy to delete. Must be in the format `
392
- # projects/*/locations/global/endpointPolicies/*`.
392
+ # projects/*/locations/*/endpointPolicies/*`.
393
393
  # @param [String] fields
394
394
  # Selector specifying which fields to include in a partial response.
395
395
  # @param [String] quota_user
@@ -420,7 +420,7 @@ module Google
420
420
  # Gets details of a single EndpointPolicy.
421
421
  # @param [String] name
422
422
  # Required. A name of the EndpointPolicy to get. Must be in the format `projects/
423
- # */locations/global/endpointPolicies/*`.
423
+ # */locations/*/endpointPolicies/*`.
424
424
  # @param [String] fields
425
425
  # Selector specifying which fields to include in a partial response.
426
426
  # @param [String] quota_user
@@ -451,7 +451,7 @@ module Google
451
451
  # Lists EndpointPolicies in a given project and location.
452
452
  # @param [String] parent
453
453
  # Required. The project and location from which the EndpointPolicies should be
454
- # listed, specified in the format `projects/*/locations/global`.
454
+ # listed, specified in the format `projects/*/locations/*`.
455
455
  # @param [Fixnum] page_size
456
456
  # Maximum number of EndpointPolicies to return per call.
457
457
  # @param [String] page_token
@@ -495,7 +495,7 @@ module Google
495
495
  # Updates the parameters of a single EndpointPolicy.
496
496
  # @param [String] name
497
497
  # Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/`
498
- # project`/locations/global/endpointPolicies/`endpoint_policy``.
498
+ # project`/locations/*/endpointPolicies/`endpoint_policy``.
499
499
  # @param [Google::Apis::NetworkservicesV1beta1::EndpointPolicy] endpoint_policy_object
500
500
  # @param [String] update_mask
501
501
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -785,7 +785,7 @@ module Google
785
785
  # Creates a new GrpcRoute in a given project and location.
786
786
  # @param [String] parent
787
787
  # Required. The parent resource of the GrpcRoute. Must be in the format `
788
- # projects/*/locations/global`.
788
+ # projects/*/locations/*`.
789
789
  # @param [Google::Apis::NetworkservicesV1beta1::GrpcRoute] grpc_route_object
790
790
  # @param [String] grpc_route_id
791
791
  # Required. Short name of the GrpcRoute resource to be created.
@@ -822,7 +822,7 @@ module Google
822
822
  # Deletes a single GrpcRoute.
823
823
  # @param [String] name
824
824
  # Required. A name of the GrpcRoute to delete. Must be in the format `projects/*/
825
- # locations/global/grpcRoutes/*`.
825
+ # locations/*/grpcRoutes/*`.
826
826
  # @param [String] fields
827
827
  # Selector specifying which fields to include in a partial response.
828
828
  # @param [String] quota_user
@@ -853,7 +853,7 @@ module Google
853
853
  # Gets details of a single GrpcRoute.
854
854
  # @param [String] name
855
855
  # Required. A name of the GrpcRoute to get. Must be in the format `projects/*/
856
- # locations/global/grpcRoutes/*`.
856
+ # locations/*/grpcRoutes/*`.
857
857
  # @param [String] fields
858
858
  # Selector specifying which fields to include in a partial response.
859
859
  # @param [String] quota_user
@@ -884,7 +884,7 @@ module Google
884
884
  # Lists GrpcRoutes in a given project and location.
885
885
  # @param [String] parent
886
886
  # Required. The project and location from which the GrpcRoutes should be listed,
887
- # specified in the format `projects/*/locations/global`.
887
+ # specified in the format `projects/*/locations/*`.
888
888
  # @param [Fixnum] page_size
889
889
  # Maximum number of GrpcRoutes to return per call.
890
890
  # @param [String] page_token
@@ -928,7 +928,7 @@ module Google
928
928
  # Updates the parameters of a single GrpcRoute.
929
929
  # @param [String] name
930
930
  # Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/
931
- # locations/global/grpcRoutes/`
931
+ # locations/*/grpcRoutes/`
932
932
  # @param [Google::Apis::NetworkservicesV1beta1::GrpcRoute] grpc_route_object
933
933
  # @param [String] update_mask
934
934
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -969,7 +969,7 @@ module Google
969
969
  # Creates a new HttpRoute in a given project and location.
970
970
  # @param [String] parent
971
971
  # Required. The parent resource of the HttpRoute. Must be in the format `
972
- # projects/*/locations/global`.
972
+ # projects/*/locations/*`.
973
973
  # @param [Google::Apis::NetworkservicesV1beta1::HttpRoute] http_route_object
974
974
  # @param [String] http_route_id
975
975
  # Required. Short name of the HttpRoute resource to be created.
@@ -1006,7 +1006,7 @@ module Google
1006
1006
  # Deletes a single HttpRoute.
1007
1007
  # @param [String] name
1008
1008
  # Required. A name of the HttpRoute to delete. Must be in the format `projects/*/
1009
- # locations/global/httpRoutes/*`.
1009
+ # locations/*/httpRoutes/*`.
1010
1010
  # @param [String] fields
1011
1011
  # Selector specifying which fields to include in a partial response.
1012
1012
  # @param [String] quota_user
@@ -1037,7 +1037,7 @@ module Google
1037
1037
  # Gets details of a single HttpRoute.
1038
1038
  # @param [String] name
1039
1039
  # Required. A name of the HttpRoute to get. Must be in the format `projects/*/
1040
- # locations/global/httpRoutes/*`.
1040
+ # locations/*/httpRoutes/*`.
1041
1041
  # @param [String] fields
1042
1042
  # Selector specifying which fields to include in a partial response.
1043
1043
  # @param [String] quota_user
@@ -1068,7 +1068,7 @@ module Google
1068
1068
  # Lists HttpRoute in a given project and location.
1069
1069
  # @param [String] parent
1070
1070
  # Required. The project and location from which the HttpRoutes should be listed,
1071
- # specified in the format `projects/*/locations/global`.
1071
+ # specified in the format `projects/*/locations/*`.
1072
1072
  # @param [Fixnum] page_size
1073
1073
  # Maximum number of HttpRoutes to return per call.
1074
1074
  # @param [String] page_token
@@ -1112,7 +1112,7 @@ module Google
1112
1112
  # Updates the parameters of a single HttpRoute.
1113
1113
  # @param [String] name
1114
1114
  # Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/
1115
- # locations/global/httpRoutes/http_route_name>`.
1115
+ # locations/*/httpRoutes/http_route_name>`.
1116
1116
  # @param [Google::Apis::NetworkservicesV1beta1::HttpRoute] http_route_object
1117
1117
  # @param [String] update_mask
1118
1118
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -2039,7 +2039,7 @@ module Google
2039
2039
  # Creates a new Mesh in a given project and location.
2040
2040
  # @param [String] parent
2041
2041
  # Required. The parent resource of the Mesh. Must be in the format `projects/*/
2042
- # locations/global`.
2042
+ # locations/*`.
2043
2043
  # @param [Google::Apis::NetworkservicesV1beta1::Mesh] mesh_object
2044
2044
  # @param [String] mesh_id
2045
2045
  # Required. Short name of the Mesh resource to be created.
@@ -2076,7 +2076,7 @@ module Google
2076
2076
  # Deletes a single Mesh.
2077
2077
  # @param [String] name
2078
2078
  # Required. A name of the Mesh to delete. Must be in the format `projects/*/
2079
- # locations/global/meshes/*`.
2079
+ # locations/*/meshes/*`.
2080
2080
  # @param [String] fields
2081
2081
  # Selector specifying which fields to include in a partial response.
2082
2082
  # @param [String] quota_user
@@ -2107,7 +2107,7 @@ module Google
2107
2107
  # Gets details of a single Mesh.
2108
2108
  # @param [String] name
2109
2109
  # Required. A name of the Mesh to get. Must be in the format `projects/*/
2110
- # locations/global/meshes/*`.
2110
+ # locations/*/meshes/*`.
2111
2111
  # @param [String] fields
2112
2112
  # Selector specifying which fields to include in a partial response.
2113
2113
  # @param [String] quota_user
@@ -2138,7 +2138,7 @@ module Google
2138
2138
  # Lists Meshes in a given project and location.
2139
2139
  # @param [String] parent
2140
2140
  # Required. The project and location from which the Meshes should be listed,
2141
- # specified in the format `projects/*/locations/global`.
2141
+ # specified in the format `projects/*/locations/*`.
2142
2142
  # @param [Fixnum] page_size
2143
2143
  # Maximum number of Meshes to return per call.
2144
2144
  # @param [String] page_token
@@ -2182,7 +2182,7 @@ module Google
2182
2182
  # Updates the parameters of a single Mesh.
2183
2183
  # @param [String] name
2184
2184
  # Identifier. Name of the Mesh resource. It matches pattern `projects/*/
2185
- # locations/global/meshes/`.
2185
+ # locations/*/meshes/`.
2186
2186
  # @param [Google::Apis::NetworkservicesV1beta1::Mesh] mesh_object
2187
2187
  # @param [String] update_mask
2188
2188
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -2406,11 +2406,12 @@ module Google
2406
2406
  # The standard list page token.
2407
2407
  # @param [Boolean] return_partial_success
2408
2408
  # When set to `true`, operations that are reachable are returned as normal, and
2409
- # those that are unreachable are returned in the [ListOperationsResponse.
2410
- # unreachable] field. This can only be `true` when reading across collections e.
2411
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2412
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2413
- # explicitly documented otherwise in service or product specific documentation.
2409
+ # those that are unreachable are returned in the ListOperationsResponse.
2410
+ # unreachable field. This can only be `true` when reading across collections.
2411
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
2412
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
2413
+ # if set unless explicitly documented otherwise in service or product specific
2414
+ # documentation.
2414
2415
  # @param [String] fields
2415
2416
  # Selector specifying which fields to include in a partial response.
2416
2417
  # @param [String] quota_user
@@ -2805,7 +2806,7 @@ module Google
2805
2806
  # Creates a new TcpRoute in a given project and location.
2806
2807
  # @param [String] parent
2807
2808
  # Required. The parent resource of the TcpRoute. Must be in the format `projects/
2808
- # */locations/global`.
2809
+ # */locations/*`.
2809
2810
  # @param [Google::Apis::NetworkservicesV1beta1::TcpRoute] tcp_route_object
2810
2811
  # @param [String] tcp_route_id
2811
2812
  # Required. Short name of the TcpRoute resource to be created.
@@ -2842,7 +2843,7 @@ module Google
2842
2843
  # Deletes a single TcpRoute.
2843
2844
  # @param [String] name
2844
2845
  # Required. A name of the TcpRoute to delete. Must be in the format `projects/*/
2845
- # locations/global/tcpRoutes/*`.
2846
+ # locations/*/tcpRoutes/*`.
2846
2847
  # @param [String] fields
2847
2848
  # Selector specifying which fields to include in a partial response.
2848
2849
  # @param [String] quota_user
@@ -2873,7 +2874,7 @@ module Google
2873
2874
  # Gets details of a single TcpRoute.
2874
2875
  # @param [String] name
2875
2876
  # Required. A name of the TcpRoute to get. Must be in the format `projects/*/
2876
- # locations/global/tcpRoutes/*`.
2877
+ # locations/*/tcpRoutes/*`.
2877
2878
  # @param [String] fields
2878
2879
  # Selector specifying which fields to include in a partial response.
2879
2880
  # @param [String] quota_user
@@ -2904,7 +2905,7 @@ module Google
2904
2905
  # Lists TcpRoute in a given project and location.
2905
2906
  # @param [String] parent
2906
2907
  # Required. The project and location from which the TcpRoutes should be listed,
2907
- # specified in the format `projects/*/locations/global`.
2908
+ # specified in the format `projects/*/locations/*`.
2908
2909
  # @param [Fixnum] page_size
2909
2910
  # Maximum number of TcpRoutes to return per call.
2910
2911
  # @param [String] page_token
@@ -2948,7 +2949,7 @@ module Google
2948
2949
  # Updates the parameters of a single TcpRoute.
2949
2950
  # @param [String] name
2950
2951
  # Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
2951
- # locations/global/tcpRoutes/tcp_route_name>`.
2952
+ # locations/*/tcpRoutes/tcp_route_name>`.
2952
2953
  # @param [Google::Apis::NetworkservicesV1beta1::TcpRoute] tcp_route_object
2953
2954
  # @param [String] update_mask
2954
2955
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -2989,7 +2990,7 @@ module Google
2989
2990
  # Creates a new TlsRoute in a given project and location.
2990
2991
  # @param [String] parent
2991
2992
  # Required. The parent resource of the TlsRoute. Must be in the format `projects/
2992
- # */locations/global`.
2993
+ # */locations/*`.
2993
2994
  # @param [Google::Apis::NetworkservicesV1beta1::TlsRoute] tls_route_object
2994
2995
  # @param [String] tls_route_id
2995
2996
  # Required. Short name of the TlsRoute resource to be created.
@@ -3026,7 +3027,7 @@ module Google
3026
3027
  # Deletes a single TlsRoute.
3027
3028
  # @param [String] name
3028
3029
  # Required. A name of the TlsRoute to delete. Must be in the format `projects/*/
3029
- # locations/global/tlsRoutes/*`.
3030
+ # locations/*/tlsRoutes/*`.
3030
3031
  # @param [String] fields
3031
3032
  # Selector specifying which fields to include in a partial response.
3032
3033
  # @param [String] quota_user
@@ -3057,7 +3058,7 @@ module Google
3057
3058
  # Gets details of a single TlsRoute.
3058
3059
  # @param [String] name
3059
3060
  # Required. A name of the TlsRoute to get. Must be in the format `projects/*/
3060
- # locations/global/tlsRoutes/*`.
3061
+ # locations/*/tlsRoutes/*`.
3061
3062
  # @param [String] fields
3062
3063
  # Selector specifying which fields to include in a partial response.
3063
3064
  # @param [String] quota_user
@@ -3088,7 +3089,7 @@ module Google
3088
3089
  # Lists TlsRoute in a given project and location.
3089
3090
  # @param [String] parent
3090
3091
  # Required. The project and location from which the TlsRoutes should be listed,
3091
- # specified in the format `projects/*/locations/global`.
3092
+ # specified in the format `projects/*/locations/*`.
3092
3093
  # @param [Fixnum] page_size
3093
3094
  # Maximum number of TlsRoutes to return per call.
3094
3095
  # @param [String] page_token
@@ -3132,7 +3133,7 @@ module Google
3132
3133
  # Updates the parameters of a single TlsRoute.
3133
3134
  # @param [String] name
3134
3135
  # Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
3135
- # locations/global/tlsRoutes/tls_route_name>`.
3136
+ # locations/*/tlsRoutes/tls_route_name>`.
3136
3137
  # @param [Google::Apis::NetworkservicesV1beta1::TlsRoute] tls_route_object
3137
3138
  # @param [String] update_mask
3138
3139
  # Optional. Field mask is used to specify the fields to be overwritten in the
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.62.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.60.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.62.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: