aws-sdk-finspace 1.28.0 → 1.30.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspace/client.rb +67 -9
- data/lib/aws-sdk-finspace/client_api.rb +6 -0
- data/lib/aws-sdk-finspace/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-finspace/types.rb +145 -41
- data/lib/aws-sdk-finspace.rb +1 -1
- data/sig/client.rbs +1114 -0
- data/sig/errors.rbs +47 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1245 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c5ae03fabbaf70158b469645b5c14cc297a8ce902208d235ef84025d3c41c9e
|
4
|
+
data.tar.gz: 9a99a593e5c1b9f9dc9b89b33e036226449ccb64986f0ae700f719f4485d0b9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fd0e3f6f8347c983534ad6e4ff1148cb708d64ecf3bb910b890c54e925d5a9ae779fb4245a45f4df1cac86171c1631175e6d815951942b8878fc5df748fce6b
|
7
|
+
data.tar.gz: aa9a49c3e5745963d42f353e7aeab202c317a558c0d2d6f122e71dce11824a4cd413fa4199b4d66cfa174b1f05a9fa0644b05a8fd779552902c30d65a7673297
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.29.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.28.0 (2024-01-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
994
|
-
#
|
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
|
1316
|
-
# Currently, FinSpace only
|
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<Types::KxDataviewActiveVersion>
|
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<Types::KxDataviewActiveVersion>
|
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.
|
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"))
|
@@ -14,6 +14,7 @@ module Aws::Finspace
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Finspace::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|