google-apis-networkservices_v1 0.63.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 +8 -0
- data/lib/google/apis/networkservices_v1/classes.rb +142 -18
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1/representations.rb +39 -0
- data/lib/google/apis/networkservices_v1/service.rb +260 -31
- 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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkservices_v1
|
|
2
2
|
|
|
3
|
+
### v0.65.0 (2025-11-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251029
|
|
6
|
+
|
|
7
|
+
### v0.64.0 (2025-11-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251017
|
|
10
|
+
|
|
3
11
|
### v0.63.0 (2025-10-26)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251015
|
|
@@ -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
|
|
@@ -2372,6 +2385,80 @@ module Google
|
|
|
2372
2385
|
end
|
|
2373
2386
|
end
|
|
2374
2387
|
|
|
2388
|
+
# `LbEdgeExtension` is a resource that lets the extension service influence the
|
|
2389
|
+
# selection of backend services and Cloud CDN cache keys by modifying request
|
|
2390
|
+
# headers.
|
|
2391
|
+
class LbEdgeExtension
|
|
2392
|
+
include Google::Apis::Core::Hashable
|
|
2393
|
+
|
|
2394
|
+
# Output only. The timestamp when the resource was created.
|
|
2395
|
+
# Corresponds to the JSON property `createTime`
|
|
2396
|
+
# @return [String]
|
|
2397
|
+
attr_accessor :create_time
|
|
2398
|
+
|
|
2399
|
+
# Optional. A human-readable description of the resource.
|
|
2400
|
+
# Corresponds to the JSON property `description`
|
|
2401
|
+
# @return [String]
|
|
2402
|
+
attr_accessor :description
|
|
2403
|
+
|
|
2404
|
+
# Required. A set of ordered extension chains that contain the match conditions
|
|
2405
|
+
# and extensions to execute. Match conditions for each extension chain are
|
|
2406
|
+
# evaluated in sequence for a given request. The first extension chain that has
|
|
2407
|
+
# a condition that matches the request is executed. Any subsequent extension
|
|
2408
|
+
# chains do not execute. Limited to 5 extension chains per resource.
|
|
2409
|
+
# Corresponds to the JSON property `extensionChains`
|
|
2410
|
+
# @return [Array<Google::Apis::NetworkservicesV1::ExtensionChain>]
|
|
2411
|
+
attr_accessor :extension_chains
|
|
2412
|
+
|
|
2413
|
+
# Required. A list of references to the forwarding rules to which this service
|
|
2414
|
+
# extension is attached. At least one forwarding rule is required. Only one `
|
|
2415
|
+
# LbEdgeExtension` resource can be associated with a forwarding rule.
|
|
2416
|
+
# Corresponds to the JSON property `forwardingRules`
|
|
2417
|
+
# @return [Array<String>]
|
|
2418
|
+
attr_accessor :forwarding_rules
|
|
2419
|
+
|
|
2420
|
+
# Optional. Set of labels associated with the `LbEdgeExtension` resource. The
|
|
2421
|
+
# format must comply with [the requirements for labels](https://cloud.google.com/
|
|
2422
|
+
# compute/docs/labeling-resources#requirements) for Google Cloud resources.
|
|
2423
|
+
# Corresponds to the JSON property `labels`
|
|
2424
|
+
# @return [Hash<String,String>]
|
|
2425
|
+
attr_accessor :labels
|
|
2426
|
+
|
|
2427
|
+
# Required. All forwarding rules referenced by this extension must share the
|
|
2428
|
+
# same load balancing scheme. Supported values: `EXTERNAL_MANAGED`.
|
|
2429
|
+
# Corresponds to the JSON property `loadBalancingScheme`
|
|
2430
|
+
# @return [String]
|
|
2431
|
+
attr_accessor :load_balancing_scheme
|
|
2432
|
+
|
|
2433
|
+
# Required. Identifier. Name of the `LbEdgeExtension` resource in the following
|
|
2434
|
+
# format: `projects/`project`/locations/`location`/lbEdgeExtensions/`
|
|
2435
|
+
# lb_edge_extension``.
|
|
2436
|
+
# Corresponds to the JSON property `name`
|
|
2437
|
+
# @return [String]
|
|
2438
|
+
attr_accessor :name
|
|
2439
|
+
|
|
2440
|
+
# Output only. The timestamp when the resource was updated.
|
|
2441
|
+
# Corresponds to the JSON property `updateTime`
|
|
2442
|
+
# @return [String]
|
|
2443
|
+
attr_accessor :update_time
|
|
2444
|
+
|
|
2445
|
+
def initialize(**args)
|
|
2446
|
+
update!(**args)
|
|
2447
|
+
end
|
|
2448
|
+
|
|
2449
|
+
# Update properties of this object
|
|
2450
|
+
def update!(**args)
|
|
2451
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2452
|
+
@description = args[:description] if args.key?(:description)
|
|
2453
|
+
@extension_chains = args[:extension_chains] if args.key?(:extension_chains)
|
|
2454
|
+
@forwarding_rules = args[:forwarding_rules] if args.key?(:forwarding_rules)
|
|
2455
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
2456
|
+
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
|
2457
|
+
@name = args[:name] if args.key?(:name)
|
|
2458
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2459
|
+
end
|
|
2460
|
+
end
|
|
2461
|
+
|
|
2375
2462
|
# `LbRouteExtension` is a resource that lets you control where traffic is routed
|
|
2376
2463
|
# to for a given request.
|
|
2377
2464
|
class LbRouteExtension
|
|
@@ -2761,6 +2848,37 @@ module Google
|
|
|
2761
2848
|
end
|
|
2762
2849
|
end
|
|
2763
2850
|
|
|
2851
|
+
# Message for response to listing `LbEdgeExtension` resources.
|
|
2852
|
+
class ListLbEdgeExtensionsResponse
|
|
2853
|
+
include Google::Apis::Core::Hashable
|
|
2854
|
+
|
|
2855
|
+
# The list of `LbEdgeExtension` resources.
|
|
2856
|
+
# Corresponds to the JSON property `lbEdgeExtensions`
|
|
2857
|
+
# @return [Array<Google::Apis::NetworkservicesV1::LbEdgeExtension>]
|
|
2858
|
+
attr_accessor :lb_edge_extensions
|
|
2859
|
+
|
|
2860
|
+
# A token identifying a page of results that the server returns.
|
|
2861
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
2862
|
+
# @return [String]
|
|
2863
|
+
attr_accessor :next_page_token
|
|
2864
|
+
|
|
2865
|
+
# Locations that could not be reached.
|
|
2866
|
+
# Corresponds to the JSON property `unreachable`
|
|
2867
|
+
# @return [Array<String>]
|
|
2868
|
+
attr_accessor :unreachable
|
|
2869
|
+
|
|
2870
|
+
def initialize(**args)
|
|
2871
|
+
update!(**args)
|
|
2872
|
+
end
|
|
2873
|
+
|
|
2874
|
+
# Update properties of this object
|
|
2875
|
+
def update!(**args)
|
|
2876
|
+
@lb_edge_extensions = args[:lb_edge_extensions] if args.key?(:lb_edge_extensions)
|
|
2877
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2878
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
2879
|
+
end
|
|
2880
|
+
end
|
|
2881
|
+
|
|
2764
2882
|
# Message for response to listing `LbRouteExtension` resources.
|
|
2765
2883
|
class ListLbRouteExtensionsResponse
|
|
2766
2884
|
include Google::Apis::Core::Hashable
|
|
@@ -2931,6 +3049,13 @@ module Google
|
|
|
2931
3049
|
# @return [Array<Google::Apis::NetworkservicesV1::Operation>]
|
|
2932
3050
|
attr_accessor :operations
|
|
2933
3051
|
|
|
3052
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3053
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
3054
|
+
# when attempting to list all resources across all supported locations.
|
|
3055
|
+
# Corresponds to the JSON property `unreachable`
|
|
3056
|
+
# @return [Array<String>]
|
|
3057
|
+
attr_accessor :unreachable
|
|
3058
|
+
|
|
2934
3059
|
def initialize(**args)
|
|
2935
3060
|
update!(**args)
|
|
2936
3061
|
end
|
|
@@ -2939,6 +3064,7 @@ module Google
|
|
|
2939
3064
|
def update!(**args)
|
|
2940
3065
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
2941
3066
|
@operations = args[:operations] if args.key?(:operations)
|
|
3067
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
2942
3068
|
end
|
|
2943
3069
|
end
|
|
2944
3070
|
|
|
@@ -3259,7 +3385,7 @@ module Google
|
|
|
3259
3385
|
attr_accessor :labels
|
|
3260
3386
|
|
|
3261
3387
|
# Identifier. Name of the Mesh resource. It matches pattern `projects/*/
|
|
3262
|
-
# locations
|
|
3388
|
+
# locations/*/meshes/`.
|
|
3263
3389
|
# Corresponds to the JSON property `name`
|
|
3264
3390
|
# @return [String]
|
|
3265
3391
|
attr_accessor :name
|
|
@@ -3892,8 +4018,7 @@ module Google
|
|
|
3892
4018
|
|
|
3893
4019
|
# Optional. Gateways defines a list of gateways this TcpRoute is attached to, as
|
|
3894
4020
|
# one of the routing rules to route the requests served by the gateway. Each
|
|
3895
|
-
# gateway reference should match the pattern: `projects/*/locations
|
|
3896
|
-
# gateways/`
|
|
4021
|
+
# gateway reference should match the pattern: `projects/*/locations/*/gateways/`
|
|
3897
4022
|
# Corresponds to the JSON property `gateways`
|
|
3898
4023
|
# @return [Array<String>]
|
|
3899
4024
|
attr_accessor :gateways
|
|
@@ -3905,14 +4030,14 @@ module Google
|
|
|
3905
4030
|
|
|
3906
4031
|
# Optional. Meshes defines a list of meshes this TcpRoute is attached to, as one
|
|
3907
4032
|
# of the routing rules to route the requests served by the mesh. Each mesh
|
|
3908
|
-
# reference should match the pattern: `projects/*/locations
|
|
4033
|
+
# reference should match the pattern: `projects/*/locations/*/meshes/` The
|
|
3909
4034
|
# attached Mesh should be of a type SIDECAR
|
|
3910
4035
|
# Corresponds to the JSON property `meshes`
|
|
3911
4036
|
# @return [Array<String>]
|
|
3912
4037
|
attr_accessor :meshes
|
|
3913
4038
|
|
|
3914
4039
|
# Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
|
|
3915
|
-
# locations
|
|
4040
|
+
# locations/*/tcpRoutes/tcp_route_name>`.
|
|
3916
4041
|
# Corresponds to the JSON property `name`
|
|
3917
4042
|
# @return [String]
|
|
3918
4043
|
attr_accessor :name
|
|
@@ -4141,8 +4266,7 @@ module Google
|
|
|
4141
4266
|
|
|
4142
4267
|
# Optional. Gateways defines a list of gateways this TlsRoute is attached to, as
|
|
4143
4268
|
# one of the routing rules to route the requests served by the gateway. Each
|
|
4144
|
-
# gateway reference should match the pattern: `projects/*/locations
|
|
4145
|
-
# gateways/`
|
|
4269
|
+
# gateway reference should match the pattern: `projects/*/locations/*/gateways/`
|
|
4146
4270
|
# Corresponds to the JSON property `gateways`
|
|
4147
4271
|
# @return [Array<String>]
|
|
4148
4272
|
attr_accessor :gateways
|
|
@@ -4154,14 +4278,14 @@ module Google
|
|
|
4154
4278
|
|
|
4155
4279
|
# Optional. Meshes defines a list of meshes this TlsRoute is attached to, as one
|
|
4156
4280
|
# of the routing rules to route the requests served by the mesh. Each mesh
|
|
4157
|
-
# reference should match the pattern: `projects/*/locations
|
|
4281
|
+
# reference should match the pattern: `projects/*/locations/*/meshes/` The
|
|
4158
4282
|
# attached Mesh should be of a type SIDECAR
|
|
4159
4283
|
# Corresponds to the JSON property `meshes`
|
|
4160
4284
|
# @return [Array<String>]
|
|
4161
4285
|
attr_accessor :meshes
|
|
4162
4286
|
|
|
4163
4287
|
# Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
|
|
4164
|
-
# locations
|
|
4288
|
+
# locations/*/tlsRoutes/tls_route_name>`.
|
|
4165
4289
|
# Corresponds to the JSON property `name`
|
|
4166
4290
|
# @return [String]
|
|
4167
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
|
|
@@ -304,6 +304,12 @@ module Google
|
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
|
305
305
|
end
|
|
306
306
|
|
|
307
|
+
class LbEdgeExtension
|
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
|
+
|
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
311
|
+
end
|
|
312
|
+
|
|
307
313
|
class LbRouteExtension
|
|
308
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
315
|
|
|
@@ -352,6 +358,12 @@ module Google
|
|
|
352
358
|
include Google::Apis::Core::JsonObjectSupport
|
|
353
359
|
end
|
|
354
360
|
|
|
361
|
+
class ListLbEdgeExtensionsResponse
|
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
363
|
+
|
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
365
|
+
end
|
|
366
|
+
|
|
355
367
|
class ListLbRouteExtensionsResponse
|
|
356
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
369
|
|
|
@@ -753,6 +765,7 @@ module Google
|
|
|
753
765
|
collection :forward_headers, as: 'forwardHeaders'
|
|
754
766
|
hash :metadata, as: 'metadata'
|
|
755
767
|
property :name, as: 'name'
|
|
768
|
+
property :observability_mode, as: 'observabilityMode'
|
|
756
769
|
property :request_body_send_mode, as: 'requestBodySendMode'
|
|
757
770
|
property :response_body_send_mode, as: 'responseBodySendMode'
|
|
758
771
|
property :service, as: 'service'
|
|
@@ -1144,6 +1157,21 @@ module Google
|
|
|
1144
1157
|
end
|
|
1145
1158
|
end
|
|
1146
1159
|
|
|
1160
|
+
class LbEdgeExtension
|
|
1161
|
+
# @private
|
|
1162
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1163
|
+
property :create_time, as: 'createTime'
|
|
1164
|
+
property :description, as: 'description'
|
|
1165
|
+
collection :extension_chains, as: 'extensionChains', class: Google::Apis::NetworkservicesV1::ExtensionChain, decorator: Google::Apis::NetworkservicesV1::ExtensionChain::Representation
|
|
1166
|
+
|
|
1167
|
+
collection :forwarding_rules, as: 'forwardingRules'
|
|
1168
|
+
hash :labels, as: 'labels'
|
|
1169
|
+
property :load_balancing_scheme, as: 'loadBalancingScheme'
|
|
1170
|
+
property :name, as: 'name'
|
|
1171
|
+
property :update_time, as: 'updateTime'
|
|
1172
|
+
end
|
|
1173
|
+
end
|
|
1174
|
+
|
|
1147
1175
|
class LbRouteExtension
|
|
1148
1176
|
# @private
|
|
1149
1177
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1236,6 +1264,16 @@ module Google
|
|
|
1236
1264
|
end
|
|
1237
1265
|
end
|
|
1238
1266
|
|
|
1267
|
+
class ListLbEdgeExtensionsResponse
|
|
1268
|
+
# @private
|
|
1269
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1270
|
+
collection :lb_edge_extensions, as: 'lbEdgeExtensions', class: Google::Apis::NetworkservicesV1::LbEdgeExtension, decorator: Google::Apis::NetworkservicesV1::LbEdgeExtension::Representation
|
|
1271
|
+
|
|
1272
|
+
property :next_page_token, as: 'nextPageToken'
|
|
1273
|
+
collection :unreachable, as: 'unreachable'
|
|
1274
|
+
end
|
|
1275
|
+
end
|
|
1276
|
+
|
|
1239
1277
|
class ListLbRouteExtensionsResponse
|
|
1240
1278
|
# @private
|
|
1241
1279
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1291,6 +1329,7 @@ module Google
|
|
|
1291
1329
|
property :next_page_token, as: 'nextPageToken'
|
|
1292
1330
|
collection :operations, as: 'operations', class: Google::Apis::NetworkservicesV1::Operation, decorator: Google::Apis::NetworkservicesV1::Operation::Representation
|
|
1293
1331
|
|
|
1332
|
+
collection :unreachable, as: 'unreachable'
|
|
1294
1333
|
end
|
|
1295
1334
|
end
|
|
1296
1335
|
|
|
@@ -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
|
|
@@ -1513,6 +1513,227 @@ module Google
|
|
|
1513
1513
|
execute_or_queue_command(command, &block)
|
|
1514
1514
|
end
|
|
1515
1515
|
|
|
1516
|
+
# Creates a new `LbEdgeExtension` resource in a given project and location.
|
|
1517
|
+
# @param [String] parent
|
|
1518
|
+
# Required. The parent resource of the `LbEdgeExtension` resource. Must be in
|
|
1519
|
+
# the format `projects/`project`/locations/`location``.
|
|
1520
|
+
# @param [Google::Apis::NetworkservicesV1::LbEdgeExtension] lb_edge_extension_object
|
|
1521
|
+
# @param [String] lb_edge_extension_id
|
|
1522
|
+
# Required. User-provided ID of the `LbEdgeExtension` resource to be created.
|
|
1523
|
+
# @param [String] request_id
|
|
1524
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
|
1525
|
+
# request ID so that if you must retry your request, the server can ignore the
|
|
1526
|
+
# request if it has already been completed. The server guarantees that for 60
|
|
1527
|
+
# minutes since the first request. For example, consider a situation where you
|
|
1528
|
+
# make an initial request and the request times out. If you make the request
|
|
1529
|
+
# again with the same request ID, the server ignores the second request This
|
|
1530
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
|
1531
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
|
1532
|
+
# 00000000-0000-0000-0000-000000000000).
|
|
1533
|
+
# @param [String] fields
|
|
1534
|
+
# Selector specifying which fields to include in a partial response.
|
|
1535
|
+
# @param [String] quota_user
|
|
1536
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1537
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1538
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1539
|
+
# Request-specific options
|
|
1540
|
+
#
|
|
1541
|
+
# @yield [result, err] Result & error if block supplied
|
|
1542
|
+
# @yieldparam result [Google::Apis::NetworkservicesV1::Operation] parsed result object
|
|
1543
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1544
|
+
#
|
|
1545
|
+
# @return [Google::Apis::NetworkservicesV1::Operation]
|
|
1546
|
+
#
|
|
1547
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1548
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1549
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1550
|
+
def create_project_location_lb_edge_extension(parent, lb_edge_extension_object = nil, lb_edge_extension_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1551
|
+
command = make_simple_command(:post, 'v1/{+parent}/lbEdgeExtensions', options)
|
|
1552
|
+
command.request_representation = Google::Apis::NetworkservicesV1::LbEdgeExtension::Representation
|
|
1553
|
+
command.request_object = lb_edge_extension_object
|
|
1554
|
+
command.response_representation = Google::Apis::NetworkservicesV1::Operation::Representation
|
|
1555
|
+
command.response_class = Google::Apis::NetworkservicesV1::Operation
|
|
1556
|
+
command.params['parent'] = parent unless parent.nil?
|
|
1557
|
+
command.query['lbEdgeExtensionId'] = lb_edge_extension_id unless lb_edge_extension_id.nil?
|
|
1558
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
|
1559
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1560
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1561
|
+
execute_or_queue_command(command, &block)
|
|
1562
|
+
end
|
|
1563
|
+
|
|
1564
|
+
# Deletes the specified `LbEdgeExtension` resource.
|
|
1565
|
+
# @param [String] name
|
|
1566
|
+
# Required. The name of the `LbEdgeExtension` resource to delete. Must be in the
|
|
1567
|
+
# format `projects/`project`/locations/`location`/lbEdgeExtensions/`
|
|
1568
|
+
# lb_edge_extension``.
|
|
1569
|
+
# @param [String] request_id
|
|
1570
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
|
1571
|
+
# request ID so that if you must retry your request, the server can ignore the
|
|
1572
|
+
# request if it has already been completed. The server guarantees that for 60
|
|
1573
|
+
# minutes after the first request. For example, consider a situation where you
|
|
1574
|
+
# make an initial request and the request times out. If you make the request
|
|
1575
|
+
# again with the same request ID, the server ignores the second request This
|
|
1576
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
|
1577
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
|
1578
|
+
# 00000000-0000-0000-0000-000000000000).
|
|
1579
|
+
# @param [String] fields
|
|
1580
|
+
# Selector specifying which fields to include in a partial response.
|
|
1581
|
+
# @param [String] quota_user
|
|
1582
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1583
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1584
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1585
|
+
# Request-specific options
|
|
1586
|
+
#
|
|
1587
|
+
# @yield [result, err] Result & error if block supplied
|
|
1588
|
+
# @yieldparam result [Google::Apis::NetworkservicesV1::Operation] parsed result object
|
|
1589
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1590
|
+
#
|
|
1591
|
+
# @return [Google::Apis::NetworkservicesV1::Operation]
|
|
1592
|
+
#
|
|
1593
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1594
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1595
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1596
|
+
def delete_project_location_lb_edge_extension(name, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1597
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
|
1598
|
+
command.response_representation = Google::Apis::NetworkservicesV1::Operation::Representation
|
|
1599
|
+
command.response_class = Google::Apis::NetworkservicesV1::Operation
|
|
1600
|
+
command.params['name'] = name unless name.nil?
|
|
1601
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
|
1602
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1603
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1604
|
+
execute_or_queue_command(command, &block)
|
|
1605
|
+
end
|
|
1606
|
+
|
|
1607
|
+
# Gets details of the specified `LbEdgeExtension` resource.
|
|
1608
|
+
# @param [String] name
|
|
1609
|
+
# Required. A name of the `LbEdgeExtension` resource to get. Must be in the
|
|
1610
|
+
# format `projects/`project`/locations/`location`/lbEdgeExtensions/`
|
|
1611
|
+
# lb_edge_extension``.
|
|
1612
|
+
# @param [String] fields
|
|
1613
|
+
# Selector specifying which fields to include in a partial response.
|
|
1614
|
+
# @param [String] quota_user
|
|
1615
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1616
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1617
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1618
|
+
# Request-specific options
|
|
1619
|
+
#
|
|
1620
|
+
# @yield [result, err] Result & error if block supplied
|
|
1621
|
+
# @yieldparam result [Google::Apis::NetworkservicesV1::LbEdgeExtension] parsed result object
|
|
1622
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1623
|
+
#
|
|
1624
|
+
# @return [Google::Apis::NetworkservicesV1::LbEdgeExtension]
|
|
1625
|
+
#
|
|
1626
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1627
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1628
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1629
|
+
def get_project_location_lb_edge_extension(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
1630
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
1631
|
+
command.response_representation = Google::Apis::NetworkservicesV1::LbEdgeExtension::Representation
|
|
1632
|
+
command.response_class = Google::Apis::NetworkservicesV1::LbEdgeExtension
|
|
1633
|
+
command.params['name'] = name unless name.nil?
|
|
1634
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1635
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1636
|
+
execute_or_queue_command(command, &block)
|
|
1637
|
+
end
|
|
1638
|
+
|
|
1639
|
+
# Lists `LbEdgeExtension` resources in a given project and location.
|
|
1640
|
+
# @param [String] parent
|
|
1641
|
+
# Required. The project and location from which the `LbEdgeExtension` resources
|
|
1642
|
+
# are listed. These values are specified in the following format: `projects/`
|
|
1643
|
+
# project`/locations/`location``.
|
|
1644
|
+
# @param [String] filter
|
|
1645
|
+
# Optional. Filtering results.
|
|
1646
|
+
# @param [String] order_by
|
|
1647
|
+
# Optional. Hint about how to order the results.
|
|
1648
|
+
# @param [Fixnum] page_size
|
|
1649
|
+
# Optional. Requested page size. The server might return fewer items than
|
|
1650
|
+
# requested. If unspecified, the server picks an appropriate default.
|
|
1651
|
+
# @param [String] page_token
|
|
1652
|
+
# Optional. A token identifying a page of results that the server returns.
|
|
1653
|
+
# @param [String] fields
|
|
1654
|
+
# Selector specifying which fields to include in a partial response.
|
|
1655
|
+
# @param [String] quota_user
|
|
1656
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1657
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1658
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1659
|
+
# Request-specific options
|
|
1660
|
+
#
|
|
1661
|
+
# @yield [result, err] Result & error if block supplied
|
|
1662
|
+
# @yieldparam result [Google::Apis::NetworkservicesV1::ListLbEdgeExtensionsResponse] parsed result object
|
|
1663
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1664
|
+
#
|
|
1665
|
+
# @return [Google::Apis::NetworkservicesV1::ListLbEdgeExtensionsResponse]
|
|
1666
|
+
#
|
|
1667
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1668
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1669
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1670
|
+
def list_project_location_lb_edge_extensions(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1671
|
+
command = make_simple_command(:get, 'v1/{+parent}/lbEdgeExtensions', options)
|
|
1672
|
+
command.response_representation = Google::Apis::NetworkservicesV1::ListLbEdgeExtensionsResponse::Representation
|
|
1673
|
+
command.response_class = Google::Apis::NetworkservicesV1::ListLbEdgeExtensionsResponse
|
|
1674
|
+
command.params['parent'] = parent unless parent.nil?
|
|
1675
|
+
command.query['filter'] = filter unless filter.nil?
|
|
1676
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
|
1677
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1678
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1679
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1680
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1681
|
+
execute_or_queue_command(command, &block)
|
|
1682
|
+
end
|
|
1683
|
+
|
|
1684
|
+
# Updates the parameters of the specified `LbEdgeExtension` resource.
|
|
1685
|
+
# @param [String] name
|
|
1686
|
+
# Required. Identifier. Name of the `LbEdgeExtension` resource in the following
|
|
1687
|
+
# format: `projects/`project`/locations/`location`/lbEdgeExtensions/`
|
|
1688
|
+
# lb_edge_extension``.
|
|
1689
|
+
# @param [Google::Apis::NetworkservicesV1::LbEdgeExtension] lb_edge_extension_object
|
|
1690
|
+
# @param [String] request_id
|
|
1691
|
+
# Optional. An optional request ID to identify requests. Specify a unique
|
|
1692
|
+
# request ID so that if you must retry your request, the server can ignore the
|
|
1693
|
+
# request if it has already been completed. The server guarantees that for 60
|
|
1694
|
+
# minutes since the first request. For example, consider a situation where you
|
|
1695
|
+
# make an initial request and the request times out. If you make the request
|
|
1696
|
+
# again with the same request ID, the server ignores the second request This
|
|
1697
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
|
1698
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
|
1699
|
+
# 00000000-0000-0000-0000-000000000000).
|
|
1700
|
+
# @param [String] update_mask
|
|
1701
|
+
# Optional. Used to specify the fields to be overwritten in the `LbEdgeExtension`
|
|
1702
|
+
# resource by the update. The fields specified in the `update_mask` are
|
|
1703
|
+
# relative to the resource, not the full request. A field is overwritten if it
|
|
1704
|
+
# is in the mask. If the user does not specify a mask, then all fields are
|
|
1705
|
+
# overwritten.
|
|
1706
|
+
# @param [String] fields
|
|
1707
|
+
# Selector specifying which fields to include in a partial response.
|
|
1708
|
+
# @param [String] quota_user
|
|
1709
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1710
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1711
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1712
|
+
# Request-specific options
|
|
1713
|
+
#
|
|
1714
|
+
# @yield [result, err] Result & error if block supplied
|
|
1715
|
+
# @yieldparam result [Google::Apis::NetworkservicesV1::Operation] parsed result object
|
|
1716
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1717
|
+
#
|
|
1718
|
+
# @return [Google::Apis::NetworkservicesV1::Operation]
|
|
1719
|
+
#
|
|
1720
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1721
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1722
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1723
|
+
def patch_project_location_lb_edge_extension(name, lb_edge_extension_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1724
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
1725
|
+
command.request_representation = Google::Apis::NetworkservicesV1::LbEdgeExtension::Representation
|
|
1726
|
+
command.request_object = lb_edge_extension_object
|
|
1727
|
+
command.response_representation = Google::Apis::NetworkservicesV1::Operation::Representation
|
|
1728
|
+
command.response_class = Google::Apis::NetworkservicesV1::Operation
|
|
1729
|
+
command.params['name'] = name unless name.nil?
|
|
1730
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
|
1731
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
1732
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1733
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1734
|
+
execute_or_queue_command(command, &block)
|
|
1735
|
+
end
|
|
1736
|
+
|
|
1516
1737
|
# Creates a new `LbRouteExtension` resource in a given project and location.
|
|
1517
1738
|
# @param [String] parent
|
|
1518
1739
|
# Required. The parent resource of the `LbRouteExtension` resource. Must be in
|
|
@@ -1958,7 +2179,7 @@ module Google
|
|
|
1958
2179
|
# Creates a new Mesh in a given project and location.
|
|
1959
2180
|
# @param [String] parent
|
|
1960
2181
|
# Required. The parent resource of the Mesh. Must be in the format `projects/*/
|
|
1961
|
-
# locations
|
|
2182
|
+
# locations/*`.
|
|
1962
2183
|
# @param [Google::Apis::NetworkservicesV1::Mesh] mesh_object
|
|
1963
2184
|
# @param [String] mesh_id
|
|
1964
2185
|
# Required. Short name of the Mesh resource to be created.
|
|
@@ -1995,7 +2216,7 @@ module Google
|
|
|
1995
2216
|
# Deletes a single Mesh.
|
|
1996
2217
|
# @param [String] name
|
|
1997
2218
|
# Required. A name of the Mesh to delete. Must be in the format `projects/*/
|
|
1998
|
-
# locations
|
|
2219
|
+
# locations/*/meshes/*`.
|
|
1999
2220
|
# @param [String] fields
|
|
2000
2221
|
# Selector specifying which fields to include in a partial response.
|
|
2001
2222
|
# @param [String] quota_user
|
|
@@ -2026,7 +2247,7 @@ module Google
|
|
|
2026
2247
|
# Gets details of a single Mesh.
|
|
2027
2248
|
# @param [String] name
|
|
2028
2249
|
# Required. A name of the Mesh to get. Must be in the format `projects/*/
|
|
2029
|
-
# locations
|
|
2250
|
+
# locations/*/meshes/*`.
|
|
2030
2251
|
# @param [String] fields
|
|
2031
2252
|
# Selector specifying which fields to include in a partial response.
|
|
2032
2253
|
# @param [String] quota_user
|
|
@@ -2057,7 +2278,7 @@ module Google
|
|
|
2057
2278
|
# Lists Meshes in a given project and location.
|
|
2058
2279
|
# @param [String] parent
|
|
2059
2280
|
# Required. The project and location from which the Meshes should be listed,
|
|
2060
|
-
# specified in the format `projects/*/locations
|
|
2281
|
+
# specified in the format `projects/*/locations/*`.
|
|
2061
2282
|
# @param [Fixnum] page_size
|
|
2062
2283
|
# Maximum number of Meshes to return per call.
|
|
2063
2284
|
# @param [String] page_token
|
|
@@ -2101,7 +2322,7 @@ module Google
|
|
|
2101
2322
|
# Updates the parameters of a single Mesh.
|
|
2102
2323
|
# @param [String] name
|
|
2103
2324
|
# Identifier. Name of the Mesh resource. It matches pattern `projects/*/
|
|
2104
|
-
# locations
|
|
2325
|
+
# locations/*/meshes/`.
|
|
2105
2326
|
# @param [Google::Apis::NetworkservicesV1::Mesh] mesh_object
|
|
2106
2327
|
# @param [String] update_mask
|
|
2107
2328
|
# Optional. Field mask is used to specify the fields to be overwritten in the
|
|
@@ -2323,6 +2544,13 @@ module Google
|
|
|
2323
2544
|
# The standard list page size.
|
|
2324
2545
|
# @param [String] page_token
|
|
2325
2546
|
# The standard list page token.
|
|
2547
|
+
# @param [Boolean] return_partial_success
|
|
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.
|
|
2326
2554
|
# @param [String] fields
|
|
2327
2555
|
# Selector specifying which fields to include in a partial response.
|
|
2328
2556
|
# @param [String] quota_user
|
|
@@ -2340,7 +2568,7 @@ module Google
|
|
|
2340
2568
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2341
2569
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2342
2570
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2343
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2571
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2344
2572
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
2345
2573
|
command.response_representation = Google::Apis::NetworkservicesV1::ListOperationsResponse::Representation
|
|
2346
2574
|
command.response_class = Google::Apis::NetworkservicesV1::ListOperationsResponse
|
|
@@ -2348,6 +2576,7 @@ module Google
|
|
|
2348
2576
|
command.query['filter'] = filter unless filter.nil?
|
|
2349
2577
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2350
2578
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2579
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2351
2580
|
command.query['fields'] = fields unless fields.nil?
|
|
2352
2581
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2353
2582
|
execute_or_queue_command(command, &block)
|
|
@@ -2716,7 +2945,7 @@ module Google
|
|
|
2716
2945
|
# Creates a new TcpRoute in a given project and location.
|
|
2717
2946
|
# @param [String] parent
|
|
2718
2947
|
# Required. The parent resource of the TcpRoute. Must be in the format `projects/
|
|
2719
|
-
# */locations
|
|
2948
|
+
# */locations/*`.
|
|
2720
2949
|
# @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
|
|
2721
2950
|
# @param [String] tcp_route_id
|
|
2722
2951
|
# Required. Short name of the TcpRoute resource to be created.
|
|
@@ -2753,7 +2982,7 @@ module Google
|
|
|
2753
2982
|
# Deletes a single TcpRoute.
|
|
2754
2983
|
# @param [String] name
|
|
2755
2984
|
# Required. A name of the TcpRoute to delete. Must be in the format `projects/*/
|
|
2756
|
-
# locations
|
|
2985
|
+
# locations/*/tcpRoutes/*`.
|
|
2757
2986
|
# @param [String] fields
|
|
2758
2987
|
# Selector specifying which fields to include in a partial response.
|
|
2759
2988
|
# @param [String] quota_user
|
|
@@ -2784,7 +3013,7 @@ module Google
|
|
|
2784
3013
|
# Gets details of a single TcpRoute.
|
|
2785
3014
|
# @param [String] name
|
|
2786
3015
|
# Required. A name of the TcpRoute to get. Must be in the format `projects/*/
|
|
2787
|
-
# locations
|
|
3016
|
+
# locations/*/tcpRoutes/*`.
|
|
2788
3017
|
# @param [String] fields
|
|
2789
3018
|
# Selector specifying which fields to include in a partial response.
|
|
2790
3019
|
# @param [String] quota_user
|
|
@@ -2815,7 +3044,7 @@ module Google
|
|
|
2815
3044
|
# Lists TcpRoute in a given project and location.
|
|
2816
3045
|
# @param [String] parent
|
|
2817
3046
|
# Required. The project and location from which the TcpRoutes should be listed,
|
|
2818
|
-
# specified in the format `projects/*/locations
|
|
3047
|
+
# specified in the format `projects/*/locations/*`.
|
|
2819
3048
|
# @param [Fixnum] page_size
|
|
2820
3049
|
# Maximum number of TcpRoutes to return per call.
|
|
2821
3050
|
# @param [String] page_token
|
|
@@ -2859,7 +3088,7 @@ module Google
|
|
|
2859
3088
|
# Updates the parameters of a single TcpRoute.
|
|
2860
3089
|
# @param [String] name
|
|
2861
3090
|
# Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/
|
|
2862
|
-
# locations
|
|
3091
|
+
# locations/*/tcpRoutes/tcp_route_name>`.
|
|
2863
3092
|
# @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
|
|
2864
3093
|
# @param [String] update_mask
|
|
2865
3094
|
# Optional. Field mask is used to specify the fields to be overwritten in the
|
|
@@ -2900,7 +3129,7 @@ module Google
|
|
|
2900
3129
|
# Creates a new TlsRoute in a given project and location.
|
|
2901
3130
|
# @param [String] parent
|
|
2902
3131
|
# Required. The parent resource of the TlsRoute. Must be in the format `projects/
|
|
2903
|
-
# */locations
|
|
3132
|
+
# */locations/*`.
|
|
2904
3133
|
# @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
|
|
2905
3134
|
# @param [String] tls_route_id
|
|
2906
3135
|
# Required. Short name of the TlsRoute resource to be created.
|
|
@@ -2937,7 +3166,7 @@ module Google
|
|
|
2937
3166
|
# Deletes a single TlsRoute.
|
|
2938
3167
|
# @param [String] name
|
|
2939
3168
|
# Required. A name of the TlsRoute to delete. Must be in the format `projects/*/
|
|
2940
|
-
# locations
|
|
3169
|
+
# locations/*/tlsRoutes/*`.
|
|
2941
3170
|
# @param [String] fields
|
|
2942
3171
|
# Selector specifying which fields to include in a partial response.
|
|
2943
3172
|
# @param [String] quota_user
|
|
@@ -2968,7 +3197,7 @@ module Google
|
|
|
2968
3197
|
# Gets details of a single TlsRoute.
|
|
2969
3198
|
# @param [String] name
|
|
2970
3199
|
# Required. A name of the TlsRoute to get. Must be in the format `projects/*/
|
|
2971
|
-
# locations
|
|
3200
|
+
# locations/*/tlsRoutes/*`.
|
|
2972
3201
|
# @param [String] fields
|
|
2973
3202
|
# Selector specifying which fields to include in a partial response.
|
|
2974
3203
|
# @param [String] quota_user
|
|
@@ -2999,7 +3228,7 @@ module Google
|
|
|
2999
3228
|
# Lists TlsRoute in a given project and location.
|
|
3000
3229
|
# @param [String] parent
|
|
3001
3230
|
# Required. The project and location from which the TlsRoutes should be listed,
|
|
3002
|
-
# specified in the format `projects/*/locations
|
|
3231
|
+
# specified in the format `projects/*/locations/*`.
|
|
3003
3232
|
# @param [Fixnum] page_size
|
|
3004
3233
|
# Maximum number of TlsRoutes to return per call.
|
|
3005
3234
|
# @param [String] page_token
|
|
@@ -3043,7 +3272,7 @@ module Google
|
|
|
3043
3272
|
# Updates the parameters of a single TlsRoute.
|
|
3044
3273
|
# @param [String] name
|
|
3045
3274
|
# Identifier. Name of the TlsRoute resource. It matches pattern `projects/*/
|
|
3046
|
-
# locations
|
|
3275
|
+
# locations/*/tlsRoutes/tls_route_name>`.
|
|
3047
3276
|
# @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
|
|
3048
3277
|
# @param [String] update_mask
|
|
3049
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:
|