@aws-sdk/client-finspace 3.468.0 → 3.470.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.
- package/README.md +112 -0
- package/dist-cjs/Finspace.js +28 -0
- package/dist-cjs/commands/CreateKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/CreateKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/CreateKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/GetKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/GetKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/GetKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/ListKxDataviewsCommand.js +51 -0
- package/dist-cjs/commands/ListKxScalingGroupsCommand.js +51 -0
- package/dist-cjs/commands/ListKxVolumesCommand.js +51 -0
- package/dist-cjs/commands/UpdateKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/UpdateKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/models/models_0.js +39 -1
- package/dist-cjs/pagination/ListKxDataviewsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxScalingGroupsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1477 -207
- package/dist-es/Finspace.js +28 -0
- package/dist-es/commands/CreateKxDataviewCommand.js +47 -0
- package/dist-es/commands/CreateKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/CreateKxVolumeCommand.js +47 -0
- package/dist-es/commands/DeleteKxDataviewCommand.js +47 -0
- package/dist-es/commands/DeleteKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/DeleteKxVolumeCommand.js +47 -0
- package/dist-es/commands/GetKxDataviewCommand.js +47 -0
- package/dist-es/commands/GetKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/GetKxVolumeCommand.js +47 -0
- package/dist-es/commands/ListKxDataviewsCommand.js +47 -0
- package/dist-es/commands/ListKxScalingGroupsCommand.js +47 -0
- package/dist-es/commands/ListKxVolumesCommand.js +47 -0
- package/dist-es/commands/UpdateKxDataviewCommand.js +47 -0
- package/dist-es/commands/UpdateKxVolumeCommand.js +47 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/models/models_0.js +38 -0
- package/dist-es/pagination/ListKxDataviewsPaginator.js +25 -0
- package/dist-es/pagination/ListKxScalingGroupsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1397 -155
- package/dist-types/Finspace.d.ts +98 -0
- package/dist-types/FinspaceClient.d.ts +16 -2
- package/dist-types/commands/CreateKxClusterCommand.d.ts +68 -6
- package/dist-types/commands/CreateKxDataviewCommand.d.ts +136 -0
- package/dist-types/commands/CreateKxScalingGroupCommand.d.ts +108 -0
- package/dist-types/commands/CreateKxVolumeCommand.d.ts +129 -0
- package/dist-types/commands/DeleteKxDataviewCommand.d.ts +94 -0
- package/dist-types/commands/DeleteKxEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKxScalingGroupCommand.d.ts +96 -0
- package/dist-types/commands/DeleteKxUserCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKxVolumeCommand.d.ts +98 -0
- package/dist-types/commands/GetKxClusterCommand.d.ts +37 -3
- package/dist-types/commands/GetKxDataviewCommand.d.ts +130 -0
- package/dist-types/commands/GetKxEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/GetKxScalingGroupCommand.d.ts +107 -0
- package/dist-types/commands/GetKxVolumeCommand.d.ts +120 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +3 -0
- package/dist-types/commands/ListKxClustersCommand.d.ts +8 -2
- package/dist-types/commands/ListKxDataviewsCommand.d.ts +135 -0
- package/dist-types/commands/ListKxEnvironmentsCommand.d.ts +3 -0
- package/dist-types/commands/ListKxScalingGroupsCommand.d.ts +112 -0
- package/dist-types/commands/ListKxVolumesCommand.d.ts +115 -0
- package/dist-types/commands/UpdateKxClusterDatabasesCommand.d.ts +15 -0
- package/dist-types/commands/UpdateKxDataviewCommand.d.ts +145 -0
- package/dist-types/commands/UpdateKxVolumeCommand.d.ts +128 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +2214 -214
- package/dist-types/pagination/ListKxDataviewsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxScalingGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
- package/dist-types/ts3.4/Finspace.d.ts +238 -0
- package/dist-types/ts3.4/FinspaceClient.d.ts +86 -2
- package/dist-types/ts3.4/commands/CreateKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxScalingGroupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxScalingGroupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxScalingGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetKxVolumeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListKxDataviewsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxScalingGroupsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxVolumesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/models/models_0.d.ts +360 -4
- package/dist-types/ts3.4/pagination/ListKxDataviewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxScalingGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +168 -0
- package/package.json +13 -13
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient";
|
|
5
|
+
import { ListKxVolumesRequest, ListKxVolumesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListKxVolumesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListKxVolumesCommandInput extends ListKxVolumesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListKxVolumesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListKxVolumesCommandOutput extends ListKxVolumesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Lists all the volumes in a kdb environment.
|
|
28
|
+
* </p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { FinspaceClient, ListKxVolumesCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
33
|
+
* // const { FinspaceClient, ListKxVolumesCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
34
|
+
* const client = new FinspaceClient(config);
|
|
35
|
+
* const input = { // ListKxVolumesRequest
|
|
36
|
+
* environmentId: "STRING_VALUE", // required
|
|
37
|
+
* maxResults: Number("int"),
|
|
38
|
+
* nextToken: "STRING_VALUE",
|
|
39
|
+
* volumeType: "NAS_1",
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListKxVolumesCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ListKxVolumesResponse
|
|
44
|
+
* // kxVolumeSummaries: [ // KxVolumes
|
|
45
|
+
* // { // KxVolume
|
|
46
|
+
* // volumeName: "STRING_VALUE",
|
|
47
|
+
* // volumeType: "NAS_1",
|
|
48
|
+
* // status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
49
|
+
* // description: "STRING_VALUE",
|
|
50
|
+
* // statusReason: "STRING_VALUE",
|
|
51
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
52
|
+
* // availabilityZoneIds: [ // AvailabilityZoneIds
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
56
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // nextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
62
|
+
* ```
|
|
63
|
+
*
|
|
64
|
+
* @param ListKxVolumesCommandInput - {@link ListKxVolumesCommandInput}
|
|
65
|
+
* @returns {@link ListKxVolumesCommandOutput}
|
|
66
|
+
* @see {@link ListKxVolumesCommandInput} for command's `input` shape.
|
|
67
|
+
* @see {@link ListKxVolumesCommandOutput} for command's `response` shape.
|
|
68
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
71
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ConflictException} (client fault)
|
|
74
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
78
|
+
* failure.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
81
|
+
* <p>A service limit or quota is exceeded.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
|
+
* <p>One or more resources can't be found.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was denied due to request throttling.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ValidationException} (client fault)
|
|
90
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link FinspaceServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
94
|
+
*
|
|
95
|
+
*/
|
|
96
|
+
export declare class ListKxVolumesCommand extends $Command<ListKxVolumesCommandInput, ListKxVolumesCommandOutput, FinspaceClientResolvedConfig> {
|
|
97
|
+
readonly input: ListKxVolumesCommandInput;
|
|
98
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
constructor(input: ListKxVolumesCommandInput);
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListKxVolumesCommandInput, ListKxVolumesCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
private deserialize;
|
|
115
|
+
}
|
|
@@ -44,9 +44,24 @@ export interface UpdateKxClusterDatabasesCommandOutput extends UpdateKxClusterDa
|
|
|
44
44
|
* dbPaths: [ // DbPaths // required
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
+
* dataviewName: "STRING_VALUE",
|
|
47
48
|
* },
|
|
48
49
|
* ],
|
|
49
50
|
* changesetId: "STRING_VALUE",
|
|
51
|
+
* dataviewName: "STRING_VALUE",
|
|
52
|
+
* dataviewConfiguration: { // KxDataviewConfiguration
|
|
53
|
+
* dataviewName: "STRING_VALUE",
|
|
54
|
+
* dataviewVersionId: "STRING_VALUE",
|
|
55
|
+
* changesetId: "STRING_VALUE",
|
|
56
|
+
* segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
57
|
+
* { // KxDataviewSegmentConfiguration
|
|
58
|
+
* dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
59
|
+
* "STRING_VALUE",
|
|
60
|
+
* ],
|
|
61
|
+
* volumeName: "STRING_VALUE", // required
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* },
|
|
50
65
|
* },
|
|
51
66
|
* ],
|
|
52
67
|
* deploymentConfiguration: { // KxDeploymentConfiguration
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient";
|
|
5
|
+
import { UpdateKxDataviewRequest, UpdateKxDataviewResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateKxDataviewCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateKxDataviewCommandInput extends UpdateKxDataviewRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateKxDataviewCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateKxDataviewCommandOutput extends UpdateKxDataviewResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Updates the specified dataview. The dataviews get automatically updated when any new changesets are ingested. Each update of the dataview creates a new version, including changeset details and cache configurations</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { FinspaceClient, UpdateKxDataviewCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
32
|
+
* // const { FinspaceClient, UpdateKxDataviewCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
33
|
+
* const client = new FinspaceClient(config);
|
|
34
|
+
* const input = { // UpdateKxDataviewRequest
|
|
35
|
+
* environmentId: "STRING_VALUE", // required
|
|
36
|
+
* databaseName: "STRING_VALUE", // required
|
|
37
|
+
* dataviewName: "STRING_VALUE", // required
|
|
38
|
+
* description: "STRING_VALUE",
|
|
39
|
+
* changesetId: "STRING_VALUE",
|
|
40
|
+
* segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
41
|
+
* { // KxDataviewSegmentConfiguration
|
|
42
|
+
* dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* volumeName: "STRING_VALUE", // required
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* clientToken: "STRING_VALUE", // required
|
|
49
|
+
* };
|
|
50
|
+
* const command = new UpdateKxDataviewCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateKxDataviewResponse
|
|
53
|
+
* // environmentId: "STRING_VALUE",
|
|
54
|
+
* // databaseName: "STRING_VALUE",
|
|
55
|
+
* // dataviewName: "STRING_VALUE",
|
|
56
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
57
|
+
* // availabilityZoneId: "STRING_VALUE",
|
|
58
|
+
* // changesetId: "STRING_VALUE",
|
|
59
|
+
* // segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
60
|
+
* // { // KxDataviewSegmentConfiguration
|
|
61
|
+
* // dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // volumeName: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // activeVersions: [ // KxDataviewActiveVersionList
|
|
68
|
+
* // { // KxDataviewActiveVersion
|
|
69
|
+
* // changesetId: "STRING_VALUE",
|
|
70
|
+
* // segmentConfigurations: [
|
|
71
|
+
* // {
|
|
72
|
+
* // dbPaths: [ // required
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // volumeName: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // attachedClusters: [ // AttachedClusterList
|
|
79
|
+
* // "STRING_VALUE",
|
|
80
|
+
* // ],
|
|
81
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
82
|
+
* // versionId: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
|
|
86
|
+
* // autoUpdate: true || false,
|
|
87
|
+
* // description: "STRING_VALUE",
|
|
88
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
89
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
*
|
|
94
|
+
* @param UpdateKxDataviewCommandInput - {@link UpdateKxDataviewCommandInput}
|
|
95
|
+
* @returns {@link UpdateKxDataviewCommandOutput}
|
|
96
|
+
* @see {@link UpdateKxDataviewCommandInput} for command's `input` shape.
|
|
97
|
+
* @see {@link UpdateKxDataviewCommandOutput} for command's `response` shape.
|
|
98
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
101
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ConflictException} (client fault)
|
|
104
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link InternalServerException} (server fault)
|
|
107
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
108
|
+
* failure.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
111
|
+
* <p>The specified resource group already exists.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
114
|
+
* <p>One or more resources can't be found.</p>
|
|
115
|
+
*
|
|
116
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
117
|
+
* <p>The request was denied due to request throttling.</p>
|
|
118
|
+
*
|
|
119
|
+
* @throws {@link ValidationException} (client fault)
|
|
120
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
121
|
+
*
|
|
122
|
+
* @throws {@link FinspaceServiceException}
|
|
123
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
124
|
+
*
|
|
125
|
+
*/
|
|
126
|
+
export declare class UpdateKxDataviewCommand extends $Command<UpdateKxDataviewCommandInput, UpdateKxDataviewCommandOutput, FinspaceClientResolvedConfig> {
|
|
127
|
+
readonly input: UpdateKxDataviewCommandInput;
|
|
128
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
129
|
+
/**
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
constructor(input: UpdateKxDataviewCommandInput);
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateKxDataviewCommandInput, UpdateKxDataviewCommandOutput>;
|
|
137
|
+
/**
|
|
138
|
+
* @internal
|
|
139
|
+
*/
|
|
140
|
+
private serialize;
|
|
141
|
+
/**
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
144
|
+
private deserialize;
|
|
145
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient";
|
|
5
|
+
import { UpdateKxVolumeRequest, UpdateKxVolumeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateKxVolumeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateKxVolumeCommandInput extends UpdateKxVolumeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateKxVolumeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateKxVolumeCommandOutput extends UpdateKxVolumeResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Updates the throughput or capacity of a volume. During the update process, the filesystem
|
|
28
|
+
* might be unavailable for a few minutes. You can retry any operations after the update is complete.
|
|
29
|
+
* </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { FinspaceClient, UpdateKxVolumeCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
34
|
+
* // const { FinspaceClient, UpdateKxVolumeCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
35
|
+
* const client = new FinspaceClient(config);
|
|
36
|
+
* const input = { // UpdateKxVolumeRequest
|
|
37
|
+
* environmentId: "STRING_VALUE", // required
|
|
38
|
+
* volumeName: "STRING_VALUE", // required
|
|
39
|
+
* description: "STRING_VALUE",
|
|
40
|
+
* clientToken: "STRING_VALUE",
|
|
41
|
+
* nas1Configuration: { // KxNAS1Configuration
|
|
42
|
+
* type: "SSD_1000" || "SSD_250" || "HDD_12",
|
|
43
|
+
* size: Number("int"),
|
|
44
|
+
* },
|
|
45
|
+
* };
|
|
46
|
+
* const command = new UpdateKxVolumeCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // UpdateKxVolumeResponse
|
|
49
|
+
* // environmentId: "STRING_VALUE",
|
|
50
|
+
* // volumeName: "STRING_VALUE",
|
|
51
|
+
* // volumeType: "NAS_1",
|
|
52
|
+
* // volumeArn: "STRING_VALUE",
|
|
53
|
+
* // nas1Configuration: { // KxNAS1Configuration
|
|
54
|
+
* // type: "SSD_1000" || "SSD_250" || "HDD_12",
|
|
55
|
+
* // size: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
58
|
+
* // description: "STRING_VALUE",
|
|
59
|
+
* // statusReason: "STRING_VALUE",
|
|
60
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
61
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
62
|
+
* // availabilityZoneIds: [ // AvailabilityZoneIds
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
66
|
+
* // attachedClusters: [ // KxAttachedClusters
|
|
67
|
+
* // { // KxAttachedCluster
|
|
68
|
+
* // clusterName: "STRING_VALUE",
|
|
69
|
+
* // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT",
|
|
70
|
+
* // clusterStatus: "PENDING" || "CREATING" || "CREATE_FAILED" || "RUNNING" || "UPDATING" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* @param UpdateKxVolumeCommandInput - {@link UpdateKxVolumeCommandInput}
|
|
78
|
+
* @returns {@link UpdateKxVolumeCommandOutput}
|
|
79
|
+
* @see {@link UpdateKxVolumeCommandInput} for command's `input` shape.
|
|
80
|
+
* @see {@link UpdateKxVolumeCommandOutput} for command's `response` shape.
|
|
81
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
84
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ConflictException} (client fault)
|
|
87
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link InternalServerException} (server fault)
|
|
90
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
91
|
+
* failure.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
94
|
+
* <p>A service limit or quota is exceeded.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>One or more resources can't be found.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
100
|
+
* <p>The request was denied due to request throttling.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ValidationException} (client fault)
|
|
103
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link FinspaceServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
107
|
+
*
|
|
108
|
+
*/
|
|
109
|
+
export declare class UpdateKxVolumeCommand extends $Command<UpdateKxVolumeCommandInput, UpdateKxVolumeCommandOutput, FinspaceClientResolvedConfig> {
|
|
110
|
+
readonly input: UpdateKxVolumeCommandInput;
|
|
111
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
constructor(input: UpdateKxVolumeCommandInput);
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateKxVolumeCommandInput, UpdateKxVolumeCommandOutput>;
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
123
|
+
private serialize;
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
127
|
+
private deserialize;
|
|
128
|
+
}
|
|
@@ -2,27 +2,39 @@ export * from "./CreateEnvironmentCommand";
|
|
|
2
2
|
export * from "./CreateKxChangesetCommand";
|
|
3
3
|
export * from "./CreateKxClusterCommand";
|
|
4
4
|
export * from "./CreateKxDatabaseCommand";
|
|
5
|
+
export * from "./CreateKxDataviewCommand";
|
|
5
6
|
export * from "./CreateKxEnvironmentCommand";
|
|
7
|
+
export * from "./CreateKxScalingGroupCommand";
|
|
6
8
|
export * from "./CreateKxUserCommand";
|
|
9
|
+
export * from "./CreateKxVolumeCommand";
|
|
7
10
|
export * from "./DeleteEnvironmentCommand";
|
|
8
11
|
export * from "./DeleteKxClusterCommand";
|
|
9
12
|
export * from "./DeleteKxDatabaseCommand";
|
|
13
|
+
export * from "./DeleteKxDataviewCommand";
|
|
10
14
|
export * from "./DeleteKxEnvironmentCommand";
|
|
15
|
+
export * from "./DeleteKxScalingGroupCommand";
|
|
11
16
|
export * from "./DeleteKxUserCommand";
|
|
17
|
+
export * from "./DeleteKxVolumeCommand";
|
|
12
18
|
export * from "./GetEnvironmentCommand";
|
|
13
19
|
export * from "./GetKxChangesetCommand";
|
|
14
20
|
export * from "./GetKxClusterCommand";
|
|
15
21
|
export * from "./GetKxConnectionStringCommand";
|
|
16
22
|
export * from "./GetKxDatabaseCommand";
|
|
23
|
+
export * from "./GetKxDataviewCommand";
|
|
17
24
|
export * from "./GetKxEnvironmentCommand";
|
|
25
|
+
export * from "./GetKxScalingGroupCommand";
|
|
18
26
|
export * from "./GetKxUserCommand";
|
|
27
|
+
export * from "./GetKxVolumeCommand";
|
|
19
28
|
export * from "./ListEnvironmentsCommand";
|
|
20
29
|
export * from "./ListKxChangesetsCommand";
|
|
21
30
|
export * from "./ListKxClusterNodesCommand";
|
|
22
31
|
export * from "./ListKxClustersCommand";
|
|
23
32
|
export * from "./ListKxDatabasesCommand";
|
|
33
|
+
export * from "./ListKxDataviewsCommand";
|
|
24
34
|
export * from "./ListKxEnvironmentsCommand";
|
|
35
|
+
export * from "./ListKxScalingGroupsCommand";
|
|
25
36
|
export * from "./ListKxUsersCommand";
|
|
37
|
+
export * from "./ListKxVolumesCommand";
|
|
26
38
|
export * from "./ListTagsForResourceCommand";
|
|
27
39
|
export * from "./TagResourceCommand";
|
|
28
40
|
export * from "./UntagResourceCommand";
|
|
@@ -30,6 +42,8 @@ export * from "./UpdateEnvironmentCommand";
|
|
|
30
42
|
export * from "./UpdateKxClusterCodeConfigurationCommand";
|
|
31
43
|
export * from "./UpdateKxClusterDatabasesCommand";
|
|
32
44
|
export * from "./UpdateKxDatabaseCommand";
|
|
45
|
+
export * from "./UpdateKxDataviewCommand";
|
|
33
46
|
export * from "./UpdateKxEnvironmentCommand";
|
|
34
47
|
export * from "./UpdateKxEnvironmentNetworkCommand";
|
|
35
48
|
export * from "./UpdateKxUserCommand";
|
|
49
|
+
export * from "./UpdateKxVolumeCommand";
|