google-apis-networkservices_v1beta1 0.48.0 → 0.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa6cd9297f61bab04929ecb05e5bcfc57c7f57ea75297ae6b00b542bb3c2f6f0
4
- data.tar.gz: 3c7b7a5ad51ac56f013f9d79a99827b457191469d2a8544472b3ca092fb6ea45
3
+ metadata.gz: eecbc7e6da0d240c910c6ee94f60584ed0d93bd627e16e0c76f56babc010fd5e
4
+ data.tar.gz: c122e793274b020c424505dee709e4ff0ccffa3ec9775ec8107845f5490761d4
5
5
  SHA512:
6
- metadata.gz: 5788868601705b0e5b59ada1311e12f89d516f6e5caba30072dc538f1645d25d75485f32da01645e1360282f37cf7c65478e9ac8cefa69f5db6ef73aa93efe5e
7
- data.tar.gz: 68317180cfcd4d6ede00ba4eb62233abcebe54b7257dbe9d606acc4af06eafcecf01524bda42fb338e673dcd26def7c6da87c046739d48fffe556ae275077c7d
6
+ metadata.gz: 0f7da372d1e08abb2a3459c384ffc8150b8081c1e8f9f2aaab8bb05f42e2f68319390613c13d804541059ad59416c409dac08524c12a7041fe42e166f9acfff0
7
+ data.tar.gz: e5569399c8931b2f8239325ab7417b9ae400cdf83d70fabcb2a0fa4cefe6d990f39b988c4bfda03e4d145ce5684851092a3bbeb926bc5dd629cb6bee64442929
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkservices_v1beta1
2
2
 
3
+ ### v0.50.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250318
6
+
7
+ ### v0.49.0 (2025-03-23)
8
+
9
+ * Regenerated from discovery document revision 20250311
10
+
3
11
  ### v0.48.0 (2025-03-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20250310
@@ -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 not supported for plugin
374
- # extensions. Setting it results in a validation error.
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
@@ -385,6 +398,29 @@ module Google
385
398
  # @return [String]
386
399
  attr_accessor :name
387
400
 
401
+ # Optional. Configures the send mode for request body processing. The field can
402
+ # only be set if `supported_events` includes `REQUEST_BODY`. If `
403
+ # supported_events` includes `REQUEST_BODY`, but `request_body_send_mode` is
404
+ # unset, the default value `STREAMED` is used. When this field is set to `
405
+ # FULL_DUPLEX_STREAMED`, `supported_events` must include both `REQUEST_BODY` and
406
+ # `REQUEST_TRAILERS`. This field can be set only for `LbTrafficExtension` and `
407
+ # LbRouteExtension` resources, and only when the `service` field of the
408
+ # extension points to a `BackendService`. Only `FULL_DUPLEX_STREAMED` mode is
409
+ # supported for `LbRouteExtension` resources.
410
+ # Corresponds to the JSON property `requestBodySendMode`
411
+ # @return [String]
412
+ attr_accessor :request_body_send_mode
413
+
414
+ # Optional. Configures the send mode for response processing. If unspecified,
415
+ # the default value `STREAMED` is used. When this field is set to `
416
+ # FULL_DUPLEX_STREAMED`, `supported_events` must include both `RESPONSE_BODY`
417
+ # and `RESPONSE_TRAILERS`. This field can be set only for `LbTrafficExtension`
418
+ # resources, and only when the `service` field of the extension points to a `
419
+ # BackendService`.
420
+ # Corresponds to the JSON property `responseBodySendMode`
421
+ # @return [String]
422
+ attr_accessor :response_body_send_mode
423
+
388
424
  # Required. The reference to the service that runs the extension. To configure a
389
425
  # callout extension, `service` must be a fully-qualified reference to a [backend
390
426
  # service](https://cloud.google.com/compute/docs/reference/rest/v1/
@@ -424,11 +460,14 @@ module Google
424
460
 
425
461
  # Update properties of this object
426
462
  def update!(**args)
463
+ @allow_dynamic_forwarding = args[:allow_dynamic_forwarding] if args.key?(:allow_dynamic_forwarding)
427
464
  @authority = args[:authority] if args.key?(:authority)
428
465
  @fail_open = args[:fail_open] if args.key?(:fail_open)
429
466
  @forward_headers = args[:forward_headers] if args.key?(:forward_headers)
430
467
  @metadata = args[:metadata] if args.key?(:metadata)
431
468
  @name = args[:name] if args.key?(:name)
469
+ @request_body_send_mode = args[:request_body_send_mode] if args.key?(:request_body_send_mode)
470
+ @response_body_send_mode = args[:response_body_send_mode] if args.key?(:response_body_send_mode)
432
471
  @service = args[:service] if args.key?(:service)
433
472
  @supported_events = args[:supported_events] if args.key?(:supported_events)
434
473
  @timeout = args[:timeout] if args.key?(:timeout)
@@ -1118,8 +1157,9 @@ module Google
1118
1157
  include Google::Apis::Core::Hashable
1119
1158
 
1120
1159
  # Required. The cookie TTL value for the Set-Cookie header generated by the data
1121
- # plane. The lifetime of the cookie may be set to a value from 1 to 86400
1122
- # seconds (24 hours) inclusive.
1160
+ # plane. The lifetime of the cookie may be set to a value from 0 to 86400
1161
+ # seconds (24 hours) inclusive. Set this to 0s to use a session cookie and
1162
+ # disable cookie expiration.
1123
1163
  # Corresponds to the JSON property `cookieTtl`
1124
1164
  # @return [String]
1125
1165
  attr_accessor :cookie_ttl
@@ -1992,8 +2032,9 @@ module Google
1992
2032
  include Google::Apis::Core::Hashable
1993
2033
 
1994
2034
  # Required. The cookie TTL value for the Set-Cookie header generated by the data
1995
- # plane. The lifetime of the cookie may be set to a value from 1 to 86400
1996
- # seconds (24 hours) inclusive.
2035
+ # plane. The lifetime of the cookie may be set to a value from 0 to 86400
2036
+ # seconds (24 hours) inclusive. Set this to 0s to use a session cookie and
2037
+ # disable cookie expiration.
1997
2038
  # Corresponds to the JSON property `cookieTtl`
1998
2039
  # @return [String]
1999
2040
  attr_accessor :cookie_ttl
@@ -2260,6 +2301,13 @@ module Google
2260
2301
  # @return [String]
2261
2302
  attr_accessor :next_page_token
2262
2303
 
2304
+ # Unreachable resources. Populated when the request opts into
2305
+ # return_partial_success and reading across collections e.g. when attempting to
2306
+ # list all resources across all supported locations.
2307
+ # Corresponds to the JSON property `unreachable`
2308
+ # @return [Array<String>]
2309
+ attr_accessor :unreachable
2310
+
2263
2311
  def initialize(**args)
2264
2312
  update!(**args)
2265
2313
  end
@@ -2268,6 +2316,7 @@ module Google
2268
2316
  def update!(**args)
2269
2317
  @endpoint_policies = args[:endpoint_policies] if args.key?(:endpoint_policies)
2270
2318
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2319
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2271
2320
  end
2272
2321
  end
2273
2322
 
@@ -2354,6 +2403,13 @@ module Google
2354
2403
  # @return [String]
2355
2404
  attr_accessor :next_page_token
2356
2405
 
2406
+ # Unreachable resources. Populated when the request opts into
2407
+ # return_partial_success and reading across collections e.g. when attempting to
2408
+ # list all resources across all supported locations.
2409
+ # Corresponds to the JSON property `unreachable`
2410
+ # @return [Array<String>]
2411
+ attr_accessor :unreachable
2412
+
2357
2413
  def initialize(**args)
2358
2414
  update!(**args)
2359
2415
  end
@@ -2362,6 +2418,7 @@ module Google
2362
2418
  def update!(**args)
2363
2419
  @grpc_routes = args[:grpc_routes] if args.key?(:grpc_routes)
2364
2420
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2421
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2365
2422
  end
2366
2423
  end
2367
2424
 
@@ -2381,6 +2438,13 @@ module Google
2381
2438
  # @return [String]
2382
2439
  attr_accessor :next_page_token
2383
2440
 
2441
+ # Unreachable resources. Populated when the request opts into
2442
+ # return_partial_success and reading across collections e.g. when attempting to
2443
+ # list all resources across all supported locations.
2444
+ # Corresponds to the JSON property `unreachable`
2445
+ # @return [Array<String>]
2446
+ attr_accessor :unreachable
2447
+
2384
2448
  def initialize(**args)
2385
2449
  update!(**args)
2386
2450
  end
@@ -2389,6 +2453,7 @@ module Google
2389
2453
  def update!(**args)
2390
2454
  @http_routes = args[:http_routes] if args.key?(:http_routes)
2391
2455
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2456
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2392
2457
  end
2393
2458
  end
2394
2459
 
@@ -2659,6 +2724,13 @@ module Google
2659
2724
  # @return [Array<Google::Apis::NetworkservicesV1beta1::TcpRoute>]
2660
2725
  attr_accessor :tcp_routes
2661
2726
 
2727
+ # Unreachable resources. Populated when the request opts into
2728
+ # return_partial_success and reading across collections e.g. when attempting to
2729
+ # list all resources across all supported locations.
2730
+ # Corresponds to the JSON property `unreachable`
2731
+ # @return [Array<String>]
2732
+ attr_accessor :unreachable
2733
+
2662
2734
  def initialize(**args)
2663
2735
  update!(**args)
2664
2736
  end
@@ -2667,6 +2739,7 @@ module Google
2667
2739
  def update!(**args)
2668
2740
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2669
2741
  @tcp_routes = args[:tcp_routes] if args.key?(:tcp_routes)
2742
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2670
2743
  end
2671
2744
  end
2672
2745
 
@@ -2686,6 +2759,13 @@ module Google
2686
2759
  # @return [Array<Google::Apis::NetworkservicesV1beta1::TlsRoute>]
2687
2760
  attr_accessor :tls_routes
2688
2761
 
2762
+ # Unreachable resources. Populated when the request opts into
2763
+ # return_partial_success and reading across collections e.g. when attempting to
2764
+ # list all resources across all supported locations.
2765
+ # Corresponds to the JSON property `unreachable`
2766
+ # @return [Array<String>]
2767
+ attr_accessor :unreachable
2768
+
2689
2769
  def initialize(**args)
2690
2770
  update!(**args)
2691
2771
  end
@@ -2694,6 +2774,7 @@ module Google
2694
2774
  def update!(**args)
2695
2775
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2696
2776
  @tls_routes = args[:tls_routes] if args.key?(:tls_routes)
2777
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2697
2778
  end
2698
2779
  end
2699
2780
 
@@ -2708,6 +2789,13 @@ module Google
2708
2789
  # @return [String]
2709
2790
  attr_accessor :next_page_token
2710
2791
 
2792
+ # Unreachable resources. Populated when the request attempts to list all
2793
+ # resources across all supported locations, while some locations are temporarily
2794
+ # unavailable.
2795
+ # Corresponds to the JSON property `unreachable`
2796
+ # @return [Array<String>]
2797
+ attr_accessor :unreachable
2798
+
2711
2799
  # List of `WasmPluginVersion` resources.
2712
2800
  # Corresponds to the JSON property `wasmPluginVersions`
2713
2801
  # @return [Array<Google::Apis::NetworkservicesV1beta1::WasmPluginVersion>]
@@ -2720,6 +2808,7 @@ module Google
2720
2808
  # Update properties of this object
2721
2809
  def update!(**args)
2722
2810
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2811
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2723
2812
  @wasm_plugin_versions = args[:wasm_plugin_versions] if args.key?(:wasm_plugin_versions)
2724
2813
  end
2725
2814
  end
@@ -2735,6 +2824,13 @@ module Google
2735
2824
  # @return [String]
2736
2825
  attr_accessor :next_page_token
2737
2826
 
2827
+ # Unreachable resources. Populated when the request attempts to list all
2828
+ # resources across all supported locations, while some locations are temporarily
2829
+ # unavailable.
2830
+ # Corresponds to the JSON property `unreachable`
2831
+ # @return [Array<String>]
2832
+ attr_accessor :unreachable
2833
+
2738
2834
  # List of `WasmPlugin` resources.
2739
2835
  # Corresponds to the JSON property `wasmPlugins`
2740
2836
  # @return [Array<Google::Apis::NetworkservicesV1beta1::WasmPlugin>]
@@ -2747,6 +2843,7 @@ module Google
2747
2843
  # Update properties of this object
2748
2844
  def update!(**args)
2749
2845
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2846
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2750
2847
  @wasm_plugins = args[:wasm_plugins] if args.key?(:wasm_plugins)
2751
2848
  end
2752
2849
  end
@@ -3141,9 +3238,9 @@ module Google
3141
3238
  end
3142
3239
 
3143
3240
  # ServiceBinding can be used to: - Bind a Service Directory Service to be used
3144
- # in a BackendService resource. - Bind a Private Service Connect producer
3145
- # service to be used in consumer Cloud Service Mesh or Application Load
3146
- # Balancers.
3241
+ # in a BackendService resource. This feature will be deprecated soon. - Bind a
3242
+ # Private Service Connect producer service to be used in consumer Cloud Service
3243
+ # Mesh or Application Load Balancers.
3147
3244
  class ServiceBinding
3148
3245
  include Google::Apis::Core::Hashable
3149
3246
 
@@ -3169,7 +3266,8 @@ module Google
3169
3266
  attr_accessor :name
3170
3267
 
3171
3268
  # Optional. The full Service Directory Service name of the format `projects/*/
3172
- # locations/*/namespaces/*/services/*`. This field must be set.
3269
+ # locations/*/namespaces/*/services/*`. This field is for Service Directory
3270
+ # integration which will be deprecated soon.
3173
3271
  # Corresponds to the JSON property `service`
3174
3272
  # @return [String]
3175
3273
  attr_accessor :service
@@ -3177,7 +3275,8 @@ module Google
3177
3275
  # Output only. The unique identifier of the Service Directory Service against
3178
3276
  # which the ServiceBinding resource is validated. This is populated when the
3179
3277
  # Service Binding resource is used in another resource (like Backend Service).
3180
- # This is of the UUID4 format.
3278
+ # This is of the UUID4 format. This field is for Service Directory integration
3279
+ # which will be deprecated soon.
3181
3280
  # Corresponds to the JSON property `serviceId`
3182
3281
  # @return [String]
3183
3282
  attr_accessor :service_id
@@ -3681,7 +3780,7 @@ module Google
3681
3780
  # @return [String]
3682
3781
  attr_accessor :service_name
3683
3782
 
3684
- # Optional. Specifies the proportion of requests forwareded to the backend
3783
+ # Optional. Specifies the proportion of requests forwarded to the backend
3685
3784
  # referenced by the service_name field. This is computed as: - weight/Sum(
3686
3785
  # weights in destinations) Weights in all destinations does not need to sum up
3687
3786
  # 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.48.0"
19
+ GEM_VERSION = "0.50.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 = "20250310"
25
+ REVISION = "20250318"
26
26
  end
27
27
  end
28
28
  end
@@ -640,11 +640,14 @@ 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'
646
647
  hash :metadata, as: 'metadata'
647
648
  property :name, as: 'name'
649
+ property :request_body_send_mode, as: 'requestBodySendMode'
650
+ property :response_body_send_mode, as: 'responseBodySendMode'
648
651
  property :service, as: 'service'
649
652
  collection :supported_events, as: 'supportedEvents'
650
653
  property :timeout, as: 'timeout'
@@ -1082,6 +1085,7 @@ module Google
1082
1085
  collection :endpoint_policies, as: 'endpointPolicies', class: Google::Apis::NetworkservicesV1beta1::EndpointPolicy, decorator: Google::Apis::NetworkservicesV1beta1::EndpointPolicy::Representation
1083
1086
 
1084
1087
  property :next_page_token, as: 'nextPageToken'
1088
+ collection :unreachable, as: 'unreachable'
1085
1089
  end
1086
1090
  end
1087
1091
 
@@ -1111,6 +1115,7 @@ module Google
1111
1115
  collection :grpc_routes, as: 'grpcRoutes', class: Google::Apis::NetworkservicesV1beta1::GrpcRoute, decorator: Google::Apis::NetworkservicesV1beta1::GrpcRoute::Representation
1112
1116
 
1113
1117
  property :next_page_token, as: 'nextPageToken'
1118
+ collection :unreachable, as: 'unreachable'
1114
1119
  end
1115
1120
  end
1116
1121
 
@@ -1120,6 +1125,7 @@ module Google
1120
1125
  collection :http_routes, as: 'httpRoutes', class: Google::Apis::NetworkservicesV1beta1::HttpRoute, decorator: Google::Apis::NetworkservicesV1beta1::HttpRoute::Representation
1121
1126
 
1122
1127
  property :next_page_token, as: 'nextPageToken'
1128
+ collection :unreachable, as: 'unreachable'
1123
1129
  end
1124
1130
  end
1125
1131
 
@@ -1207,6 +1213,7 @@ module Google
1207
1213
  property :next_page_token, as: 'nextPageToken'
1208
1214
  collection :tcp_routes, as: 'tcpRoutes', class: Google::Apis::NetworkservicesV1beta1::TcpRoute, decorator: Google::Apis::NetworkservicesV1beta1::TcpRoute::Representation
1209
1215
 
1216
+ collection :unreachable, as: 'unreachable'
1210
1217
  end
1211
1218
  end
1212
1219
 
@@ -1216,6 +1223,7 @@ module Google
1216
1223
  property :next_page_token, as: 'nextPageToken'
1217
1224
  collection :tls_routes, as: 'tlsRoutes', class: Google::Apis::NetworkservicesV1beta1::TlsRoute, decorator: Google::Apis::NetworkservicesV1beta1::TlsRoute::Representation
1218
1225
 
1226
+ collection :unreachable, as: 'unreachable'
1219
1227
  end
1220
1228
  end
1221
1229
 
@@ -1223,6 +1231,7 @@ module Google
1223
1231
  # @private
1224
1232
  class Representation < Google::Apis::Core::JsonRepresentation
1225
1233
  property :next_page_token, as: 'nextPageToken'
1234
+ collection :unreachable, as: 'unreachable'
1226
1235
  collection :wasm_plugin_versions, as: 'wasmPluginVersions', class: Google::Apis::NetworkservicesV1beta1::WasmPluginVersion, decorator: Google::Apis::NetworkservicesV1beta1::WasmPluginVersion::Representation
1227
1236
 
1228
1237
  end
@@ -1232,6 +1241,7 @@ module Google
1232
1241
  # @private
1233
1242
  class Representation < Google::Apis::Core::JsonRepresentation
1234
1243
  property :next_page_token, as: 'nextPageToken'
1244
+ collection :unreachable, as: 'unreachable'
1235
1245
  collection :wasm_plugins, as: 'wasmPlugins', class: Google::Apis::NetworkservicesV1beta1::WasmPlugin, decorator: Google::Apis::NetworkservicesV1beta1::WasmPlugin::Representation
1236
1246
 
1237
1247
  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.48.0
4
+ version: 0.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.48.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.50.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: