@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
package/dist-types/Finspace.d.ts
CHANGED
|
@@ -3,27 +3,39 @@ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from ".
|
|
|
3
3
|
import { CreateKxChangesetCommandInput, CreateKxChangesetCommandOutput } from "./commands/CreateKxChangesetCommand";
|
|
4
4
|
import { CreateKxClusterCommandInput, CreateKxClusterCommandOutput } from "./commands/CreateKxClusterCommand";
|
|
5
5
|
import { CreateKxDatabaseCommandInput, CreateKxDatabaseCommandOutput } from "./commands/CreateKxDatabaseCommand";
|
|
6
|
+
import { CreateKxDataviewCommandInput, CreateKxDataviewCommandOutput } from "./commands/CreateKxDataviewCommand";
|
|
6
7
|
import { CreateKxEnvironmentCommandInput, CreateKxEnvironmentCommandOutput } from "./commands/CreateKxEnvironmentCommand";
|
|
8
|
+
import { CreateKxScalingGroupCommandInput, CreateKxScalingGroupCommandOutput } from "./commands/CreateKxScalingGroupCommand";
|
|
7
9
|
import { CreateKxUserCommandInput, CreateKxUserCommandOutput } from "./commands/CreateKxUserCommand";
|
|
10
|
+
import { CreateKxVolumeCommandInput, CreateKxVolumeCommandOutput } from "./commands/CreateKxVolumeCommand";
|
|
8
11
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
|
|
9
12
|
import { DeleteKxClusterCommandInput, DeleteKxClusterCommandOutput } from "./commands/DeleteKxClusterCommand";
|
|
10
13
|
import { DeleteKxDatabaseCommandInput, DeleteKxDatabaseCommandOutput } from "./commands/DeleteKxDatabaseCommand";
|
|
14
|
+
import { DeleteKxDataviewCommandInput, DeleteKxDataviewCommandOutput } from "./commands/DeleteKxDataviewCommand";
|
|
11
15
|
import { DeleteKxEnvironmentCommandInput, DeleteKxEnvironmentCommandOutput } from "./commands/DeleteKxEnvironmentCommand";
|
|
16
|
+
import { DeleteKxScalingGroupCommandInput, DeleteKxScalingGroupCommandOutput } from "./commands/DeleteKxScalingGroupCommand";
|
|
12
17
|
import { DeleteKxUserCommandInput, DeleteKxUserCommandOutput } from "./commands/DeleteKxUserCommand";
|
|
18
|
+
import { DeleteKxVolumeCommandInput, DeleteKxVolumeCommandOutput } from "./commands/DeleteKxVolumeCommand";
|
|
13
19
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
14
20
|
import { GetKxChangesetCommandInput, GetKxChangesetCommandOutput } from "./commands/GetKxChangesetCommand";
|
|
15
21
|
import { GetKxClusterCommandInput, GetKxClusterCommandOutput } from "./commands/GetKxClusterCommand";
|
|
16
22
|
import { GetKxConnectionStringCommandInput, GetKxConnectionStringCommandOutput } from "./commands/GetKxConnectionStringCommand";
|
|
17
23
|
import { GetKxDatabaseCommandInput, GetKxDatabaseCommandOutput } from "./commands/GetKxDatabaseCommand";
|
|
24
|
+
import { GetKxDataviewCommandInput, GetKxDataviewCommandOutput } from "./commands/GetKxDataviewCommand";
|
|
18
25
|
import { GetKxEnvironmentCommandInput, GetKxEnvironmentCommandOutput } from "./commands/GetKxEnvironmentCommand";
|
|
26
|
+
import { GetKxScalingGroupCommandInput, GetKxScalingGroupCommandOutput } from "./commands/GetKxScalingGroupCommand";
|
|
19
27
|
import { GetKxUserCommandInput, GetKxUserCommandOutput } from "./commands/GetKxUserCommand";
|
|
28
|
+
import { GetKxVolumeCommandInput, GetKxVolumeCommandOutput } from "./commands/GetKxVolumeCommand";
|
|
20
29
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
|
|
21
30
|
import { ListKxChangesetsCommandInput, ListKxChangesetsCommandOutput } from "./commands/ListKxChangesetsCommand";
|
|
22
31
|
import { ListKxClusterNodesCommandInput, ListKxClusterNodesCommandOutput } from "./commands/ListKxClusterNodesCommand";
|
|
23
32
|
import { ListKxClustersCommandInput, ListKxClustersCommandOutput } from "./commands/ListKxClustersCommand";
|
|
24
33
|
import { ListKxDatabasesCommandInput, ListKxDatabasesCommandOutput } from "./commands/ListKxDatabasesCommand";
|
|
34
|
+
import { ListKxDataviewsCommandInput, ListKxDataviewsCommandOutput } from "./commands/ListKxDataviewsCommand";
|
|
25
35
|
import { ListKxEnvironmentsCommandInput, ListKxEnvironmentsCommandOutput } from "./commands/ListKxEnvironmentsCommand";
|
|
36
|
+
import { ListKxScalingGroupsCommandInput, ListKxScalingGroupsCommandOutput } from "./commands/ListKxScalingGroupsCommand";
|
|
26
37
|
import { ListKxUsersCommandInput, ListKxUsersCommandOutput } from "./commands/ListKxUsersCommand";
|
|
38
|
+
import { ListKxVolumesCommandInput, ListKxVolumesCommandOutput } from "./commands/ListKxVolumesCommand";
|
|
27
39
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
40
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
29
41
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -31,9 +43,11 @@ import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from ".
|
|
|
31
43
|
import { UpdateKxClusterCodeConfigurationCommandInput, UpdateKxClusterCodeConfigurationCommandOutput } from "./commands/UpdateKxClusterCodeConfigurationCommand";
|
|
32
44
|
import { UpdateKxClusterDatabasesCommandInput, UpdateKxClusterDatabasesCommandOutput } from "./commands/UpdateKxClusterDatabasesCommand";
|
|
33
45
|
import { UpdateKxDatabaseCommandInput, UpdateKxDatabaseCommandOutput } from "./commands/UpdateKxDatabaseCommand";
|
|
46
|
+
import { UpdateKxDataviewCommandInput, UpdateKxDataviewCommandOutput } from "./commands/UpdateKxDataviewCommand";
|
|
34
47
|
import { UpdateKxEnvironmentCommandInput, UpdateKxEnvironmentCommandOutput } from "./commands/UpdateKxEnvironmentCommand";
|
|
35
48
|
import { UpdateKxEnvironmentNetworkCommandInput, UpdateKxEnvironmentNetworkCommandOutput } from "./commands/UpdateKxEnvironmentNetworkCommand";
|
|
36
49
|
import { UpdateKxUserCommandInput, UpdateKxUserCommandOutput } from "./commands/UpdateKxUserCommand";
|
|
50
|
+
import { UpdateKxVolumeCommandInput, UpdateKxVolumeCommandOutput } from "./commands/UpdateKxVolumeCommand";
|
|
37
51
|
import { FinspaceClient } from "./FinspaceClient";
|
|
38
52
|
export interface Finspace {
|
|
39
53
|
/**
|
|
@@ -60,18 +74,36 @@ export interface Finspace {
|
|
|
60
74
|
createKxDatabase(args: CreateKxDatabaseCommandInput, options?: __HttpHandlerOptions): Promise<CreateKxDatabaseCommandOutput>;
|
|
61
75
|
createKxDatabase(args: CreateKxDatabaseCommandInput, cb: (err: any, data?: CreateKxDatabaseCommandOutput) => void): void;
|
|
62
76
|
createKxDatabase(args: CreateKxDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKxDatabaseCommandOutput) => void): void;
|
|
77
|
+
/**
|
|
78
|
+
* @see {@link CreateKxDataviewCommand}
|
|
79
|
+
*/
|
|
80
|
+
createKxDataview(args: CreateKxDataviewCommandInput, options?: __HttpHandlerOptions): Promise<CreateKxDataviewCommandOutput>;
|
|
81
|
+
createKxDataview(args: CreateKxDataviewCommandInput, cb: (err: any, data?: CreateKxDataviewCommandOutput) => void): void;
|
|
82
|
+
createKxDataview(args: CreateKxDataviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKxDataviewCommandOutput) => void): void;
|
|
63
83
|
/**
|
|
64
84
|
* @see {@link CreateKxEnvironmentCommand}
|
|
65
85
|
*/
|
|
66
86
|
createKxEnvironment(args: CreateKxEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateKxEnvironmentCommandOutput>;
|
|
67
87
|
createKxEnvironment(args: CreateKxEnvironmentCommandInput, cb: (err: any, data?: CreateKxEnvironmentCommandOutput) => void): void;
|
|
68
88
|
createKxEnvironment(args: CreateKxEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKxEnvironmentCommandOutput) => void): void;
|
|
89
|
+
/**
|
|
90
|
+
* @see {@link CreateKxScalingGroupCommand}
|
|
91
|
+
*/
|
|
92
|
+
createKxScalingGroup(args: CreateKxScalingGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateKxScalingGroupCommandOutput>;
|
|
93
|
+
createKxScalingGroup(args: CreateKxScalingGroupCommandInput, cb: (err: any, data?: CreateKxScalingGroupCommandOutput) => void): void;
|
|
94
|
+
createKxScalingGroup(args: CreateKxScalingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKxScalingGroupCommandOutput) => void): void;
|
|
69
95
|
/**
|
|
70
96
|
* @see {@link CreateKxUserCommand}
|
|
71
97
|
*/
|
|
72
98
|
createKxUser(args: CreateKxUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateKxUserCommandOutput>;
|
|
73
99
|
createKxUser(args: CreateKxUserCommandInput, cb: (err: any, data?: CreateKxUserCommandOutput) => void): void;
|
|
74
100
|
createKxUser(args: CreateKxUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKxUserCommandOutput) => void): void;
|
|
101
|
+
/**
|
|
102
|
+
* @see {@link CreateKxVolumeCommand}
|
|
103
|
+
*/
|
|
104
|
+
createKxVolume(args: CreateKxVolumeCommandInput, options?: __HttpHandlerOptions): Promise<CreateKxVolumeCommandOutput>;
|
|
105
|
+
createKxVolume(args: CreateKxVolumeCommandInput, cb: (err: any, data?: CreateKxVolumeCommandOutput) => void): void;
|
|
106
|
+
createKxVolume(args: CreateKxVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKxVolumeCommandOutput) => void): void;
|
|
75
107
|
/**
|
|
76
108
|
* @see {@link DeleteEnvironmentCommand}
|
|
77
109
|
*/
|
|
@@ -90,18 +122,36 @@ export interface Finspace {
|
|
|
90
122
|
deleteKxDatabase(args: DeleteKxDatabaseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKxDatabaseCommandOutput>;
|
|
91
123
|
deleteKxDatabase(args: DeleteKxDatabaseCommandInput, cb: (err: any, data?: DeleteKxDatabaseCommandOutput) => void): void;
|
|
92
124
|
deleteKxDatabase(args: DeleteKxDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKxDatabaseCommandOutput) => void): void;
|
|
125
|
+
/**
|
|
126
|
+
* @see {@link DeleteKxDataviewCommand}
|
|
127
|
+
*/
|
|
128
|
+
deleteKxDataview(args: DeleteKxDataviewCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKxDataviewCommandOutput>;
|
|
129
|
+
deleteKxDataview(args: DeleteKxDataviewCommandInput, cb: (err: any, data?: DeleteKxDataviewCommandOutput) => void): void;
|
|
130
|
+
deleteKxDataview(args: DeleteKxDataviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKxDataviewCommandOutput) => void): void;
|
|
93
131
|
/**
|
|
94
132
|
* @see {@link DeleteKxEnvironmentCommand}
|
|
95
133
|
*/
|
|
96
134
|
deleteKxEnvironment(args: DeleteKxEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKxEnvironmentCommandOutput>;
|
|
97
135
|
deleteKxEnvironment(args: DeleteKxEnvironmentCommandInput, cb: (err: any, data?: DeleteKxEnvironmentCommandOutput) => void): void;
|
|
98
136
|
deleteKxEnvironment(args: DeleteKxEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKxEnvironmentCommandOutput) => void): void;
|
|
137
|
+
/**
|
|
138
|
+
* @see {@link DeleteKxScalingGroupCommand}
|
|
139
|
+
*/
|
|
140
|
+
deleteKxScalingGroup(args: DeleteKxScalingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKxScalingGroupCommandOutput>;
|
|
141
|
+
deleteKxScalingGroup(args: DeleteKxScalingGroupCommandInput, cb: (err: any, data?: DeleteKxScalingGroupCommandOutput) => void): void;
|
|
142
|
+
deleteKxScalingGroup(args: DeleteKxScalingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKxScalingGroupCommandOutput) => void): void;
|
|
99
143
|
/**
|
|
100
144
|
* @see {@link DeleteKxUserCommand}
|
|
101
145
|
*/
|
|
102
146
|
deleteKxUser(args: DeleteKxUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKxUserCommandOutput>;
|
|
103
147
|
deleteKxUser(args: DeleteKxUserCommandInput, cb: (err: any, data?: DeleteKxUserCommandOutput) => void): void;
|
|
104
148
|
deleteKxUser(args: DeleteKxUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKxUserCommandOutput) => void): void;
|
|
149
|
+
/**
|
|
150
|
+
* @see {@link DeleteKxVolumeCommand}
|
|
151
|
+
*/
|
|
152
|
+
deleteKxVolume(args: DeleteKxVolumeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteKxVolumeCommandOutput>;
|
|
153
|
+
deleteKxVolume(args: DeleteKxVolumeCommandInput, cb: (err: any, data?: DeleteKxVolumeCommandOutput) => void): void;
|
|
154
|
+
deleteKxVolume(args: DeleteKxVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKxVolumeCommandOutput) => void): void;
|
|
105
155
|
/**
|
|
106
156
|
* @see {@link GetEnvironmentCommand}
|
|
107
157
|
*/
|
|
@@ -132,18 +182,36 @@ export interface Finspace {
|
|
|
132
182
|
getKxDatabase(args: GetKxDatabaseCommandInput, options?: __HttpHandlerOptions): Promise<GetKxDatabaseCommandOutput>;
|
|
133
183
|
getKxDatabase(args: GetKxDatabaseCommandInput, cb: (err: any, data?: GetKxDatabaseCommandOutput) => void): void;
|
|
134
184
|
getKxDatabase(args: GetKxDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKxDatabaseCommandOutput) => void): void;
|
|
185
|
+
/**
|
|
186
|
+
* @see {@link GetKxDataviewCommand}
|
|
187
|
+
*/
|
|
188
|
+
getKxDataview(args: GetKxDataviewCommandInput, options?: __HttpHandlerOptions): Promise<GetKxDataviewCommandOutput>;
|
|
189
|
+
getKxDataview(args: GetKxDataviewCommandInput, cb: (err: any, data?: GetKxDataviewCommandOutput) => void): void;
|
|
190
|
+
getKxDataview(args: GetKxDataviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKxDataviewCommandOutput) => void): void;
|
|
135
191
|
/**
|
|
136
192
|
* @see {@link GetKxEnvironmentCommand}
|
|
137
193
|
*/
|
|
138
194
|
getKxEnvironment(args: GetKxEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetKxEnvironmentCommandOutput>;
|
|
139
195
|
getKxEnvironment(args: GetKxEnvironmentCommandInput, cb: (err: any, data?: GetKxEnvironmentCommandOutput) => void): void;
|
|
140
196
|
getKxEnvironment(args: GetKxEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKxEnvironmentCommandOutput) => void): void;
|
|
197
|
+
/**
|
|
198
|
+
* @see {@link GetKxScalingGroupCommand}
|
|
199
|
+
*/
|
|
200
|
+
getKxScalingGroup(args: GetKxScalingGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetKxScalingGroupCommandOutput>;
|
|
201
|
+
getKxScalingGroup(args: GetKxScalingGroupCommandInput, cb: (err: any, data?: GetKxScalingGroupCommandOutput) => void): void;
|
|
202
|
+
getKxScalingGroup(args: GetKxScalingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKxScalingGroupCommandOutput) => void): void;
|
|
141
203
|
/**
|
|
142
204
|
* @see {@link GetKxUserCommand}
|
|
143
205
|
*/
|
|
144
206
|
getKxUser(args: GetKxUserCommandInput, options?: __HttpHandlerOptions): Promise<GetKxUserCommandOutput>;
|
|
145
207
|
getKxUser(args: GetKxUserCommandInput, cb: (err: any, data?: GetKxUserCommandOutput) => void): void;
|
|
146
208
|
getKxUser(args: GetKxUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKxUserCommandOutput) => void): void;
|
|
209
|
+
/**
|
|
210
|
+
* @see {@link GetKxVolumeCommand}
|
|
211
|
+
*/
|
|
212
|
+
getKxVolume(args: GetKxVolumeCommandInput, options?: __HttpHandlerOptions): Promise<GetKxVolumeCommandOutput>;
|
|
213
|
+
getKxVolume(args: GetKxVolumeCommandInput, cb: (err: any, data?: GetKxVolumeCommandOutput) => void): void;
|
|
214
|
+
getKxVolume(args: GetKxVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKxVolumeCommandOutput) => void): void;
|
|
147
215
|
/**
|
|
148
216
|
* @see {@link ListEnvironmentsCommand}
|
|
149
217
|
*/
|
|
@@ -174,18 +242,36 @@ export interface Finspace {
|
|
|
174
242
|
listKxDatabases(args: ListKxDatabasesCommandInput, options?: __HttpHandlerOptions): Promise<ListKxDatabasesCommandOutput>;
|
|
175
243
|
listKxDatabases(args: ListKxDatabasesCommandInput, cb: (err: any, data?: ListKxDatabasesCommandOutput) => void): void;
|
|
176
244
|
listKxDatabases(args: ListKxDatabasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKxDatabasesCommandOutput) => void): void;
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link ListKxDataviewsCommand}
|
|
247
|
+
*/
|
|
248
|
+
listKxDataviews(args: ListKxDataviewsCommandInput, options?: __HttpHandlerOptions): Promise<ListKxDataviewsCommandOutput>;
|
|
249
|
+
listKxDataviews(args: ListKxDataviewsCommandInput, cb: (err: any, data?: ListKxDataviewsCommandOutput) => void): void;
|
|
250
|
+
listKxDataviews(args: ListKxDataviewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKxDataviewsCommandOutput) => void): void;
|
|
177
251
|
/**
|
|
178
252
|
* @see {@link ListKxEnvironmentsCommand}
|
|
179
253
|
*/
|
|
180
254
|
listKxEnvironments(args: ListKxEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListKxEnvironmentsCommandOutput>;
|
|
181
255
|
listKxEnvironments(args: ListKxEnvironmentsCommandInput, cb: (err: any, data?: ListKxEnvironmentsCommandOutput) => void): void;
|
|
182
256
|
listKxEnvironments(args: ListKxEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKxEnvironmentsCommandOutput) => void): void;
|
|
257
|
+
/**
|
|
258
|
+
* @see {@link ListKxScalingGroupsCommand}
|
|
259
|
+
*/
|
|
260
|
+
listKxScalingGroups(args: ListKxScalingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListKxScalingGroupsCommandOutput>;
|
|
261
|
+
listKxScalingGroups(args: ListKxScalingGroupsCommandInput, cb: (err: any, data?: ListKxScalingGroupsCommandOutput) => void): void;
|
|
262
|
+
listKxScalingGroups(args: ListKxScalingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKxScalingGroupsCommandOutput) => void): void;
|
|
183
263
|
/**
|
|
184
264
|
* @see {@link ListKxUsersCommand}
|
|
185
265
|
*/
|
|
186
266
|
listKxUsers(args: ListKxUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListKxUsersCommandOutput>;
|
|
187
267
|
listKxUsers(args: ListKxUsersCommandInput, cb: (err: any, data?: ListKxUsersCommandOutput) => void): void;
|
|
188
268
|
listKxUsers(args: ListKxUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKxUsersCommandOutput) => void): void;
|
|
269
|
+
/**
|
|
270
|
+
* @see {@link ListKxVolumesCommand}
|
|
271
|
+
*/
|
|
272
|
+
listKxVolumes(args: ListKxVolumesCommandInput, options?: __HttpHandlerOptions): Promise<ListKxVolumesCommandOutput>;
|
|
273
|
+
listKxVolumes(args: ListKxVolumesCommandInput, cb: (err: any, data?: ListKxVolumesCommandOutput) => void): void;
|
|
274
|
+
listKxVolumes(args: ListKxVolumesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKxVolumesCommandOutput) => void): void;
|
|
189
275
|
/**
|
|
190
276
|
* @see {@link ListTagsForResourceCommand}
|
|
191
277
|
*/
|
|
@@ -228,6 +314,12 @@ export interface Finspace {
|
|
|
228
314
|
updateKxDatabase(args: UpdateKxDatabaseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateKxDatabaseCommandOutput>;
|
|
229
315
|
updateKxDatabase(args: UpdateKxDatabaseCommandInput, cb: (err: any, data?: UpdateKxDatabaseCommandOutput) => void): void;
|
|
230
316
|
updateKxDatabase(args: UpdateKxDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKxDatabaseCommandOutput) => void): void;
|
|
317
|
+
/**
|
|
318
|
+
* @see {@link UpdateKxDataviewCommand}
|
|
319
|
+
*/
|
|
320
|
+
updateKxDataview(args: UpdateKxDataviewCommandInput, options?: __HttpHandlerOptions): Promise<UpdateKxDataviewCommandOutput>;
|
|
321
|
+
updateKxDataview(args: UpdateKxDataviewCommandInput, cb: (err: any, data?: UpdateKxDataviewCommandOutput) => void): void;
|
|
322
|
+
updateKxDataview(args: UpdateKxDataviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKxDataviewCommandOutput) => void): void;
|
|
231
323
|
/**
|
|
232
324
|
* @see {@link UpdateKxEnvironmentCommand}
|
|
233
325
|
*/
|
|
@@ -246,6 +338,12 @@ export interface Finspace {
|
|
|
246
338
|
updateKxUser(args: UpdateKxUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateKxUserCommandOutput>;
|
|
247
339
|
updateKxUser(args: UpdateKxUserCommandInput, cb: (err: any, data?: UpdateKxUserCommandOutput) => void): void;
|
|
248
340
|
updateKxUser(args: UpdateKxUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKxUserCommandOutput) => void): void;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link UpdateKxVolumeCommand}
|
|
343
|
+
*/
|
|
344
|
+
updateKxVolume(args: UpdateKxVolumeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateKxVolumeCommandOutput>;
|
|
345
|
+
updateKxVolume(args: UpdateKxVolumeCommandInput, cb: (err: any, data?: UpdateKxVolumeCommandOutput) => void): void;
|
|
346
|
+
updateKxVolume(args: UpdateKxVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKxVolumeCommandOutput) => void): void;
|
|
249
347
|
}
|
|
250
348
|
/**
|
|
251
349
|
* @public
|
|
@@ -12,27 +12,39 @@ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from ".
|
|
|
12
12
|
import { CreateKxChangesetCommandInput, CreateKxChangesetCommandOutput } from "./commands/CreateKxChangesetCommand";
|
|
13
13
|
import { CreateKxClusterCommandInput, CreateKxClusterCommandOutput } from "./commands/CreateKxClusterCommand";
|
|
14
14
|
import { CreateKxDatabaseCommandInput, CreateKxDatabaseCommandOutput } from "./commands/CreateKxDatabaseCommand";
|
|
15
|
+
import { CreateKxDataviewCommandInput, CreateKxDataviewCommandOutput } from "./commands/CreateKxDataviewCommand";
|
|
15
16
|
import { CreateKxEnvironmentCommandInput, CreateKxEnvironmentCommandOutput } from "./commands/CreateKxEnvironmentCommand";
|
|
17
|
+
import { CreateKxScalingGroupCommandInput, CreateKxScalingGroupCommandOutput } from "./commands/CreateKxScalingGroupCommand";
|
|
16
18
|
import { CreateKxUserCommandInput, CreateKxUserCommandOutput } from "./commands/CreateKxUserCommand";
|
|
19
|
+
import { CreateKxVolumeCommandInput, CreateKxVolumeCommandOutput } from "./commands/CreateKxVolumeCommand";
|
|
17
20
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
|
|
18
21
|
import { DeleteKxClusterCommandInput, DeleteKxClusterCommandOutput } from "./commands/DeleteKxClusterCommand";
|
|
19
22
|
import { DeleteKxDatabaseCommandInput, DeleteKxDatabaseCommandOutput } from "./commands/DeleteKxDatabaseCommand";
|
|
23
|
+
import { DeleteKxDataviewCommandInput, DeleteKxDataviewCommandOutput } from "./commands/DeleteKxDataviewCommand";
|
|
20
24
|
import { DeleteKxEnvironmentCommandInput, DeleteKxEnvironmentCommandOutput } from "./commands/DeleteKxEnvironmentCommand";
|
|
25
|
+
import { DeleteKxScalingGroupCommandInput, DeleteKxScalingGroupCommandOutput } from "./commands/DeleteKxScalingGroupCommand";
|
|
21
26
|
import { DeleteKxUserCommandInput, DeleteKxUserCommandOutput } from "./commands/DeleteKxUserCommand";
|
|
27
|
+
import { DeleteKxVolumeCommandInput, DeleteKxVolumeCommandOutput } from "./commands/DeleteKxVolumeCommand";
|
|
22
28
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
23
29
|
import { GetKxChangesetCommandInput, GetKxChangesetCommandOutput } from "./commands/GetKxChangesetCommand";
|
|
24
30
|
import { GetKxClusterCommandInput, GetKxClusterCommandOutput } from "./commands/GetKxClusterCommand";
|
|
25
31
|
import { GetKxConnectionStringCommandInput, GetKxConnectionStringCommandOutput } from "./commands/GetKxConnectionStringCommand";
|
|
26
32
|
import { GetKxDatabaseCommandInput, GetKxDatabaseCommandOutput } from "./commands/GetKxDatabaseCommand";
|
|
33
|
+
import { GetKxDataviewCommandInput, GetKxDataviewCommandOutput } from "./commands/GetKxDataviewCommand";
|
|
27
34
|
import { GetKxEnvironmentCommandInput, GetKxEnvironmentCommandOutput } from "./commands/GetKxEnvironmentCommand";
|
|
35
|
+
import { GetKxScalingGroupCommandInput, GetKxScalingGroupCommandOutput } from "./commands/GetKxScalingGroupCommand";
|
|
28
36
|
import { GetKxUserCommandInput, GetKxUserCommandOutput } from "./commands/GetKxUserCommand";
|
|
37
|
+
import { GetKxVolumeCommandInput, GetKxVolumeCommandOutput } from "./commands/GetKxVolumeCommand";
|
|
29
38
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
|
|
30
39
|
import { ListKxChangesetsCommandInput, ListKxChangesetsCommandOutput } from "./commands/ListKxChangesetsCommand";
|
|
31
40
|
import { ListKxClusterNodesCommandInput, ListKxClusterNodesCommandOutput } from "./commands/ListKxClusterNodesCommand";
|
|
32
41
|
import { ListKxClustersCommandInput, ListKxClustersCommandOutput } from "./commands/ListKxClustersCommand";
|
|
33
42
|
import { ListKxDatabasesCommandInput, ListKxDatabasesCommandOutput } from "./commands/ListKxDatabasesCommand";
|
|
43
|
+
import { ListKxDataviewsCommandInput, ListKxDataviewsCommandOutput } from "./commands/ListKxDataviewsCommand";
|
|
34
44
|
import { ListKxEnvironmentsCommandInput, ListKxEnvironmentsCommandOutput } from "./commands/ListKxEnvironmentsCommand";
|
|
45
|
+
import { ListKxScalingGroupsCommandInput, ListKxScalingGroupsCommandOutput } from "./commands/ListKxScalingGroupsCommand";
|
|
35
46
|
import { ListKxUsersCommandInput, ListKxUsersCommandOutput } from "./commands/ListKxUsersCommand";
|
|
47
|
+
import { ListKxVolumesCommandInput, ListKxVolumesCommandOutput } from "./commands/ListKxVolumesCommand";
|
|
36
48
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
37
49
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
38
50
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -40,20 +52,22 @@ import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from ".
|
|
|
40
52
|
import { UpdateKxClusterCodeConfigurationCommandInput, UpdateKxClusterCodeConfigurationCommandOutput } from "./commands/UpdateKxClusterCodeConfigurationCommand";
|
|
41
53
|
import { UpdateKxClusterDatabasesCommandInput, UpdateKxClusterDatabasesCommandOutput } from "./commands/UpdateKxClusterDatabasesCommand";
|
|
42
54
|
import { UpdateKxDatabaseCommandInput, UpdateKxDatabaseCommandOutput } from "./commands/UpdateKxDatabaseCommand";
|
|
55
|
+
import { UpdateKxDataviewCommandInput, UpdateKxDataviewCommandOutput } from "./commands/UpdateKxDataviewCommand";
|
|
43
56
|
import { UpdateKxEnvironmentCommandInput, UpdateKxEnvironmentCommandOutput } from "./commands/UpdateKxEnvironmentCommand";
|
|
44
57
|
import { UpdateKxEnvironmentNetworkCommandInput, UpdateKxEnvironmentNetworkCommandOutput } from "./commands/UpdateKxEnvironmentNetworkCommand";
|
|
45
58
|
import { UpdateKxUserCommandInput, UpdateKxUserCommandOutput } from "./commands/UpdateKxUserCommand";
|
|
59
|
+
import { UpdateKxVolumeCommandInput, UpdateKxVolumeCommandOutput } from "./commands/UpdateKxVolumeCommand";
|
|
46
60
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
47
61
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
48
62
|
export { __Client };
|
|
49
63
|
/**
|
|
50
64
|
* @public
|
|
51
65
|
*/
|
|
52
|
-
export type ServiceInputTypes = CreateEnvironmentCommandInput | CreateKxChangesetCommandInput | CreateKxClusterCommandInput | CreateKxDatabaseCommandInput | CreateKxEnvironmentCommandInput | CreateKxUserCommandInput | DeleteEnvironmentCommandInput | DeleteKxClusterCommandInput | DeleteKxDatabaseCommandInput | DeleteKxEnvironmentCommandInput | DeleteKxUserCommandInput | GetEnvironmentCommandInput | GetKxChangesetCommandInput | GetKxClusterCommandInput | GetKxConnectionStringCommandInput | GetKxDatabaseCommandInput | GetKxEnvironmentCommandInput | GetKxUserCommandInput | ListEnvironmentsCommandInput | ListKxChangesetsCommandInput | ListKxClusterNodesCommandInput | ListKxClustersCommandInput | ListKxDatabasesCommandInput | ListKxEnvironmentsCommandInput | ListKxUsersCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnvironmentCommandInput | UpdateKxClusterCodeConfigurationCommandInput | UpdateKxClusterDatabasesCommandInput | UpdateKxDatabaseCommandInput | UpdateKxEnvironmentCommandInput | UpdateKxEnvironmentNetworkCommandInput | UpdateKxUserCommandInput;
|
|
66
|
+
export type ServiceInputTypes = CreateEnvironmentCommandInput | CreateKxChangesetCommandInput | CreateKxClusterCommandInput | CreateKxDatabaseCommandInput | CreateKxDataviewCommandInput | CreateKxEnvironmentCommandInput | CreateKxScalingGroupCommandInput | CreateKxUserCommandInput | CreateKxVolumeCommandInput | DeleteEnvironmentCommandInput | DeleteKxClusterCommandInput | DeleteKxDatabaseCommandInput | DeleteKxDataviewCommandInput | DeleteKxEnvironmentCommandInput | DeleteKxScalingGroupCommandInput | DeleteKxUserCommandInput | DeleteKxVolumeCommandInput | GetEnvironmentCommandInput | GetKxChangesetCommandInput | GetKxClusterCommandInput | GetKxConnectionStringCommandInput | GetKxDatabaseCommandInput | GetKxDataviewCommandInput | GetKxEnvironmentCommandInput | GetKxScalingGroupCommandInput | GetKxUserCommandInput | GetKxVolumeCommandInput | ListEnvironmentsCommandInput | ListKxChangesetsCommandInput | ListKxClusterNodesCommandInput | ListKxClustersCommandInput | ListKxDatabasesCommandInput | ListKxDataviewsCommandInput | ListKxEnvironmentsCommandInput | ListKxScalingGroupsCommandInput | ListKxUsersCommandInput | ListKxVolumesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnvironmentCommandInput | UpdateKxClusterCodeConfigurationCommandInput | UpdateKxClusterDatabasesCommandInput | UpdateKxDatabaseCommandInput | UpdateKxDataviewCommandInput | UpdateKxEnvironmentCommandInput | UpdateKxEnvironmentNetworkCommandInput | UpdateKxUserCommandInput | UpdateKxVolumeCommandInput;
|
|
53
67
|
/**
|
|
54
68
|
* @public
|
|
55
69
|
*/
|
|
56
|
-
export type ServiceOutputTypes = CreateEnvironmentCommandOutput | CreateKxChangesetCommandOutput | CreateKxClusterCommandOutput | CreateKxDatabaseCommandOutput | CreateKxEnvironmentCommandOutput | CreateKxUserCommandOutput | DeleteEnvironmentCommandOutput | DeleteKxClusterCommandOutput | DeleteKxDatabaseCommandOutput | DeleteKxEnvironmentCommandOutput | DeleteKxUserCommandOutput | GetEnvironmentCommandOutput | GetKxChangesetCommandOutput | GetKxClusterCommandOutput | GetKxConnectionStringCommandOutput | GetKxDatabaseCommandOutput | GetKxEnvironmentCommandOutput | GetKxUserCommandOutput | ListEnvironmentsCommandOutput | ListKxChangesetsCommandOutput | ListKxClusterNodesCommandOutput | ListKxClustersCommandOutput | ListKxDatabasesCommandOutput | ListKxEnvironmentsCommandOutput | ListKxUsersCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnvironmentCommandOutput | UpdateKxClusterCodeConfigurationCommandOutput | UpdateKxClusterDatabasesCommandOutput | UpdateKxDatabaseCommandOutput | UpdateKxEnvironmentCommandOutput | UpdateKxEnvironmentNetworkCommandOutput | UpdateKxUserCommandOutput;
|
|
70
|
+
export type ServiceOutputTypes = CreateEnvironmentCommandOutput | CreateKxChangesetCommandOutput | CreateKxClusterCommandOutput | CreateKxDatabaseCommandOutput | CreateKxDataviewCommandOutput | CreateKxEnvironmentCommandOutput | CreateKxScalingGroupCommandOutput | CreateKxUserCommandOutput | CreateKxVolumeCommandOutput | DeleteEnvironmentCommandOutput | DeleteKxClusterCommandOutput | DeleteKxDatabaseCommandOutput | DeleteKxDataviewCommandOutput | DeleteKxEnvironmentCommandOutput | DeleteKxScalingGroupCommandOutput | DeleteKxUserCommandOutput | DeleteKxVolumeCommandOutput | GetEnvironmentCommandOutput | GetKxChangesetCommandOutput | GetKxClusterCommandOutput | GetKxConnectionStringCommandOutput | GetKxDatabaseCommandOutput | GetKxDataviewCommandOutput | GetKxEnvironmentCommandOutput | GetKxScalingGroupCommandOutput | GetKxUserCommandOutput | GetKxVolumeCommandOutput | ListEnvironmentsCommandOutput | ListKxChangesetsCommandOutput | ListKxClusterNodesCommandOutput | ListKxClustersCommandOutput | ListKxDatabasesCommandOutput | ListKxDataviewsCommandOutput | ListKxEnvironmentsCommandOutput | ListKxScalingGroupsCommandOutput | ListKxUsersCommandOutput | ListKxVolumesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnvironmentCommandOutput | UpdateKxClusterCodeConfigurationCommandOutput | UpdateKxClusterDatabasesCommandOutput | UpdateKxDatabaseCommandOutput | UpdateKxDataviewCommandOutput | UpdateKxEnvironmentCommandOutput | UpdateKxEnvironmentNetworkCommandOutput | UpdateKxUserCommandOutput | UpdateKxVolumeCommandOutput;
|
|
57
71
|
/**
|
|
58
72
|
* @public
|
|
59
73
|
*/
|
|
@@ -34,7 +34,12 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
|
|
|
34
34
|
* clientToken: "STRING_VALUE",
|
|
35
35
|
* environmentId: "STRING_VALUE", // required
|
|
36
36
|
* clusterName: "STRING_VALUE", // required
|
|
37
|
-
* clusterType: "HDB" || "RDB" || "GATEWAY" || "GP", // required
|
|
37
|
+
* clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT", // required
|
|
38
|
+
* tickerplantLogConfiguration: { // TickerplantLogConfiguration
|
|
39
|
+
* tickerplantLogVolumes: [ // TickerplantLogVolumes
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* },
|
|
38
43
|
* databases: [ // KxDatabaseConfigurations
|
|
39
44
|
* { // KxDatabaseConfiguration
|
|
40
45
|
* databaseName: "STRING_VALUE", // required
|
|
@@ -44,9 +49,24 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
|
|
|
44
49
|
* dbPaths: [ // DbPaths // required
|
|
45
50
|
* "STRING_VALUE",
|
|
46
51
|
* ],
|
|
52
|
+
* dataviewName: "STRING_VALUE",
|
|
47
53
|
* },
|
|
48
54
|
* ],
|
|
49
55
|
* changesetId: "STRING_VALUE",
|
|
56
|
+
* dataviewName: "STRING_VALUE",
|
|
57
|
+
* dataviewConfiguration: { // KxDataviewConfiguration
|
|
58
|
+
* dataviewName: "STRING_VALUE",
|
|
59
|
+
* dataviewVersionId: "STRING_VALUE",
|
|
60
|
+
* changesetId: "STRING_VALUE",
|
|
61
|
+
* segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
62
|
+
* { // KxDataviewSegmentConfiguration
|
|
63
|
+
* dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
64
|
+
* "STRING_VALUE",
|
|
65
|
+
* ],
|
|
66
|
+
* volumeName: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* },
|
|
50
70
|
* },
|
|
51
71
|
* ],
|
|
52
72
|
* cacheStorageConfigurations: [ // KxCacheStorageConfigurations
|
|
@@ -93,14 +113,22 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
|
|
|
93
113
|
* },
|
|
94
114
|
* executionRole: "STRING_VALUE",
|
|
95
115
|
* savedownStorageConfiguration: { // KxSavedownStorageConfiguration
|
|
96
|
-
* type: "SDS01",
|
|
97
|
-
* size: Number("int"),
|
|
116
|
+
* type: "SDS01",
|
|
117
|
+
* size: Number("int"),
|
|
118
|
+
* volumeName: "STRING_VALUE",
|
|
98
119
|
* },
|
|
99
120
|
* azMode: "SINGLE" || "MULTI", // required
|
|
100
121
|
* availabilityZoneId: "STRING_VALUE",
|
|
101
122
|
* tags: { // TagMap
|
|
102
123
|
* "<keys>": "STRING_VALUE",
|
|
103
124
|
* },
|
|
125
|
+
* scalingGroupConfiguration: { // KxScalingGroupConfiguration
|
|
126
|
+
* scalingGroupName: "STRING_VALUE", // required
|
|
127
|
+
* memoryLimit: Number("int"),
|
|
128
|
+
* memoryReservation: Number("int"), // required
|
|
129
|
+
* nodeCount: Number("int"), // required
|
|
130
|
+
* cpu: Number("double"),
|
|
131
|
+
* },
|
|
104
132
|
* };
|
|
105
133
|
* const command = new CreateKxClusterCommand(input);
|
|
106
134
|
* const response = await client.send(command);
|
|
@@ -109,7 +137,18 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
|
|
|
109
137
|
* // status: "PENDING" || "CREATING" || "CREATE_FAILED" || "RUNNING" || "UPDATING" || "DELETING" || "DELETED" || "DELETE_FAILED",
|
|
110
138
|
* // statusReason: "STRING_VALUE",
|
|
111
139
|
* // clusterName: "STRING_VALUE",
|
|
112
|
-
* // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP",
|
|
140
|
+
* // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT",
|
|
141
|
+
* // tickerplantLogConfiguration: { // TickerplantLogConfiguration
|
|
142
|
+
* // tickerplantLogVolumes: [ // TickerplantLogVolumes
|
|
143
|
+
* // "STRING_VALUE",
|
|
144
|
+
* // ],
|
|
145
|
+
* // },
|
|
146
|
+
* // volumes: [ // Volumes
|
|
147
|
+
* // { // Volume
|
|
148
|
+
* // volumeName: "STRING_VALUE",
|
|
149
|
+
* // volumeType: "NAS_1",
|
|
150
|
+
* // },
|
|
151
|
+
* // ],
|
|
113
152
|
* // databases: [ // KxDatabaseConfigurations
|
|
114
153
|
* // { // KxDatabaseConfiguration
|
|
115
154
|
* // databaseName: "STRING_VALUE", // required
|
|
@@ -119,9 +158,24 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
|
|
|
119
158
|
* // dbPaths: [ // DbPaths // required
|
|
120
159
|
* // "STRING_VALUE",
|
|
121
160
|
* // ],
|
|
161
|
+
* // dataviewName: "STRING_VALUE",
|
|
122
162
|
* // },
|
|
123
163
|
* // ],
|
|
124
164
|
* // changesetId: "STRING_VALUE",
|
|
165
|
+
* // dataviewName: "STRING_VALUE",
|
|
166
|
+
* // dataviewConfiguration: { // KxDataviewConfiguration
|
|
167
|
+
* // dataviewName: "STRING_VALUE",
|
|
168
|
+
* // dataviewVersionId: "STRING_VALUE",
|
|
169
|
+
* // changesetId: "STRING_VALUE",
|
|
170
|
+
* // segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
171
|
+
* // { // KxDataviewSegmentConfiguration
|
|
172
|
+
* // dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
173
|
+
* // "STRING_VALUE",
|
|
174
|
+
* // ],
|
|
175
|
+
* // volumeName: "STRING_VALUE", // required
|
|
176
|
+
* // },
|
|
177
|
+
* // ],
|
|
178
|
+
* // },
|
|
125
179
|
* // },
|
|
126
180
|
* // ],
|
|
127
181
|
* // cacheStorageConfigurations: [ // KxCacheStorageConfigurations
|
|
@@ -169,12 +223,20 @@ export interface CreateKxClusterCommandOutput extends CreateKxClusterResponse, _
|
|
|
169
223
|
* // executionRole: "STRING_VALUE",
|
|
170
224
|
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
171
225
|
* // savedownStorageConfiguration: { // KxSavedownStorageConfiguration
|
|
172
|
-
* // type: "SDS01",
|
|
173
|
-
* // size: Number("int"),
|
|
226
|
+
* // type: "SDS01",
|
|
227
|
+
* // size: Number("int"),
|
|
228
|
+
* // volumeName: "STRING_VALUE",
|
|
174
229
|
* // },
|
|
175
230
|
* // azMode: "SINGLE" || "MULTI",
|
|
176
231
|
* // availabilityZoneId: "STRING_VALUE",
|
|
177
232
|
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
233
|
+
* // scalingGroupConfiguration: { // KxScalingGroupConfiguration
|
|
234
|
+
* // scalingGroupName: "STRING_VALUE", // required
|
|
235
|
+
* // memoryLimit: Number("int"),
|
|
236
|
+
* // memoryReservation: Number("int"), // required
|
|
237
|
+
* // nodeCount: Number("int"), // required
|
|
238
|
+
* // cpu: Number("double"),
|
|
239
|
+
* // },
|
|
178
240
|
* // };
|
|
179
241
|
*
|
|
180
242
|
* ```
|
|
@@ -0,0 +1,136 @@
|
|
|
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 { CreateKxDataviewRequest, CreateKxDataviewResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateKxDataviewCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateKxDataviewCommandInput extends CreateKxDataviewRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateKxDataviewCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateKxDataviewCommandOutput extends CreateKxDataviewResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Creates a snapshot of kdb database with tiered storage capabilities and a pre-warmed cache, ready for mounting on kdb clusters. Dataviews are only available for clusters running on a scaling group. They are not supported on dedicated clusters. </p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { FinspaceClient, CreateKxDataviewCommand } from "@aws-sdk/client-finspace"; // ES Modules import
|
|
32
|
+
* // const { FinspaceClient, CreateKxDataviewCommand } = require("@aws-sdk/client-finspace"); // CommonJS import
|
|
33
|
+
* const client = new FinspaceClient(config);
|
|
34
|
+
* const input = { // CreateKxDataviewRequest
|
|
35
|
+
* environmentId: "STRING_VALUE", // required
|
|
36
|
+
* databaseName: "STRING_VALUE", // required
|
|
37
|
+
* dataviewName: "STRING_VALUE", // required
|
|
38
|
+
* azMode: "SINGLE" || "MULTI", // required
|
|
39
|
+
* availabilityZoneId: "STRING_VALUE",
|
|
40
|
+
* changesetId: "STRING_VALUE",
|
|
41
|
+
* segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
42
|
+
* { // KxDataviewSegmentConfiguration
|
|
43
|
+
* dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* volumeName: "STRING_VALUE", // required
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* autoUpdate: true || false,
|
|
50
|
+
* description: "STRING_VALUE",
|
|
51
|
+
* tags: { // TagMap
|
|
52
|
+
* "<keys>": "STRING_VALUE",
|
|
53
|
+
* },
|
|
54
|
+
* clientToken: "STRING_VALUE", // required
|
|
55
|
+
* };
|
|
56
|
+
* const command = new CreateKxDataviewCommand(input);
|
|
57
|
+
* const response = await client.send(command);
|
|
58
|
+
* // { // CreateKxDataviewResponse
|
|
59
|
+
* // dataviewName: "STRING_VALUE",
|
|
60
|
+
* // databaseName: "STRING_VALUE",
|
|
61
|
+
* // environmentId: "STRING_VALUE",
|
|
62
|
+
* // azMode: "SINGLE" || "MULTI",
|
|
63
|
+
* // availabilityZoneId: "STRING_VALUE",
|
|
64
|
+
* // changesetId: "STRING_VALUE",
|
|
65
|
+
* // segmentConfigurations: [ // KxDataviewSegmentConfigurationList
|
|
66
|
+
* // { // KxDataviewSegmentConfiguration
|
|
67
|
+
* // dbPaths: [ // SegmentConfigurationDbPathList // required
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // volumeName: "STRING_VALUE", // required
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // description: "STRING_VALUE",
|
|
74
|
+
* // autoUpdate: true || false,
|
|
75
|
+
* // createdTimestamp: new Date("TIMESTAMP"),
|
|
76
|
+
* // lastModifiedTimestamp: new Date("TIMESTAMP"),
|
|
77
|
+
* // status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED" || "DELETING",
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* @param CreateKxDataviewCommandInput - {@link CreateKxDataviewCommandInput}
|
|
83
|
+
* @returns {@link CreateKxDataviewCommandOutput}
|
|
84
|
+
* @see {@link CreateKxDataviewCommandInput} for command's `input` shape.
|
|
85
|
+
* @see {@link CreateKxDataviewCommandOutput} for command's `response` shape.
|
|
86
|
+
* @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
89
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ConflictException} (client fault)
|
|
92
|
+
* <p>There was a conflict with this action, and it could not be completed.</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 LimitExceededException} (client fault)
|
|
99
|
+
* <p>A service limit or quota is exceeded.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
102
|
+
* <p>The specified resource group already exists.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
105
|
+
* <p>One or more resources can't be found.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
108
|
+
* <p>The request was denied due to request throttling.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link ValidationException} (client fault)
|
|
111
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link FinspaceServiceException}
|
|
114
|
+
* <p>Base exception class for all service exceptions from Finspace service.</p>
|
|
115
|
+
*
|
|
116
|
+
*/
|
|
117
|
+
export declare class CreateKxDataviewCommand extends $Command<CreateKxDataviewCommandInput, CreateKxDataviewCommandOutput, FinspaceClientResolvedConfig> {
|
|
118
|
+
readonly input: CreateKxDataviewCommandInput;
|
|
119
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
constructor(input: CreateKxDataviewCommandInput);
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
127
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateKxDataviewCommandInput, CreateKxDataviewCommandOutput>;
|
|
128
|
+
/**
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
131
|
+
private serialize;
|
|
132
|
+
/**
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
private deserialize;
|
|
136
|
+
}
|