aws-sdk-finspace 1.30.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c5ae03fabbaf70158b469645b5c14cc297a8ce902208d235ef84025d3c41c9e
4
- data.tar.gz: 9a99a593e5c1b9f9dc9b89b33e036226449ccb64986f0ae700f719f4485d0b9a
3
+ metadata.gz: 2fe73eddb6d56bfe1914b3af014a0de98286f25a9fb9e66337fdaecfc2f366c6
4
+ data.tar.gz: 1c7d7f29f92f6c9f0f34781b2990993f298ed4fe19a0ab66b69e55e0205fa1f4
5
5
  SHA512:
6
- metadata.gz: 2fd0e3f6f8347c983534ad6e4ff1148cb708d64ecf3bb910b890c54e925d5a9ae779fb4245a45f4df1cac86171c1631175e6d815951942b8878fc5df748fce6b
7
- data.tar.gz: aa9a49c3e5745963d42f353e7aeab202c317a558c0d2d6f122e71dce11824a4cd413fa4199b4d66cfa174b1f05a9fa0644b05a8fd779552902c30d65a7673297
6
+ metadata.gz: c082d875816ac8ef4cb30ac91c9204c0ffb040595dfb9fde46cea9fe56bb4e7011a6d2887b4b28cd26b7a03a9aeb81c4ecc3fa1eae9c3b55d3d97daf77c2764d
7
+ data.tar.gz: 8cf4b482c9afe119617b438c9e74fe43f2c75cb3f61a59c5bb7eae6d98f67b81163c15c5e4257a378b188da8714c7658b8e0345d4d15e584e8c0b84856f21965
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.31.0 (2024-03-26)
10
+ ------------------
11
+
12
+ * Feature - Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation.
13
+
4
14
  1.30.0 (2024-03-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.32.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -73,6 +74,7 @@ module Aws::Finspace
73
74
  add_plugin(Aws::Plugins::ResponsePaging)
74
75
  add_plugin(Aws::Plugins::StubResponses)
75
76
  add_plugin(Aws::Plugins::IdempotencyToken)
77
+ add_plugin(Aws::Plugins::InvocationId)
76
78
  add_plugin(Aws::Plugins::JsonvalueConverter)
77
79
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
78
80
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -198,10 +200,17 @@ module Aws::Finspace
198
200
  # When set to 'true' the request body will not be compressed
199
201
  # for supported operations.
200
202
  #
201
- # @option options [String] :endpoint
202
- # The client endpoint is normally constructed from the `:region`
203
- # option. You should only configure an `:endpoint` when connecting
204
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
203
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
204
+ # Normally you should not configure the `:endpoint` option
205
+ # directly. This is normally constructed from the `:region`
206
+ # option. Configuring `:endpoint` is normally reserved for
207
+ # connecting to test or custom endpoints. The endpoint should
208
+ # be a URI formatted like:
209
+ #
210
+ # 'http://example.com'
211
+ # 'https://example.com'
212
+ # 'http://example.com:123'
213
+ #
205
214
  #
206
215
  # @option options [Integer] :endpoint_cache_max_entries (1000)
207
216
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -339,50 +348,65 @@ module Aws::Finspace
339
348
  # @option options [Aws::Finspace::EndpointProvider] :endpoint_provider
340
349
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Finspace::EndpointParameters`
341
350
  #
342
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
343
- # requests through. Formatted like 'http://proxy.com:123'.
344
- #
345
- # @option options [Float] :http_open_timeout (15) The number of
346
- # seconds to wait when opening a HTTP session before raising a
347
- # `Timeout::Error`.
348
- #
349
- # @option options [Float] :http_read_timeout (60) The default
350
- # number of seconds to wait for response data. This value can
351
- # safely be set per-request on the session.
352
- #
353
- # @option options [Float] :http_idle_timeout (5) The number of
354
- # seconds a connection is allowed to sit idle before it is
355
- # considered stale. Stale connections are closed and removed
356
- # from the pool before making a request.
357
- #
358
- # @option options [Float] :http_continue_timeout (1) The number of
359
- # seconds to wait for a 100-continue response before sending the
360
- # request body. This option has no effect unless the request has
361
- # "Expect" header set to "100-continue". Defaults to `nil` which
362
- # disables this behaviour. This value can safely be set per
363
- # request on the session.
364
- #
365
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
366
- # in seconds.
367
- #
368
- # @option options [Boolean] :http_wire_trace (false) When `true`,
369
- # HTTP debug output will be sent to the `:logger`.
351
+ # @option options [Float] :http_continue_timeout (1)
352
+ # The number of seconds to wait for a 100-continue response before sending the
353
+ # request body. This option has no effect unless the request has "Expect"
354
+ # header set to "100-continue". Defaults to `nil` which disables this
355
+ # behaviour. This value can safely be set per request on the session.
356
+ #
357
+ # @option options [Float] :http_idle_timeout (5)
358
+ # The number of seconds a connection is allowed to sit idle before it
359
+ # is considered stale. Stale connections are closed and removed from the
360
+ # pool before making a request.
361
+ #
362
+ # @option options [Float] :http_open_timeout (15)
363
+ # The default number of seconds to wait for response data.
364
+ # This value can safely be set per-request on the session.
365
+ #
366
+ # @option options [URI::HTTP,String] :http_proxy
367
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
368
+ #
369
+ # @option options [Float] :http_read_timeout (60)
370
+ # The default number of seconds to wait for response data.
371
+ # This value can safely be set per-request on the session.
372
+ #
373
+ # @option options [Boolean] :http_wire_trace (false)
374
+ # When `true`, HTTP debug output will be sent to the `:logger`.
375
+ #
376
+ # @option options [Proc] :on_chunk_received
377
+ # When a Proc object is provided, it will be used as callback when each chunk
378
+ # of the response body is received. It provides three arguments: the chunk,
379
+ # the number of bytes received, and the total number of
380
+ # bytes in the response (or nil if the server did not send a `content-length`).
381
+ #
382
+ # @option options [Proc] :on_chunk_sent
383
+ # When a Proc object is provided, it will be used as callback when each chunk
384
+ # of the request body is sent. It provides three arguments: the chunk,
385
+ # the number of bytes read from the body, and the total number of
386
+ # bytes in the body.
387
+ #
388
+ # @option options [Boolean] :raise_response_errors (true)
389
+ # When `true`, response errors are raised.
390
+ #
391
+ # @option options [String] :ssl_ca_bundle
392
+ # Full path to the SSL certificate authority bundle file that should be used when
393
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
394
+ # `:ssl_ca_directory` the the system default will be used if available.
395
+ #
396
+ # @option options [String] :ssl_ca_directory
397
+ # Full path of the directory that contains the unbundled SSL certificate
398
+ # authority files for verifying peer certificates. If you do
399
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
400
+ # default will be used if available.
370
401
  #
371
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
372
- # SSL peer certificates are verified when establishing a
373
- # connection.
402
+ # @option options [String] :ssl_ca_store
403
+ # Sets the X509::Store to verify peer certificate.
374
404
  #
375
- # @option options [String] :ssl_ca_bundle Full path to the SSL
376
- # certificate authority bundle file that should be used when
377
- # verifying peer certificates. If you do not pass
378
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
379
- # will be used if available.
405
+ # @option options [Float] :ssl_timeout
406
+ # Sets the SSL timeout in seconds
380
407
  #
381
- # @option options [String] :ssl_ca_directory Full path of the
382
- # directory that contains the unbundled SSL certificate
383
- # authority files for verifying peer certificates. If you do
384
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
385
- # system default will be used if available.
408
+ # @option options [Boolean] :ssl_verify_peer (true)
409
+ # When `true`, SSL peer certificates are verified when establishing a connection.
386
410
  #
387
411
  def initialize(*args)
388
412
  super
@@ -491,7 +515,7 @@ module Aws::Finspace
491
515
  # @option params [required, Array<Types::ChangeRequest>] :change_requests
492
516
  # A list of change request objects that are run in order. A change
493
517
  # request object consists of `changeType` , `s3Path`, and `dbPath`. A
494
- # changeType can has the following values:
518
+ # changeType can have the following values:
495
519
  #
496
520
  # * PUT – Adds or updates files in a database.
497
521
  #
@@ -1479,6 +1503,36 @@ module Aws::Finspace
1479
1503
  req.send_request(options)
1480
1504
  end
1481
1505
 
1506
+ # Deletes the specified nodes from a cluster.
1507
+ #
1508
+ # @option params [required, String] :environment_id
1509
+ # A unique identifier for the kdb environment.
1510
+ #
1511
+ # @option params [required, String] :cluster_name
1512
+ # The name of the cluster, for which you want to delete the nodes.
1513
+ #
1514
+ # @option params [required, String] :node_id
1515
+ # A unique identifier for the node that you want to delete.
1516
+ #
1517
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1518
+ #
1519
+ # @example Request syntax with placeholder values
1520
+ #
1521
+ # resp = client.delete_kx_cluster_node({
1522
+ # environment_id: "KxEnvironmentId", # required
1523
+ # cluster_name: "KxClusterName", # required
1524
+ # node_id: "KxClusterNodeIdString", # required
1525
+ # })
1526
+ #
1527
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/DeleteKxClusterNode AWS API Documentation
1528
+ #
1529
+ # @overload delete_kx_cluster_node(params = {})
1530
+ # @param [Hash] params ({})
1531
+ def delete_kx_cluster_node(params = {}, options = {})
1532
+ req = build_request(:delete_kx_cluster_node, params)
1533
+ req.send_request(options)
1534
+ end
1535
+
1482
1536
  # Deletes the specified database and all of its associated data. This
1483
1537
  # action is irreversible. You must copy any data out of the database
1484
1538
  # before deleting it if the data is to be retained.
@@ -2444,6 +2498,7 @@ module Aws::Finspace
2444
2498
  # resp.nodes[0].node_id #=> String
2445
2499
  # resp.nodes[0].availability_zone_id #=> String
2446
2500
  # resp.nodes[0].launch_time #=> Time
2501
+ # resp.nodes[0].status #=> String, one of "RUNNING", "PROVISIONING"
2447
2502
  # resp.next_token #=> String
2448
2503
  #
2449
2504
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/ListKxClusterNodes AWS API Documentation
@@ -3691,7 +3746,7 @@ module Aws::Finspace
3691
3746
  params: params,
3692
3747
  config: config)
3693
3748
  context[:gem_name] = 'aws-sdk-finspace'
3694
- context[:gem_version] = '1.30.0'
3749
+ context[:gem_version] = '1.32.0'
3695
3750
  Seahorse::Client::Request.new(handlers, context)
3696
3751
  end
3697
3752
 
@@ -63,6 +63,8 @@ module Aws::Finspace
63
63
  DbPaths = Shapes::ListShape.new(name: 'DbPaths')
64
64
  DeleteEnvironmentRequest = Shapes::StructureShape.new(name: 'DeleteEnvironmentRequest')
65
65
  DeleteEnvironmentResponse = Shapes::StructureShape.new(name: 'DeleteEnvironmentResponse')
66
+ DeleteKxClusterNodeRequest = Shapes::StructureShape.new(name: 'DeleteKxClusterNodeRequest')
67
+ DeleteKxClusterNodeResponse = Shapes::StructureShape.new(name: 'DeleteKxClusterNodeResponse')
66
68
  DeleteKxClusterRequest = Shapes::StructureShape.new(name: 'DeleteKxClusterRequest')
67
69
  DeleteKxClusterResponse = Shapes::StructureShape.new(name: 'DeleteKxClusterResponse')
68
70
  DeleteKxDatabaseRequest = Shapes::StructureShape.new(name: 'DeleteKxDatabaseRequest')
@@ -176,6 +178,7 @@ module Aws::Finspace
176
178
  KxNAS1Size = Shapes::IntegerShape.new(name: 'KxNAS1Size')
177
179
  KxNAS1Type = Shapes::StringShape.new(name: 'KxNAS1Type')
178
180
  KxNode = Shapes::StructureShape.new(name: 'KxNode')
181
+ KxNodeStatus = Shapes::StringShape.new(name: 'KxNodeStatus')
179
182
  KxNodeSummaries = Shapes::ListShape.new(name: 'KxNodeSummaries')
180
183
  KxSavedownStorageConfiguration = Shapes::StructureShape.new(name: 'KxSavedownStorageConfiguration')
181
184
  KxSavedownStorageSize = Shapes::IntegerShape.new(name: 'KxSavedownStorageSize')
@@ -554,6 +557,13 @@ module Aws::Finspace
554
557
 
555
558
  DeleteEnvironmentResponse.struct_class = Types::DeleteEnvironmentResponse
556
559
 
560
+ DeleteKxClusterNodeRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: KxEnvironmentId, required: true, location: "uri", location_name: "environmentId"))
561
+ DeleteKxClusterNodeRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: KxClusterName, required: true, location: "uri", location_name: "clusterName"))
562
+ DeleteKxClusterNodeRequest.add_member(:node_id, Shapes::ShapeRef.new(shape: KxClusterNodeIdString, required: true, location: "uri", location_name: "nodeId"))
563
+ DeleteKxClusterNodeRequest.struct_class = Types::DeleteKxClusterNodeRequest
564
+
565
+ DeleteKxClusterNodeResponse.struct_class = Types::DeleteKxClusterNodeResponse
566
+
557
567
  DeleteKxClusterRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: KxEnvironmentId, required: true, location: "uri", location_name: "environmentId"))
558
568
  DeleteKxClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: KxClusterName, required: true, location: "uri", location_name: "clusterName"))
559
569
  DeleteKxClusterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
@@ -949,6 +959,7 @@ module Aws::Finspace
949
959
  KxNode.add_member(:node_id, Shapes::ShapeRef.new(shape: KxClusterNodeIdString, location_name: "nodeId"))
950
960
  KxNode.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
951
961
  KxNode.add_member(:launch_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "launchTime"))
962
+ KxNode.add_member(:status, Shapes::ShapeRef.new(shape: KxNodeStatus, location_name: "status"))
952
963
  KxNode.struct_class = Types::KxNode
953
964
 
954
965
  KxNodeSummaries.member = Shapes::ShapeRef.new(shape: KxNode)
@@ -1519,6 +1530,19 @@ module Aws::Finspace
1519
1530
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1520
1531
  end)
1521
1532
 
1533
+ api.add_operation(:delete_kx_cluster_node, Seahorse::Model::Operation.new.tap do |o|
1534
+ o.name = "DeleteKxClusterNode"
1535
+ o.http_method = "DELETE"
1536
+ o.http_request_uri = "/kx/environments/{environmentId}/clusters/{clusterName}/nodes/{nodeId}"
1537
+ o.input = Shapes::ShapeRef.new(shape: DeleteKxClusterNodeRequest)
1538
+ o.output = Shapes::ShapeRef.new(shape: DeleteKxClusterNodeResponse)
1539
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1540
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1541
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1542
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1543
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1544
+ end)
1545
+
1522
1546
  api.add_operation(:delete_kx_database, Seahorse::Model::Operation.new.tap do |o|
1523
1547
  o.name = "DeleteKxDatabase"
1524
1548
  o.http_method = "DELETE"
@@ -166,6 +166,20 @@ module Aws::Finspace
166
166
  end
167
167
  end
168
168
 
169
+ class DeleteKxClusterNode
170
+ def self.build(context)
171
+ unless context.config.regional_endpoint
172
+ endpoint = context.config.endpoint.to_s
173
+ end
174
+ Aws::Finspace::EndpointParameters.new(
175
+ region: context.config.region,
176
+ use_dual_stack: context.config.use_dualstack_endpoint,
177
+ use_fips: context.config.use_fips_endpoint,
178
+ endpoint: endpoint,
179
+ )
180
+ end
181
+ end
182
+
169
183
  class DeleteKxDatabase
170
184
  def self.build(context)
171
185
  unless context.config.regional_endpoint
@@ -80,6 +80,8 @@ module Aws::Finspace
80
80
  Aws::Finspace::Endpoints::DeleteEnvironment.build(context)
81
81
  when :delete_kx_cluster
82
82
  Aws::Finspace::Endpoints::DeleteKxCluster.build(context)
83
+ when :delete_kx_cluster_node
84
+ Aws::Finspace::Endpoints::DeleteKxClusterNode.build(context)
83
85
  when :delete_kx_database
84
86
  Aws::Finspace::Endpoints::DeleteKxDatabase.build(context)
85
87
  when :delete_kx_dataview
@@ -293,7 +293,7 @@ module Aws::Finspace
293
293
  # @!attribute [rw] change_requests
294
294
  # A list of change request objects that are run in order. A change
295
295
  # request object consists of `changeType` , `s3Path`, and `dbPath`. A
296
- # changeType can has the following values:
296
+ # changeType can have the following values:
297
297
  #
298
298
  # * PUT – Adds or updates files in a database.
299
299
  #
@@ -1534,6 +1534,32 @@ module Aws::Finspace
1534
1534
  #
1535
1535
  class DeleteEnvironmentResponse < Aws::EmptyStructure; end
1536
1536
 
1537
+ # @!attribute [rw] environment_id
1538
+ # A unique identifier for the kdb environment.
1539
+ # @return [String]
1540
+ #
1541
+ # @!attribute [rw] cluster_name
1542
+ # The name of the cluster, for which you want to delete the nodes.
1543
+ # @return [String]
1544
+ #
1545
+ # @!attribute [rw] node_id
1546
+ # A unique identifier for the node that you want to delete.
1547
+ # @return [String]
1548
+ #
1549
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/DeleteKxClusterNodeRequest AWS API Documentation
1550
+ #
1551
+ class DeleteKxClusterNodeRequest < Struct.new(
1552
+ :environment_id,
1553
+ :cluster_name,
1554
+ :node_id)
1555
+ SENSITIVE = []
1556
+ include Aws::Structure
1557
+ end
1558
+
1559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/DeleteKxClusterNodeResponse AWS API Documentation
1560
+ #
1561
+ class DeleteKxClusterNodeResponse < Aws::EmptyStructure; end
1562
+
1537
1563
  # @!attribute [rw] environment_id
1538
1564
  # A unique identifier for the kdb environment.
1539
1565
  # @return [String]
@@ -3679,7 +3705,10 @@ module Aws::Finspace
3679
3705
  # @return [String]
3680
3706
  #
3681
3707
  # @!attribute [rw] size
3682
- # The size of the network attached storage.
3708
+ # The size of the network attached storage. For storage type
3709
+ # `SSD_1000` and `SSD_250` you can select the minimum size as 1200 GB
3710
+ # or increments of 2400 GB. For storage type `HDD_12` you can select
3711
+ # the minimum size as 6000 GB or increments of 6000 GB.
3683
3712
  # @return [Integer]
3684
3713
  #
3685
3714
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxNAS1Configuration AWS API Documentation
@@ -3708,12 +3737,21 @@ module Aws::Finspace
3708
3737
  # November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
3709
3738
  # @return [Time]
3710
3739
  #
3740
+ # @!attribute [rw] status
3741
+ # Specifies the status of the cluster nodes.
3742
+ #
3743
+ # * `RUNNING` – The node is actively serving.
3744
+ #
3745
+ # * `PROVISIONING` – The node is being prepared.
3746
+ # @return [String]
3747
+ #
3711
3748
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxNode AWS API Documentation
3712
3749
  #
3713
3750
  class KxNode < Struct.new(
3714
3751
  :node_id,
3715
3752
  :availability_zone_id,
3716
- :launch_time)
3753
+ :launch_time,
3754
+ :status)
3717
3755
  SENSITIVE = []
3718
3756
  include Aws::Structure
3719
3757
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-finspace/customizations'
52
52
  # @!group service
53
53
  module Aws::Finspace
54
54
 
55
- GEM_VERSION = '1.30.0'
55
+ GEM_VERSION = '1.32.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -414,6 +414,17 @@ module Aws
414
414
  ) -> _DeleteKxClusterResponseSuccess
415
415
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxClusterResponseSuccess
416
416
 
417
+ interface _DeleteKxClusterNodeResponseSuccess
418
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxClusterNodeResponse]
419
+ end
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Finspace/Client.html#delete_kx_cluster_node-instance_method
421
+ def delete_kx_cluster_node: (
422
+ environment_id: ::String,
423
+ cluster_name: ::String,
424
+ node_id: ::String
425
+ ) -> _DeleteKxClusterNodeResponseSuccess
426
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxClusterNodeResponseSuccess
427
+
417
428
  interface _DeleteKxDatabaseResponseSuccess
418
429
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxDatabaseResponse]
419
430
  end
data/sig/types.rbs CHANGED
@@ -293,6 +293,16 @@ module Aws::Finspace
293
293
  class DeleteEnvironmentResponse < Aws::EmptyStructure
294
294
  end
295
295
 
296
+ class DeleteKxClusterNodeRequest
297
+ attr_accessor environment_id: ::String
298
+ attr_accessor cluster_name: ::String
299
+ attr_accessor node_id: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class DeleteKxClusterNodeResponse < Aws::EmptyStructure
304
+ end
305
+
296
306
  class DeleteKxClusterRequest
297
307
  attr_accessor environment_id: ::String
298
308
  attr_accessor cluster_name: ::String
@@ -766,6 +776,7 @@ module Aws::Finspace
766
776
  attr_accessor node_id: ::String
767
777
  attr_accessor availability_zone_id: ::String
768
778
  attr_accessor launch_time: ::Time
779
+ attr_accessor status: ("RUNNING" | "PROVISIONING")
769
780
  SENSITIVE: []
770
781
  end
771
782
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-finspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-19 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement