@aws-sdk/client-finspace 3.466.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 +34 -34
|
@@ -0,0 +1,130 @@
|
|
|
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 { GetKxDataviewRequest, GetKxDataviewResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetKxDataviewCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetKxDataviewCommandInput extends GetKxDataviewRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetKxDataviewCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetKxDataviewCommandOutput extends GetKxDataviewResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Retrieves details of the dataview.
|
|
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, GetKxDataviewCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
33
|
+
* // const { FinspaceClient, GetKxDataviewCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
34
|
+
* const client = new FinspaceClient(config);
|
|
35
|
+
* const input = { // GetKxDataviewRequest
|
|
36
|
+
* environmentId: "STRING_VALUE", // required
|
|
37
|
+
* databaseName: "STRING_VALUE", // required
|
|
38
|
+
* dataviewName: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetKxDataviewCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetKxDataviewResponse
|
|
43
|
+
* // databaseName: "STRING_VALUE",
|
|
44
|
+
* // dataviewName: "STRING_VALUE",
|
|
45
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
46
|
+
* // availabilityZoneId: "STRING_VALUE",
|
|
47
|
+
* // changesetId: "STRING_VALUE",
|
|
48
|
+
* // segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
49
|
+
* // { // KxDataviewSegmentConfiguration
|
|
50
|
+
* // dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // volumeName: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // activeVersions: [ // KxDataviewActiveVersionList
|
|
57
|
+
* // { // KxDataviewActiveVersion
|
|
58
|
+
* // changesetId: "STRING_VALUE",
|
|
59
|
+
* // segmentConfigurations: [
|
|
60
|
+
* // {
|
|
61
|
+
* // dbPaths: [ // required
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // volumeName: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // attachedClusters: [ // AttachedClusterList
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
71
|
+
* // versionId: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // description: "STRING_VALUE",
|
|
75
|
+
* // autoUpdate: true || false,
|
|
76
|
+
* // environmentId: "STRING_VALUE",
|
|
77
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
78
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
79
|
+
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
|
|
80
|
+
* // statusReason: "STRING_VALUE",
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
83
|
+
* ```
|
|
84
|
+
*
|
|
85
|
+
* @param GetKxDataviewCommandInput - {@link GetKxDataviewCommandInput}
|
|
86
|
+
* @returns {@link GetKxDataviewCommandOutput}
|
|
87
|
+
* @see {@link GetKxDataviewCommandInput} for command's `input` shape.
|
|
88
|
+
* @see {@link GetKxDataviewCommandOutput} for command's `response` shape.
|
|
89
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
92
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InternalServerException} (server fault)
|
|
95
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
96
|
+
* failure.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
99
|
+
* <p>One or more resources can't be found.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
102
|
+
* <p>The request was denied due to request throttling.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link ValidationException} (client fault)
|
|
105
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link FinspaceServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
109
|
+
*
|
|
110
|
+
*/
|
|
111
|
+
export declare class GetKxDataviewCommand extends $Command<GetKxDataviewCommandInput, GetKxDataviewCommandOutput, FinspaceClientResolvedConfig> {
|
|
112
|
+
readonly input: GetKxDataviewCommandInput;
|
|
113
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
constructor(input: GetKxDataviewCommandInput);
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetKxDataviewCommandInput, GetKxDataviewCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
private serialize;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
private deserialize;
|
|
130
|
+
}
|
|
@@ -92,6 +92,9 @@ export interface GetKxEnvironmentCommandOutput extends GetKxEnvironmentResponse,
|
|
|
92
92
|
* @throws {@link AccessDeniedException} (client fault)
|
|
93
93
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
94
94
|
*
|
|
95
|
+
* @throws {@link ConflictException} (client fault)
|
|
96
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
97
|
+
*
|
|
95
98
|
* @throws {@link InternalServerException} (server fault)
|
|
96
99
|
* <p>The request processing has failed because of an unknown error, exception or
|
|
97
100
|
* failure.</p>
|
|
@@ -0,0 +1,107 @@
|
|
|
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 { GetKxScalingGroupRequest, GetKxScalingGroupResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetKxScalingGroupCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetKxScalingGroupCommandInput extends GetKxScalingGroupRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetKxScalingGroupCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetKxScalingGroupCommandOutput extends GetKxScalingGroupResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Retrieves details of a scaling group.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { FinspaceClient, GetKxScalingGroupCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
32
|
+
* // const { FinspaceClient, GetKxScalingGroupCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
33
|
+
* const client = new FinspaceClient(config);
|
|
34
|
+
* const input = { // GetKxScalingGroupRequest
|
|
35
|
+
* environmentId: "STRING_VALUE", // required
|
|
36
|
+
* scalingGroupName: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new GetKxScalingGroupCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // GetKxScalingGroupResponse
|
|
41
|
+
* // scalingGroupName: "STRING_VALUE",
|
|
42
|
+
* // scalingGroupArn: "STRING_VALUE",
|
|
43
|
+
* // hostType: "STRING_VALUE",
|
|
44
|
+
* // clusters: [ // KxClusterNameList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // availabilityZoneId: "STRING_VALUE",
|
|
48
|
+
* // status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
49
|
+
* // statusReason: "STRING_VALUE",
|
|
50
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
51
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param GetKxScalingGroupCommandInput - {@link GetKxScalingGroupCommandInput}
|
|
57
|
+
* @returns {@link GetKxScalingGroupCommandOutput}
|
|
58
|
+
* @see {@link GetKxScalingGroupCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link GetKxScalingGroupCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ConflictException} (client fault)
|
|
66
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalServerException} (server fault)
|
|
69
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
70
|
+
* failure.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
73
|
+
* <p>A service limit or quota is exceeded.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
76
|
+
* <p>One or more resources can't be found.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
79
|
+
* <p>The request was denied due to request throttling.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ValidationException} (client fault)
|
|
82
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link FinspaceServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
86
|
+
*
|
|
87
|
+
*/
|
|
88
|
+
export declare class GetKxScalingGroupCommand extends $Command<GetKxScalingGroupCommandInput, GetKxScalingGroupCommandOutput, FinspaceClientResolvedConfig> {
|
|
89
|
+
readonly input: GetKxScalingGroupCommandInput;
|
|
90
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
constructor(input: GetKxScalingGroupCommandInput);
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetKxScalingGroupCommandInput, GetKxScalingGroupCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
private serialize;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
private deserialize;
|
|
107
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
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 { GetKxVolumeRequest, GetKxVolumeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetKxVolumeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetKxVolumeCommandInput extends GetKxVolumeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetKxVolumeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetKxVolumeCommandOutput extends GetKxVolumeResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Retrieves the information about the volume. </p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { FinspaceClient, GetKxVolumeCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
32
|
+
* // const { FinspaceClient, GetKxVolumeCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
33
|
+
* const client = new FinspaceClient(config);
|
|
34
|
+
* const input = { // GetKxVolumeRequest
|
|
35
|
+
* environmentId: "STRING_VALUE", // required
|
|
36
|
+
* volumeName: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new GetKxVolumeCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // GetKxVolumeResponse
|
|
41
|
+
* // environmentId: "STRING_VALUE",
|
|
42
|
+
* // volumeName: "STRING_VALUE",
|
|
43
|
+
* // volumeType: "NAS_1",
|
|
44
|
+
* // volumeArn: "STRING_VALUE",
|
|
45
|
+
* // nas1Configuration: { // KxNAS1Configuration
|
|
46
|
+
* // type: "SSD_1000" || "SSD_250" || "HDD_12",
|
|
47
|
+
* // size: Number("int"),
|
|
48
|
+
* // },
|
|
49
|
+
* // status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
50
|
+
* // statusReason: "STRING_VALUE",
|
|
51
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
52
|
+
* // description: "STRING_VALUE",
|
|
53
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
54
|
+
* // availabilityZoneIds: [ // AvailabilityZoneIds
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
58
|
+
* // attachedClusters: [ // KxAttachedClusters
|
|
59
|
+
* // { // KxAttachedCluster
|
|
60
|
+
* // clusterName: "STRING_VALUE",
|
|
61
|
+
* // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT",
|
|
62
|
+
* // clusterStatus: "PENDING" || "CREATING" || "CREATE_FAILED" || "RUNNING" || "UPDATING" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* @param GetKxVolumeCommandInput - {@link GetKxVolumeCommandInput}
|
|
70
|
+
* @returns {@link GetKxVolumeCommandOutput}
|
|
71
|
+
* @see {@link GetKxVolumeCommandInput} for command's `input` shape.
|
|
72
|
+
* @see {@link GetKxVolumeCommandOutput} for command's `response` shape.
|
|
73
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
76
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ConflictException} (client fault)
|
|
79
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InternalServerException} (server fault)
|
|
82
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
83
|
+
* failure.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
86
|
+
* <p>A service limit or quota is exceeded.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
89
|
+
* <p>One or more resources can't be found.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
+
* <p>The request was denied due to request throttling.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ValidationException} (client fault)
|
|
95
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link FinspaceServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
99
|
+
*
|
|
100
|
+
*/
|
|
101
|
+
export declare class GetKxVolumeCommand extends $Command<GetKxVolumeCommandInput, GetKxVolumeCommandOutput, FinspaceClientResolvedConfig> {
|
|
102
|
+
readonly input: GetKxVolumeCommandInput;
|
|
103
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
constructor(input: GetKxVolumeCommandInput);
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetKxVolumeCommandInput, GetKxVolumeCommandOutput>;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
private serialize;
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
private deserialize;
|
|
120
|
+
}
|
|
@@ -75,6 +75,9 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse,
|
|
|
75
75
|
* @see {@link ListEnvironmentsCommandOutput} for command's `response` shape.
|
|
76
76
|
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
77
77
|
*
|
|
78
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
79
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
80
|
+
*
|
|
78
81
|
* @throws {@link InternalServerException} (server fault)
|
|
79
82
|
* <p>The request processing has failed because of an unknown error, exception or
|
|
80
83
|
* failure.</p>
|
|
@@ -32,7 +32,7 @@ export interface ListKxClustersCommandOutput extends ListKxClustersResponse, __M
|
|
|
32
32
|
* const client = new FinspaceClient(config);
|
|
33
33
|
* const input = { // ListKxClustersRequest
|
|
34
34
|
* environmentId: "STRING_VALUE", // required
|
|
35
|
-
* clusterType: "HDB" || "RDB" || "GATEWAY" || "GP",
|
|
35
|
+
* clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT",
|
|
36
36
|
* maxResults: Number("int"),
|
|
37
37
|
* nextToken: "STRING_VALUE",
|
|
38
38
|
* };
|
|
@@ -44,9 +44,15 @@ export interface ListKxClustersCommandOutput extends ListKxClustersResponse, __M
|
|
|
44
44
|
* // status: "PENDING" || "CREATING" || "CREATE_FAILED" || "RUNNING" || "UPDATING" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
45
45
|
* // statusReason: "STRING_VALUE",
|
|
46
46
|
* // clusterName: "STRING_VALUE",
|
|
47
|
-
* // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP",
|
|
47
|
+
* // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT",
|
|
48
48
|
* // clusterDescription: "STRING_VALUE",
|
|
49
49
|
* // releaseLabel: "STRING_VALUE",
|
|
50
|
+
* // volumes: [ // Volumes
|
|
51
|
+
* // { // Volume
|
|
52
|
+
* // volumeName: "STRING_VALUE",
|
|
53
|
+
* // volumeType: "NAS_1",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
50
56
|
* // initializationScript: "STRING_VALUE",
|
|
51
57
|
* // executionRole: "STRING_VALUE",
|
|
52
58
|
* // azMode: "SINGLE" || "MULTI",
|
|
@@ -0,0 +1,135 @@
|
|
|
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 { ListKxDataviewsRequest, ListKxDataviewsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListKxDataviewsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListKxDataviewsCommandInput extends ListKxDataviewsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListKxDataviewsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListKxDataviewsCommandOutput extends ListKxDataviewsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Returns a list of all the dataviews in the database.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { FinspaceClient, ListKxDataviewsCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
32
|
+
* // const { FinspaceClient, ListKxDataviewsCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
33
|
+
* const client = new FinspaceClient(config);
|
|
34
|
+
* const input = { // ListKxDataviewsRequest
|
|
35
|
+
* environmentId: "STRING_VALUE", // required
|
|
36
|
+
* databaseName: "STRING_VALUE", // required
|
|
37
|
+
* nextToken: "STRING_VALUE",
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* };
|
|
40
|
+
* const command = new ListKxDataviewsCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // ListKxDataviewsResponse
|
|
43
|
+
* // kxDataviews: [ // KxDataviews
|
|
44
|
+
* // { // KxDataviewListEntry
|
|
45
|
+
* // environmentId: "STRING_VALUE",
|
|
46
|
+
* // databaseName: "STRING_VALUE",
|
|
47
|
+
* // dataviewName: "STRING_VALUE",
|
|
48
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
49
|
+
* // availabilityZoneId: "STRING_VALUE",
|
|
50
|
+
* // changesetId: "STRING_VALUE",
|
|
51
|
+
* // segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
52
|
+
* // { // KxDataviewSegmentConfiguration
|
|
53
|
+
* // dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // volumeName: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // activeVersions: [ // KxDataviewActiveVersionList
|
|
60
|
+
* // { // KxDataviewActiveVersion
|
|
61
|
+
* // changesetId: "STRING_VALUE",
|
|
62
|
+
* // segmentConfigurations: [
|
|
63
|
+
* // {
|
|
64
|
+
* // dbPaths: [ // required
|
|
65
|
+
* // "STRING_VALUE",
|
|
66
|
+
* // ],
|
|
67
|
+
* // volumeName: "STRING_VALUE", // required
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // attachedClusters: [ // AttachedClusterList
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
74
|
+
* // versionId: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
|
|
78
|
+
* // description: "STRING_VALUE",
|
|
79
|
+
* // autoUpdate: true || false,
|
|
80
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
81
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
82
|
+
* // statusReason: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // nextToken: "STRING_VALUE",
|
|
86
|
+
* // };
|
|
87
|
+
*
|
|
88
|
+
* ```
|
|
89
|
+
*
|
|
90
|
+
* @param ListKxDataviewsCommandInput - {@link ListKxDataviewsCommandInput}
|
|
91
|
+
* @returns {@link ListKxDataviewsCommandOutput}
|
|
92
|
+
* @see {@link ListKxDataviewsCommandInput} for command's `input` shape.
|
|
93
|
+
* @see {@link ListKxDataviewsCommandOutput} for command's `response` shape.
|
|
94
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
97
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link InternalServerException} (server fault)
|
|
100
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
101
|
+
* failure.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
104
|
+
* <p>One or more resources can't be found.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
107
|
+
* <p>The request was denied due to request throttling.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ValidationException} (client fault)
|
|
110
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link FinspaceServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
114
|
+
*
|
|
115
|
+
*/
|
|
116
|
+
export declare class ListKxDataviewsCommand extends $Command<ListKxDataviewsCommandInput, ListKxDataviewsCommandOutput, FinspaceClientResolvedConfig> {
|
|
117
|
+
readonly input: ListKxDataviewsCommandInput;
|
|
118
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
constructor(input: ListKxDataviewsCommandInput);
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
126
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListKxDataviewsCommandInput, ListKxDataviewsCommandOutput>;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
private serialize;
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
134
|
+
private deserialize;
|
|
135
|
+
}
|
|
@@ -95,6 +95,9 @@ export interface ListKxEnvironmentsCommandOutput extends ListKxEnvironmentsRespo
|
|
|
95
95
|
* @see {@link ListKxEnvironmentsCommandOutput} for command's `response` shape.
|
|
96
96
|
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
97
97
|
*
|
|
98
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
99
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
100
|
+
*
|
|
98
101
|
* @throws {@link InternalServerException} (server fault)
|
|
99
102
|
* <p>The request processing has failed because of an unknown error, exception or
|
|
100
103
|
* failure.</p>
|
|
@@ -0,0 +1,112 @@
|
|
|
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 { ListKxScalingGroupsRequest, ListKxScalingGroupsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListKxScalingGroupsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListKxScalingGroupsCommandInput extends ListKxScalingGroupsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListKxScalingGroupsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListKxScalingGroupsCommandOutput extends ListKxScalingGroupsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Returns a list of scaling groups in a kdb environment.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { FinspaceClient, ListKxScalingGroupsCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
32
|
+
* // const { FinspaceClient, ListKxScalingGroupsCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
33
|
+
* const client = new FinspaceClient(config);
|
|
34
|
+
* const input = { // ListKxScalingGroupsRequest
|
|
35
|
+
* environmentId: "STRING_VALUE", // required
|
|
36
|
+
* maxResults: Number("int"),
|
|
37
|
+
* nextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListKxScalingGroupsCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListKxScalingGroupsResponse
|
|
42
|
+
* // scalingGroups: [ // KxScalingGroupList
|
|
43
|
+
* // { // KxScalingGroup
|
|
44
|
+
* // scalingGroupName: "STRING_VALUE",
|
|
45
|
+
* // hostType: "STRING_VALUE",
|
|
46
|
+
* // clusters: [ // KxClusterNameList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // availabilityZoneId: "STRING_VALUE",
|
|
50
|
+
* // status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
51
|
+
* // statusReason: "STRING_VALUE",
|
|
52
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
53
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // nextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListKxScalingGroupsCommandInput - {@link ListKxScalingGroupsCommandInput}
|
|
62
|
+
* @returns {@link ListKxScalingGroupsCommandOutput}
|
|
63
|
+
* @see {@link ListKxScalingGroupsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListKxScalingGroupsCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
68
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ConflictException} (client fault)
|
|
71
|
+
* <p>There was a conflict with this action, and it could not be completed.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalServerException} (server fault)
|
|
74
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
75
|
+
* failure.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
78
|
+
* <p>A service limit or quota is exceeded.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>One or more resources can't be found.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* <p>The request was denied due to request throttling.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ValidationException} (client fault)
|
|
87
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link FinspaceServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
91
|
+
*
|
|
92
|
+
*/
|
|
93
|
+
export declare class ListKxScalingGroupsCommand extends $Command<ListKxScalingGroupsCommandInput, ListKxScalingGroupsCommandOutput, FinspaceClientResolvedConfig> {
|
|
94
|
+
readonly input: ListKxScalingGroupsCommandInput;
|
|
95
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
constructor(input: ListKxScalingGroupsCommandInput);
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
103
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListKxScalingGroupsCommandInput, ListKxScalingGroupsCommandOutput>;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
private serialize;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
private deserialize;
|
|
112
|
+
}
|