google-apis-networkservices_v1beta1 0.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa6cd9297f61bab04929ecb05e5bcfc57c7f57ea75297ae6b00b542bb3c2f6f0
4
- data.tar.gz: 3c7b7a5ad51ac56f013f9d79a99827b457191469d2a8544472b3ca092fb6ea45
3
+ metadata.gz: 2a960c3211be1ae68854a0e3bfb1a6bd1ec7e110fbd60805bca07ea6fd63502b
4
+ data.tar.gz: 39f076edf20e0ef74b97066dc32a0d26e171a29ce9c3b179f28c3ab64ffe24f6
5
5
  SHA512:
6
- metadata.gz: 5788868601705b0e5b59ada1311e12f89d516f6e5caba30072dc538f1645d25d75485f32da01645e1360282f37cf7c65478e9ac8cefa69f5db6ef73aa93efe5e
7
- data.tar.gz: 68317180cfcd4d6ede00ba4eb62233abcebe54b7257dbe9d606acc4af06eafcecf01524bda42fb338e673dcd26def7c6da87c046739d48fffe556ae275077c7d
6
+ metadata.gz: 502a576f3e4c787442aa1a3f50c15b73cc3f3ae90f6b773340e3ae6a087ed0b72a3ca9fcec93c41b5e98117a0e411e858eb4713b98e0c3baafde67096f5be5a0
7
+ data.tar.gz: 5328c33617d27c931172d7a31a4b58fac6416d0d13e5c10e1a025d7f57693663f68525782bd7506e837411ca3f98cbc7f5211efad4bdfd52412f74d3df84c3d1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.48.0 (2025-03-16)
4
8
 
5
9
  * 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
@@ -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
 
@@ -2354,6 +2376,13 @@ module Google
2354
2376
  # @return [String]
2355
2377
  attr_accessor :next_page_token
2356
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
+
2357
2386
  def initialize(**args)
2358
2387
  update!(**args)
2359
2388
  end
@@ -2362,6 +2391,7 @@ module Google
2362
2391
  def update!(**args)
2363
2392
  @grpc_routes = args[:grpc_routes] if args.key?(:grpc_routes)
2364
2393
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2394
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2365
2395
  end
2366
2396
  end
2367
2397
 
@@ -2381,6 +2411,13 @@ module Google
2381
2411
  # @return [String]
2382
2412
  attr_accessor :next_page_token
2383
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
+
2384
2421
  def initialize(**args)
2385
2422
  update!(**args)
2386
2423
  end
@@ -2389,6 +2426,7 @@ module Google
2389
2426
  def update!(**args)
2390
2427
  @http_routes = args[:http_routes] if args.key?(:http_routes)
2391
2428
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2429
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2392
2430
  end
2393
2431
  end
2394
2432
 
@@ -2659,6 +2697,13 @@ module Google
2659
2697
  # @return [Array<Google::Apis::NetworkservicesV1beta1::TcpRoute>]
2660
2698
  attr_accessor :tcp_routes
2661
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
+
2662
2707
  def initialize(**args)
2663
2708
  update!(**args)
2664
2709
  end
@@ -2667,6 +2712,7 @@ module Google
2667
2712
  def update!(**args)
2668
2713
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2669
2714
  @tcp_routes = args[:tcp_routes] if args.key?(:tcp_routes)
2715
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2670
2716
  end
2671
2717
  end
2672
2718
 
@@ -2686,6 +2732,13 @@ module Google
2686
2732
  # @return [Array<Google::Apis::NetworkservicesV1beta1::TlsRoute>]
2687
2733
  attr_accessor :tls_routes
2688
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
+
2689
2742
  def initialize(**args)
2690
2743
  update!(**args)
2691
2744
  end
@@ -2694,6 +2747,7 @@ module Google
2694
2747
  def update!(**args)
2695
2748
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2696
2749
  @tls_routes = args[:tls_routes] if args.key?(:tls_routes)
2750
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2697
2751
  end
2698
2752
  end
2699
2753
 
@@ -2708,6 +2762,13 @@ module Google
2708
2762
  # @return [String]
2709
2763
  attr_accessor :next_page_token
2710
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
+
2711
2772
  # List of `WasmPluginVersion` resources.
2712
2773
  # Corresponds to the JSON property `wasmPluginVersions`
2713
2774
  # @return [Array<Google::Apis::NetworkservicesV1beta1::WasmPluginVersion>]
@@ -2720,6 +2781,7 @@ module Google
2720
2781
  # Update properties of this object
2721
2782
  def update!(**args)
2722
2783
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2784
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2723
2785
  @wasm_plugin_versions = args[:wasm_plugin_versions] if args.key?(:wasm_plugin_versions)
2724
2786
  end
2725
2787
  end
@@ -2735,6 +2797,13 @@ module Google
2735
2797
  # @return [String]
2736
2798
  attr_accessor :next_page_token
2737
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
+
2738
2807
  # List of `WasmPlugin` resources.
2739
2808
  # Corresponds to the JSON property `wasmPlugins`
2740
2809
  # @return [Array<Google::Apis::NetworkservicesV1beta1::WasmPlugin>]
@@ -2747,6 +2816,7 @@ module Google
2747
2816
  # Update properties of this object
2748
2817
  def update!(**args)
2749
2818
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2819
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2750
2820
  @wasm_plugins = args[:wasm_plugins] if args.key?(:wasm_plugins)
2751
2821
  end
2752
2822
  end
@@ -3141,9 +3211,9 @@ module Google
3141
3211
  end
3142
3212
 
3143
3213
  # 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.
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.
3147
3217
  class ServiceBinding
3148
3218
  include Google::Apis::Core::Hashable
3149
3219
 
@@ -3169,7 +3239,8 @@ module Google
3169
3239
  attr_accessor :name
3170
3240
 
3171
3241
  # Optional. The full Service Directory Service name of the format `projects/*/
3172
- # locations/*/namespaces/*/services/*`. This field must be set.
3242
+ # locations/*/namespaces/*/services/*`. This field is for Service Directory
3243
+ # integration which will be deprecated soon.
3173
3244
  # Corresponds to the JSON property `service`
3174
3245
  # @return [String]
3175
3246
  attr_accessor :service
@@ -3177,7 +3248,8 @@ module Google
3177
3248
  # Output only. The unique identifier of the Service Directory Service against
3178
3249
  # which the ServiceBinding resource is validated. This is populated when the
3179
3250
  # Service Binding resource is used in another resource (like Backend Service).
3180
- # 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.
3181
3253
  # Corresponds to the JSON property `serviceId`
3182
3254
  # @return [String]
3183
3255
  attr_accessor :service_id
@@ -3681,7 +3753,7 @@ module Google
3681
3753
  # @return [String]
3682
3754
  attr_accessor :service_name
3683
3755
 
3684
- # Optional. Specifies the proportion of requests forwareded to the backend
3756
+ # Optional. Specifies the proportion of requests forwarded to the backend
3685
3757
  # referenced by the service_name field. This is computed as: - weight/Sum(
3686
3758
  # weights in destinations) Weights in all destinations does not need to sum up
3687
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.48.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 = "20250310"
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
 
@@ -1111,6 +1113,7 @@ module Google
1111
1113
  collection :grpc_routes, as: 'grpcRoutes', class: Google::Apis::NetworkservicesV1beta1::GrpcRoute, decorator: Google::Apis::NetworkservicesV1beta1::GrpcRoute::Representation
1112
1114
 
1113
1115
  property :next_page_token, as: 'nextPageToken'
1116
+ collection :unreachable, as: 'unreachable'
1114
1117
  end
1115
1118
  end
1116
1119
 
@@ -1120,6 +1123,7 @@ module Google
1120
1123
  collection :http_routes, as: 'httpRoutes', class: Google::Apis::NetworkservicesV1beta1::HttpRoute, decorator: Google::Apis::NetworkservicesV1beta1::HttpRoute::Representation
1121
1124
 
1122
1125
  property :next_page_token, as: 'nextPageToken'
1126
+ collection :unreachable, as: 'unreachable'
1123
1127
  end
1124
1128
  end
1125
1129
 
@@ -1207,6 +1211,7 @@ module Google
1207
1211
  property :next_page_token, as: 'nextPageToken'
1208
1212
  collection :tcp_routes, as: 'tcpRoutes', class: Google::Apis::NetworkservicesV1beta1::TcpRoute, decorator: Google::Apis::NetworkservicesV1beta1::TcpRoute::Representation
1209
1213
 
1214
+ collection :unreachable, as: 'unreachable'
1210
1215
  end
1211
1216
  end
1212
1217
 
@@ -1216,6 +1221,7 @@ module Google
1216
1221
  property :next_page_token, as: 'nextPageToken'
1217
1222
  collection :tls_routes, as: 'tlsRoutes', class: Google::Apis::NetworkservicesV1beta1::TlsRoute, decorator: Google::Apis::NetworkservicesV1beta1::TlsRoute::Representation
1218
1223
 
1224
+ collection :unreachable, as: 'unreachable'
1219
1225
  end
1220
1226
  end
1221
1227
 
@@ -1223,6 +1229,7 @@ module Google
1223
1229
  # @private
1224
1230
  class Representation < Google::Apis::Core::JsonRepresentation
1225
1231
  property :next_page_token, as: 'nextPageToken'
1232
+ collection :unreachable, as: 'unreachable'
1226
1233
  collection :wasm_plugin_versions, as: 'wasmPluginVersions', class: Google::Apis::NetworkservicesV1beta1::WasmPluginVersion, decorator: Google::Apis::NetworkservicesV1beta1::WasmPluginVersion::Representation
1227
1234
 
1228
1235
  end
@@ -1232,6 +1239,7 @@ module Google
1232
1239
  # @private
1233
1240
  class Representation < Google::Apis::Core::JsonRepresentation
1234
1241
  property :next_page_token, as: 'nextPageToken'
1242
+ collection :unreachable, as: 'unreachable'
1235
1243
  collection :wasm_plugins, as: 'wasmPlugins', class: Google::Apis::NetworkservicesV1beta1::WasmPlugin, decorator: Google::Apis::NetworkservicesV1beta1::WasmPlugin::Representation
1236
1244
 
1237
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.48.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-16 00:00:00.000000000 Z
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.48.0
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: