google-apis-networkservices_v1 0.52.0 → 0.54.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 +110 -14
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1/representations.rb +11 -0
- data/lib/google/apis/networkservices_v1/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: 93e98f022b9cbf77d2a7844339a09ef0c5afc5ce425bac3af6c04ba3331d357a
|
4
|
+
data.tar.gz: d4be7d53bae54a57fb03cfe3e7fb93e5331edb0d8761d26190098bb6f2275be6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f88f7c15a95aaa656d2ed5b50b2a45faa66b0a2fa139c68aeb18ac6a343ba67f17221077cf8d0d976270522cd8328d3b15c047193671273c3987059f68c0f46
|
7
|
+
data.tar.gz: 1664be8af62a40a916fb0956614c8aa63cfb2e1f8845ba25c3c850736c8f0c336cbf8c0c57cf5905654fd58b1ef0bc8681deae4c193531fbb5f55452ae36c531
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1
|
2
2
|
|
3
|
+
### v0.54.0 (2025-03-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250318
|
6
|
+
|
7
|
+
### v0.53.0 (2025-03-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250311
|
10
|
+
|
3
11
|
### v0.52.0 (2025-03-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250224
|
@@ -661,8 +661,12 @@ module Google
|
|
661
661
|
# namespace `com.google....`. For example: `com.google.lb_traffic_extension.
|
662
662
|
# lbtrafficextension1.chain1.ext1`. The following variables are supported in the
|
663
663
|
# metadata: ``forwarding_rule_id`` - substituted with the forwarding rule's
|
664
|
-
# fully qualified resource name. This field is
|
665
|
-
#
|
664
|
+
# fully qualified resource name. This field is subject to following limitations:
|
665
|
+
# * The total size of the metadata must be less than 1KiB. * The total number of
|
666
|
+
# keys in the metadata must be less than 20. * The length of each key must be
|
667
|
+
# less than 64 characters. * The length of each value must be less than 1024
|
668
|
+
# characters. * All values must be strings. This field is not supported for
|
669
|
+
# plugin extensions. Setting it results in a validation error.
|
666
670
|
# Corresponds to the JSON property `metadata`
|
667
671
|
# @return [Hash<String,Object>]
|
668
672
|
attr_accessor :metadata
|
@@ -695,8 +699,8 @@ module Google
|
|
695
699
|
|
696
700
|
# Optional. A set of events during request or response processing for which this
|
697
701
|
# extension is called. This field is required for the `LbTrafficExtension`
|
698
|
-
# resource. It
|
699
|
-
#
|
702
|
+
# resource. It is optional for the `LbRouteExtension` resource. If unspecified `
|
703
|
+
# REQUEST_HEADERS` event is assumed as supported.
|
700
704
|
# Corresponds to the JSON property `supportedEvents`
|
701
705
|
# @return [Array<String>]
|
702
706
|
attr_accessor :supported_events
|
@@ -1409,8 +1413,9 @@ module Google
|
|
1409
1413
|
include Google::Apis::Core::Hashable
|
1410
1414
|
|
1411
1415
|
# Required. The cookie TTL value for the Set-Cookie header generated by the data
|
1412
|
-
# plane. The lifetime of the cookie may be set to a value from
|
1413
|
-
# seconds (24 hours) inclusive.
|
1416
|
+
# plane. The lifetime of the cookie may be set to a value from 0 to 86400
|
1417
|
+
# seconds (24 hours) inclusive. Set this to 0s to use a session cookie and
|
1418
|
+
# disable cookie expiration.
|
1414
1419
|
# Corresponds to the JSON property `cookieTtl`
|
1415
1420
|
# @return [String]
|
1416
1421
|
attr_accessor :cookie_ttl
|
@@ -2283,8 +2288,9 @@ module Google
|
|
2283
2288
|
include Google::Apis::Core::Hashable
|
2284
2289
|
|
2285
2290
|
# Required. The cookie TTL value for the Set-Cookie header generated by the data
|
2286
|
-
# plane. The lifetime of the cookie may be set to a value from
|
2287
|
-
# seconds (24 hours) inclusive.
|
2291
|
+
# plane. The lifetime of the cookie may be set to a value from 0 to 86400
|
2292
|
+
# seconds (24 hours) inclusive. Set this to 0s to use a session cookie and
|
2293
|
+
# disable cookie expiration.
|
2288
2294
|
# Corresponds to the JSON property `cookieTtl`
|
2289
2295
|
# @return [String]
|
2290
2296
|
attr_accessor :cookie_ttl
|
@@ -2551,6 +2557,13 @@ module Google
|
|
2551
2557
|
# @return [String]
|
2552
2558
|
attr_accessor :next_page_token
|
2553
2559
|
|
2560
|
+
# Unreachable resources. Populated when the request opts into
|
2561
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2562
|
+
# list all resources across all supported locations.
|
2563
|
+
# Corresponds to the JSON property `unreachable`
|
2564
|
+
# @return [Array<String>]
|
2565
|
+
attr_accessor :unreachable
|
2566
|
+
|
2554
2567
|
def initialize(**args)
|
2555
2568
|
update!(**args)
|
2556
2569
|
end
|
@@ -2559,6 +2572,7 @@ module Google
|
|
2559
2572
|
def update!(**args)
|
2560
2573
|
@endpoint_policies = args[:endpoint_policies] if args.key?(:endpoint_policies)
|
2561
2574
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2575
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2562
2576
|
end
|
2563
2577
|
end
|
2564
2578
|
|
@@ -2577,6 +2591,13 @@ module Google
|
|
2577
2591
|
# @return [String]
|
2578
2592
|
attr_accessor :next_page_token
|
2579
2593
|
|
2594
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2595
|
+
# resources across all supported locations, while some locations are temporarily
|
2596
|
+
# unavailable.
|
2597
|
+
# Corresponds to the JSON property `unreachable`
|
2598
|
+
# @return [Array<String>]
|
2599
|
+
attr_accessor :unreachable
|
2600
|
+
|
2580
2601
|
def initialize(**args)
|
2581
2602
|
update!(**args)
|
2582
2603
|
end
|
@@ -2585,6 +2606,7 @@ module Google
|
|
2585
2606
|
def update!(**args)
|
2586
2607
|
@gateway_route_views = args[:gateway_route_views] if args.key?(:gateway_route_views)
|
2587
2608
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2609
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2588
2610
|
end
|
2589
2611
|
end
|
2590
2612
|
|
@@ -2637,6 +2659,13 @@ module Google
|
|
2637
2659
|
# @return [String]
|
2638
2660
|
attr_accessor :next_page_token
|
2639
2661
|
|
2662
|
+
# Unreachable resources. Populated when the request opts into
|
2663
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2664
|
+
# list all resources across all supported locations.
|
2665
|
+
# Corresponds to the JSON property `unreachable`
|
2666
|
+
# @return [Array<String>]
|
2667
|
+
attr_accessor :unreachable
|
2668
|
+
|
2640
2669
|
def initialize(**args)
|
2641
2670
|
update!(**args)
|
2642
2671
|
end
|
@@ -2645,6 +2674,7 @@ module Google
|
|
2645
2674
|
def update!(**args)
|
2646
2675
|
@grpc_routes = args[:grpc_routes] if args.key?(:grpc_routes)
|
2647
2676
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2677
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2648
2678
|
end
|
2649
2679
|
end
|
2650
2680
|
|
@@ -2664,6 +2694,13 @@ module Google
|
|
2664
2694
|
# @return [String]
|
2665
2695
|
attr_accessor :next_page_token
|
2666
2696
|
|
2697
|
+
# Unreachable resources. Populated when the request opts into
|
2698
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2699
|
+
# list all resources across all supported locations.
|
2700
|
+
# Corresponds to the JSON property `unreachable`
|
2701
|
+
# @return [Array<String>]
|
2702
|
+
attr_accessor :unreachable
|
2703
|
+
|
2667
2704
|
def initialize(**args)
|
2668
2705
|
update!(**args)
|
2669
2706
|
end
|
@@ -2672,6 +2709,7 @@ module Google
|
|
2672
2709
|
def update!(**args)
|
2673
2710
|
@http_routes = args[:http_routes] if args.key?(:http_routes)
|
2674
2711
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2712
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2675
2713
|
end
|
2676
2714
|
end
|
2677
2715
|
|
@@ -2777,6 +2815,13 @@ module Google
|
|
2777
2815
|
# @return [String]
|
2778
2816
|
attr_accessor :next_page_token
|
2779
2817
|
|
2818
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2819
|
+
# resources across all supported locations, while some locations are temporarily
|
2820
|
+
# unavailable.
|
2821
|
+
# Corresponds to the JSON property `unreachable`
|
2822
|
+
# @return [Array<String>]
|
2823
|
+
attr_accessor :unreachable
|
2824
|
+
|
2780
2825
|
def initialize(**args)
|
2781
2826
|
update!(**args)
|
2782
2827
|
end
|
@@ -2785,6 +2830,7 @@ module Google
|
|
2785
2830
|
def update!(**args)
|
2786
2831
|
@mesh_route_views = args[:mesh_route_views] if args.key?(:mesh_route_views)
|
2787
2832
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2833
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2788
2834
|
end
|
2789
2835
|
end
|
2790
2836
|
|
@@ -2864,6 +2910,13 @@ module Google
|
|
2864
2910
|
# @return [Array<Google::Apis::NetworkservicesV1::ServiceBinding>]
|
2865
2911
|
attr_accessor :service_bindings
|
2866
2912
|
|
2913
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2914
|
+
# resources across all supported locations, while some locations are temporarily
|
2915
|
+
# unavailable.
|
2916
|
+
# Corresponds to the JSON property `unreachable`
|
2917
|
+
# @return [Array<String>]
|
2918
|
+
attr_accessor :unreachable
|
2919
|
+
|
2867
2920
|
def initialize(**args)
|
2868
2921
|
update!(**args)
|
2869
2922
|
end
|
@@ -2872,6 +2925,7 @@ module Google
|
|
2872
2925
|
def update!(**args)
|
2873
2926
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2874
2927
|
@service_bindings = args[:service_bindings] if args.key?(:service_bindings)
|
2928
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2875
2929
|
end
|
2876
2930
|
end
|
2877
2931
|
|
@@ -2891,6 +2945,13 @@ module Google
|
|
2891
2945
|
# @return [Array<Google::Apis::NetworkservicesV1::ServiceLbPolicy>]
|
2892
2946
|
attr_accessor :service_lb_policies
|
2893
2947
|
|
2948
|
+
# Unreachable resources. Populated when the request attempts to list all
|
2949
|
+
# resources across all supported locations, while some locations are temporarily
|
2950
|
+
# unavailable.
|
2951
|
+
# Corresponds to the JSON property `unreachable`
|
2952
|
+
# @return [Array<String>]
|
2953
|
+
attr_accessor :unreachable
|
2954
|
+
|
2894
2955
|
def initialize(**args)
|
2895
2956
|
update!(**args)
|
2896
2957
|
end
|
@@ -2899,6 +2960,7 @@ module Google
|
|
2899
2960
|
def update!(**args)
|
2900
2961
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2901
2962
|
@service_lb_policies = args[:service_lb_policies] if args.key?(:service_lb_policies)
|
2963
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2902
2964
|
end
|
2903
2965
|
end
|
2904
2966
|
|
@@ -2918,6 +2980,13 @@ module Google
|
|
2918
2980
|
# @return [Array<Google::Apis::NetworkservicesV1::TcpRoute>]
|
2919
2981
|
attr_accessor :tcp_routes
|
2920
2982
|
|
2983
|
+
# Unreachable resources. Populated when the request opts into
|
2984
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
2985
|
+
# list all resources across all supported locations.
|
2986
|
+
# Corresponds to the JSON property `unreachable`
|
2987
|
+
# @return [Array<String>]
|
2988
|
+
attr_accessor :unreachable
|
2989
|
+
|
2921
2990
|
def initialize(**args)
|
2922
2991
|
update!(**args)
|
2923
2992
|
end
|
@@ -2926,6 +2995,7 @@ module Google
|
|
2926
2995
|
def update!(**args)
|
2927
2996
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2928
2997
|
@tcp_routes = args[:tcp_routes] if args.key?(:tcp_routes)
|
2998
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2929
2999
|
end
|
2930
3000
|
end
|
2931
3001
|
|
@@ -2945,6 +3015,13 @@ module Google
|
|
2945
3015
|
# @return [Array<Google::Apis::NetworkservicesV1::TlsRoute>]
|
2946
3016
|
attr_accessor :tls_routes
|
2947
3017
|
|
3018
|
+
# Unreachable resources. Populated when the request opts into
|
3019
|
+
# return_partial_success and reading across collections e.g. when attempting to
|
3020
|
+
# list all resources across all supported locations.
|
3021
|
+
# Corresponds to the JSON property `unreachable`
|
3022
|
+
# @return [Array<String>]
|
3023
|
+
attr_accessor :unreachable
|
3024
|
+
|
2948
3025
|
def initialize(**args)
|
2949
3026
|
update!(**args)
|
2950
3027
|
end
|
@@ -2953,6 +3030,7 @@ module Google
|
|
2953
3030
|
def update!(**args)
|
2954
3031
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2955
3032
|
@tls_routes = args[:tls_routes] if args.key?(:tls_routes)
|
3033
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2956
3034
|
end
|
2957
3035
|
end
|
2958
3036
|
|
@@ -2967,6 +3045,13 @@ module Google
|
|
2967
3045
|
# @return [String]
|
2968
3046
|
attr_accessor :next_page_token
|
2969
3047
|
|
3048
|
+
# Unreachable resources. Populated when the request attempts to list all
|
3049
|
+
# resources across all supported locations, while some locations are temporarily
|
3050
|
+
# unavailable.
|
3051
|
+
# Corresponds to the JSON property `unreachable`
|
3052
|
+
# @return [Array<String>]
|
3053
|
+
attr_accessor :unreachable
|
3054
|
+
|
2970
3055
|
# List of `WasmPluginVersion` resources.
|
2971
3056
|
# Corresponds to the JSON property `wasmPluginVersions`
|
2972
3057
|
# @return [Array<Google::Apis::NetworkservicesV1::WasmPluginVersion>]
|
@@ -2979,6 +3064,7 @@ module Google
|
|
2979
3064
|
# Update properties of this object
|
2980
3065
|
def update!(**args)
|
2981
3066
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3067
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2982
3068
|
@wasm_plugin_versions = args[:wasm_plugin_versions] if args.key?(:wasm_plugin_versions)
|
2983
3069
|
end
|
2984
3070
|
end
|
@@ -2994,6 +3080,13 @@ module Google
|
|
2994
3080
|
# @return [String]
|
2995
3081
|
attr_accessor :next_page_token
|
2996
3082
|
|
3083
|
+
# Unreachable resources. Populated when the request attempts to list all
|
3084
|
+
# resources across all supported locations, while some locations are temporarily
|
3085
|
+
# unavailable.
|
3086
|
+
# Corresponds to the JSON property `unreachable`
|
3087
|
+
# @return [Array<String>]
|
3088
|
+
attr_accessor :unreachable
|
3089
|
+
|
2997
3090
|
# List of `WasmPlugin` resources.
|
2998
3091
|
# Corresponds to the JSON property `wasmPlugins`
|
2999
3092
|
# @return [Array<Google::Apis::NetworkservicesV1::WasmPlugin>]
|
@@ -3006,6 +3099,7 @@ module Google
|
|
3006
3099
|
# Update properties of this object
|
3007
3100
|
def update!(**args)
|
3008
3101
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3102
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3009
3103
|
@wasm_plugins = args[:wasm_plugins] if args.key?(:wasm_plugins)
|
3010
3104
|
end
|
3011
3105
|
end
|
@@ -3430,9 +3524,9 @@ module Google
|
|
3430
3524
|
end
|
3431
3525
|
|
3432
3526
|
# ServiceBinding can be used to: - Bind a Service Directory Service to be used
|
3433
|
-
# in a BackendService resource.
|
3434
|
-
# service to be used in consumer Cloud Service
|
3435
|
-
# Balancers.
|
3527
|
+
# in a BackendService resource. This feature will be deprecated soon. - Bind a
|
3528
|
+
# Private Service Connect producer service to be used in consumer Cloud Service
|
3529
|
+
# Mesh or Application Load Balancers.
|
3436
3530
|
class ServiceBinding
|
3437
3531
|
include Google::Apis::Core::Hashable
|
3438
3532
|
|
@@ -3458,7 +3552,8 @@ module Google
|
|
3458
3552
|
attr_accessor :name
|
3459
3553
|
|
3460
3554
|
# Optional. The full Service Directory Service name of the format `projects/*/
|
3461
|
-
# locations/*/namespaces/*/services/*`. This field
|
3555
|
+
# locations/*/namespaces/*/services/*`. This field is for Service Directory
|
3556
|
+
# integration which will be deprecated soon.
|
3462
3557
|
# Corresponds to the JSON property `service`
|
3463
3558
|
# @return [String]
|
3464
3559
|
attr_accessor :service
|
@@ -3466,7 +3561,8 @@ module Google
|
|
3466
3561
|
# Output only. The unique identifier of the Service Directory Service against
|
3467
3562
|
# which the ServiceBinding resource is validated. This is populated when the
|
3468
3563
|
# Service Binding resource is used in another resource (like Backend Service).
|
3469
|
-
# This is of the UUID4 format.
|
3564
|
+
# This is of the UUID4 format. This field is for Service Directory integration
|
3565
|
+
# which will be deprecated soon.
|
3470
3566
|
# Corresponds to the JSON property `serviceId`
|
3471
3567
|
# @return [String]
|
3472
3568
|
attr_accessor :service_id
|
@@ -4063,7 +4159,7 @@ module Google
|
|
4063
4159
|
# @return [String]
|
4064
4160
|
attr_accessor :service_name
|
4065
4161
|
|
4066
|
-
# Optional. Specifies the proportion of requests
|
4162
|
+
# Optional. Specifies the proportion of requests forwarded to the backend
|
4067
4163
|
# referenced by the service_name field. This is computed as: - weight/Sum(
|
4068
4164
|
# weights in destinations) Weights in all destinations does not need to sum up
|
4069
4165
|
# to 100.
|
@@ -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.54.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 = "20250318"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1184,6 +1184,7 @@ module Google
|
|
1184
1184
|
collection :endpoint_policies, as: 'endpointPolicies', class: Google::Apis::NetworkservicesV1::EndpointPolicy, decorator: Google::Apis::NetworkservicesV1::EndpointPolicy::Representation
|
1185
1185
|
|
1186
1186
|
property :next_page_token, as: 'nextPageToken'
|
1187
|
+
collection :unreachable, as: 'unreachable'
|
1187
1188
|
end
|
1188
1189
|
end
|
1189
1190
|
|
@@ -1193,6 +1194,7 @@ module Google
|
|
1193
1194
|
collection :gateway_route_views, as: 'gatewayRouteViews', class: Google::Apis::NetworkservicesV1::GatewayRouteView, decorator: Google::Apis::NetworkservicesV1::GatewayRouteView::Representation
|
1194
1195
|
|
1195
1196
|
property :next_page_token, as: 'nextPageToken'
|
1197
|
+
collection :unreachable, as: 'unreachable'
|
1196
1198
|
end
|
1197
1199
|
end
|
1198
1200
|
|
@@ -1212,6 +1214,7 @@ module Google
|
|
1212
1214
|
collection :grpc_routes, as: 'grpcRoutes', class: Google::Apis::NetworkservicesV1::GrpcRoute, decorator: Google::Apis::NetworkservicesV1::GrpcRoute::Representation
|
1213
1215
|
|
1214
1216
|
property :next_page_token, as: 'nextPageToken'
|
1217
|
+
collection :unreachable, as: 'unreachable'
|
1215
1218
|
end
|
1216
1219
|
end
|
1217
1220
|
|
@@ -1221,6 +1224,7 @@ module Google
|
|
1221
1224
|
collection :http_routes, as: 'httpRoutes', class: Google::Apis::NetworkservicesV1::HttpRoute, decorator: Google::Apis::NetworkservicesV1::HttpRoute::Representation
|
1222
1225
|
|
1223
1226
|
property :next_page_token, as: 'nextPageToken'
|
1227
|
+
collection :unreachable, as: 'unreachable'
|
1224
1228
|
end
|
1225
1229
|
end
|
1226
1230
|
|
@@ -1259,6 +1263,7 @@ module Google
|
|
1259
1263
|
collection :mesh_route_views, as: 'meshRouteViews', class: Google::Apis::NetworkservicesV1::MeshRouteView, decorator: Google::Apis::NetworkservicesV1::MeshRouteView::Representation
|
1260
1264
|
|
1261
1265
|
property :next_page_token, as: 'nextPageToken'
|
1266
|
+
collection :unreachable, as: 'unreachable'
|
1262
1267
|
end
|
1263
1268
|
end
|
1264
1269
|
|
@@ -1287,6 +1292,7 @@ module Google
|
|
1287
1292
|
property :next_page_token, as: 'nextPageToken'
|
1288
1293
|
collection :service_bindings, as: 'serviceBindings', class: Google::Apis::NetworkservicesV1::ServiceBinding, decorator: Google::Apis::NetworkservicesV1::ServiceBinding::Representation
|
1289
1294
|
|
1295
|
+
collection :unreachable, as: 'unreachable'
|
1290
1296
|
end
|
1291
1297
|
end
|
1292
1298
|
|
@@ -1296,6 +1302,7 @@ module Google
|
|
1296
1302
|
property :next_page_token, as: 'nextPageToken'
|
1297
1303
|
collection :service_lb_policies, as: 'serviceLbPolicies', class: Google::Apis::NetworkservicesV1::ServiceLbPolicy, decorator: Google::Apis::NetworkservicesV1::ServiceLbPolicy::Representation
|
1298
1304
|
|
1305
|
+
collection :unreachable, as: 'unreachable'
|
1299
1306
|
end
|
1300
1307
|
end
|
1301
1308
|
|
@@ -1305,6 +1312,7 @@ module Google
|
|
1305
1312
|
property :next_page_token, as: 'nextPageToken'
|
1306
1313
|
collection :tcp_routes, as: 'tcpRoutes', class: Google::Apis::NetworkservicesV1::TcpRoute, decorator: Google::Apis::NetworkservicesV1::TcpRoute::Representation
|
1307
1314
|
|
1315
|
+
collection :unreachable, as: 'unreachable'
|
1308
1316
|
end
|
1309
1317
|
end
|
1310
1318
|
|
@@ -1314,6 +1322,7 @@ module Google
|
|
1314
1322
|
property :next_page_token, as: 'nextPageToken'
|
1315
1323
|
collection :tls_routes, as: 'tlsRoutes', class: Google::Apis::NetworkservicesV1::TlsRoute, decorator: Google::Apis::NetworkservicesV1::TlsRoute::Representation
|
1316
1324
|
|
1325
|
+
collection :unreachable, as: 'unreachable'
|
1317
1326
|
end
|
1318
1327
|
end
|
1319
1328
|
|
@@ -1321,6 +1330,7 @@ module Google
|
|
1321
1330
|
# @private
|
1322
1331
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1323
1332
|
property :next_page_token, as: 'nextPageToken'
|
1333
|
+
collection :unreachable, as: 'unreachable'
|
1324
1334
|
collection :wasm_plugin_versions, as: 'wasmPluginVersions', class: Google::Apis::NetworkservicesV1::WasmPluginVersion, decorator: Google::Apis::NetworkservicesV1::WasmPluginVersion::Representation
|
1325
1335
|
|
1326
1336
|
end
|
@@ -1330,6 +1340,7 @@ module Google
|
|
1330
1340
|
# @private
|
1331
1341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1332
1342
|
property :next_page_token, as: 'nextPageToken'
|
1343
|
+
collection :unreachable, as: 'unreachable'
|
1333
1344
|
collection :wasm_plugins, as: 'wasmPlugins', class: Google::Apis::NetworkservicesV1::WasmPlugin, decorator: Google::Apis::NetworkservicesV1::WasmPlugin::Representation
|
1334
1345
|
|
1335
1346
|
end
|
@@ -817,6 +817,10 @@ module Google
|
|
817
817
|
# The value returned by the last `ListEndpointPoliciesResponse` Indicates that
|
818
818
|
# this is a continuation of a prior `ListEndpointPolicies` call, and that the
|
819
819
|
# system should return the next page of data.
|
820
|
+
# @param [Boolean] return_partial_success
|
821
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
822
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
823
|
+
# Aggregated List request will fail.
|
820
824
|
# @param [String] fields
|
821
825
|
# Selector specifying which fields to include in a partial response.
|
822
826
|
# @param [String] quota_user
|
@@ -834,13 +838,14 @@ module Google
|
|
834
838
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
835
839
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
836
840
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
837
|
-
def list_project_location_endpoint_policies(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
841
|
+
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)
|
838
842
|
command = make_simple_command(:get, 'v1/{+parent}/endpointPolicies', options)
|
839
843
|
command.response_representation = Google::Apis::NetworkservicesV1::ListEndpointPoliciesResponse::Representation
|
840
844
|
command.response_class = Google::Apis::NetworkservicesV1::ListEndpointPoliciesResponse
|
841
845
|
command.params['parent'] = parent unless parent.nil?
|
842
846
|
command.query['pageSize'] = page_size unless page_size.nil?
|
843
847
|
command.query['pageToken'] = page_token unless page_token.nil?
|
848
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
844
849
|
command.query['fields'] = fields unless fields.nil?
|
845
850
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
846
851
|
execute_or_queue_command(command, &block)
|
@@ -1246,6 +1251,10 @@ module Google
|
|
1246
1251
|
# The value returned by the last `ListGrpcRoutesResponse` Indicates that this is
|
1247
1252
|
# a continuation of a prior `ListGrpcRoutes` call, and that the system should
|
1248
1253
|
# return the next page of data.
|
1254
|
+
# @param [Boolean] return_partial_success
|
1255
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
1256
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
1257
|
+
# Aggregated List request will fail.
|
1249
1258
|
# @param [String] fields
|
1250
1259
|
# Selector specifying which fields to include in a partial response.
|
1251
1260
|
# @param [String] quota_user
|
@@ -1263,13 +1272,14 @@ module Google
|
|
1263
1272
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1264
1273
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1265
1274
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1266
|
-
def list_project_location_grpc_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1275
|
+
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)
|
1267
1276
|
command = make_simple_command(:get, 'v1/{+parent}/grpcRoutes', options)
|
1268
1277
|
command.response_representation = Google::Apis::NetworkservicesV1::ListGrpcRoutesResponse::Representation
|
1269
1278
|
command.response_class = Google::Apis::NetworkservicesV1::ListGrpcRoutesResponse
|
1270
1279
|
command.params['parent'] = parent unless parent.nil?
|
1271
1280
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1272
1281
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1282
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1273
1283
|
command.query['fields'] = fields unless fields.nil?
|
1274
1284
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1275
1285
|
execute_or_queue_command(command, &block)
|
@@ -1425,6 +1435,10 @@ module Google
|
|
1425
1435
|
# The value returned by the last `ListHttpRoutesResponse` Indicates that this is
|
1426
1436
|
# a continuation of a prior `ListHttpRoutes` call, and that the system should
|
1427
1437
|
# return the next page of data.
|
1438
|
+
# @param [Boolean] return_partial_success
|
1439
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
1440
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
1441
|
+
# Aggregated List request will fail.
|
1428
1442
|
# @param [String] fields
|
1429
1443
|
# Selector specifying which fields to include in a partial response.
|
1430
1444
|
# @param [String] quota_user
|
@@ -1442,13 +1456,14 @@ module Google
|
|
1442
1456
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1443
1457
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1444
1458
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1445
|
-
def list_project_location_http_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1459
|
+
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)
|
1446
1460
|
command = make_simple_command(:get, 'v1/{+parent}/httpRoutes', options)
|
1447
1461
|
command.response_representation = Google::Apis::NetworkservicesV1::ListHttpRoutesResponse::Representation
|
1448
1462
|
command.response_class = Google::Apis::NetworkservicesV1::ListHttpRoutesResponse
|
1449
1463
|
command.params['parent'] = parent unless parent.nil?
|
1450
1464
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1451
1465
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1466
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1452
1467
|
command.query['fields'] = fields unless fields.nil?
|
1453
1468
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1454
1469
|
execute_or_queue_command(command, &block)
|
@@ -2763,6 +2778,10 @@ module Google
|
|
2763
2778
|
# The value returned by the last `ListTcpRoutesResponse` Indicates that this is
|
2764
2779
|
# a continuation of a prior `ListTcpRoutes` call, and that the system should
|
2765
2780
|
# return the next page of data.
|
2781
|
+
# @param [Boolean] return_partial_success
|
2782
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
2783
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
2784
|
+
# Aggregated List request will fail.
|
2766
2785
|
# @param [String] fields
|
2767
2786
|
# Selector specifying which fields to include in a partial response.
|
2768
2787
|
# @param [String] quota_user
|
@@ -2780,13 +2799,14 @@ module Google
|
|
2780
2799
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2781
2800
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2782
2801
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2783
|
-
def list_project_location_tcp_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2802
|
+
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)
|
2784
2803
|
command = make_simple_command(:get, 'v1/{+parent}/tcpRoutes', options)
|
2785
2804
|
command.response_representation = Google::Apis::NetworkservicesV1::ListTcpRoutesResponse::Representation
|
2786
2805
|
command.response_class = Google::Apis::NetworkservicesV1::ListTcpRoutesResponse
|
2787
2806
|
command.params['parent'] = parent unless parent.nil?
|
2788
2807
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2789
2808
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2809
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2790
2810
|
command.query['fields'] = fields unless fields.nil?
|
2791
2811
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2792
2812
|
execute_or_queue_command(command, &block)
|
@@ -2942,6 +2962,10 @@ module Google
|
|
2942
2962
|
# The value returned by the last `ListTlsRoutesResponse` Indicates that this is
|
2943
2963
|
# a continuation of a prior `ListTlsRoutes` call, and that the system should
|
2944
2964
|
# return the next page of data.
|
2965
|
+
# @param [Boolean] return_partial_success
|
2966
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
2967
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
2968
|
+
# Aggregated List request will fail.
|
2945
2969
|
# @param [String] fields
|
2946
2970
|
# Selector specifying which fields to include in a partial response.
|
2947
2971
|
# @param [String] quota_user
|
@@ -2959,13 +2983,14 @@ module Google
|
|
2959
2983
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2960
2984
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2961
2985
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2962
|
-
def list_project_location_tls_routes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2986
|
+
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)
|
2963
2987
|
command = make_simple_command(:get, 'v1/{+parent}/tlsRoutes', options)
|
2964
2988
|
command.response_representation = Google::Apis::NetworkservicesV1::ListTlsRoutesResponse::Representation
|
2965
2989
|
command.response_class = Google::Apis::NetworkservicesV1::ListTlsRoutesResponse
|
2966
2990
|
command.params['parent'] = parent unless parent.nil?
|
2967
2991
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2968
2992
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2993
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2969
2994
|
command.query['fields'] = fields unless fields.nil?
|
2970
2995
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2971
2996
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.54.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-30 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_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.54.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:
|