Skip to content

Commit 38c6f75

Browse files
author
awstools
committed
feat(client-finspace): Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations.
1 parent 05c32e7 commit 38c6f75

10 files changed

+245
-91
lines changed

clients/client-finspace/src/commands/CreateKxClusterCommand.ts

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
6868
* "STRING_VALUE",
6969
* ],
7070
* volumeName: "STRING_VALUE", // required
71+
* onDemand: true || false,
7172
* },
7273
* ],
7374
* },
@@ -177,6 +178,7 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
177178
* // "STRING_VALUE",
178179
* // ],
179180
* // volumeName: "STRING_VALUE", // required
181+
* // onDemand: true || false,
180182
* // },
181183
* // ],
182184
* // },

clients/client-finspace/src/commands/CreateKxDataviewCommand.ts

+4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ export interface CreateKxDataviewCommandOutput extends CreateKxDataviewResponse,
4848
* "STRING_VALUE",
4949
* ],
5050
* volumeName: "STRING_VALUE", // required
51+
* onDemand: true || false,
5152
* },
5253
* ],
5354
* autoUpdate: true || false,
55+
* readWrite: true || false,
5456
* description: "STRING_VALUE",
5557
* tags: { // TagMap
5658
* "<keys>": "STRING_VALUE",
@@ -72,10 +74,12 @@ export interface CreateKxDataviewCommandOutput extends CreateKxDataviewResponse,
7274
* // "STRING_VALUE",
7375
* // ],
7476
* // volumeName: "STRING_VALUE", // required
77+
* // onDemand: true || false,
7578
* // },
7679
* // ],
7780
* // description: "STRING_VALUE",
7881
* // autoUpdate: true || false,
82+
* // readWrite: true || false,
7983
* // createdTimestamp: new Date("TIMESTAMP"),
8084
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
8185
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",

clients/client-finspace/src/commands/GetKxClusterCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export interface GetKxClusterCommandOutput extends GetKxClusterResponse, __Metad
8080
* // "STRING_VALUE",
8181
* // ],
8282
* // volumeName: "STRING_VALUE", // required
83+
* // onDemand: true || false,
8384
* // },
8485
* // ],
8586
* // },

clients/client-finspace/src/commands/GetKxDataviewCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met
5555
* // "STRING_VALUE",
5656
* // ],
5757
* // volumeName: "STRING_VALUE", // required
58+
* // onDemand: true || false,
5859
* // },
5960
* // ],
6061
* // activeVersions: [ // KxDataviewActiveVersionList
@@ -66,6 +67,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met
6667
* // "STRING_VALUE",
6768
* // ],
6869
* // volumeName: "STRING_VALUE", // required
70+
* // onDemand: true || false,
6971
* // },
7072
* // ],
7173
* // attachedClusters: [ // AttachedClusterList
@@ -77,6 +79,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met
7779
* // ],
7880
* // description: "STRING_VALUE",
7981
* // autoUpdate: true || false,
82+
* // readWrite: true || false,
8083
* // environmentId: "STRING_VALUE",
8184
* // createdTimestamp: new Date("TIMESTAMP"),
8285
* // lastModifiedTimestamp: new Date("TIMESTAMP"),

clients/client-finspace/src/commands/ListKxDataviewsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _
5858
* // "STRING_VALUE",
5959
* // ],
6060
* // volumeName: "STRING_VALUE", // required
61+
* // onDemand: true || false,
6162
* // },
6263
* // ],
6364
* // activeVersions: [ // KxDataviewActiveVersionList
@@ -69,6 +70,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _
6970
* // "STRING_VALUE",
7071
* // ],
7172
* // volumeName: "STRING_VALUE", // required
73+
* // onDemand: true || false,
7274
* // },
7375
* // ],
7476
* // attachedClusters: [ // AttachedClusterList
@@ -81,6 +83,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _
8183
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
8284
* // description: "STRING_VALUE",
8385
* // autoUpdate: true || false,
86+
* // readWrite: true || false,
8487
* // createdTimestamp: new Date("TIMESTAMP"),
8588
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
8689
* // statusReason: "STRING_VALUE",

clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export interface UpdateKxClusterDatabasesCommandOutput extends UpdateKxClusterDa
6363
* "STRING_VALUE",
6464
* ],
6565
* volumeName: "STRING_VALUE", // required
66+
* onDemand: true || false,
6667
* },
6768
* ],
6869
* },

clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
4747
* "STRING_VALUE",
4848
* ],
4949
* volumeName: "STRING_VALUE", // required
50+
* onDemand: true || false,
5051
* },
5152
* ],
5253
* clientToken: "STRING_VALUE", // required
@@ -66,6 +67,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
6667
* // "STRING_VALUE",
6768
* // ],
6869
* // volumeName: "STRING_VALUE", // required
70+
* // onDemand: true || false,
6971
* // },
7072
* // ],
7173
* // activeVersions: [ // KxDataviewActiveVersionList
@@ -77,6 +79,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
7779
* // "STRING_VALUE",
7880
* // ],
7981
* // volumeName: "STRING_VALUE", // required
82+
* // onDemand: true || false,
8083
* // },
8184
* // ],
8285
* // attachedClusters: [ // AttachedClusterList
@@ -88,6 +91,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
8891
* // ],
8992
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
9093
* // autoUpdate: true || false,
94+
* // readWrite: true || false,
9195
* // description: "STRING_VALUE",
9296
* // createdTimestamp: new Date("TIMESTAMP"),
9397
* // lastModifiedTimestamp: new Date("TIMESTAMP"),

0 commit comments

Comments
 (0)