google-apis-networkservices_v1 0.64.0 → 0.66.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: b33773f95caec9948e219911a9fbd6b50cadebe687a236ac257779ffa06bf28d
4
- data.tar.gz: f12cf5bbd1d94a1219ad012817c21b0996d7e52d3f2df616bba58b231e713f35
3
+ metadata.gz: 9a30ccab87761f8496f6de22df05427f5bb0e72c644c86ba46face50150285fe
4
+ data.tar.gz: 35567333a83bc89cf006fb0e67745e93449af9be96cf4ff94314205d742ad995
5
5
  SHA512:
6
- metadata.gz: 04e0dcbc5995ce2631ea720bfe92f898949b7a7821d2d182a2b0410d6cdbbddf8106e0ca353f789f9b02683ad28e7165d5f5d5b78d6f0612b3f1cf391b6cb374
7
- data.tar.gz: 057d4e86e595690512c34887b73edb272f484e7663124a7aa1d0cd7f69add54fbd5bd7fd667446c826c0d04f8920396b0c25f6c56aacf29bd2dcb7fac6d24b3f
6
+ metadata.gz: c26a96cbc48c3c67c60eb3bb3a3f7a4c60288ca34df4d1b40c0a27bdb1d8a2c1811dc19510b6bb2b7632efeb7e2753db018da8eed6545a2a8391731e5d8a627c
7
+ data.tar.gz: 441419fdbee22cb3146326d0e12df265b1137896bfb70b50b325a3aec2497ee2a6d72733cecfec4e2421fc4fbb02c13f08ca904bf63e3616ce4a56831adf77ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.66.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.65.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251029
10
+
3
11
  ### v0.64.0 (2025-11-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20251017
@@ -190,8 +190,10 @@ module Google
190
190
  # @return [String]
191
191
  attr_accessor :update_time
192
192
 
193
- # Optional. The format of communication supported by the callout extension. If
194
- # not specified, the default value `EXT_PROC_GRPC` is used.
193
+ # Optional. The format of communication supported by the callout extension. This
194
+ # field is supported only for regional `AuthzExtension` resources. If not
195
+ # specified, the default value `EXT_PROC_GRPC` is used. Global `AuthzExtension`
196
+ # resources use the `EXT_PROC_GRPC` wire format.
195
197
  # Corresponds to the JSON property `wireFormat`
196
198
  # @return [String]
197
199
  attr_accessor :wire_format
@@ -481,7 +483,7 @@ module Google
481
483
  attr_accessor :labels
482
484
 
483
485
  # Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/`
484
- # project`/locations/global/endpointPolicies/`endpoint_policy``.
486
+ # project`/locations/*/endpointPolicies/`endpoint_policy``.
485
487
  # Corresponds to the JSON property `name`
486
488
  # @return [String]
487
489
  attr_accessor :name
@@ -685,6 +687,20 @@ module Google
685
687
  # @return [String]
686
688
  attr_accessor :name
687
689
 
690
+ # Optional. When set to `TRUE`, enables `observability_mode` on the `ext_proc`
691
+ # filter. This makes `ext_proc` calls asynchronous. Envoy doesn't check for the
692
+ # response from `ext_proc` calls. For more information about the filter, see:
693
+ # https://www.envoyproxy.io/docs/envoy/v1.32.3/api-v3/extensions/filters/http/
694
+ # ext_proc/v3/ext_proc.proto#extensions-filters-http-ext-proc-v3-
695
+ # externalprocessor This field is helpful when you want to try out the extension
696
+ # in async log-only mode. Supported by regional `LbTrafficExtension` and `
697
+ # LbRouteExtension` resources. Only `STREAMED` (default) body processing mode is
698
+ # supported.
699
+ # Corresponds to the JSON property `observabilityMode`
700
+ # @return [Boolean]
701
+ attr_accessor :observability_mode
702
+ alias_method :observability_mode?, :observability_mode
703
+
688
704
  # Optional. Configures the send mode for request body processing. The field can
689
705
  # only be set if `supported_events` includes `REQUEST_BODY`. If `
690
706
  # supported_events` includes `REQUEST_BODY`, but `request_body_send_mode` is
@@ -759,6 +775,7 @@ module Google
759
775
  @forward_headers = args[:forward_headers] if args.key?(:forward_headers)
760
776
  @metadata = args[:metadata] if args.key?(:metadata)
761
777
  @name = args[:name] if args.key?(:name)
778
+ @observability_mode = args[:observability_mode] if args.key?(:observability_mode)
762
779
  @request_body_send_mode = args[:request_body_send_mode] if args.key?(:request_body_send_mode)
763
780
  @response_body_send_mode = args[:response_body_send_mode] if args.key?(:response_body_send_mode)
764
781
  @service = args[:service] if args.key?(:service)
@@ -1003,8 +1020,7 @@ module Google
1003
1020
 
1004
1021
  # Optional. Gateways defines a list of gateways this GrpcRoute is attached to,
1005
1022
  # as one of the routing rules to route the requests served by the gateway. Each
1006
- # gateway reference should match the pattern: `projects/*/locations/global/
1007
- # gateways/`
1023
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
1008
1024
  # Corresponds to the JSON property `gateways`
1009
1025
  # @return [Array<String>]
1010
1026
  attr_accessor :gateways
@@ -1039,13 +1055,13 @@ module Google
1039
1055
 
1040
1056
  # Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as
1041
1057
  # one of the routing rules to route the requests served by the mesh. Each mesh
1042
- # reference should match the pattern: `projects/*/locations/global/meshes/`
1058
+ # reference should match the pattern: `projects/*/locations/*/meshes/`
1043
1059
  # Corresponds to the JSON property `meshes`
1044
1060
  # @return [Array<String>]
1045
1061
  attr_accessor :meshes
1046
1062
 
1047
1063
  # Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/
1048
- # locations/global/grpcRoutes/`
1064
+ # locations/*/grpcRoutes/`
1049
1065
  # Corresponds to the JSON property `name`
1050
1066
  # @return [String]
1051
1067
  attr_accessor :name
@@ -1484,8 +1500,7 @@ module Google
1484
1500
 
1485
1501
  # Optional. Gateways defines a list of gateways this HttpRoute is attached to,
1486
1502
  # as one of the routing rules to route the requests served by the gateway. Each
1487
- # gateway reference should match the pattern: `projects/*/locations/global/
1488
- # gateways/`
1503
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
1489
1504
  # Corresponds to the JSON property `gateways`
1490
1505
  # @return [Array<String>]
1491
1506
  attr_accessor :gateways
@@ -1518,14 +1533,14 @@ module Google
1518
1533
 
1519
1534
  # Optional. Meshes defines a list of meshes this HttpRoute is attached to, as
1520
1535
  # one of the routing rules to route the requests served by the mesh. Each mesh
1521
- # reference should match the pattern: `projects/*/locations/global/meshes/` The
1536
+ # reference should match the pattern: `projects/*/locations/*/meshes/` The
1522
1537
  # attached Mesh should be of a type SIDECAR
1523
1538
  # Corresponds to the JSON property `meshes`
1524
1539
  # @return [Array<String>]
1525
1540
  attr_accessor :meshes
1526
1541
 
1527
1542
  # Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/
1528
- # locations/global/httpRoutes/http_route_name>`.
1543
+ # locations/*/httpRoutes/http_route_name>`.
1529
1544
  # Corresponds to the JSON property `name`
1530
1545
  # @return [String]
1531
1546
  attr_accessor :name
@@ -3037,8 +3052,9 @@ module Google
3037
3052
  attr_accessor :operations
3038
3053
 
3039
3054
  # Unordered list. Unreachable resources. Populated when the request sets `
3040
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
3041
- # when attempting to list all resources across all supported locations.
3055
+ # ListOperationsRequest.return_partial_success` and reads across collections.
3056
+ # For example, when attempting to list all resources across all supported
3057
+ # locations.
3042
3058
  # Corresponds to the JSON property `unreachable`
3043
3059
  # @return [Array<String>]
3044
3060
  attr_accessor :unreachable
@@ -3372,7 +3388,7 @@ module Google
3372
3388
  attr_accessor :labels
3373
3389
 
3374
3390
  # Identifier. Name of the Mesh resource. It matches pattern `projects/*/
3375
- # locations/global/meshes/`.
3391
+ # locations/*/meshes/`.
3376
3392
  # Corresponds to the JSON property `name`
3377
3393
  # @return [String]
3378
3394
  attr_accessor :name
@@ -4005,8 +4021,7 @@ module Google
4005
4021
 
4006
4022
  # Optional. Gateways defines a list of gateways this TcpRoute is attached to, as
4007
4023
  # one of the routing rules to route the requests served by the gateway. Each
4008
- # gateway reference should match the pattern: `projects/*/locations/global/
4009
- # gateways/`
4024
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
4010
4025
  # Corresponds to the JSON property `gateways`
4011
4026
  # @return [Array<String>]
4012
4027
  attr_accessor :gateways
@@ -4018,14 +4033,14 @@ module Google
4018
4033
 
4019
4034
  # Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one
4020
4035
  # of the routing rules to route the requests served by the mesh. Each mesh
4021
- # reference should match the pattern: `projects/*/locations/global/meshes/` The
4036
+ # reference should match the pattern: `projects/*/locations/*/meshes/` The
4022
4037
  # attached Mesh should be of a type SIDECAR
4023
4038
  # Corresponds to the JSON property `meshes`
4024
4039
  # @return [Array<String>]
4025
4040
  attr_accessor :meshes
4026
4041
 
4027
4042
  # Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
4028
- # locations/global/tcpRoutes/tcp_route_name>`.
4043
+ # locations/*/tcpRoutes/tcp_route_name>`.
4029
4044
  # Corresponds to the JSON property `name`
4030
4045
  # @return [String]
4031
4046
  attr_accessor :name
@@ -4254,8 +4269,7 @@ module Google
4254
4269
 
4255
4270
  # Optional. Gateways defines a list of gateways this TlsRoute is attached to, as
4256
4271
  # one of the routing rules to route the requests served by the gateway. Each
4257
- # gateway reference should match the pattern: `projects/*/locations/global/
4258
- # gateways/`
4272
+ # gateway reference should match the pattern: `projects/*/locations/*/gateways/`
4259
4273
  # Corresponds to the JSON property `gateways`
4260
4274
  # @return [Array<String>]
4261
4275
  attr_accessor :gateways
@@ -4267,14 +4281,14 @@ module Google
4267
4281
 
4268
4282
  # Optional. Meshes defines a list of meshes this TlsRoute is attached to, as one
4269
4283
  # of the routing rules to route the requests served by the mesh. Each mesh
4270
- # reference should match the pattern: `projects/*/locations/global/meshes/` The
4284
+ # reference should match the pattern: `projects/*/locations/*/meshes/` The
4271
4285
  # attached Mesh should be of a type SIDECAR
4272
4286
  # Corresponds to the JSON property `meshes`
4273
4287
  # @return [Array<String>]
4274
4288
  attr_accessor :meshes
4275
4289
 
4276
4290
  # Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
4277
- # locations/global/tlsRoutes/tls_route_name>`.
4291
+ # locations/*/tlsRoutes/tls_route_name>`.
4278
4292
  # Corresponds to the JSON property `name`
4279
4293
  # @return [String]
4280
4294
  attr_accessor :name
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.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
@@ -765,6 +765,7 @@ module Google
765
765
  collection :forward_headers, as: 'forwardHeaders'
766
766
  hash :metadata, as: 'metadata'
767
767
  property :name, as: 'name'
768
+ property :observability_mode, as: 'observabilityMode'
768
769
  property :request_body_send_mode, as: 'requestBodySendMode'
769
770
  property :response_body_send_mode, as: 'responseBodySendMode'
770
771
  property :service, as: 'service'
@@ -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
@@ -714,7 +714,7 @@ module Google
714
714
  # Creates a new EndpointPolicy in a given project and location.
715
715
  # @param [String] parent
716
716
  # Required. The parent resource of the EndpointPolicy. Must be in the format `
717
- # projects/*/locations/global`.
717
+ # projects/*/locations/*`.
718
718
  # @param [Google::Apis::NetworkservicesV1::EndpointPolicy] endpoint_policy_object
719
719
  # @param [String] endpoint_policy_id
720
720
  # Required. Short name of the EndpointPolicy resource to be created. E.g. "
@@ -752,7 +752,7 @@ module Google
752
752
  # Deletes a single EndpointPolicy.
753
753
  # @param [String] name
754
754
  # Required. A name of the EndpointPolicy to delete. Must be in the format `
755
- # projects/*/locations/global/endpointPolicies/*`.
755
+ # projects/*/locations/*/endpointPolicies/*`.
756
756
  # @param [String] fields
757
757
  # Selector specifying which fields to include in a partial response.
758
758
  # @param [String] quota_user
@@ -783,7 +783,7 @@ module Google
783
783
  # Gets details of a single EndpointPolicy.
784
784
  # @param [String] name
785
785
  # Required. A name of the EndpointPolicy to get. Must be in the format `projects/
786
- # */locations/global/endpointPolicies/*`.
786
+ # */locations/*/endpointPolicies/*`.
787
787
  # @param [String] fields
788
788
  # Selector specifying which fields to include in a partial response.
789
789
  # @param [String] quota_user
@@ -814,7 +814,7 @@ module Google
814
814
  # Lists EndpointPolicies in a given project and location.
815
815
  # @param [String] parent
816
816
  # Required. The project and location from which the EndpointPolicies should be
817
- # listed, specified in the format `projects/*/locations/global`.
817
+ # listed, specified in the format `projects/*/locations/*`.
818
818
  # @param [Fixnum] page_size
819
819
  # Maximum number of EndpointPolicies to return per call.
820
820
  # @param [String] page_token
@@ -858,7 +858,7 @@ module Google
858
858
  # Updates the parameters of a single EndpointPolicy.
859
859
  # @param [String] name
860
860
  # Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/`
861
- # project`/locations/global/endpointPolicies/`endpoint_policy``.
861
+ # project`/locations/*/endpointPolicies/`endpoint_policy``.
862
862
  # @param [Google::Apis::NetworkservicesV1::EndpointPolicy] endpoint_policy_object
863
863
  # @param [String] update_mask
864
864
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -1148,7 +1148,7 @@ module Google
1148
1148
  # Creates a new GrpcRoute in a given project and location.
1149
1149
  # @param [String] parent
1150
1150
  # Required. The parent resource of the GrpcRoute. Must be in the format `
1151
- # projects/*/locations/global`.
1151
+ # projects/*/locations/*`.
1152
1152
  # @param [Google::Apis::NetworkservicesV1::GrpcRoute] grpc_route_object
1153
1153
  # @param [String] grpc_route_id
1154
1154
  # Required. Short name of the GrpcRoute resource to be created.
@@ -1185,7 +1185,7 @@ module Google
1185
1185
  # Deletes a single GrpcRoute.
1186
1186
  # @param [String] name
1187
1187
  # Required. A name of the GrpcRoute to delete. Must be in the format `projects/*/
1188
- # locations/global/grpcRoutes/*`.
1188
+ # locations/*/grpcRoutes/*`.
1189
1189
  # @param [String] fields
1190
1190
  # Selector specifying which fields to include in a partial response.
1191
1191
  # @param [String] quota_user
@@ -1216,7 +1216,7 @@ module Google
1216
1216
  # Gets details of a single GrpcRoute.
1217
1217
  # @param [String] name
1218
1218
  # Required. A name of the GrpcRoute to get. Must be in the format `projects/*/
1219
- # locations/global/grpcRoutes/*`.
1219
+ # locations/*/grpcRoutes/*`.
1220
1220
  # @param [String] fields
1221
1221
  # Selector specifying which fields to include in a partial response.
1222
1222
  # @param [String] quota_user
@@ -1247,7 +1247,7 @@ module Google
1247
1247
  # Lists GrpcRoutes in a given project and location.
1248
1248
  # @param [String] parent
1249
1249
  # Required. The project and location from which the GrpcRoutes should be listed,
1250
- # specified in the format `projects/*/locations/global`.
1250
+ # specified in the format `projects/*/locations/*`.
1251
1251
  # @param [Fixnum] page_size
1252
1252
  # Maximum number of GrpcRoutes to return per call.
1253
1253
  # @param [String] page_token
@@ -1291,7 +1291,7 @@ module Google
1291
1291
  # Updates the parameters of a single GrpcRoute.
1292
1292
  # @param [String] name
1293
1293
  # Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/
1294
- # locations/global/grpcRoutes/`
1294
+ # locations/*/grpcRoutes/`
1295
1295
  # @param [Google::Apis::NetworkservicesV1::GrpcRoute] grpc_route_object
1296
1296
  # @param [String] update_mask
1297
1297
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -1332,7 +1332,7 @@ module Google
1332
1332
  # Creates a new HttpRoute in a given project and location.
1333
1333
  # @param [String] parent
1334
1334
  # Required. The parent resource of the HttpRoute. Must be in the format `
1335
- # projects/*/locations/global`.
1335
+ # projects/*/locations/*`.
1336
1336
  # @param [Google::Apis::NetworkservicesV1::HttpRoute] http_route_object
1337
1337
  # @param [String] http_route_id
1338
1338
  # Required. Short name of the HttpRoute resource to be created.
@@ -1369,7 +1369,7 @@ module Google
1369
1369
  # Deletes a single HttpRoute.
1370
1370
  # @param [String] name
1371
1371
  # Required. A name of the HttpRoute to delete. Must be in the format `projects/*/
1372
- # locations/global/httpRoutes/*`.
1372
+ # locations/*/httpRoutes/*`.
1373
1373
  # @param [String] fields
1374
1374
  # Selector specifying which fields to include in a partial response.
1375
1375
  # @param [String] quota_user
@@ -1400,7 +1400,7 @@ module Google
1400
1400
  # Gets details of a single HttpRoute.
1401
1401
  # @param [String] name
1402
1402
  # Required. A name of the HttpRoute to get. Must be in the format `projects/*/
1403
- # locations/global/httpRoutes/*`.
1403
+ # locations/*/httpRoutes/*`.
1404
1404
  # @param [String] fields
1405
1405
  # Selector specifying which fields to include in a partial response.
1406
1406
  # @param [String] quota_user
@@ -1431,7 +1431,7 @@ module Google
1431
1431
  # Lists HttpRoute in a given project and location.
1432
1432
  # @param [String] parent
1433
1433
  # Required. The project and location from which the HttpRoutes should be listed,
1434
- # specified in the format `projects/*/locations/global`.
1434
+ # specified in the format `projects/*/locations/*`.
1435
1435
  # @param [Fixnum] page_size
1436
1436
  # Maximum number of HttpRoutes to return per call.
1437
1437
  # @param [String] page_token
@@ -1475,7 +1475,7 @@ module Google
1475
1475
  # Updates the parameters of a single HttpRoute.
1476
1476
  # @param [String] name
1477
1477
  # Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/
1478
- # locations/global/httpRoutes/http_route_name>`.
1478
+ # locations/*/httpRoutes/http_route_name>`.
1479
1479
  # @param [Google::Apis::NetworkservicesV1::HttpRoute] http_route_object
1480
1480
  # @param [String] update_mask
1481
1481
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -2179,7 +2179,7 @@ module Google
2179
2179
  # Creates a new Mesh in a given project and location.
2180
2180
  # @param [String] parent
2181
2181
  # Required. The parent resource of the Mesh. Must be in the format `projects/*/
2182
- # locations/global`.
2182
+ # locations/*`.
2183
2183
  # @param [Google::Apis::NetworkservicesV1::Mesh] mesh_object
2184
2184
  # @param [String] mesh_id
2185
2185
  # Required. Short name of the Mesh resource to be created.
@@ -2216,7 +2216,7 @@ module Google
2216
2216
  # Deletes a single Mesh.
2217
2217
  # @param [String] name
2218
2218
  # Required. A name of the Mesh to delete. Must be in the format `projects/*/
2219
- # locations/global/meshes/*`.
2219
+ # locations/*/meshes/*`.
2220
2220
  # @param [String] fields
2221
2221
  # Selector specifying which fields to include in a partial response.
2222
2222
  # @param [String] quota_user
@@ -2247,7 +2247,7 @@ module Google
2247
2247
  # Gets details of a single Mesh.
2248
2248
  # @param [String] name
2249
2249
  # Required. A name of the Mesh to get. Must be in the format `projects/*/
2250
- # locations/global/meshes/*`.
2250
+ # locations/*/meshes/*`.
2251
2251
  # @param [String] fields
2252
2252
  # Selector specifying which fields to include in a partial response.
2253
2253
  # @param [String] quota_user
@@ -2278,7 +2278,7 @@ module Google
2278
2278
  # Lists Meshes in a given project and location.
2279
2279
  # @param [String] parent
2280
2280
  # Required. The project and location from which the Meshes should be listed,
2281
- # specified in the format `projects/*/locations/global`.
2281
+ # specified in the format `projects/*/locations/*`.
2282
2282
  # @param [Fixnum] page_size
2283
2283
  # Maximum number of Meshes to return per call.
2284
2284
  # @param [String] page_token
@@ -2322,7 +2322,7 @@ module Google
2322
2322
  # Updates the parameters of a single Mesh.
2323
2323
  # @param [String] name
2324
2324
  # Identifier. Name of the Mesh resource. It matches pattern `projects/*/
2325
- # locations/global/meshes/`.
2325
+ # locations/*/meshes/`.
2326
2326
  # @param [Google::Apis::NetworkservicesV1::Mesh] mesh_object
2327
2327
  # @param [String] update_mask
2328
2328
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -2546,11 +2546,12 @@ module Google
2546
2546
  # The standard list page token.
2547
2547
  # @param [Boolean] return_partial_success
2548
2548
  # When set to `true`, operations that are reachable are returned as normal, and
2549
- # those that are unreachable are returned in the [ListOperationsResponse.
2550
- # unreachable] field. This can only be `true` when reading across collections e.
2551
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2552
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2553
- # explicitly documented otherwise in service or product specific documentation.
2549
+ # those that are unreachable are returned in the ListOperationsResponse.
2550
+ # unreachable field. This can only be `true` when reading across collections.
2551
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
2552
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
2553
+ # if set unless explicitly documented otherwise in service or product specific
2554
+ # documentation.
2554
2555
  # @param [String] fields
2555
2556
  # Selector specifying which fields to include in a partial response.
2556
2557
  # @param [String] quota_user
@@ -2945,7 +2946,7 @@ module Google
2945
2946
  # Creates a new TcpRoute in a given project and location.
2946
2947
  # @param [String] parent
2947
2948
  # Required. The parent resource of the TcpRoute. Must be in the format `projects/
2948
- # */locations/global`.
2949
+ # */locations/*`.
2949
2950
  # @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
2950
2951
  # @param [String] tcp_route_id
2951
2952
  # Required. Short name of the TcpRoute resource to be created.
@@ -2982,7 +2983,7 @@ module Google
2982
2983
  # Deletes a single TcpRoute.
2983
2984
  # @param [String] name
2984
2985
  # Required. A name of the TcpRoute to delete. Must be in the format `projects/*/
2985
- # locations/global/tcpRoutes/*`.
2986
+ # locations/*/tcpRoutes/*`.
2986
2987
  # @param [String] fields
2987
2988
  # Selector specifying which fields to include in a partial response.
2988
2989
  # @param [String] quota_user
@@ -3013,7 +3014,7 @@ module Google
3013
3014
  # Gets details of a single TcpRoute.
3014
3015
  # @param [String] name
3015
3016
  # Required. A name of the TcpRoute to get. Must be in the format `projects/*/
3016
- # locations/global/tcpRoutes/*`.
3017
+ # locations/*/tcpRoutes/*`.
3017
3018
  # @param [String] fields
3018
3019
  # Selector specifying which fields to include in a partial response.
3019
3020
  # @param [String] quota_user
@@ -3044,7 +3045,7 @@ module Google
3044
3045
  # Lists TcpRoute in a given project and location.
3045
3046
  # @param [String] parent
3046
3047
  # Required. The project and location from which the TcpRoutes should be listed,
3047
- # specified in the format `projects/*/locations/global`.
3048
+ # specified in the format `projects/*/locations/*`.
3048
3049
  # @param [Fixnum] page_size
3049
3050
  # Maximum number of TcpRoutes to return per call.
3050
3051
  # @param [String] page_token
@@ -3088,7 +3089,7 @@ module Google
3088
3089
  # Updates the parameters of a single TcpRoute.
3089
3090
  # @param [String] name
3090
3091
  # Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
3091
- # locations/global/tcpRoutes/tcp_route_name>`.
3092
+ # locations/*/tcpRoutes/tcp_route_name>`.
3092
3093
  # @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
3093
3094
  # @param [String] update_mask
3094
3095
  # Optional. Field mask is used to specify the fields to be overwritten in the
@@ -3129,7 +3130,7 @@ module Google
3129
3130
  # Creates a new TlsRoute in a given project and location.
3130
3131
  # @param [String] parent
3131
3132
  # Required. The parent resource of the TlsRoute. Must be in the format `projects/
3132
- # */locations/global`.
3133
+ # */locations/*`.
3133
3134
  # @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
3134
3135
  # @param [String] tls_route_id
3135
3136
  # Required. Short name of the TlsRoute resource to be created.
@@ -3166,7 +3167,7 @@ module Google
3166
3167
  # Deletes a single TlsRoute.
3167
3168
  # @param [String] name
3168
3169
  # Required. A name of the TlsRoute to delete. Must be in the format `projects/*/
3169
- # locations/global/tlsRoutes/*`.
3170
+ # locations/*/tlsRoutes/*`.
3170
3171
  # @param [String] fields
3171
3172
  # Selector specifying which fields to include in a partial response.
3172
3173
  # @param [String] quota_user
@@ -3197,7 +3198,7 @@ module Google
3197
3198
  # Gets details of a single TlsRoute.
3198
3199
  # @param [String] name
3199
3200
  # Required. A name of the TlsRoute to get. Must be in the format `projects/*/
3200
- # locations/global/tlsRoutes/*`.
3201
+ # locations/*/tlsRoutes/*`.
3201
3202
  # @param [String] fields
3202
3203
  # Selector specifying which fields to include in a partial response.
3203
3204
  # @param [String] quota_user
@@ -3228,7 +3229,7 @@ module Google
3228
3229
  # Lists TlsRoute in a given project and location.
3229
3230
  # @param [String] parent
3230
3231
  # Required. The project and location from which the TlsRoutes should be listed,
3231
- # specified in the format `projects/*/locations/global`.
3232
+ # specified in the format `projects/*/locations/*`.
3232
3233
  # @param [Fixnum] page_size
3233
3234
  # Maximum number of TlsRoutes to return per call.
3234
3235
  # @param [String] page_token
@@ -3272,7 +3273,7 @@ module Google
3272
3273
  # Updates the parameters of a single TlsRoute.
3273
3274
  # @param [String] name
3274
3275
  # Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
3275
- # locations/global/tlsRoutes/tls_route_name>`.
3276
+ # locations/*/tlsRoutes/tls_route_name>`.
3276
3277
  # @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
3277
3278
  # @param [String] update_mask
3278
3279
  # 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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.66.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.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.66.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: