aws-sdk-finspace 1.29.0 → 1.31.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: 3e8d46c2c1fda37ca6ee12d4c4b06c53687c9414a21f9a9f9aa00af35bceb9e3
4
- data.tar.gz: 32c5babbb338e73853fea69e2b9704af566687b33c4342b5d25d33979f5a8236
3
+ metadata.gz: 344ce866da0e40a05ef136078c92c19b364e572d7e0283c8564ad8c5b7907be1
4
+ data.tar.gz: fd213f92b8843dd5d61412d3d4bf2d01c80fa1b579ef98ac057e78c010b4536c
5
5
  SHA512:
6
- metadata.gz: 78f5fd8b7b3c9ccb22bb8411fba17e5fa35dbd8f4ea1b153c87560d8ab30fdd7ae392d86db8836702df7f167c8937a72a383b217be5b7dae1df5b1c271903aca
7
- data.tar.gz: aa527d7e0e017f09cb3c2222a298c27e0fb4a1f69bd9ec6e9f2dfbffa4c6331a4e13d249e7aed766847f7e63f5070983689628a4640e608eda1038bf30ab4317
6
+ metadata.gz: 1538c3719c00912b7e60c33b80a75d8c99bf35c73fd76a02a060d370fc52afd3ae5a282239a320291a864244ae80050303c981406f7301db3f72dfa353bbcb7d
7
+ data.tar.gz: 2b46268650b6a93b254da8ccd97d08281eb3cef9061c628a7e15c10d8c40ada5e3d038185bf804bcc54c429ec4d39b7a7d785b2be61fa6e3374dcf1e087253c7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2024-03-26)
5
+ ------------------
6
+
7
+ * Feature - Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation.
8
+
9
+ 1.30.0 (2024-03-19)
10
+ ------------------
11
+
12
+ * Feature - Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations.
13
+
4
14
  1.29.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.31.0
@@ -491,7 +491,7 @@ module Aws::Finspace
491
491
  # @option params [required, Array<Types::ChangeRequest>] :change_requests
492
492
  # A list of change request objects that are run in order. A change
493
493
  # request object consists of `changeType` , `s3Path`, and `dbPath`. A
494
- # changeType can has the following values:
494
+ # changeType can have the following values:
495
495
  #
496
496
  # * PUT – Adds or updates files in a database.
497
497
  #
@@ -774,6 +774,7 @@ module Aws::Finspace
774
774
  # {
775
775
  # db_paths: ["DbPath"], # required
776
776
  # volume_name: "KxVolumeName", # required
777
+ # on_demand: false,
777
778
  # },
778
779
  # ],
779
780
  # },
@@ -865,6 +866,7 @@ module Aws::Finspace
865
866
  # resp.databases[0].dataview_configuration.segment_configurations[0].db_paths #=> Array
866
867
  # resp.databases[0].dataview_configuration.segment_configurations[0].db_paths[0] #=> String
867
868
  # resp.databases[0].dataview_configuration.segment_configurations[0].volume_name #=> String
869
+ # resp.databases[0].dataview_configuration.segment_configurations[0].on_demand #=> Boolean
868
870
  # resp.cache_storage_configurations #=> Array
869
871
  # resp.cache_storage_configurations[0].type #=> String
870
872
  # resp.cache_storage_configurations[0].size #=> Integer
@@ -990,12 +992,9 @@ module Aws::Finspace
990
992
  # A unique identifier for the dataview.
991
993
  #
992
994
  # @option params [required, String] :az_mode
993
- # The number of availability zones you want to assign per cluster. This
994
- # can be one of the following
995
- #
996
- # * `SINGLE` – Assigns one availability zone per cluster.
997
- #
998
- # * `MULTI` – Assigns all the availability zones per cluster.
995
+ # The number of availability zones you want to assign per volume.
996
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
997
+ # dataview in a single AZ.
999
998
  #
1000
999
  # @option params [String] :availability_zone_id
1001
1000
  # The identifier of the availability zones.
@@ -1016,6 +1015,25 @@ module Aws::Finspace
1016
1015
  # additions and corrections automatically to the dataview, when you
1017
1016
  # ingest new changesets. The default value is false.
1018
1017
  #
1018
+ # @option params [Boolean] :read_write
1019
+ # The option to specify whether you want to make the dataview writable
1020
+ # to perform database maintenance. The following are some considerations
1021
+ # related to writable dataviews.


1022
+ #
1023
+ # * You cannot create partial writable dataviews. When you create
1024
+ # writeable dataviews you must provide the entire database path.
1025
+ #
1026
+ # * You cannot perform updates on a writeable dataview. Hence,
1027
+ # `autoUpdate` must be set as **False** if `readWrite` is **True** for
1028
+ # a dataview.
1029
+ #
1030
+ # * You must also use a unique volume for creating a writeable dataview.
1031
+ # So, if you choose a volume that is already in use by another
1032
+ # dataview, the dataview creation fails.
1033
+ #
1034
+ # * Once you create a dataview as writeable, you cannot change it to
1035
+ # read-only. So, you cannot update the `readWrite` parameter later.
1036
+ #
1019
1037
  # @option params [String] :description
1020
1038
  # A description of the dataview.
1021
1039
  #
@@ -1040,6 +1058,7 @@ module Aws::Finspace
1040
1058
  # * {Types::CreateKxDataviewResponse#segment_configurations #segment_configurations} => Array&lt;Types::KxDataviewSegmentConfiguration&gt;
1041
1059
  # * {Types::CreateKxDataviewResponse#description #description} => String
1042
1060
  # * {Types::CreateKxDataviewResponse#auto_update #auto_update} => Boolean
1061
+ # * {Types::CreateKxDataviewResponse#read_write #read_write} => Boolean
1043
1062
  # * {Types::CreateKxDataviewResponse#created_timestamp #created_timestamp} => Time
1044
1063
  # * {Types::CreateKxDataviewResponse#last_modified_timestamp #last_modified_timestamp} => Time
1045
1064
  # * {Types::CreateKxDataviewResponse#status #status} => String
@@ -1057,9 +1076,11 @@ module Aws::Finspace
1057
1076
  # {
1058
1077
  # db_paths: ["DbPath"], # required
1059
1078
  # volume_name: "KxVolumeName", # required
1079
+ # on_demand: false,
1060
1080
  # },
1061
1081
  # ],
1062
1082
  # auto_update: false,
1083
+ # read_write: false,
1063
1084
  # description: "Description",
1064
1085
  # tags: {
1065
1086
  # "TagKey" => "TagValue",
@@ -1079,8 +1100,10 @@ module Aws::Finspace
1079
1100
  # resp.segment_configurations[0].db_paths #=> Array
1080
1101
  # resp.segment_configurations[0].db_paths[0] #=> String
1081
1102
  # resp.segment_configurations[0].volume_name #=> String
1103
+ # resp.segment_configurations[0].on_demand #=> Boolean
1082
1104
  # resp.description #=> String
1083
1105
  # resp.auto_update #=> Boolean
1106
+ # resp.read_write #=> Boolean
1084
1107
  # resp.created_timestamp #=> Time
1085
1108
  # resp.last_modified_timestamp #=> Time
1086
1109
  # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED", "DELETING"
@@ -1175,6 +1198,26 @@ module Aws::Finspace
1175
1198
  # The memory and CPU capabilities of the scaling group host on which
1176
1199
  # FinSpace Managed kdb clusters will be placed.
1177
1200
  #
1201
+ # You can add one of the following values:
1202
+ #
1203
+ # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
1204
+ # memory and 16 vCPUs.
1205
+ #
1206
+ # * `kx.sg.8xlarge` – The host type with a configuration of 216 GiB
1207
+ # memory and 32 vCPUs.
1208
+ #
1209
+ # * `kx.sg.16xlarge` – The host type with a configuration of 432 GiB
1210
+ # memory and 64 vCPUs.
1211
+ #
1212
+ # * `kx.sg.32xlarge` – The host type with a configuration of 864 GiB
1213
+ # memory and 128 vCPUs.
1214
+ #
1215
+ # * `kx.sg1.16xlarge` – The host type with a configuration of 1949 GiB
1216
+ # memory and 64 vCPUs.
1217
+ #
1218
+ # * `kx.sg1.24xlarge` – The host type with a configuration of 2948 GiB
1219
+ # memory and 96 vCPUs.
1220
+ #
1178
1221
  # @option params [required, String] :availability_zone_id
1179
1222
  # The identifier of the availability zones.
1180
1223
  #
@@ -1312,8 +1355,9 @@ module Aws::Finspace
1312
1355
  # `volumeType` as *NAS\_1*.
1313
1356
  #
1314
1357
  # @option params [required, String] :az_mode
1315
- # The number of availability zones you want to assign per cluster.
1316
- # Currently, FinSpace only support `SINGLE` for volumes.
1358
+ # The number of availability zones you want to assign per volume.
1359
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
1360
+ # dataview in a single AZ.
1317
1361
  #
1318
1362
  # @option params [required, Array<String>] :availability_zone_ids
1319
1363
  # The identifier of the availability zones.
@@ -1435,6 +1479,36 @@ module Aws::Finspace
1435
1479
  req.send_request(options)
1436
1480
  end
1437
1481
 
1482
+ # Deletes the specified nodes from a cluster.
1483
+ #
1484
+ # @option params [required, String] :environment_id
1485
+ # A unique identifier for the kdb environment.
1486
+ #
1487
+ # @option params [required, String] :cluster_name
1488
+ # The name of the cluster, for which you want to delete the nodes.
1489
+ #
1490
+ # @option params [required, String] :node_id
1491
+ # A unique identifier for the node that you want to delete.
1492
+ #
1493
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1494
+ #
1495
+ # @example Request syntax with placeholder values
1496
+ #
1497
+ # resp = client.delete_kx_cluster_node({
1498
+ # environment_id: "KxEnvironmentId", # required
1499
+ # cluster_name: "KxClusterName", # required
1500
+ # node_id: "KxClusterNodeIdString", # required
1501
+ # })
1502
+ #
1503
+ # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/DeleteKxClusterNode AWS API Documentation
1504
+ #
1505
+ # @overload delete_kx_cluster_node(params = {})
1506
+ # @param [Hash] params ({})
1507
+ def delete_kx_cluster_node(params = {}, options = {})
1508
+ req = build_request(:delete_kx_cluster_node, params)
1509
+ req.send_request(options)
1510
+ end
1511
+
1438
1512
  # Deletes the specified database and all of its associated data. This
1439
1513
  # action is irreversible. You must copy any data out of the database
1440
1514
  # before deleting it if the data is to be retained.
@@ -1815,6 +1889,7 @@ module Aws::Finspace
1815
1889
  # resp.databases[0].dataview_configuration.segment_configurations[0].db_paths #=> Array
1816
1890
  # resp.databases[0].dataview_configuration.segment_configurations[0].db_paths[0] #=> String
1817
1891
  # resp.databases[0].dataview_configuration.segment_configurations[0].volume_name #=> String
1892
+ # resp.databases[0].dataview_configuration.segment_configurations[0].on_demand #=> Boolean
1818
1893
  # resp.cache_storage_configurations #=> Array
1819
1894
  # resp.cache_storage_configurations[0].type #=> String
1820
1895
  # resp.cache_storage_configurations[0].size #=> Integer
@@ -1981,6 +2056,7 @@ module Aws::Finspace
1981
2056
  # * {Types::GetKxDataviewResponse#active_versions #active_versions} => Array&lt;Types::KxDataviewActiveVersion&gt;
1982
2057
  # * {Types::GetKxDataviewResponse#description #description} => String
1983
2058
  # * {Types::GetKxDataviewResponse#auto_update #auto_update} => Boolean
2059
+ # * {Types::GetKxDataviewResponse#read_write #read_write} => Boolean
1984
2060
  # * {Types::GetKxDataviewResponse#environment_id #environment_id} => String
1985
2061
  # * {Types::GetKxDataviewResponse#created_timestamp #created_timestamp} => Time
1986
2062
  # * {Types::GetKxDataviewResponse#last_modified_timestamp #last_modified_timestamp} => Time
@@ -2006,18 +2082,21 @@ module Aws::Finspace
2006
2082
  # resp.segment_configurations[0].db_paths #=> Array
2007
2083
  # resp.segment_configurations[0].db_paths[0] #=> String
2008
2084
  # resp.segment_configurations[0].volume_name #=> String
2085
+ # resp.segment_configurations[0].on_demand #=> Boolean
2009
2086
  # resp.active_versions #=> Array
2010
2087
  # resp.active_versions[0].changeset_id #=> String
2011
2088
  # resp.active_versions[0].segment_configurations #=> Array
2012
2089
  # resp.active_versions[0].segment_configurations[0].db_paths #=> Array
2013
2090
  # resp.active_versions[0].segment_configurations[0].db_paths[0] #=> String
2014
2091
  # resp.active_versions[0].segment_configurations[0].volume_name #=> String
2092
+ # resp.active_versions[0].segment_configurations[0].on_demand #=> Boolean
2015
2093
  # resp.active_versions[0].attached_clusters #=> Array
2016
2094
  # resp.active_versions[0].attached_clusters[0] #=> String
2017
2095
  # resp.active_versions[0].created_timestamp #=> Time
2018
2096
  # resp.active_versions[0].version_id #=> String
2019
2097
  # resp.description #=> String
2020
2098
  # resp.auto_update #=> Boolean
2099
+ # resp.read_write #=> Boolean
2021
2100
  # resp.environment_id #=> String
2022
2101
  # resp.created_timestamp #=> Time
2023
2102
  # resp.last_modified_timestamp #=> Time
@@ -2395,6 +2474,7 @@ module Aws::Finspace
2395
2474
  # resp.nodes[0].node_id #=> String
2396
2475
  # resp.nodes[0].availability_zone_id #=> String
2397
2476
  # resp.nodes[0].launch_time #=> Time
2477
+ # resp.nodes[0].status #=> String, one of "RUNNING", "PROVISIONING"
2398
2478
  # resp.next_token #=> String
2399
2479
  #
2400
2480
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/ListKxClusterNodes AWS API Documentation
@@ -2581,12 +2661,14 @@ module Aws::Finspace
2581
2661
  # resp.kx_dataviews[0].segment_configurations[0].db_paths #=> Array
2582
2662
  # resp.kx_dataviews[0].segment_configurations[0].db_paths[0] #=> String
2583
2663
  # resp.kx_dataviews[0].segment_configurations[0].volume_name #=> String
2664
+ # resp.kx_dataviews[0].segment_configurations[0].on_demand #=> Boolean
2584
2665
  # resp.kx_dataviews[0].active_versions #=> Array
2585
2666
  # resp.kx_dataviews[0].active_versions[0].changeset_id #=> String
2586
2667
  # resp.kx_dataviews[0].active_versions[0].segment_configurations #=> Array
2587
2668
  # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].db_paths #=> Array
2588
2669
  # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].db_paths[0] #=> String
2589
2670
  # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].volume_name #=> String
2671
+ # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].on_demand #=> Boolean
2590
2672
  # resp.kx_dataviews[0].active_versions[0].attached_clusters #=> Array
2591
2673
  # resp.kx_dataviews[0].active_versions[0].attached_clusters[0] #=> String
2592
2674
  # resp.kx_dataviews[0].active_versions[0].created_timestamp #=> Time
@@ -2594,6 +2676,7 @@ module Aws::Finspace
2594
2676
  # resp.kx_dataviews[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED", "DELETING"
2595
2677
  # resp.kx_dataviews[0].description #=> String
2596
2678
  # resp.kx_dataviews[0].auto_update #=> Boolean
2679
+ # resp.kx_dataviews[0].read_write #=> Boolean
2597
2680
  # resp.kx_dataviews[0].created_timestamp #=> Time
2598
2681
  # resp.kx_dataviews[0].last_modified_timestamp #=> Time
2599
2682
  # resp.kx_dataviews[0].status_reason #=> String
@@ -3110,6 +3193,7 @@ module Aws::Finspace
3110
3193
  # {
3111
3194
  # db_paths: ["DbPath"], # required
3112
3195
  # volume_name: "KxVolumeName", # required
3196
+ # on_demand: false,
3113
3197
  # },
3114
3198
  # ],
3115
3199
  # },
@@ -3224,6 +3308,7 @@ module Aws::Finspace
3224
3308
  # * {Types::UpdateKxDataviewResponse#active_versions #active_versions} => Array&lt;Types::KxDataviewActiveVersion&gt;
3225
3309
  # * {Types::UpdateKxDataviewResponse#status #status} => String
3226
3310
  # * {Types::UpdateKxDataviewResponse#auto_update #auto_update} => Boolean
3311
+ # * {Types::UpdateKxDataviewResponse#read_write #read_write} => Boolean
3227
3312
  # * {Types::UpdateKxDataviewResponse#description #description} => String
3228
3313
  # * {Types::UpdateKxDataviewResponse#created_timestamp #created_timestamp} => Time
3229
3314
  # * {Types::UpdateKxDataviewResponse#last_modified_timestamp #last_modified_timestamp} => Time
@@ -3240,6 +3325,7 @@ module Aws::Finspace
3240
3325
  # {
3241
3326
  # db_paths: ["DbPath"], # required
3242
3327
  # volume_name: "KxVolumeName", # required
3328
+ # on_demand: false,
3243
3329
  # },
3244
3330
  # ],
3245
3331
  # client_token: "ClientTokenString", # required
@@ -3257,18 +3343,21 @@ module Aws::Finspace
3257
3343
  # resp.segment_configurations[0].db_paths #=> Array
3258
3344
  # resp.segment_configurations[0].db_paths[0] #=> String
3259
3345
  # resp.segment_configurations[0].volume_name #=> String
3346
+ # resp.segment_configurations[0].on_demand #=> Boolean
3260
3347
  # resp.active_versions #=> Array
3261
3348
  # resp.active_versions[0].changeset_id #=> String
3262
3349
  # resp.active_versions[0].segment_configurations #=> Array
3263
3350
  # resp.active_versions[0].segment_configurations[0].db_paths #=> Array
3264
3351
  # resp.active_versions[0].segment_configurations[0].db_paths[0] #=> String
3265
3352
  # resp.active_versions[0].segment_configurations[0].volume_name #=> String
3353
+ # resp.active_versions[0].segment_configurations[0].on_demand #=> Boolean
3266
3354
  # resp.active_versions[0].attached_clusters #=> Array
3267
3355
  # resp.active_versions[0].attached_clusters[0] #=> String
3268
3356
  # resp.active_versions[0].created_timestamp #=> Time
3269
3357
  # resp.active_versions[0].version_id #=> String
3270
3358
  # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED", "DELETING"
3271
3359
  # resp.auto_update #=> Boolean
3360
+ # resp.read_write #=> Boolean
3272
3361
  # resp.description #=> String
3273
3362
  # resp.created_timestamp #=> Time
3274
3363
  # resp.last_modified_timestamp #=> Time
@@ -3633,7 +3722,7 @@ module Aws::Finspace
3633
3722
  params: params,
3634
3723
  config: config)
3635
3724
  context[:gem_name] = 'aws-sdk-finspace'
3636
- context[:gem_version] = '1.29.0'
3725
+ context[:gem_version] = '1.31.0'
3637
3726
  Seahorse::Client::Request.new(handlers, context)
3638
3727
  end
3639
3728
 
@@ -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')
@@ -448,6 +451,7 @@ module Aws::Finspace
448
451
  CreateKxDataviewRequest.add_member(:changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "changesetId"))
449
452
  CreateKxDataviewRequest.add_member(:segment_configurations, Shapes::ShapeRef.new(shape: KxDataviewSegmentConfigurationList, location_name: "segmentConfigurations"))
450
453
  CreateKxDataviewRequest.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
454
+ CreateKxDataviewRequest.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
451
455
  CreateKxDataviewRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
452
456
  CreateKxDataviewRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
453
457
  CreateKxDataviewRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
@@ -462,6 +466,7 @@ module Aws::Finspace
462
466
  CreateKxDataviewResponse.add_member(:segment_configurations, Shapes::ShapeRef.new(shape: KxDataviewSegmentConfigurationList, location_name: "segmentConfigurations"))
463
467
  CreateKxDataviewResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
464
468
  CreateKxDataviewResponse.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
469
+ CreateKxDataviewResponse.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
465
470
  CreateKxDataviewResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
466
471
  CreateKxDataviewResponse.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
467
472
  CreateKxDataviewResponse.add_member(:status, Shapes::ShapeRef.new(shape: KxDataviewStatus, location_name: "status"))
@@ -552,6 +557,13 @@ module Aws::Finspace
552
557
 
553
558
  DeleteEnvironmentResponse.struct_class = Types::DeleteEnvironmentResponse
554
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
+
555
567
  DeleteKxClusterRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: KxEnvironmentId, required: true, location: "uri", location_name: "environmentId"))
556
568
  DeleteKxClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: KxClusterName, required: true, location: "uri", location_name: "clusterName"))
557
569
  DeleteKxClusterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
@@ -718,6 +730,7 @@ module Aws::Finspace
718
730
  GetKxDataviewResponse.add_member(:active_versions, Shapes::ShapeRef.new(shape: KxDataviewActiveVersionList, location_name: "activeVersions"))
719
731
  GetKxDataviewResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
720
732
  GetKxDataviewResponse.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
733
+ GetKxDataviewResponse.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
721
734
  GetKxDataviewResponse.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
722
735
  GetKxDataviewResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
723
736
  GetKxDataviewResponse.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
@@ -900,6 +913,7 @@ module Aws::Finspace
900
913
  KxDataviewListEntry.add_member(:status, Shapes::ShapeRef.new(shape: KxDataviewStatus, location_name: "status"))
901
914
  KxDataviewListEntry.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
902
915
  KxDataviewListEntry.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
916
+ KxDataviewListEntry.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
903
917
  KxDataviewListEntry.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
904
918
  KxDataviewListEntry.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
905
919
  KxDataviewListEntry.add_member(:status_reason, Shapes::ShapeRef.new(shape: KxDataviewStatusReason, location_name: "statusReason"))
@@ -907,6 +921,7 @@ module Aws::Finspace
907
921
 
908
922
  KxDataviewSegmentConfiguration.add_member(:db_paths, Shapes::ShapeRef.new(shape: SegmentConfigurationDbPathList, required: true, location_name: "dbPaths"))
909
923
  KxDataviewSegmentConfiguration.add_member(:volume_name, Shapes::ShapeRef.new(shape: KxVolumeName, required: true, location_name: "volumeName"))
924
+ KxDataviewSegmentConfiguration.add_member(:on_demand, Shapes::ShapeRef.new(shape: booleanValue, location_name: "onDemand"))
910
925
  KxDataviewSegmentConfiguration.struct_class = Types::KxDataviewSegmentConfiguration
911
926
 
912
927
  KxDataviewSegmentConfigurationList.member = Shapes::ShapeRef.new(shape: KxDataviewSegmentConfiguration)
@@ -944,6 +959,7 @@ module Aws::Finspace
944
959
  KxNode.add_member(:node_id, Shapes::ShapeRef.new(shape: KxClusterNodeIdString, location_name: "nodeId"))
945
960
  KxNode.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
946
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"))
947
963
  KxNode.struct_class = Types::KxNode
948
964
 
949
965
  KxNodeSummaries.member = Shapes::ShapeRef.new(shape: KxNode)
@@ -1221,6 +1237,7 @@ module Aws::Finspace
1221
1237
  UpdateKxDataviewResponse.add_member(:active_versions, Shapes::ShapeRef.new(shape: KxDataviewActiveVersionList, location_name: "activeVersions"))
1222
1238
  UpdateKxDataviewResponse.add_member(:status, Shapes::ShapeRef.new(shape: KxDataviewStatus, location_name: "status"))
1223
1239
  UpdateKxDataviewResponse.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
1240
+ UpdateKxDataviewResponse.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
1224
1241
  UpdateKxDataviewResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1225
1242
  UpdateKxDataviewResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
1226
1243
  UpdateKxDataviewResponse.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
@@ -1513,6 +1530,19 @@ module Aws::Finspace
1513
1530
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1514
1531
  end)
1515
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
+
1516
1546
  api.add_operation(:delete_kx_database, Seahorse::Model::Operation.new.tap do |o|
1517
1547
  o.name = "DeleteKxDatabase"
1518
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
  #
@@ -893,12 +893,9 @@ module Aws::Finspace
893
893
  # @return [String]
894
894
  #
895
895
  # @!attribute [rw] az_mode
896
- # The number of availability zones you want to assign per cluster.
897
- # This can be one of the following
898
- #
899
- # * `SINGLE` – Assigns one availability zone per cluster.
900
- #
901
- # * `MULTI` – Assigns all the availability zones per cluster.
896
+ # The number of availability zones you want to assign per volume.
897
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
898
+ # dataview in a single AZ.
902
899
  # @return [String]
903
900
  #
904
901
  # @!attribute [rw] availability_zone_id
@@ -924,6 +921,26 @@ module Aws::Finspace
924
921
  # ingest new changesets. The default value is false.
925
922
  # @return [Boolean]
926
923
  #
924
+ # @!attribute [rw] read_write
925
+ # The option to specify whether you want to make the dataview writable
926
+ # to perform database maintenance. The following are some
927
+ # considerations related to writable dataviews.


928
+ #
929
+ # * You cannot create partial writable dataviews. When you create
930
+ # writeable dataviews you must provide the entire database path.
931
+ #
932
+ # * You cannot perform updates on a writeable dataview. Hence,
933
+ # `autoUpdate` must be set as **False** if `readWrite` is **True**
934
+ # for a dataview.
935
+ #
936
+ # * You must also use a unique volume for creating a writeable
937
+ # dataview. So, if you choose a volume that is already in use by
938
+ # another dataview, the dataview creation fails.
939
+ #
940
+ # * Once you create a dataview as writeable, you cannot change it to
941
+ # read-only. So, you cannot update the `readWrite` parameter later.
942
+ # @return [Boolean]
943
+ #
927
944
  # @!attribute [rw] description
928
945
  # A description of the dataview.
929
946
  # @return [String]
@@ -951,6 +968,7 @@ module Aws::Finspace
951
968
  :changeset_id,
952
969
  :segment_configurations,
953
970
  :auto_update,
971
+ :read_write,
954
972
  :description,
955
973
  :tags,
956
974
  :client_token)
@@ -972,12 +990,9 @@ module Aws::Finspace
972
990
  # @return [String]
973
991
  #
974
992
  # @!attribute [rw] az_mode
975
- # The number of availability zones you want to assign per cluster.
976
- # This can be one of the following
977
- #
978
- # * `SINGLE` – Assigns one availability zone per cluster.
979
- #
980
- # * `MULTI` – Assigns all the availability zones per cluster.
993
+ # The number of availability zones you want to assign per volume.
994
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
995
+ # dataview in a single AZ.
981
996
  # @return [String]
982
997
  #
983
998
  # @!attribute [rw] availability_zone_id
@@ -1006,6 +1021,11 @@ module Aws::Finspace
1006
1021
  # ingest new changesets. The default value is false.
1007
1022
  # @return [Boolean]
1008
1023
  #
1024
+ # @!attribute [rw] read_write
1025
+ # Returns True if the dataview is created as writeable and False
1026
+ # otherwise.
1027
+ # @return [Boolean]
1028
+ #
1009
1029
  # @!attribute [rw] created_timestamp
1010
1030
  # The timestamp at which the dataview was created in FinSpace. The
1011
1031
  # value is determined as epoch time in milliseconds. For example, the
@@ -1042,6 +1062,7 @@ module Aws::Finspace
1042
1062
  :segment_configurations,
1043
1063
  :description,
1044
1064
  :auto_update,
1065
+ :read_write,
1045
1066
  :created_timestamp,
1046
1067
  :last_modified_timestamp,
1047
1068
  :status)
@@ -1146,6 +1167,26 @@ module Aws::Finspace
1146
1167
  # @!attribute [rw] host_type
1147
1168
  # The memory and CPU capabilities of the scaling group host on which
1148
1169
  # FinSpace Managed kdb clusters will be placed.
1170
+ #
1171
+ # You can add one of the following values:
1172
+ #
1173
+ # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
1174
+ # memory and 16 vCPUs.
1175
+ #
1176
+ # * `kx.sg.8xlarge` – The host type with a configuration of 216 GiB
1177
+ # memory and 32 vCPUs.
1178
+ #
1179
+ # * `kx.sg.16xlarge` – The host type with a configuration of 432 GiB
1180
+ # memory and 64 vCPUs.
1181
+ #
1182
+ # * `kx.sg.32xlarge` – The host type with a configuration of 864 GiB
1183
+ # memory and 128 vCPUs.
1184
+ #
1185
+ # * `kx.sg1.16xlarge` – The host type with a configuration of 1949 GiB
1186
+ # memory and 64 vCPUs.
1187
+ #
1188
+ # * `kx.sg1.24xlarge` – The host type with a configuration of 2948 GiB
1189
+ # memory and 96 vCPUs.
1149
1190
  # @return [String]
1150
1191
  #
1151
1192
  # @!attribute [rw] availability_zone_id
@@ -1339,8 +1380,9 @@ module Aws::Finspace
1339
1380
  # @return [Types::KxNAS1Configuration]
1340
1381
  #
1341
1382
  # @!attribute [rw] az_mode
1342
- # The number of availability zones you want to assign per cluster.
1343
- # Currently, FinSpace only support `SINGLE` for volumes.
1383
+ # The number of availability zones you want to assign per volume.
1384
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
1385
+ # dataview in a single AZ.
1344
1386
  # @return [String]
1345
1387
  #
1346
1388
  # @!attribute [rw] availability_zone_ids
@@ -1418,8 +1460,9 @@ module Aws::Finspace
1418
1460
  # @return [String]
1419
1461
  #
1420
1462
  # @!attribute [rw] az_mode
1421
- # The number of availability zones you want to assign per cluster.
1422
- # Currently, FinSpace only support `SINGLE` for volumes.
1463
+ # The number of availability zones you want to assign per volume.
1464
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
1465
+ # dataview in a single AZ.
1423
1466
  # @return [String]
1424
1467
  #
1425
1468
  # @!attribute [rw] description
@@ -1491,6 +1534,32 @@ module Aws::Finspace
1491
1534
  #
1492
1535
  class DeleteEnvironmentResponse < Aws::EmptyStructure; end
1493
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
+
1494
1563
  # @!attribute [rw] environment_id
1495
1564
  # A unique identifier for the kdb environment.
1496
1565
  # @return [String]
@@ -2324,12 +2393,9 @@ module Aws::Finspace
2324
2393
  # @return [String]
2325
2394
  #
2326
2395
  # @!attribute [rw] az_mode
2327
- # The number of availability zones you want to assign per cluster.
2328
- # This can be one of the following
2329
- #
2330
- # * `SINGLE` – Assigns one availability zone per cluster.
2331
- #
2332
- # * `MULTI` – Assigns all the availability zones per cluster.
2396
+ # The number of availability zones you want to assign per volume.
2397
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
2398
+ # dataview in a single AZ.
2333
2399
  # @return [String]
2334
2400
  #
2335
2401
  # @!attribute [rw] availability_zone_id
@@ -2364,6 +2430,11 @@ module Aws::Finspace
2364
2430
  # changesets are ingested. The default value is false.
2365
2431
  # @return [Boolean]
2366
2432
  #
2433
+ # @!attribute [rw] read_write
2434
+ # Returns True if the dataview is created as writeable and False
2435
+ # otherwise.
2436
+ # @return [Boolean]
2437
+ #
2367
2438
  # @!attribute [rw] environment_id
2368
2439
  # A unique identifier for the kdb environment, from where you want to
2369
2440
  # retrieve the dataview details.
@@ -2409,6 +2480,7 @@ module Aws::Finspace
2409
2480
  :active_versions,
2410
2481
  :description,
2411
2482
  :auto_update,
2483
+ :read_write,
2412
2484
  :environment_id,
2413
2485
  :created_timestamp,
2414
2486
  :last_modified_timestamp,
@@ -2555,6 +2627,26 @@ module Aws::Finspace
2555
2627
  # @!attribute [rw] host_type
2556
2628
  # The memory and CPU capabilities of the scaling group host on which
2557
2629
  # FinSpace Managed kdb clusters will be placed.
2630
+ #
2631
+ # It can have one of the following values:
2632
+ #
2633
+ # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
2634
+ # memory and 16 vCPUs.
2635
+ #
2636
+ # * `kx.sg.8xlarge` – The host type with a configuration of 216 GiB
2637
+ # memory and 32 vCPUs.
2638
+ #
2639
+ # * `kx.sg.16xlarge` – The host type with a configuration of 432 GiB
2640
+ # memory and 64 vCPUs.
2641
+ #
2642
+ # * `kx.sg.32xlarge` – The host type with a configuration of 864 GiB
2643
+ # memory and 128 vCPUs.
2644
+ #
2645
+ # * `kx.sg1.16xlarge` – The host type with a configuration of 1949 GiB
2646
+ # memory and 64 vCPUs.
2647
+ #
2648
+ # * `kx.sg1.24xlarge` – The host type with a configuration of 2948 GiB
2649
+ # memory and 96 vCPUs.
2558
2650
  # @return [String]
2559
2651
  #
2560
2652
  # @!attribute [rw] clusters
@@ -2749,8 +2841,9 @@ module Aws::Finspace
2749
2841
  # @return [String]
2750
2842
  #
2751
2843
  # @!attribute [rw] az_mode
2752
- # The number of availability zones you want to assign per cluster.
2753
- # Currently, FinSpace only support `SINGLE` for volumes.
2844
+ # The number of availability zones you want to assign per volume.
2845
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
2846
+ # dataview in a single AZ.
2754
2847
  # @return [String]
2755
2848
  #
2756
2849
  # @!attribute [rw] availability_zone_ids
@@ -3335,12 +3428,9 @@ module Aws::Finspace
3335
3428
  # @return [String]
3336
3429
  #
3337
3430
  # @!attribute [rw] az_mode
3338
- # The number of availability zones you want to assign per cluster.
3339
- # This can be one of the following
3340
- #
3341
- # * `SINGLE` – Assigns one availability zone per cluster.
3342
- #
3343
- # * `MULTI` – Assigns all the availability zones per cluster.
3431
+ # The number of availability zones you want to assign per volume.
3432
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
3433
+ # dataview in a single AZ.
3344
3434
  # @return [String]
3345
3435
  #
3346
3436
  # @!attribute [rw] availability_zone_id
@@ -3377,6 +3467,11 @@ module Aws::Finspace
3377
3467
  # ingest new changesets. The default value is false.
3378
3468
  # @return [Boolean]
3379
3469
  #
3470
+ # @!attribute [rw] read_write
3471
+ # Returns True if the dataview is created as writeable and False
3472
+ # otherwise.
3473
+ # @return [Boolean]
3474
+ #
3380
3475
  # @!attribute [rw] created_timestamp
3381
3476
  # The timestamp at which the dataview list entry was created in
3382
3477
  # FinSpace. The value is determined as epoch time in milliseconds. For
@@ -3409,6 +3504,7 @@ module Aws::Finspace
3409
3504
  :status,
3410
3505
  :description,
3411
3506
  :auto_update,
3507
+ :read_write,
3412
3508
  :created_timestamp,
3413
3509
  :last_modified_timestamp,
3414
3510
  :status_reason)
@@ -3432,11 +3528,20 @@ module Aws::Finspace
3432
3528
  # The name of the volume where you want to add data.
3433
3529
  # @return [String]
3434
3530
  #
3531
+ # @!attribute [rw] on_demand
3532
+ # Enables on-demand caching on the selected database path when a
3533
+ # particular file or a column of the database is accessed. When on
3534
+ # demand caching is **True**, dataviews perform minimal loading of
3535
+ # files on the filesystem as needed. When it is set to **False**,
3536
+ # everything is cached. The default value is **False**.
3537
+ # @return [Boolean]
3538
+ #
3435
3539
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxDataviewSegmentConfiguration AWS API Documentation
3436
3540
  #
3437
3541
  class KxDataviewSegmentConfiguration < Struct.new(
3438
3542
  :db_paths,
3439
- :volume_name)
3543
+ :volume_name,
3544
+ :on_demand)
3440
3545
  SENSITIVE = []
3441
3546
  include Aws::Structure
3442
3547
  end
@@ -3600,7 +3705,10 @@ module Aws::Finspace
3600
3705
  # @return [String]
3601
3706
  #
3602
3707
  # @!attribute [rw] size
3603
- # 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.
3604
3712
  # @return [Integer]
3605
3713
  #
3606
3714
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxNAS1Configuration AWS API Documentation
@@ -3629,12 +3737,21 @@ module Aws::Finspace
3629
3737
  # November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
3630
3738
  # @return [Time]
3631
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
+ #
3632
3748
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxNode AWS API Documentation
3633
3749
  #
3634
3750
  class KxNode < Struct.new(
3635
3751
  :node_id,
3636
3752
  :availability_zone_id,
3637
- :launch_time)
3753
+ :launch_time,
3754
+ :status)
3638
3755
  SENSITIVE = []
3639
3756
  include Aws::Structure
3640
3757
  end
@@ -3680,6 +3797,26 @@ module Aws::Finspace
3680
3797
  # @!attribute [rw] host_type
3681
3798
  # The memory and CPU capabilities of the scaling group host on which
3682
3799
  # FinSpace Managed kdb clusters will be placed.
3800
+ #
3801
+ # You can add one of the following values:
3802
+ #
3803
+ # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
3804
+ # memory and 16 vCPUs.
3805
+ #
3806
+ # * `kx.sg.8xlarge` – The host type with a configuration of 216 GiB
3807
+ # memory and 32 vCPUs.
3808
+ #
3809
+ # * `kx.sg.16xlarge` – The host type with a configuration of 432 GiB
3810
+ # memory and 64 vCPUs.
3811
+ #
3812
+ # * `kx.sg.32xlarge` – The host type with a configuration of 864 GiB
3813
+ # memory and 128 vCPUs.
3814
+ #
3815
+ # * `kx.sg1.16xlarge` – The host type with a configuration of 1949 GiB
3816
+ # memory and 64 vCPUs.
3817
+ #
3818
+ # * `kx.sg1.24xlarge` – The host type with a configuration of 2948 GiB
3819
+ # memory and 96 vCPUs.
3683
3820
  # @return [String]
3684
3821
  #
3685
3822
  # @!attribute [rw] clusters
@@ -3848,8 +3985,9 @@ module Aws::Finspace
3848
3985
  # @return [String]
3849
3986
  #
3850
3987
  # @!attribute [rw] az_mode
3851
- # The number of availability zones assigned to the volume. Currently,
3852
- # only `SINGLE` is supported.
3988
+ # The number of availability zones you want to assign per volume.
3989
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
3990
+ # dataview in a single AZ.
3853
3991
  # @return [String]
3854
3992
  #
3855
3993
  # @!attribute [rw] availability_zone_ids
@@ -4878,12 +5016,9 @@ module Aws::Finspace
4878
5016
  # @return [String]
4879
5017
  #
4880
5018
  # @!attribute [rw] az_mode
4881
- # The number of availability zones you want to assign per cluster.
4882
- # This can be one of the following
4883
- #
4884
- # * `SINGLE` – Assigns one availability zone per cluster.
4885
- #
4886
- # * `MULTI` – Assigns all the availability zones per cluster.
5019
+ # The number of availability zones you want to assign per volume.
5020
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
5021
+ # dataview in a single AZ.
4887
5022
  # @return [String]
4888
5023
  #
4889
5024
  # @!attribute [rw] availability_zone_id
@@ -4923,6 +5058,11 @@ module Aws::Finspace
4923
5058
  # changesets are ingested. The default value is false.
4924
5059
  # @return [Boolean]
4925
5060
  #
5061
+ # @!attribute [rw] read_write
5062
+ # Returns True if the dataview is created as writeable and False
5063
+ # otherwise.
5064
+ # @return [Boolean]
5065
+ #
4926
5066
  # @!attribute [rw] description
4927
5067
  # A description of the dataview.
4928
5068
  # @return [String]
@@ -4954,6 +5094,7 @@ module Aws::Finspace
4954
5094
  :active_versions,
4955
5095
  :status,
4956
5096
  :auto_update,
5097
+ :read_write,
4957
5098
  :description,
4958
5099
  :created_timestamp,
4959
5100
  :last_modified_timestamp)
@@ -5366,8 +5507,9 @@ module Aws::Finspace
5366
5507
  # @return [Time]
5367
5508
  #
5368
5509
  # @!attribute [rw] az_mode
5369
- # The number of availability zones you want to assign per cluster.
5370
- # Currently, FinSpace only support `SINGLE` for volumes.
5510
+ # The number of availability zones you want to assign per volume.
5511
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
5512
+ # dataview in a single AZ.
5371
5513
  # @return [String]
5372
5514
  #
5373
5515
  # @!attribute [rw] availability_zone_ids
@@ -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.29.0'
55
+ GEM_VERSION = '1.31.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -183,7 +183,8 @@ module Aws
183
183
  segment_configurations: Array[
184
184
  {
185
185
  db_paths: Array[::String],
186
- volume_name: ::String
186
+ volume_name: ::String,
187
+ on_demand: bool?
187
188
  },
188
189
  ]?
189
190
  }?
@@ -276,6 +277,7 @@ module Aws
276
277
  def segment_configurations: () -> ::Array[Types::KxDataviewSegmentConfiguration]
277
278
  def description: () -> ::String
278
279
  def auto_update: () -> bool
280
+ def read_write: () -> bool
279
281
  def created_timestamp: () -> ::Time
280
282
  def last_modified_timestamp: () -> ::Time
281
283
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
@@ -291,10 +293,12 @@ module Aws
291
293
  ?segment_configurations: Array[
292
294
  {
293
295
  db_paths: Array[::String],
294
- volume_name: ::String
296
+ volume_name: ::String,
297
+ on_demand: bool?
295
298
  },
296
299
  ],
297
300
  ?auto_update: bool,
301
+ ?read_write: bool,
298
302
  ?description: ::String,
299
303
  ?tags: Hash[::String, ::String],
300
304
  client_token: ::String
@@ -410,6 +414,17 @@ module Aws
410
414
  ) -> _DeleteKxClusterResponseSuccess
411
415
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteKxClusterResponseSuccess
412
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
+
413
428
  interface _DeleteKxDatabaseResponseSuccess
414
429
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteKxDatabaseResponse]
415
430
  end
@@ -582,6 +597,7 @@ module Aws
582
597
  def active_versions: () -> ::Array[Types::KxDataviewActiveVersion]
583
598
  def description: () -> ::String
584
599
  def auto_update: () -> bool
600
+ def read_write: () -> bool
585
601
  def environment_id: () -> ::String
586
602
  def created_timestamp: () -> ::Time
587
603
  def last_modified_timestamp: () -> ::Time
@@ -915,7 +931,8 @@ module Aws
915
931
  segment_configurations: Array[
916
932
  {
917
933
  db_paths: Array[::String],
918
- volume_name: ::String
934
+ volume_name: ::String,
935
+ on_demand: bool?
919
936
  },
920
937
  ]?
921
938
  }?
@@ -955,6 +972,7 @@ module Aws
955
972
  def active_versions: () -> ::Array[Types::KxDataviewActiveVersion]
956
973
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
957
974
  def auto_update: () -> bool
975
+ def read_write: () -> bool
958
976
  def description: () -> ::String
959
977
  def created_timestamp: () -> ::Time
960
978
  def last_modified_timestamp: () -> ::Time
@@ -969,7 +987,8 @@ module Aws
969
987
  ?segment_configurations: Array[
970
988
  {
971
989
  db_paths: Array[::String],
972
- volume_name: ::String
990
+ volume_name: ::String,
991
+ on_demand: bool?
973
992
  },
974
993
  ],
975
994
  client_token: ::String
data/sig/types.rbs CHANGED
@@ -169,6 +169,7 @@ module Aws::Finspace
169
169
  attr_accessor changeset_id: ::String
170
170
  attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
171
171
  attr_accessor auto_update: bool
172
+ attr_accessor read_write: bool
172
173
  attr_accessor description: ::String
173
174
  attr_accessor tags: ::Hash[::String, ::String]
174
175
  attr_accessor client_token: ::String
@@ -185,6 +186,7 @@ module Aws::Finspace
185
186
  attr_accessor segment_configurations: ::Array[Types::KxDataviewSegmentConfiguration]
186
187
  attr_accessor description: ::String
187
188
  attr_accessor auto_update: bool
189
+ attr_accessor read_write: bool
188
190
  attr_accessor created_timestamp: ::Time
189
191
  attr_accessor last_modified_timestamp: ::Time
190
192
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
@@ -291,6 +293,16 @@ module Aws::Finspace
291
293
  class DeleteEnvironmentResponse < Aws::EmptyStructure
292
294
  end
293
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
+
294
306
  class DeleteKxClusterRequest
295
307
  attr_accessor environment_id: ::String
296
308
  attr_accessor cluster_name: ::String
@@ -505,6 +517,7 @@ module Aws::Finspace
505
517
  attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
506
518
  attr_accessor description: ::String
507
519
  attr_accessor auto_update: bool
520
+ attr_accessor read_write: bool
508
521
  attr_accessor environment_id: ::String
509
522
  attr_accessor created_timestamp: ::Time
510
523
  attr_accessor last_modified_timestamp: ::Time
@@ -713,6 +726,7 @@ module Aws::Finspace
713
726
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
714
727
  attr_accessor description: ::String
715
728
  attr_accessor auto_update: bool
729
+ attr_accessor read_write: bool
716
730
  attr_accessor created_timestamp: ::Time
717
731
  attr_accessor last_modified_timestamp: ::Time
718
732
  attr_accessor status_reason: ::String
@@ -722,6 +736,7 @@ module Aws::Finspace
722
736
  class KxDataviewSegmentConfiguration
723
737
  attr_accessor db_paths: ::Array[::String]
724
738
  attr_accessor volume_name: ::String
739
+ attr_accessor on_demand: bool
725
740
  SENSITIVE: []
726
741
  end
727
742
 
@@ -761,6 +776,7 @@ module Aws::Finspace
761
776
  attr_accessor node_id: ::String
762
777
  attr_accessor availability_zone_id: ::String
763
778
  attr_accessor launch_time: ::Time
779
+ attr_accessor status: ("RUNNING" | "PROVISIONING")
764
780
  SENSITIVE: []
765
781
  end
766
782
 
@@ -1113,6 +1129,7 @@ module Aws::Finspace
1113
1129
  attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
1114
1130
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
1115
1131
  attr_accessor auto_update: bool
1132
+ attr_accessor read_write: bool
1116
1133
  attr_accessor description: ::String
1117
1134
  attr_accessor created_timestamp: ::Time
1118
1135
  attr_accessor last_modified_timestamp: ::Time
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.29.0
4
+ version: 1.31.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core