google-apis-networkservices_v1beta1 0.47.0 → 0.49.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_v1beta1/classes.rb +114 -10
- data/lib/google/apis/networkservices_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1beta1/representations.rb +12 -0
- data/lib/google/apis/networkservices_v1beta1/service.rb +30 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a960c3211be1ae68854a0e3bfb1a6bd1ec7e110fbd60805bca07ea6fd63502b
|
4
|
+
data.tar.gz: 39f076edf20e0ef74b97066dc32a0d26e171a29ce9c3b179f28c3ab64ffe24f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 502a576f3e4c787442aa1a3f50c15b73cc3f3ae90f6b773340e3ae6a087ed0b72a3ca9fcec93c41b5e98117a0e411e858eb4713b98e0c3baafde67096f5be5a0
|
7
|
+
data.tar.gz: 5328c33617d27c931172d7a31a4b58fac6416d0d13e5c10e1a025d7f57693663f68525782bd7506e837411ca3f98cbc7f5211efad4bdfd52412f74d3df84c3d1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1beta1
|
2
2
|
|
3
|
+
### v0.49.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250311
|
6
|
+
|
7
|
+
### v0.48.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250310
|
10
|
+
|
3
11
|
### v0.47.0 (2025-03-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250224
|
@@ -336,6 +336,15 @@ module Google
|
|
336
336
|
class ExtensionChainExtension
|
337
337
|
include Google::Apis::Core::Hashable
|
338
338
|
|
339
|
+
# Optional. When set to `TRUE`, the response from an extension service is
|
340
|
+
# allowed to set the `com.google.envoy.dynamic_forwarding` namespace in the
|
341
|
+
# dynamic metadata. This field is not supported for plugin extensions. Setting
|
342
|
+
# it results in a validation error.
|
343
|
+
# Corresponds to the JSON property `allowDynamicForwarding`
|
344
|
+
# @return [Boolean]
|
345
|
+
attr_accessor :allow_dynamic_forwarding
|
346
|
+
alias_method :allow_dynamic_forwarding?, :allow_dynamic_forwarding
|
347
|
+
|
339
348
|
# Optional. The `:authority` header in the gRPC request sent from Envoy to the
|
340
349
|
# extension service. Required for Callout extensions. This field is not
|
341
350
|
# supported for plugin extensions. Setting it results in a validation error.
|
@@ -370,8 +379,12 @@ module Google
|
|
370
379
|
# namespace `com.google....`. For example: `com.google.lb_traffic_extension.
|
371
380
|
# lbtrafficextension1.chain1.ext1`. The following variables are supported in the
|
372
381
|
# metadata: ``forwarding_rule_id`` - substituted with the forwarding rule's
|
373
|
-
# fully qualified resource name. This field is
|
374
|
-
#
|
382
|
+
# fully qualified resource name. This field is subject to following limitations:
|
383
|
+
# * The total size of the metadata must be less than 1KiB. * The total number of
|
384
|
+
# keys in the metadata must be less than 20. * The length of each key must be
|
385
|
+
# less than 64 characters. * The length of each value must be less than 1024
|
386
|
+
# characters. * All values must be strings. This field is not supported for
|
387
|
+
# plugin extensions. Setting it results in a validation error.
|
375
388
|
# Corresponds to the JSON property `metadata`
|
376
389
|
# @return [Hash<String,Object>]
|
377
390
|
attr_accessor :metadata
|
@@ -404,8 +417,8 @@ module Google
|
|
404
417
|
|
405
418
|
# Optional. A set of events during request or response processing for which this
|
406
419
|
# extension is called. This field is required for the `LbTrafficExtension`
|
407
|
-
# resource. It
|
408
|
-
#
|
420
|
+
# resource. It is optional for the `LbRouteExtension` resource. If unspecified `
|
421
|
+
# REQUEST_HEADERS` event is assumed as supported.
|
409
422
|
# Corresponds to the JSON property `supportedEvents`
|
410
423
|
# @return [Array<String>]
|
411
424
|
attr_accessor :supported_events
|
@@ -424,6 +437,7 @@ module Google
|
|
424
437
|
|
425
438
|
# Update properties of this object
|
426
439
|
def update!(**args)
|
440
|
+
@allow_dynamic_forwarding = args[:allow_dynamic_forwarding] if args.key?(:allow_dynamic_forwarding)
|
427
441
|
@authority = args[:authority] if args.key?(:authority)
|
428
442
|
@fail_open = args[:fail_open] if args.key?(:fail_open)
|
429
443
|
@forward_headers = args[:forward_headers] if args.key?(:forward_headers)
|
@@ -2260,6 +2274,13 @@ module Google
|
|
2260
2274
|
# @return [String]
|
2261
2275
|
attr_accessor :next_page_token
|
2262
2276
|
|
2277
|
+
# Unreachable resources. Populated when the request opts into
|
2278
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2279
|
+
# list all resources across all supported locations.
|
2280
|
+
# Corresponds to the JSON property `unreachable`
|
2281
|
+
# @return [Array<String>]
|
2282
|
+
attr_accessor :unreachable
|
2283
|
+
|
2263
2284
|
def initialize(**args)
|
2264
2285
|
update!(**args)
|
2265
2286
|
end
|
@@ -2268,6 +2289,7 @@ module Google
|
|
2268
2289
|
def update!(**args)
|
2269
2290
|
@endpoint_policies = args[:endpoint_policies] if args.key?(:endpoint_policies)
|
2270
2291
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2292
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2271
2293
|
end
|
2272
2294
|
end
|
2273
2295
|
|
@@ -2286,6 +2308,13 @@ module Google
|
|
2286
2308
|
# @return [String]
|
2287
2309
|
attr_accessor :next_page_token
|
2288
2310
|
|
2311
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2312
|
+
# resources across all supported locations, while some locations are temporarily
|
2313
|
+
# unavailable.
|
2314
|
+
# Corresponds to the JSON property `unreachable`
|
2315
|
+
# @return [Array<String>]
|
2316
|
+
attr_accessor :unreachable
|
2317
|
+
|
2289
2318
|
def initialize(**args)
|
2290
2319
|
update!(**args)
|
2291
2320
|
end
|
@@ -2294,6 +2323,7 @@ module Google
|
|
2294
2323
|
def update!(**args)
|
2295
2324
|
@gateway_route_views = args[:gateway_route_views] if args.key?(:gateway_route_views)
|
2296
2325
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2326
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2297
2327
|
end
|
2298
2328
|
end
|
2299
2329
|
|
@@ -2346,6 +2376,13 @@ module Google
|
|
2346
2376
|
# @return [String]
|
2347
2377
|
attr_accessor :next_page_token
|
2348
2378
|
|
2379
|
+
# Unreachable resources. Populated when the request opts into
|
2380
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2381
|
+
# list all resources across all supported locations.
|
2382
|
+
# Corresponds to the JSON property `unreachable`
|
2383
|
+
# @return [Array<String>]
|
2384
|
+
attr_accessor :unreachable
|
2385
|
+
|
2349
2386
|
def initialize(**args)
|
2350
2387
|
update!(**args)
|
2351
2388
|
end
|
@@ -2354,6 +2391,7 @@ module Google
|
|
2354
2391
|
def update!(**args)
|
2355
2392
|
@grpc_routes = args[:grpc_routes] if args.key?(:grpc_routes)
|
2356
2393
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2394
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2357
2395
|
end
|
2358
2396
|
end
|
2359
2397
|
|
@@ -2373,6 +2411,13 @@ module Google
|
|
2373
2411
|
# @return [String]
|
2374
2412
|
attr_accessor :next_page_token
|
2375
2413
|
|
2414
|
+
# Unreachable resources. Populated when the request opts into
|
2415
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2416
|
+
# list all resources across all supported locations.
|
2417
|
+
# Corresponds to the JSON property `unreachable`
|
2418
|
+
# @return [Array<String>]
|
2419
|
+
attr_accessor :unreachable
|
2420
|
+
|
2376
2421
|
def initialize(**args)
|
2377
2422
|
update!(**args)
|
2378
2423
|
end
|
@@ -2381,6 +2426,7 @@ module Google
|
|
2381
2426
|
def update!(**args)
|
2382
2427
|
@http_routes = args[:http_routes] if args.key?(:http_routes)
|
2383
2428
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2429
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2384
2430
|
end
|
2385
2431
|
end
|
2386
2432
|
|
@@ -2486,6 +2532,13 @@ module Google
|
|
2486
2532
|
# @return [String]
|
2487
2533
|
attr_accessor :next_page_token
|
2488
2534
|
|
2535
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2536
|
+
# resources across all supported locations, while some locations are temporarily
|
2537
|
+
# unavailable.
|
2538
|
+
# Corresponds to the JSON property `unreachable`
|
2539
|
+
# @return [Array<String>]
|
2540
|
+
attr_accessor :unreachable
|
2541
|
+
|
2489
2542
|
def initialize(**args)
|
2490
2543
|
update!(**args)
|
2491
2544
|
end
|
@@ -2494,6 +2547,7 @@ module Google
|
|
2494
2547
|
def update!(**args)
|
2495
2548
|
@mesh_route_views = args[:mesh_route_views] if args.key?(:mesh_route_views)
|
2496
2549
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2550
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2497
2551
|
end
|
2498
2552
|
end
|
2499
2553
|
|
@@ -2573,6 +2627,13 @@ module Google
|
|
2573
2627
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::ServiceBinding>]
|
2574
2628
|
attr_accessor :service_bindings
|
2575
2629
|
|
2630
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2631
|
+
# resources across all supported locations, while some locations are temporarily
|
2632
|
+
# unavailable.
|
2633
|
+
# Corresponds to the JSON property `unreachable`
|
2634
|
+
# @return [Array<String>]
|
2635
|
+
attr_accessor :unreachable
|
2636
|
+
|
2576
2637
|
def initialize(**args)
|
2577
2638
|
update!(**args)
|
2578
2639
|
end
|
@@ -2581,6 +2642,7 @@ module Google
|
|
2581
2642
|
def update!(**args)
|
2582
2643
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2583
2644
|
@service_bindings = args[:service_bindings] if args.key?(:service_bindings)
|
2645
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2584
2646
|
end
|
2585
2647
|
end
|
2586
2648
|
|
@@ -2600,6 +2662,13 @@ module Google
|
|
2600
2662
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::ServiceLbPolicy>]
|
2601
2663
|
attr_accessor :service_lb_policies
|
2602
2664
|
|
2665
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2666
|
+
# resources across all supported locations, while some locations are temporarily
|
2667
|
+
# unavailable.
|
2668
|
+
# Corresponds to the JSON property `unreachable`
|
2669
|
+
# @return [Array<String>]
|
2670
|
+
attr_accessor :unreachable
|
2671
|
+
|
2603
2672
|
def initialize(**args)
|
2604
2673
|
update!(**args)
|
2605
2674
|
end
|
@@ -2608,6 +2677,7 @@ module Google
|
|
2608
2677
|
def update!(**args)
|
2609
2678
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2610
2679
|
@service_lb_policies = args[:service_lb_policies] if args.key?(:service_lb_policies)
|
2680
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2611
2681
|
end
|
2612
2682
|
end
|
2613
2683
|
|
@@ -2627,6 +2697,13 @@ module Google
|
|
2627
2697
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::TcpRoute>]
|
2628
2698
|
attr_accessor :tcp_routes
|
2629
2699
|
|
2700
|
+
# Unreachable resources. Populated when the request opts into
|
2701
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2702
|
+
# list all resources across all supported locations.
|
2703
|
+
# Corresponds to the JSON property `unreachable`
|
2704
|
+
# @return [Array<String>]
|
2705
|
+
attr_accessor :unreachable
|
2706
|
+
|
2630
2707
|
def initialize(**args)
|
2631
2708
|
update!(**args)
|
2632
2709
|
end
|
@@ -2635,6 +2712,7 @@ module Google
|
|
2635
2712
|
def update!(**args)
|
2636
2713
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2637
2714
|
@tcp_routes = args[:tcp_routes] if args.key?(:tcp_routes)
|
2715
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2638
2716
|
end
|
2639
2717
|
end
|
2640
2718
|
|
@@ -2654,6 +2732,13 @@ module Google
|
|
2654
2732
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::TlsRoute>]
|
2655
2733
|
attr_accessor :tls_routes
|
2656
2734
|
|
2735
|
+
# Unreachable resources. Populated when the request opts into
|
2736
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2737
|
+
# list all resources across all supported locations.
|
2738
|
+
# Corresponds to the JSON property `unreachable`
|
2739
|
+
# @return [Array<String>]
|
2740
|
+
attr_accessor :unreachable
|
2741
|
+
|
2657
2742
|
def initialize(**args)
|
2658
2743
|
update!(**args)
|
2659
2744
|
end
|
@@ -2662,6 +2747,7 @@ module Google
|
|
2662
2747
|
def update!(**args)
|
2663
2748
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2664
2749
|
@tls_routes = args[:tls_routes] if args.key?(:tls_routes)
|
2750
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2665
2751
|
end
|
2666
2752
|
end
|
2667
2753
|
|
@@ -2676,6 +2762,13 @@ module Google
|
|
2676
2762
|
# @return [String]
|
2677
2763
|
attr_accessor :next_page_token
|
2678
2764
|
|
2765
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2766
|
+
# resources across all supported locations, while some locations are temporarily
|
2767
|
+
# unavailable.
|
2768
|
+
# Corresponds to the JSON property `unreachable`
|
2769
|
+
# @return [Array<String>]
|
2770
|
+
attr_accessor :unreachable
|
2771
|
+
|
2679
2772
|
# List of `WasmPluginVersion` resources.
|
2680
2773
|
# Corresponds to the JSON property `wasmPluginVersions`
|
2681
2774
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::WasmPluginVersion>]
|
@@ -2688,6 +2781,7 @@ module Google
|
|
2688
2781
|
# Update properties of this object
|
2689
2782
|
def update!(**args)
|
2690
2783
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2784
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2691
2785
|
@wasm_plugin_versions = args[:wasm_plugin_versions] if args.key?(:wasm_plugin_versions)
|
2692
2786
|
end
|
2693
2787
|
end
|
@@ -2703,6 +2797,13 @@ module Google
|
|
2703
2797
|
# @return [String]
|
2704
2798
|
attr_accessor :next_page_token
|
2705
2799
|
|
2800
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2801
|
+
# resources across all supported locations, while some locations are temporarily
|
2802
|
+
# unavailable.
|
2803
|
+
# Corresponds to the JSON property `unreachable`
|
2804
|
+
# @return [Array<String>]
|
2805
|
+
attr_accessor :unreachable
|
2806
|
+
|
2706
2807
|
# List of `WasmPlugin` resources.
|
2707
2808
|
# Corresponds to the JSON property `wasmPlugins`
|
2708
2809
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::WasmPlugin>]
|
@@ -2715,6 +2816,7 @@ module Google
|
|
2715
2816
|
# Update properties of this object
|
2716
2817
|
def update!(**args)
|
2717
2818
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2819
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2718
2820
|
@wasm_plugins = args[:wasm_plugins] if args.key?(:wasm_plugins)
|
2719
2821
|
end
|
2720
2822
|
end
|
@@ -3109,9 +3211,9 @@ module Google
|
|
3109
3211
|
end
|
3110
3212
|
|
3111
3213
|
# ServiceBinding can be used to: - Bind a Service Directory Service to be used
|
3112
|
-
# in a BackendService resource.
|
3113
|
-
# service to be used in consumer Cloud Service
|
3114
|
-
# Balancers.
|
3214
|
+
# in a BackendService resource. This feature will be deprecated soon. - Bind a
|
3215
|
+
# Private Service Connect producer service to be used in consumer Cloud Service
|
3216
|
+
# Mesh or Application Load Balancers.
|
3115
3217
|
class ServiceBinding
|
3116
3218
|
include Google::Apis::Core::Hashable
|
3117
3219
|
|
@@ -3137,7 +3239,8 @@ module Google
|
|
3137
3239
|
attr_accessor :name
|
3138
3240
|
|
3139
3241
|
# Optional. The full Service Directory Service name of the format `projects/*/
|
3140
|
-
# locations/*/namespaces/*/services/*`. This field
|
3242
|
+
# locations/*/namespaces/*/services/*`. This field is for Service Directory
|
3243
|
+
# integration which will be deprecated soon.
|
3141
3244
|
# Corresponds to the JSON property `service`
|
3142
3245
|
# @return [String]
|
3143
3246
|
attr_accessor :service
|
@@ -3145,7 +3248,8 @@ module Google
|
|
3145
3248
|
# Output only. The unique identifier of the Service Directory Service against
|
3146
3249
|
# which the ServiceBinding resource is validated. This is populated when the
|
3147
3250
|
# Service Binding resource is used in another resource (like Backend Service).
|
3148
|
-
# This is of the UUID4 format.
|
3251
|
+
# This is of the UUID4 format. This field is for Service Directory integration
|
3252
|
+
# which will be deprecated soon.
|
3149
3253
|
# Corresponds to the JSON property `serviceId`
|
3150
3254
|
# @return [String]
|
3151
3255
|
attr_accessor :service_id
|
@@ -3649,7 +3753,7 @@ module Google
|
|
3649
3753
|
# @return [String]
|
3650
3754
|
attr_accessor :service_name
|
3651
3755
|
|
3652
|
-
# Optional. Specifies the proportion of requests
|
3756
|
+
# Optional. Specifies the proportion of requests forwarded to the backend
|
3653
3757
|
# referenced by the service_name field. This is computed as: - weight/Sum(
|
3654
3758
|
# weights in destinations) Weights in all destinations does not need to sum up
|
3655
3759
|
# to 100.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1beta1
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250311"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -640,6 +640,7 @@ module Google
|
|
640
640
|
class ExtensionChainExtension
|
641
641
|
# @private
|
642
642
|
class Representation < Google::Apis::Core::JsonRepresentation
|
643
|
+
property :allow_dynamic_forwarding, as: 'allowDynamicForwarding'
|
643
644
|
property :authority, as: 'authority'
|
644
645
|
property :fail_open, as: 'failOpen'
|
645
646
|
collection :forward_headers, as: 'forwardHeaders'
|
@@ -1082,6 +1083,7 @@ module Google
|
|
1082
1083
|
collection :endpoint_policies, as: 'endpointPolicies', class: Google::Apis::NetworkservicesV1beta1::EndpointPolicy, decorator: Google::Apis::NetworkservicesV1beta1::EndpointPolicy::Representation
|
1083
1084
|
|
1084
1085
|
property :next_page_token, as: 'nextPageToken'
|
1086
|
+
collection :unreachable, as: 'unreachable'
|
1085
1087
|
end
|
1086
1088
|
end
|
1087
1089
|
|
@@ -1091,6 +1093,7 @@ module Google
|
|
1091
1093
|
collection :gateway_route_views, as: 'gatewayRouteViews', class: Google::Apis::NetworkservicesV1beta1::GatewayRouteView, decorator: Google::Apis::NetworkservicesV1beta1::GatewayRouteView::Representation
|
1092
1094
|
|
1093
1095
|
property :next_page_token, as: 'nextPageToken'
|
1096
|
+
collection :unreachable, as: 'unreachable'
|
1094
1097
|
end
|
1095
1098
|
end
|
1096
1099
|
|
@@ -1110,6 +1113,7 @@ module Google
|
|
1110
1113
|
collection :grpc_routes, as: 'grpcRoutes', class: Google::Apis::NetworkservicesV1beta1::GrpcRoute, decorator: Google::Apis::NetworkservicesV1beta1::GrpcRoute::Representation
|
1111
1114
|
|
1112
1115
|
property :next_page_token, as: 'nextPageToken'
|
1116
|
+
collection :unreachable, as: 'unreachable'
|
1113
1117
|
end
|
1114
1118
|
end
|
1115
1119
|
|
@@ -1119,6 +1123,7 @@ module Google
|
|
1119
1123
|
collection :http_routes, as: 'httpRoutes', class: Google::Apis::NetworkservicesV1beta1::HttpRoute, decorator: Google::Apis::NetworkservicesV1beta1::HttpRoute::Representation
|
1120
1124
|
|
1121
1125
|
property :next_page_token, as: 'nextPageToken'
|
1126
|
+
collection :unreachable, as: 'unreachable'
|
1122
1127
|
end
|
1123
1128
|
end
|
1124
1129
|
|
@@ -1157,6 +1162,7 @@ module Google
|
|
1157
1162
|
collection :mesh_route_views, as: 'meshRouteViews', class: Google::Apis::NetworkservicesV1beta1::MeshRouteView, decorator: Google::Apis::NetworkservicesV1beta1::MeshRouteView::Representation
|
1158
1163
|
|
1159
1164
|
property :next_page_token, as: 'nextPageToken'
|
1165
|
+
collection :unreachable, as: 'unreachable'
|
1160
1166
|
end
|
1161
1167
|
end
|
1162
1168
|
|
@@ -1185,6 +1191,7 @@ module Google
|
|
1185
1191
|
property :next_page_token, as: 'nextPageToken'
|
1186
1192
|
collection :service_bindings, as: 'serviceBindings', class: Google::Apis::NetworkservicesV1beta1::ServiceBinding, decorator: Google::Apis::NetworkservicesV1beta1::ServiceBinding::Representation
|
1187
1193
|
|
1194
|
+
collection :unreachable, as: 'unreachable'
|
1188
1195
|
end
|
1189
1196
|
end
|
1190
1197
|
|
@@ -1194,6 +1201,7 @@ module Google
|
|
1194
1201
|
property :next_page_token, as: 'nextPageToken'
|
1195
1202
|
collection :service_lb_policies, as: 'serviceLbPolicies', class: Google::Apis::NetworkservicesV1beta1::ServiceLbPolicy, decorator: Google::Apis::NetworkservicesV1beta1::ServiceLbPolicy::Representation
|
1196
1203
|
|
1204
|
+
collection :unreachable, as: 'unreachable'
|
1197
1205
|
end
|
1198
1206
|
end
|
1199
1207
|
|
@@ -1203,6 +1211,7 @@ module Google
|
|
1203
1211
|
property :next_page_token, as: 'nextPageToken'
|
1204
1212
|
collection :tcp_routes, as: 'tcpRoutes', class: Google::Apis::NetworkservicesV1beta1::TcpRoute, decorator: Google::Apis::NetworkservicesV1beta1::TcpRoute::Representation
|
1205
1213
|
|
1214
|
+
collection :unreachable, as: 'unreachable'
|
1206
1215
|
end
|
1207
1216
|
end
|
1208
1217
|
|
@@ -1212,6 +1221,7 @@ module Google
|
|
1212
1221
|
property :next_page_token, as: 'nextPageToken'
|
1213
1222
|
collection :tls_routes, as: 'tlsRoutes', class: Google::Apis::NetworkservicesV1beta1::TlsRoute, decorator: Google::Apis::NetworkservicesV1beta1::TlsRoute::Representation
|
1214
1223
|
|
1224
|
+
collection :unreachable, as: 'unreachable'
|
1215
1225
|
end
|
1216
1226
|
end
|
1217
1227
|
|
@@ -1219,6 +1229,7 @@ module Google
|
|
1219
1229
|
# @private
|
1220
1230
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1221
1231
|
property :next_page_token, as: 'nextPageToken'
|
1232
|
+
collection :unreachable, as: 'unreachable'
|
1222
1233
|
collection :wasm_plugin_versions, as: 'wasmPluginVersions', class: Google::Apis::NetworkservicesV1beta1::WasmPluginVersion, decorator: Google::Apis::NetworkservicesV1beta1::WasmPluginVersion::Representation
|
1223
1234
|
|
1224
1235
|
end
|
@@ -1228,6 +1239,7 @@ module Google
|
|
1228
1239
|
# @private
|
1229
1240
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1230
1241
|
property :next_page_token, as: 'nextPageToken'
|
1242
|
+
collection :unreachable, as: 'unreachable'
|
1231
1243
|
collection :wasm_plugins, as: 'wasmPlugins', class: Google::Apis::NetworkservicesV1beta1::WasmPlugin, decorator: Google::Apis::NetworkservicesV1beta1::WasmPlugin::Representation
|
1232
1244
|
|
1233
1245
|
end
|
@@ -454,6 +454,10 @@ module Google
|
|
454
454
|
# The value returned by the last `ListEndpointPoliciesResponse` Indicates that
|
455
455
|
# this is a continuation of a prior `ListEndpointPolicies` call, and that the
|
456
456
|
# system should return the next page of data.
|
457
|
+
# @param [Boolean] return_partial_success
|
458
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
459
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
460
|
+
# Aggregated List request will fail.
|
457
461
|
# @param [String] fields
|
458
462
|
# Selector specifying which fields to include in a partial response.
|
459
463
|
# @param [String] quota_user
|
@@ -471,13 +475,14 @@ module Google
|
|
471
475
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
472
476
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
473
477
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
474
|
-
def list_project_location_endpoint_policies(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
478
|
+
def list_project_location_endpoint_policies(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
475
479
|
command = make_simple_command(:get, 'v1beta1/{+parent}/endpointPolicies', options)
|
476
480
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListEndpointPoliciesResponse::Representation
|
477
481
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListEndpointPoliciesResponse
|
478
482
|
command.params['parent'] = parent unless parent.nil?
|
479
483
|
command.query['pageSize'] = page_size unless page_size.nil?
|
480
484
|
command.query['pageToken'] = page_token unless page_token.nil?
|
485
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
481
486
|
command.query['fields'] = fields unless fields.nil?
|
482
487
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
483
488
|
execute_or_queue_command(command, &block)
|
@@ -883,6 +888,10 @@ module Google
|
|
883
888
|
# The value returned by the last `ListGrpcRoutesResponse` Indicates that this is
|
884
889
|
# a continuation of a prior `ListGrpcRoutes` call, and that the system should
|
885
890
|
# return the next page of data.
|
891
|
+
# @param [Boolean] return_partial_success
|
892
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
893
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
894
|
+
# Aggregated List request will fail.
|
886
895
|
# @param [String] fields
|
887
896
|
# Selector specifying which fields to include in a partial response.
|
888
897
|
# @param [String] quota_user
|
@@ -900,13 +909,14 @@ module Google
|
|
900
909
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
901
910
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
902
911
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
903
|
-
def list_project_location_grpc_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
912
|
+
def list_project_location_grpc_routes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
904
913
|
command = make_simple_command(:get, 'v1beta1/{+parent}/grpcRoutes', options)
|
905
914
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListGrpcRoutesResponse::Representation
|
906
915
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListGrpcRoutesResponse
|
907
916
|
command.params['parent'] = parent unless parent.nil?
|
908
917
|
command.query['pageSize'] = page_size unless page_size.nil?
|
909
918
|
command.query['pageToken'] = page_token unless page_token.nil?
|
919
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
910
920
|
command.query['fields'] = fields unless fields.nil?
|
911
921
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
912
922
|
execute_or_queue_command(command, &block)
|
@@ -1062,6 +1072,10 @@ module Google
|
|
1062
1072
|
# The value returned by the last `ListHttpRoutesResponse` Indicates that this is
|
1063
1073
|
# a continuation of a prior `ListHttpRoutes` call, and that the system should
|
1064
1074
|
# return the next page of data.
|
1075
|
+
# @param [Boolean] return_partial_success
|
1076
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
1077
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
1078
|
+
# Aggregated List request will fail.
|
1065
1079
|
# @param [String] fields
|
1066
1080
|
# Selector specifying which fields to include in a partial response.
|
1067
1081
|
# @param [String] quota_user
|
@@ -1079,13 +1093,14 @@ module Google
|
|
1079
1093
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1080
1094
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1081
1095
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1082
|
-
def list_project_location_http_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1096
|
+
def list_project_location_http_routes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1083
1097
|
command = make_simple_command(:get, 'v1beta1/{+parent}/httpRoutes', options)
|
1084
1098
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListHttpRoutesResponse::Representation
|
1085
1099
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListHttpRoutesResponse
|
1086
1100
|
command.params['parent'] = parent unless parent.nil?
|
1087
1101
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1088
1102
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1103
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1089
1104
|
command.query['fields'] = fields unless fields.nil?
|
1090
1105
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1091
1106
|
execute_or_queue_command(command, &block)
|
@@ -2400,6 +2415,10 @@ module Google
|
|
2400
2415
|
# The value returned by the last `ListTcpRoutesResponse` Indicates that this is
|
2401
2416
|
# a continuation of a prior `ListTcpRoutes` call, and that the system should
|
2402
2417
|
# return the next page of data.
|
2418
|
+
# @param [Boolean] return_partial_success
|
2419
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
2420
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
2421
|
+
# Aggregated List request will fail.
|
2403
2422
|
# @param [String] fields
|
2404
2423
|
# Selector specifying which fields to include in a partial response.
|
2405
2424
|
# @param [String] quota_user
|
@@ -2417,13 +2436,14 @@ module Google
|
|
2417
2436
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2418
2437
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2419
2438
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2420
|
-
def list_project_location_tcp_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2439
|
+
def list_project_location_tcp_routes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2421
2440
|
command = make_simple_command(:get, 'v1beta1/{+parent}/tcpRoutes', options)
|
2422
2441
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListTcpRoutesResponse::Representation
|
2423
2442
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListTcpRoutesResponse
|
2424
2443
|
command.params['parent'] = parent unless parent.nil?
|
2425
2444
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2426
2445
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2446
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2427
2447
|
command.query['fields'] = fields unless fields.nil?
|
2428
2448
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2429
2449
|
execute_or_queue_command(command, &block)
|
@@ -2579,6 +2599,10 @@ module Google
|
|
2579
2599
|
# The value returned by the last `ListTlsRoutesResponse` Indicates that this is
|
2580
2600
|
# a continuation of a prior `ListTlsRoutes` call, and that the system should
|
2581
2601
|
# return the next page of data.
|
2602
|
+
# @param [Boolean] return_partial_success
|
2603
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
2604
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
2605
|
+
# Aggregated List request will fail.
|
2582
2606
|
# @param [String] fields
|
2583
2607
|
# Selector specifying which fields to include in a partial response.
|
2584
2608
|
# @param [String] quota_user
|
@@ -2596,13 +2620,14 @@ module Google
|
|
2596
2620
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2597
2621
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2598
2622
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2599
|
-
def list_project_location_tls_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2623
|
+
def list_project_location_tls_routes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2600
2624
|
command = make_simple_command(:get, 'v1beta1/{+parent}/tlsRoutes', options)
|
2601
2625
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListTlsRoutesResponse::Representation
|
2602
2626
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListTlsRoutesResponse
|
2603
2627
|
command.params['parent'] = parent unless parent.nil?
|
2604
2628
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2605
2629
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2630
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2606
2631
|
command.query['fields'] = fields unless fields.nil?
|
2607
2632
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2608
2633
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.49.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.49.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|