aws-sdk-finspace 1.29.0 → 1.30.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: 3e8d46c2c1fda37ca6ee12d4c4b06c53687c9414a21f9a9f9aa00af35bceb9e3
4
- data.tar.gz: 32c5babbb338e73853fea69e2b9704af566687b33c4342b5d25d33979f5a8236
3
+ metadata.gz: 1c5ae03fabbaf70158b469645b5c14cc297a8ce902208d235ef84025d3c41c9e
4
+ data.tar.gz: 9a99a593e5c1b9f9dc9b89b33e036226449ccb64986f0ae700f719f4485d0b9a
5
5
  SHA512:
6
- metadata.gz: 78f5fd8b7b3c9ccb22bb8411fba17e5fa35dbd8f4ea1b153c87560d8ab30fdd7ae392d86db8836702df7f167c8937a72a383b217be5b7dae1df5b1c271903aca
7
- data.tar.gz: aa527d7e0e017f09cb3c2222a298c27e0fb4a1f69bd9ec6e9f2dfbffa4c6331a4e13d249e7aed766847f7e63f5070983689628a4640e608eda1038bf30ab4317
6
+ metadata.gz: 2fd0e3f6f8347c983534ad6e4ff1148cb708d64ecf3bb910b890c54e925d5a9ae779fb4245a45f4df1cac86171c1631175e6d815951942b8878fc5df748fce6b
7
+ data.tar.gz: aa9a49c3e5745963d42f353e7aeab202c317a558c0d2d6f122e71dce11824a4cd413fa4199b4d66cfa174b1f05a9fa0644b05a8fd779552902c30d65a7673297
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2024-03-19)
5
+ ------------------
6
+
7
+ * Feature - Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations.
8
+
4
9
  1.29.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -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<Types::KxDataviewSegmentConfiguration>
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.
@@ -1815,6 +1859,7 @@ module Aws::Finspace
1815
1859
  # resp.databases[0].dataview_configuration.segment_configurations[0].db_paths #=> Array
1816
1860
  # resp.databases[0].dataview_configuration.segment_configurations[0].db_paths[0] #=> String
1817
1861
  # resp.databases[0].dataview_configuration.segment_configurations[0].volume_name #=> String
1862
+ # resp.databases[0].dataview_configuration.segment_configurations[0].on_demand #=> Boolean
1818
1863
  # resp.cache_storage_configurations #=> Array
1819
1864
  # resp.cache_storage_configurations[0].type #=> String
1820
1865
  # resp.cache_storage_configurations[0].size #=> Integer
@@ -1981,6 +2026,7 @@ module Aws::Finspace
1981
2026
  # * {Types::GetKxDataviewResponse#active_versions #active_versions} => Array&lt;Types::KxDataviewActiveVersion&gt;
1982
2027
  # * {Types::GetKxDataviewResponse#description #description} => String
1983
2028
  # * {Types::GetKxDataviewResponse#auto_update #auto_update} => Boolean
2029
+ # * {Types::GetKxDataviewResponse#read_write #read_write} => Boolean
1984
2030
  # * {Types::GetKxDataviewResponse#environment_id #environment_id} => String
1985
2031
  # * {Types::GetKxDataviewResponse#created_timestamp #created_timestamp} => Time
1986
2032
  # * {Types::GetKxDataviewResponse#last_modified_timestamp #last_modified_timestamp} => Time
@@ -2006,18 +2052,21 @@ module Aws::Finspace
2006
2052
  # resp.segment_configurations[0].db_paths #=> Array
2007
2053
  # resp.segment_configurations[0].db_paths[0] #=> String
2008
2054
  # resp.segment_configurations[0].volume_name #=> String
2055
+ # resp.segment_configurations[0].on_demand #=> Boolean
2009
2056
  # resp.active_versions #=> Array
2010
2057
  # resp.active_versions[0].changeset_id #=> String
2011
2058
  # resp.active_versions[0].segment_configurations #=> Array
2012
2059
  # resp.active_versions[0].segment_configurations[0].db_paths #=> Array
2013
2060
  # resp.active_versions[0].segment_configurations[0].db_paths[0] #=> String
2014
2061
  # resp.active_versions[0].segment_configurations[0].volume_name #=> String
2062
+ # resp.active_versions[0].segment_configurations[0].on_demand #=> Boolean
2015
2063
  # resp.active_versions[0].attached_clusters #=> Array
2016
2064
  # resp.active_versions[0].attached_clusters[0] #=> String
2017
2065
  # resp.active_versions[0].created_timestamp #=> Time
2018
2066
  # resp.active_versions[0].version_id #=> String
2019
2067
  # resp.description #=> String
2020
2068
  # resp.auto_update #=> Boolean
2069
+ # resp.read_write #=> Boolean
2021
2070
  # resp.environment_id #=> String
2022
2071
  # resp.created_timestamp #=> Time
2023
2072
  # resp.last_modified_timestamp #=> Time
@@ -2581,12 +2630,14 @@ module Aws::Finspace
2581
2630
  # resp.kx_dataviews[0].segment_configurations[0].db_paths #=> Array
2582
2631
  # resp.kx_dataviews[0].segment_configurations[0].db_paths[0] #=> String
2583
2632
  # resp.kx_dataviews[0].segment_configurations[0].volume_name #=> String
2633
+ # resp.kx_dataviews[0].segment_configurations[0].on_demand #=> Boolean
2584
2634
  # resp.kx_dataviews[0].active_versions #=> Array
2585
2635
  # resp.kx_dataviews[0].active_versions[0].changeset_id #=> String
2586
2636
  # resp.kx_dataviews[0].active_versions[0].segment_configurations #=> Array
2587
2637
  # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].db_paths #=> Array
2588
2638
  # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].db_paths[0] #=> String
2589
2639
  # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].volume_name #=> String
2640
+ # resp.kx_dataviews[0].active_versions[0].segment_configurations[0].on_demand #=> Boolean
2590
2641
  # resp.kx_dataviews[0].active_versions[0].attached_clusters #=> Array
2591
2642
  # resp.kx_dataviews[0].active_versions[0].attached_clusters[0] #=> String
2592
2643
  # resp.kx_dataviews[0].active_versions[0].created_timestamp #=> Time
@@ -2594,6 +2645,7 @@ module Aws::Finspace
2594
2645
  # resp.kx_dataviews[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED", "DELETING"
2595
2646
  # resp.kx_dataviews[0].description #=> String
2596
2647
  # resp.kx_dataviews[0].auto_update #=> Boolean
2648
+ # resp.kx_dataviews[0].read_write #=> Boolean
2597
2649
  # resp.kx_dataviews[0].created_timestamp #=> Time
2598
2650
  # resp.kx_dataviews[0].last_modified_timestamp #=> Time
2599
2651
  # resp.kx_dataviews[0].status_reason #=> String
@@ -3110,6 +3162,7 @@ module Aws::Finspace
3110
3162
  # {
3111
3163
  # db_paths: ["DbPath"], # required
3112
3164
  # volume_name: "KxVolumeName", # required
3165
+ # on_demand: false,
3113
3166
  # },
3114
3167
  # ],
3115
3168
  # },
@@ -3224,6 +3277,7 @@ module Aws::Finspace
3224
3277
  # * {Types::UpdateKxDataviewResponse#active_versions #active_versions} => Array&lt;Types::KxDataviewActiveVersion&gt;
3225
3278
  # * {Types::UpdateKxDataviewResponse#status #status} => String
3226
3279
  # * {Types::UpdateKxDataviewResponse#auto_update #auto_update} => Boolean
3280
+ # * {Types::UpdateKxDataviewResponse#read_write #read_write} => Boolean
3227
3281
  # * {Types::UpdateKxDataviewResponse#description #description} => String
3228
3282
  # * {Types::UpdateKxDataviewResponse#created_timestamp #created_timestamp} => Time
3229
3283
  # * {Types::UpdateKxDataviewResponse#last_modified_timestamp #last_modified_timestamp} => Time
@@ -3240,6 +3294,7 @@ module Aws::Finspace
3240
3294
  # {
3241
3295
  # db_paths: ["DbPath"], # required
3242
3296
  # volume_name: "KxVolumeName", # required
3297
+ # on_demand: false,
3243
3298
  # },
3244
3299
  # ],
3245
3300
  # client_token: "ClientTokenString", # required
@@ -3257,18 +3312,21 @@ module Aws::Finspace
3257
3312
  # resp.segment_configurations[0].db_paths #=> Array
3258
3313
  # resp.segment_configurations[0].db_paths[0] #=> String
3259
3314
  # resp.segment_configurations[0].volume_name #=> String
3315
+ # resp.segment_configurations[0].on_demand #=> Boolean
3260
3316
  # resp.active_versions #=> Array
3261
3317
  # resp.active_versions[0].changeset_id #=> String
3262
3318
  # resp.active_versions[0].segment_configurations #=> Array
3263
3319
  # resp.active_versions[0].segment_configurations[0].db_paths #=> Array
3264
3320
  # resp.active_versions[0].segment_configurations[0].db_paths[0] #=> String
3265
3321
  # resp.active_versions[0].segment_configurations[0].volume_name #=> String
3322
+ # resp.active_versions[0].segment_configurations[0].on_demand #=> Boolean
3266
3323
  # resp.active_versions[0].attached_clusters #=> Array
3267
3324
  # resp.active_versions[0].attached_clusters[0] #=> String
3268
3325
  # resp.active_versions[0].created_timestamp #=> Time
3269
3326
  # resp.active_versions[0].version_id #=> String
3270
3327
  # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED", "DELETING"
3271
3328
  # resp.auto_update #=> Boolean
3329
+ # resp.read_write #=> Boolean
3272
3330
  # resp.description #=> String
3273
3331
  # resp.created_timestamp #=> Time
3274
3332
  # resp.last_modified_timestamp #=> Time
@@ -3633,7 +3691,7 @@ module Aws::Finspace
3633
3691
  params: params,
3634
3692
  config: config)
3635
3693
  context[:gem_name] = 'aws-sdk-finspace'
3636
- context[:gem_version] = '1.29.0'
3694
+ context[:gem_version] = '1.30.0'
3637
3695
  Seahorse::Client::Request.new(handlers, context)
3638
3696
  end
3639
3697
 
@@ -448,6 +448,7 @@ module Aws::Finspace
448
448
  CreateKxDataviewRequest.add_member(:changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "changesetId"))
449
449
  CreateKxDataviewRequest.add_member(:segment_configurations, Shapes::ShapeRef.new(shape: KxDataviewSegmentConfigurationList, location_name: "segmentConfigurations"))
450
450
  CreateKxDataviewRequest.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
451
+ CreateKxDataviewRequest.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
451
452
  CreateKxDataviewRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
452
453
  CreateKxDataviewRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
453
454
  CreateKxDataviewRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
@@ -462,6 +463,7 @@ module Aws::Finspace
462
463
  CreateKxDataviewResponse.add_member(:segment_configurations, Shapes::ShapeRef.new(shape: KxDataviewSegmentConfigurationList, location_name: "segmentConfigurations"))
463
464
  CreateKxDataviewResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
464
465
  CreateKxDataviewResponse.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
466
+ CreateKxDataviewResponse.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
465
467
  CreateKxDataviewResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
466
468
  CreateKxDataviewResponse.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
467
469
  CreateKxDataviewResponse.add_member(:status, Shapes::ShapeRef.new(shape: KxDataviewStatus, location_name: "status"))
@@ -718,6 +720,7 @@ module Aws::Finspace
718
720
  GetKxDataviewResponse.add_member(:active_versions, Shapes::ShapeRef.new(shape: KxDataviewActiveVersionList, location_name: "activeVersions"))
719
721
  GetKxDataviewResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
720
722
  GetKxDataviewResponse.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
723
+ GetKxDataviewResponse.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
721
724
  GetKxDataviewResponse.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
722
725
  GetKxDataviewResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
723
726
  GetKxDataviewResponse.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
@@ -900,6 +903,7 @@ module Aws::Finspace
900
903
  KxDataviewListEntry.add_member(:status, Shapes::ShapeRef.new(shape: KxDataviewStatus, location_name: "status"))
901
904
  KxDataviewListEntry.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
902
905
  KxDataviewListEntry.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
906
+ KxDataviewListEntry.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
903
907
  KxDataviewListEntry.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
904
908
  KxDataviewListEntry.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
905
909
  KxDataviewListEntry.add_member(:status_reason, Shapes::ShapeRef.new(shape: KxDataviewStatusReason, location_name: "statusReason"))
@@ -907,6 +911,7 @@ module Aws::Finspace
907
911
 
908
912
  KxDataviewSegmentConfiguration.add_member(:db_paths, Shapes::ShapeRef.new(shape: SegmentConfigurationDbPathList, required: true, location_name: "dbPaths"))
909
913
  KxDataviewSegmentConfiguration.add_member(:volume_name, Shapes::ShapeRef.new(shape: KxVolumeName, required: true, location_name: "volumeName"))
914
+ KxDataviewSegmentConfiguration.add_member(:on_demand, Shapes::ShapeRef.new(shape: booleanValue, location_name: "onDemand"))
910
915
  KxDataviewSegmentConfiguration.struct_class = Types::KxDataviewSegmentConfiguration
911
916
 
912
917
  KxDataviewSegmentConfigurationList.member = Shapes::ShapeRef.new(shape: KxDataviewSegmentConfiguration)
@@ -1221,6 +1226,7 @@ module Aws::Finspace
1221
1226
  UpdateKxDataviewResponse.add_member(:active_versions, Shapes::ShapeRef.new(shape: KxDataviewActiveVersionList, location_name: "activeVersions"))
1222
1227
  UpdateKxDataviewResponse.add_member(:status, Shapes::ShapeRef.new(shape: KxDataviewStatus, location_name: "status"))
1223
1228
  UpdateKxDataviewResponse.add_member(:auto_update, Shapes::ShapeRef.new(shape: booleanValue, location_name: "autoUpdate"))
1229
+ UpdateKxDataviewResponse.add_member(:read_write, Shapes::ShapeRef.new(shape: booleanValue, location_name: "readWrite"))
1224
1230
  UpdateKxDataviewResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1225
1231
  UpdateKxDataviewResponse.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTimestamp"))
1226
1232
  UpdateKxDataviewResponse.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTimestamp"))
@@ -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
@@ -2324,12 +2367,9 @@ module Aws::Finspace
2324
2367
  # @return [String]
2325
2368
  #
2326
2369
  # @!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.
2370
+ # The number of availability zones you want to assign per volume.
2371
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
2372
+ # dataview in a single AZ.
2333
2373
  # @return [String]
2334
2374
  #
2335
2375
  # @!attribute [rw] availability_zone_id
@@ -2364,6 +2404,11 @@ module Aws::Finspace
2364
2404
  # changesets are ingested. The default value is false.
2365
2405
  # @return [Boolean]
2366
2406
  #
2407
+ # @!attribute [rw] read_write
2408
+ # Returns True if the dataview is created as writeable and False
2409
+ # otherwise.
2410
+ # @return [Boolean]
2411
+ #
2367
2412
  # @!attribute [rw] environment_id
2368
2413
  # A unique identifier for the kdb environment, from where you want to
2369
2414
  # retrieve the dataview details.
@@ -2409,6 +2454,7 @@ module Aws::Finspace
2409
2454
  :active_versions,
2410
2455
  :description,
2411
2456
  :auto_update,
2457
+ :read_write,
2412
2458
  :environment_id,
2413
2459
  :created_timestamp,
2414
2460
  :last_modified_timestamp,
@@ -2555,6 +2601,26 @@ module Aws::Finspace
2555
2601
  # @!attribute [rw] host_type
2556
2602
  # The memory and CPU capabilities of the scaling group host on which
2557
2603
  # FinSpace Managed kdb clusters will be placed.
2604
+ #
2605
+ # It can have one of the following values:
2606
+ #
2607
+ # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
2608
+ # memory and 16 vCPUs.
2609
+ #
2610
+ # * `kx.sg.8xlarge` – The host type with a configuration of 216 GiB
2611
+ # memory and 32 vCPUs.
2612
+ #
2613
+ # * `kx.sg.16xlarge` – The host type with a configuration of 432 GiB
2614
+ # memory and 64 vCPUs.
2615
+ #
2616
+ # * `kx.sg.32xlarge` – The host type with a configuration of 864 GiB
2617
+ # memory and 128 vCPUs.
2618
+ #
2619
+ # * `kx.sg1.16xlarge` – The host type with a configuration of 1949 GiB
2620
+ # memory and 64 vCPUs.
2621
+ #
2622
+ # * `kx.sg1.24xlarge` – The host type with a configuration of 2948 GiB
2623
+ # memory and 96 vCPUs.
2558
2624
  # @return [String]
2559
2625
  #
2560
2626
  # @!attribute [rw] clusters
@@ -2749,8 +2815,9 @@ module Aws::Finspace
2749
2815
  # @return [String]
2750
2816
  #
2751
2817
  # @!attribute [rw] az_mode
2752
- # The number of availability zones you want to assign per cluster.
2753
- # Currently, FinSpace only support `SINGLE` for volumes.
2818
+ # The number of availability zones you want to assign per volume.
2819
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
2820
+ # dataview in a single AZ.
2754
2821
  # @return [String]
2755
2822
  #
2756
2823
  # @!attribute [rw] availability_zone_ids
@@ -3335,12 +3402,9 @@ module Aws::Finspace
3335
3402
  # @return [String]
3336
3403
  #
3337
3404
  # @!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.
3405
+ # The number of availability zones you want to assign per volume.
3406
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
3407
+ # dataview in a single AZ.
3344
3408
  # @return [String]
3345
3409
  #
3346
3410
  # @!attribute [rw] availability_zone_id
@@ -3377,6 +3441,11 @@ module Aws::Finspace
3377
3441
  # ingest new changesets. The default value is false.
3378
3442
  # @return [Boolean]
3379
3443
  #
3444
+ # @!attribute [rw] read_write
3445
+ # Returns True if the dataview is created as writeable and False
3446
+ # otherwise.
3447
+ # @return [Boolean]
3448
+ #
3380
3449
  # @!attribute [rw] created_timestamp
3381
3450
  # The timestamp at which the dataview list entry was created in
3382
3451
  # FinSpace. The value is determined as epoch time in milliseconds. For
@@ -3409,6 +3478,7 @@ module Aws::Finspace
3409
3478
  :status,
3410
3479
  :description,
3411
3480
  :auto_update,
3481
+ :read_write,
3412
3482
  :created_timestamp,
3413
3483
  :last_modified_timestamp,
3414
3484
  :status_reason)
@@ -3432,11 +3502,20 @@ module Aws::Finspace
3432
3502
  # The name of the volume where you want to add data.
3433
3503
  # @return [String]
3434
3504
  #
3505
+ # @!attribute [rw] on_demand
3506
+ # Enables on-demand caching on the selected database path when a
3507
+ # particular file or a column of the database is accessed. When on
3508
+ # demand caching is **True**, dataviews perform minimal loading of
3509
+ # files on the filesystem as needed. When it is set to **False**,
3510
+ # everything is cached. The default value is **False**.
3511
+ # @return [Boolean]
3512
+ #
3435
3513
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/KxDataviewSegmentConfiguration AWS API Documentation
3436
3514
  #
3437
3515
  class KxDataviewSegmentConfiguration < Struct.new(
3438
3516
  :db_paths,
3439
- :volume_name)
3517
+ :volume_name,
3518
+ :on_demand)
3440
3519
  SENSITIVE = []
3441
3520
  include Aws::Structure
3442
3521
  end
@@ -3680,6 +3759,26 @@ module Aws::Finspace
3680
3759
  # @!attribute [rw] host_type
3681
3760
  # The memory and CPU capabilities of the scaling group host on which
3682
3761
  # FinSpace Managed kdb clusters will be placed.
3762
+ #
3763
+ # You can add one of the following values:
3764
+ #
3765
+ # * `kx.sg.4xlarge` – The host type with a configuration of 108 GiB
3766
+ # memory and 16 vCPUs.
3767
+ #
3768
+ # * `kx.sg.8xlarge` – The host type with a configuration of 216 GiB
3769
+ # memory and 32 vCPUs.
3770
+ #
3771
+ # * `kx.sg.16xlarge` – The host type with a configuration of 432 GiB
3772
+ # memory and 64 vCPUs.
3773
+ #
3774
+ # * `kx.sg.32xlarge` – The host type with a configuration of 864 GiB
3775
+ # memory and 128 vCPUs.
3776
+ #
3777
+ # * `kx.sg1.16xlarge` – The host type with a configuration of 1949 GiB
3778
+ # memory and 64 vCPUs.
3779
+ #
3780
+ # * `kx.sg1.24xlarge` – The host type with a configuration of 2948 GiB
3781
+ # memory and 96 vCPUs.
3683
3782
  # @return [String]
3684
3783
  #
3685
3784
  # @!attribute [rw] clusters
@@ -3848,8 +3947,9 @@ module Aws::Finspace
3848
3947
  # @return [String]
3849
3948
  #
3850
3949
  # @!attribute [rw] az_mode
3851
- # The number of availability zones assigned to the volume. Currently,
3852
- # only `SINGLE` is supported.
3950
+ # The number of availability zones you want to assign per volume.
3951
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
3952
+ # dataview in a single AZ.
3853
3953
  # @return [String]
3854
3954
  #
3855
3955
  # @!attribute [rw] availability_zone_ids
@@ -4878,12 +4978,9 @@ module Aws::Finspace
4878
4978
  # @return [String]
4879
4979
  #
4880
4980
  # @!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.
4981
+ # The number of availability zones you want to assign per volume.
4982
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
4983
+ # dataview in a single AZ.
4887
4984
  # @return [String]
4888
4985
  #
4889
4986
  # @!attribute [rw] availability_zone_id
@@ -4923,6 +5020,11 @@ module Aws::Finspace
4923
5020
  # changesets are ingested. The default value is false.
4924
5021
  # @return [Boolean]
4925
5022
  #
5023
+ # @!attribute [rw] read_write
5024
+ # Returns True if the dataview is created as writeable and False
5025
+ # otherwise.
5026
+ # @return [Boolean]
5027
+ #
4926
5028
  # @!attribute [rw] description
4927
5029
  # A description of the dataview.
4928
5030
  # @return [String]
@@ -4954,6 +5056,7 @@ module Aws::Finspace
4954
5056
  :active_versions,
4955
5057
  :status,
4956
5058
  :auto_update,
5059
+ :read_write,
4957
5060
  :description,
4958
5061
  :created_timestamp,
4959
5062
  :last_modified_timestamp)
@@ -5366,8 +5469,9 @@ module Aws::Finspace
5366
5469
  # @return [Time]
5367
5470
  #
5368
5471
  # @!attribute [rw] az_mode
5369
- # The number of availability zones you want to assign per cluster.
5370
- # Currently, FinSpace only support `SINGLE` for volumes.
5472
+ # The number of availability zones you want to assign per volume.
5473
+ # Currently, FinSpace only supports `SINGLE` for volumes. This places
5474
+ # dataview in a single AZ.
5371
5475
  # @return [String]
5372
5476
  #
5373
5477
  # @!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.30.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
@@ -582,6 +586,7 @@ module Aws
582
586
  def active_versions: () -> ::Array[Types::KxDataviewActiveVersion]
583
587
  def description: () -> ::String
584
588
  def auto_update: () -> bool
589
+ def read_write: () -> bool
585
590
  def environment_id: () -> ::String
586
591
  def created_timestamp: () -> ::Time
587
592
  def last_modified_timestamp: () -> ::Time
@@ -915,7 +920,8 @@ module Aws
915
920
  segment_configurations: Array[
916
921
  {
917
922
  db_paths: Array[::String],
918
- volume_name: ::String
923
+ volume_name: ::String,
924
+ on_demand: bool?
919
925
  },
920
926
  ]?
921
927
  }?
@@ -955,6 +961,7 @@ module Aws
955
961
  def active_versions: () -> ::Array[Types::KxDataviewActiveVersion]
956
962
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
957
963
  def auto_update: () -> bool
964
+ def read_write: () -> bool
958
965
  def description: () -> ::String
959
966
  def created_timestamp: () -> ::Time
960
967
  def last_modified_timestamp: () -> ::Time
@@ -969,7 +976,8 @@ module Aws
969
976
  ?segment_configurations: Array[
970
977
  {
971
978
  db_paths: Array[::String],
972
- volume_name: ::String
979
+ volume_name: ::String,
980
+ on_demand: bool?
973
981
  },
974
982
  ],
975
983
  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")
@@ -505,6 +507,7 @@ module Aws::Finspace
505
507
  attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
506
508
  attr_accessor description: ::String
507
509
  attr_accessor auto_update: bool
510
+ attr_accessor read_write: bool
508
511
  attr_accessor environment_id: ::String
509
512
  attr_accessor created_timestamp: ::Time
510
513
  attr_accessor last_modified_timestamp: ::Time
@@ -713,6 +716,7 @@ module Aws::Finspace
713
716
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
714
717
  attr_accessor description: ::String
715
718
  attr_accessor auto_update: bool
719
+ attr_accessor read_write: bool
716
720
  attr_accessor created_timestamp: ::Time
717
721
  attr_accessor last_modified_timestamp: ::Time
718
722
  attr_accessor status_reason: ::String
@@ -722,6 +726,7 @@ module Aws::Finspace
722
726
  class KxDataviewSegmentConfiguration
723
727
  attr_accessor db_paths: ::Array[::String]
724
728
  attr_accessor volume_name: ::String
729
+ attr_accessor on_demand: bool
725
730
  SENSITIVE: []
726
731
  end
727
732
 
@@ -1113,6 +1118,7 @@ module Aws::Finspace
1113
1118
  attr_accessor active_versions: ::Array[Types::KxDataviewActiveVersion]
1114
1119
  attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "FAILED" | "DELETING")
1115
1120
  attr_accessor auto_update: bool
1121
+ attr_accessor read_write: bool
1116
1122
  attr_accessor description: ::String
1117
1123
  attr_accessor created_timestamp: ::Time
1118
1124
  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.30.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-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core