Skip to content

Commit

Permalink
feat(client-finspace): Adding new attributes readWrite and onDemand t…
Browse files Browse the repository at this point in the history
…o dataview models for Database Maintenance operations.
  • Loading branch information
awstools committed Mar 19, 2024
1 parent 05c32e7 commit 38c6f75
Show file tree
Hide file tree
Showing 10 changed files with 245 additions and 91 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
* "STRING_VALUE",
* ],
* volumeName: "STRING_VALUE", // required
* onDemand: true || false,
* },
* ],
* },
Expand Down Expand Up @@ -177,6 +178,7 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ export interface CreateKxDataviewCommandOutput extends CreateKxDataviewResponse,
* "STRING_VALUE",
* ],
* volumeName: "STRING_VALUE", // required
* onDemand: true || false,
* },
* ],
* autoUpdate: true || false,
* readWrite: true || false,
* description: "STRING_VALUE",
* tags: { // TagMap
* "<keys>": "STRING_VALUE",
Expand All @@ -72,10 +74,12 @@ export interface CreateKxDataviewCommandOutput extends CreateKxDataviewResponse,
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // description: "STRING_VALUE",
* // autoUpdate: true || false,
* // readWrite: true || false,
* // createdTimestamp: new Date("TIMESTAMP"),
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export interface GetKxClusterCommandOutput extends GetKxClusterResponse, __Metad
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // },
Expand Down
3 changes: 3 additions & 0 deletions clients/client-finspace/src/commands/GetKxDataviewCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // activeVersions: [ // KxDataviewActiveVersionList
Expand All @@ -66,6 +67,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // attachedClusters: [ // AttachedClusterList
Expand All @@ -77,6 +79,7 @@ export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __Met
* // ],
* // description: "STRING_VALUE",
* // autoUpdate: true || false,
* // readWrite: true || false,
* // environmentId: "STRING_VALUE",
* // createdTimestamp: new Date("TIMESTAMP"),
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // activeVersions: [ // KxDataviewActiveVersionList
Expand All @@ -69,6 +70,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // attachedClusters: [ // AttachedClusterList
Expand All @@ -81,6 +83,7 @@ export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, _
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
* // description: "STRING_VALUE",
* // autoUpdate: true || false,
* // readWrite: true || false,
* // createdTimestamp: new Date("TIMESTAMP"),
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
* // statusReason: "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export interface UpdateKxClusterDatabasesCommandOutput extends UpdateKxClusterDa
* "STRING_VALUE",
* ],
* volumeName: "STRING_VALUE", // required
* onDemand: true || false,
* },
* ],
* },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
* "STRING_VALUE",
* ],
* volumeName: "STRING_VALUE", // required
* onDemand: true || false,
* },
* ],
* clientToken: "STRING_VALUE", // required
Expand All @@ -66,6 +67,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // activeVersions: [ // KxDataviewActiveVersionList
Expand All @@ -77,6 +79,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
* // "STRING_VALUE",
* // ],
* // volumeName: "STRING_VALUE", // required
* // onDemand: true || false,
* // },
* // ],
* // attachedClusters: [ // AttachedClusterList
Expand All @@ -88,6 +91,7 @@ export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse,
* // ],
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
* // autoUpdate: true || false,
* // readWrite: true || false,
* // description: "STRING_VALUE",
* // createdTimestamp: new Date("TIMESTAMP"),
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
Expand Down
Loading

0 comments on commit 38c6f75

Please sign in to comment.