google-apis-networkservices_v1 0.64.0 → 0.65.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 +29 -18
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1/representations.rb +1 -0
- data/lib/google/apis/networkservices_v1/service.rb +32 -32
- 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: 6215513a1fadc5809348311d41d1afdc995db8a51c24dc8b7cea2b96a20b4721
|
|
4
|
+
data.tar.gz: 680cd9d964c2ed2c389385b5b9a4e19bb747207cbcc2cc52852c894ba49411fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf98efca0fab21db5986a9d17a4b4ad03c39fac93e7c42cfdf29bfb5c034e03624391ac1d007fcaf0c01202842c40a2b1adc83ed758ad161660cef977f20dcd0
|
|
7
|
+
data.tar.gz: 3c9a8dd907306a8ab77668f633ed42cbc210d8ea53279e53a61b055ae89fe605ba3a253f001e5323ef1ec92a1dc9bdf7dfb41fc53c813a3518b90d7af5fa3d97
|
data/CHANGELOG.md
CHANGED
|
@@ -481,7 +481,7 @@ module Google
|
|
|
481
481
|
attr_accessor :labels
|
|
482
482
|
|
|
483
483
|
# Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/`
|
|
484
|
-
# project`/locations
|
|
484
|
+
# project`/locations/*/endpointPolicies/`endpoint_policy``.
|
|
485
485
|
# Corresponds to the JSON property `name`
|
|
486
486
|
# @return [String]
|
|
487
487
|
attr_accessor :name
|
|
@@ -685,6 +685,20 @@ module Google
|
|
|
685
685
|
# @return [String]
|
|
686
686
|
attr_accessor :name
|
|
687
687
|
|
|
688
|
+
# Optional. When set to `TRUE`, enables `observability_mode` on the `ext_proc`
|
|
689
|
+
# filter. This makes `ext_proc` calls asynchronous. Envoy doesn't check for the
|
|
690
|
+
# response from `ext_proc` calls. For more information about the filter, see:
|
|
691
|
+
# https://www.envoyproxy.io/docs/envoy/v1.32.3/api-v3/extensions/filters/http/
|
|
692
|
+
# ext_proc/v3/ext_proc.proto#extensions-filters-http-ext-proc-v3-
|
|
693
|
+
# externalprocessor This field is helpful when you want to try out the extension
|
|
694
|
+
# in async log-only mode. Supported by regional `LbTrafficExtension` and `
|
|
695
|
+
# LbRouteExtension` resources. Only `STREAMED` (default) body processing mode is
|
|
696
|
+
# supported.
|
|
697
|
+
# Corresponds to the JSON property `observabilityMode`
|
|
698
|
+
# @return [Boolean]
|
|
699
|
+
attr_accessor :observability_mode
|
|
700
|
+
alias_method :observability_mode?, :observability_mode
|
|
701
|
+
|
|
688
702
|
# Optional. Configures the send mode for request body processing. The field can
|
|
689
703
|
# only be set if `supported_events` includes `REQUEST_BODY`. If `
|
|
690
704
|
# supported_events` includes `REQUEST_BODY`, but `request_body_send_mode` is
|
|
@@ -759,6 +773,7 @@ module Google
|
|
|
759
773
|
@forward_headers = args[:forward_headers] if args.key?(:forward_headers)
|
|
760
774
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
761
775
|
@name = args[:name] if args.key?(:name)
|
|
776
|
+
@observability_mode = args[:observability_mode] if args.key?(:observability_mode)
|
|
762
777
|
@request_body_send_mode = args[:request_body_send_mode] if args.key?(:request_body_send_mode)
|
|
763
778
|
@response_body_send_mode = args[:response_body_send_mode] if args.key?(:response_body_send_mode)
|
|
764
779
|
@service = args[:service] if args.key?(:service)
|
|
@@ -1003,8 +1018,7 @@ module Google
|
|
|
1003
1018
|
|
|
1004
1019
|
# Optional. Gateways defines a list of gateways this GrpcRoute is attached to,
|
|
1005
1020
|
# as one of the routing rules to route the requests served by the gateway. Each
|
|
1006
|
-
# gateway reference should match the pattern: `projects/*/locations
|
|
1007
|
-
# gateways/`
|
|
1021
|
+
# gateway reference should match the pattern: `projects/*/locations/*/gateways/`
|
|
1008
1022
|
# Corresponds to the JSON property `gateways`
|
|
1009
1023
|
# @return [Array<String>]
|
|
1010
1024
|
attr_accessor :gateways
|
|
@@ -1039,13 +1053,13 @@ module Google
|
|
|
1039
1053
|
|
|
1040
1054
|
# Optional. Meshes defines a list of meshes this GrpcRoute is attached to, as
|
|
1041
1055
|
# one of the routing rules to route the requests served by the mesh. Each mesh
|
|
1042
|
-
# reference should match the pattern: `projects/*/locations
|
|
1056
|
+
# reference should match the pattern: `projects/*/locations/*/meshes/`
|
|
1043
1057
|
# Corresponds to the JSON property `meshes`
|
|
1044
1058
|
# @return [Array<String>]
|
|
1045
1059
|
attr_accessor :meshes
|
|
1046
1060
|
|
|
1047
1061
|
# Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/
|
|
1048
|
-
# locations
|
|
1062
|
+
# locations/*/grpcRoutes/`
|
|
1049
1063
|
# Corresponds to the JSON property `name`
|
|
1050
1064
|
# @return [String]
|
|
1051
1065
|
attr_accessor :name
|
|
@@ -1484,8 +1498,7 @@ module Google
|
|
|
1484
1498
|
|
|
1485
1499
|
# Optional. Gateways defines a list of gateways this HttpRoute is attached to,
|
|
1486
1500
|
# as one of the routing rules to route the requests served by the gateway. Each
|
|
1487
|
-
# gateway reference should match the pattern: `projects/*/locations
|
|
1488
|
-
# gateways/`
|
|
1501
|
+
# gateway reference should match the pattern: `projects/*/locations/*/gateways/`
|
|
1489
1502
|
# Corresponds to the JSON property `gateways`
|
|
1490
1503
|
# @return [Array<String>]
|
|
1491
1504
|
attr_accessor :gateways
|
|
@@ -1518,14 +1531,14 @@ module Google
|
|
|
1518
1531
|
|
|
1519
1532
|
# Optional. Meshes defines a list of meshes this HttpRoute is attached to, as
|
|
1520
1533
|
# one of the routing rules to route the requests served by the mesh. Each mesh
|
|
1521
|
-
# reference should match the pattern: `projects/*/locations
|
|
1534
|
+
# reference should match the pattern: `projects/*/locations/*/meshes/` The
|
|
1522
1535
|
# attached Mesh should be of a type SIDECAR
|
|
1523
1536
|
# Corresponds to the JSON property `meshes`
|
|
1524
1537
|
# @return [Array<String>]
|
|
1525
1538
|
attr_accessor :meshes
|
|
1526
1539
|
|
|
1527
1540
|
# Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/
|
|
1528
|
-
# locations
|
|
1541
|
+
# locations/*/httpRoutes/http_route_name>`.
|
|
1529
1542
|
# Corresponds to the JSON property `name`
|
|
1530
1543
|
# @return [String]
|
|
1531
1544
|
attr_accessor :name
|
|
@@ -3372,7 +3385,7 @@ module Google
|
|
|
3372
3385
|
attr_accessor :labels
|
|
3373
3386
|
|
|
3374
3387
|
# Identifier. Name of the Mesh resource. It matches pattern `projects/*/
|
|
3375
|
-
# locations
|
|
3388
|
+
# locations/*/meshes/`.
|
|
3376
3389
|
# Corresponds to the JSON property `name`
|
|
3377
3390
|
# @return [String]
|
|
3378
3391
|
attr_accessor :name
|
|
@@ -4005,8 +4018,7 @@ module Google
|
|
|
4005
4018
|
|
|
4006
4019
|
# Optional. Gateways defines a list of gateways this TcpRoute is attached to, as
|
|
4007
4020
|
# one of the routing rules to route the requests served by the gateway. Each
|
|
4008
|
-
# gateway reference should match the pattern: `projects/*/locations
|
|
4009
|
-
# gateways/`
|
|
4021
|
+
# gateway reference should match the pattern: `projects/*/locations/*/gateways/`
|
|
4010
4022
|
# Corresponds to the JSON property `gateways`
|
|
4011
4023
|
# @return [Array<String>]
|
|
4012
4024
|
attr_accessor :gateways
|
|
@@ -4018,14 +4030,14 @@ module Google
|
|
|
4018
4030
|
|
|
4019
4031
|
# Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one
|
|
4020
4032
|
# of the routing rules to route the requests served by the mesh. Each mesh
|
|
4021
|
-
# reference should match the pattern: `projects/*/locations
|
|
4033
|
+
# reference should match the pattern: `projects/*/locations/*/meshes/` The
|
|
4022
4034
|
# attached Mesh should be of a type SIDECAR
|
|
4023
4035
|
# Corresponds to the JSON property `meshes`
|
|
4024
4036
|
# @return [Array<String>]
|
|
4025
4037
|
attr_accessor :meshes
|
|
4026
4038
|
|
|
4027
4039
|
# Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
|
|
4028
|
-
# locations
|
|
4040
|
+
# locations/*/tcpRoutes/tcp_route_name>`.
|
|
4029
4041
|
# Corresponds to the JSON property `name`
|
|
4030
4042
|
# @return [String]
|
|
4031
4043
|
attr_accessor :name
|
|
@@ -4254,8 +4266,7 @@ module Google
|
|
|
4254
4266
|
|
|
4255
4267
|
# Optional. Gateways defines a list of gateways this TlsRoute is attached to, as
|
|
4256
4268
|
# one of the routing rules to route the requests served by the gateway. Each
|
|
4257
|
-
# gateway reference should match the pattern: `projects/*/locations
|
|
4258
|
-
# gateways/`
|
|
4269
|
+
# gateway reference should match the pattern: `projects/*/locations/*/gateways/`
|
|
4259
4270
|
# Corresponds to the JSON property `gateways`
|
|
4260
4271
|
# @return [Array<String>]
|
|
4261
4272
|
attr_accessor :gateways
|
|
@@ -4267,14 +4278,14 @@ module Google
|
|
|
4267
4278
|
|
|
4268
4279
|
# Optional. Meshes defines a list of meshes this TlsRoute is attached to, as one
|
|
4269
4280
|
# of the routing rules to route the requests served by the mesh. Each mesh
|
|
4270
|
-
# reference should match the pattern: `projects/*/locations
|
|
4281
|
+
# reference should match the pattern: `projects/*/locations/*/meshes/` The
|
|
4271
4282
|
# attached Mesh should be of a type SIDECAR
|
|
4272
4283
|
# Corresponds to the JSON property `meshes`
|
|
4273
4284
|
# @return [Array<String>]
|
|
4274
4285
|
attr_accessor :meshes
|
|
4275
4286
|
|
|
4276
4287
|
# Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
|
|
4277
|
-
# locations
|
|
4288
|
+
# locations/*/tlsRoutes/tls_route_name>`.
|
|
4278
4289
|
# Corresponds to the JSON property `name`
|
|
4279
4290
|
# @return [String]
|
|
4280
4291
|
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.
|
|
19
|
+
GEM_VERSION = "0.65.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 = "20251029"
|
|
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.
|
|
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
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
@@ -2945,7 +2945,7 @@ module Google
|
|
|
2945
2945
|
# Creates a new TcpRoute in a given project and location.
|
|
2946
2946
|
# @param [String] parent
|
|
2947
2947
|
# Required. The parent resource of the TcpRoute. Must be in the format `projects/
|
|
2948
|
-
# */locations
|
|
2948
|
+
# */locations/*`.
|
|
2949
2949
|
# @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
|
|
2950
2950
|
# @param [String] tcp_route_id
|
|
2951
2951
|
# Required. Short name of the TcpRoute resource to be created.
|
|
@@ -2982,7 +2982,7 @@ module Google
|
|
|
2982
2982
|
# Deletes a single TcpRoute.
|
|
2983
2983
|
# @param [String] name
|
|
2984
2984
|
# Required. A name of the TcpRoute to delete. Must be in the format `projects/*/
|
|
2985
|
-
# locations
|
|
2985
|
+
# locations/*/tcpRoutes/*`.
|
|
2986
2986
|
# @param [String] fields
|
|
2987
2987
|
# Selector specifying which fields to include in a partial response.
|
|
2988
2988
|
# @param [String] quota_user
|
|
@@ -3013,7 +3013,7 @@ module Google
|
|
|
3013
3013
|
# Gets details of a single TcpRoute.
|
|
3014
3014
|
# @param [String] name
|
|
3015
3015
|
# Required. A name of the TcpRoute to get. Must be in the format `projects/*/
|
|
3016
|
-
# locations
|
|
3016
|
+
# locations/*/tcpRoutes/*`.
|
|
3017
3017
|
# @param [String] fields
|
|
3018
3018
|
# Selector specifying which fields to include in a partial response.
|
|
3019
3019
|
# @param [String] quota_user
|
|
@@ -3044,7 +3044,7 @@ module Google
|
|
|
3044
3044
|
# Lists TcpRoute in a given project and location.
|
|
3045
3045
|
# @param [String] parent
|
|
3046
3046
|
# Required. The project and location from which the TcpRoutes should be listed,
|
|
3047
|
-
# specified in the format `projects/*/locations
|
|
3047
|
+
# specified in the format `projects/*/locations/*`.
|
|
3048
3048
|
# @param [Fixnum] page_size
|
|
3049
3049
|
# Maximum number of TcpRoutes to return per call.
|
|
3050
3050
|
# @param [String] page_token
|
|
@@ -3088,7 +3088,7 @@ module Google
|
|
|
3088
3088
|
# Updates the parameters of a single TcpRoute.
|
|
3089
3089
|
# @param [String] name
|
|
3090
3090
|
# Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
|
|
3091
|
-
# locations
|
|
3091
|
+
# locations/*/tcpRoutes/tcp_route_name>`.
|
|
3092
3092
|
# @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
|
|
3093
3093
|
# @param [String] update_mask
|
|
3094
3094
|
# Optional. Field mask is used to specify the fields to be overwritten in the
|
|
@@ -3129,7 +3129,7 @@ module Google
|
|
|
3129
3129
|
# Creates a new TlsRoute in a given project and location.
|
|
3130
3130
|
# @param [String] parent
|
|
3131
3131
|
# Required. The parent resource of the TlsRoute. Must be in the format `projects/
|
|
3132
|
-
# */locations
|
|
3132
|
+
# */locations/*`.
|
|
3133
3133
|
# @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
|
|
3134
3134
|
# @param [String] tls_route_id
|
|
3135
3135
|
# Required. Short name of the TlsRoute resource to be created.
|
|
@@ -3166,7 +3166,7 @@ module Google
|
|
|
3166
3166
|
# Deletes a single TlsRoute.
|
|
3167
3167
|
# @param [String] name
|
|
3168
3168
|
# Required. A name of the TlsRoute to delete. Must be in the format `projects/*/
|
|
3169
|
-
# locations
|
|
3169
|
+
# locations/*/tlsRoutes/*`.
|
|
3170
3170
|
# @param [String] fields
|
|
3171
3171
|
# Selector specifying which fields to include in a partial response.
|
|
3172
3172
|
# @param [String] quota_user
|
|
@@ -3197,7 +3197,7 @@ module Google
|
|
|
3197
3197
|
# Gets details of a single TlsRoute.
|
|
3198
3198
|
# @param [String] name
|
|
3199
3199
|
# Required. A name of the TlsRoute to get. Must be in the format `projects/*/
|
|
3200
|
-
# locations
|
|
3200
|
+
# locations/*/tlsRoutes/*`.
|
|
3201
3201
|
# @param [String] fields
|
|
3202
3202
|
# Selector specifying which fields to include in a partial response.
|
|
3203
3203
|
# @param [String] quota_user
|
|
@@ -3228,7 +3228,7 @@ module Google
|
|
|
3228
3228
|
# Lists TlsRoute in a given project and location.
|
|
3229
3229
|
# @param [String] parent
|
|
3230
3230
|
# Required. The project and location from which the TlsRoutes should be listed,
|
|
3231
|
-
# specified in the format `projects/*/locations
|
|
3231
|
+
# specified in the format `projects/*/locations/*`.
|
|
3232
3232
|
# @param [Fixnum] page_size
|
|
3233
3233
|
# Maximum number of TlsRoutes to return per call.
|
|
3234
3234
|
# @param [String] page_token
|
|
@@ -3272,7 +3272,7 @@ module Google
|
|
|
3272
3272
|
# Updates the parameters of a single TlsRoute.
|
|
3273
3273
|
# @param [String] name
|
|
3274
3274
|
# Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
|
|
3275
|
-
# locations
|
|
3275
|
+
# locations/*/tlsRoutes/tls_route_name>`.
|
|
3276
3276
|
# @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
|
|
3277
3277
|
# @param [String] update_mask
|
|
3278
3278
|
# 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.
|
|
4
|
+
version: 0.65.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.65.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:
|