@aws-sdk/client-finspace 3.345.0 → 3.346.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 +208 -0
- package/dist-cjs/Finspace.js +52 -0
- package/dist-cjs/commands/CreateKxChangesetCommand.js +46 -0
- package/dist-cjs/commands/CreateKxClusterCommand.js +46 -0
- package/dist-cjs/commands/CreateKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/CreateKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/CreateKxUserCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxClusterCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/DeleteKxUserCommand.js +46 -0
- package/dist-cjs/commands/GetKxChangesetCommand.js +46 -0
- package/dist-cjs/commands/GetKxClusterCommand.js +46 -0
- package/dist-cjs/commands/GetKxConnectionStringCommand.js +47 -0
- package/dist-cjs/commands/GetKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/GetKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/GetKxUserCommand.js +46 -0
- package/dist-cjs/commands/ListKxChangesetsCommand.js +46 -0
- package/dist-cjs/commands/ListKxClusterNodesCommand.js +46 -0
- package/dist-cjs/commands/ListKxClustersCommand.js +46 -0
- package/dist-cjs/commands/ListKxDatabasesCommand.js +46 -0
- package/dist-cjs/commands/ListKxEnvironmentsCommand.js +46 -0
- package/dist-cjs/commands/ListKxUsersCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxClusterDatabasesCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxDatabaseCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxEnvironmentCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxEnvironmentNetworkCommand.js +46 -0
- package/dist-cjs/commands/UpdateKxUserCommand.js +46 -0
- package/dist-cjs/commands/index.js +26 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/models/models_0.js +98 -1
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListKxChangesetsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxClusterNodesPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxDatabasesPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxEnvironmentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2270 -125
- package/dist-es/Finspace.js +52 -0
- package/dist-es/commands/CreateKxChangesetCommand.js +42 -0
- package/dist-es/commands/CreateKxClusterCommand.js +42 -0
- package/dist-es/commands/CreateKxDatabaseCommand.js +42 -0
- package/dist-es/commands/CreateKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/CreateKxUserCommand.js +42 -0
- package/dist-es/commands/DeleteKxClusterCommand.js +42 -0
- package/dist-es/commands/DeleteKxDatabaseCommand.js +42 -0
- package/dist-es/commands/DeleteKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/DeleteKxUserCommand.js +42 -0
- package/dist-es/commands/GetKxChangesetCommand.js +42 -0
- package/dist-es/commands/GetKxClusterCommand.js +42 -0
- package/dist-es/commands/GetKxConnectionStringCommand.js +43 -0
- package/dist-es/commands/GetKxDatabaseCommand.js +42 -0
- package/dist-es/commands/GetKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/GetKxUserCommand.js +42 -0
- package/dist-es/commands/ListKxChangesetsCommand.js +42 -0
- package/dist-es/commands/ListKxClusterNodesCommand.js +42 -0
- package/dist-es/commands/ListKxClustersCommand.js +42 -0
- package/dist-es/commands/ListKxDatabasesCommand.js +42 -0
- package/dist-es/commands/ListKxEnvironmentsCommand.js +42 -0
- package/dist-es/commands/ListKxUsersCommand.js +42 -0
- package/dist-es/commands/UpdateKxClusterDatabasesCommand.js +42 -0
- package/dist-es/commands/UpdateKxDatabaseCommand.js +42 -0
- package/dist-es/commands/UpdateKxEnvironmentCommand.js +42 -0
- package/dist-es/commands/UpdateKxEnvironmentNetworkCommand.js +42 -0
- package/dist-es/commands/UpdateKxUserCommand.js +42 -0
- package/dist-es/commands/index.js +26 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +94 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListKxChangesetsPaginator.js +25 -0
- package/dist-es/pagination/ListKxClusterNodesPaginator.js +25 -0
- package/dist-es/pagination/ListKxDatabasesPaginator.js +25 -0
- package/dist-es/pagination/ListKxEnvironmentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +2192 -100
- package/dist-types/Finspace.d.ts +182 -0
- package/dist-types/FinspaceClient.d.ts +28 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateKxChangesetCommand.d.ts +122 -0
- package/dist-types/commands/CreateKxClusterCommand.d.ts +233 -0
- package/dist-types/commands/CreateKxDatabaseCommand.d.ts +109 -0
- package/dist-types/commands/CreateKxEnvironmentCommand.d.ts +108 -0
- package/dist-types/commands/CreateKxUserCommand.d.ts +107 -0
- package/dist-types/commands/DeleteKxClusterCommand.d.ts +95 -0
- package/dist-types/commands/DeleteKxDatabaseCommand.d.ts +92 -0
- package/dist-types/commands/DeleteKxEnvironmentCommand.d.ts +87 -0
- package/dist-types/commands/DeleteKxUserCommand.d.ts +88 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +2 -2
- package/dist-types/commands/GetKxChangesetCommand.d.ts +108 -0
- package/dist-types/commands/GetKxClusterCommand.d.ts +164 -0
- package/dist-types/commands/GetKxConnectionStringCommand.d.ts +91 -0
- package/dist-types/commands/GetKxDatabaseCommand.d.ts +99 -0
- package/dist-types/commands/GetKxEnvironmentCommand.d.ts +112 -0
- package/dist-types/commands/GetKxUserCommand.d.ts +93 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -2
- package/dist-types/commands/ListKxChangesetsCommand.d.ts +101 -0
- package/dist-types/commands/ListKxClusterNodesCommand.d.ts +102 -0
- package/dist-types/commands/ListKxClustersCommand.d.ts +114 -0
- package/dist-types/commands/ListKxDatabasesCommand.d.ts +98 -0
- package/dist-types/commands/ListKxEnvironmentsCommand.d.ts +112 -0
- package/dist-types/commands/ListKxUsersCommand.d.ts +100 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +3 -3
- package/dist-types/commands/UpdateKxClusterDatabasesCommand.d.ts +107 -0
- package/dist-types/commands/UpdateKxDatabaseCommand.d.ts +98 -0
- package/dist-types/commands/UpdateKxEnvironmentCommand.d.ts +120 -0
- package/dist-types/commands/UpdateKxEnvironmentNetworkCommand.d.ts +129 -0
- package/dist-types/commands/UpdateKxUserCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +26 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2390 -105
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListKxChangesetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxClusterNodesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxDatabasesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxEnvironmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +234 -0
- package/dist-types/ts3.4/Finspace.d.ts +442 -0
- package/dist-types/ts3.4/FinspaceClient.d.ts +158 -2
- package/dist-types/ts3.4/commands/CreateKxChangesetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateKxClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteKxClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetKxChangesetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxClusterCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetKxConnectionStringCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxEnvironmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListKxChangesetsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxClusterNodesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxClustersCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxDatabasesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxEnvironmentsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxUsersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateKxClusterDatabasesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateKxDatabaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateKxEnvironmentNetworkCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateKxUserCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +575 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListKxChangesetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxClusterNodesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxEnvironmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +312 -0
- package/package.json +4 -2
|
@@ -3,18 +3,102 @@ import {
|
|
|
3
3
|
CreateEnvironmentCommandInput,
|
|
4
4
|
CreateEnvironmentCommandOutput,
|
|
5
5
|
} from "./commands/CreateEnvironmentCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateKxChangesetCommandInput,
|
|
8
|
+
CreateKxChangesetCommandOutput,
|
|
9
|
+
} from "./commands/CreateKxChangesetCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateKxClusterCommandInput,
|
|
12
|
+
CreateKxClusterCommandOutput,
|
|
13
|
+
} from "./commands/CreateKxClusterCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateKxDatabaseCommandInput,
|
|
16
|
+
CreateKxDatabaseCommandOutput,
|
|
17
|
+
} from "./commands/CreateKxDatabaseCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateKxEnvironmentCommandInput,
|
|
20
|
+
CreateKxEnvironmentCommandOutput,
|
|
21
|
+
} from "./commands/CreateKxEnvironmentCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateKxUserCommandInput,
|
|
24
|
+
CreateKxUserCommandOutput,
|
|
25
|
+
} from "./commands/CreateKxUserCommand";
|
|
6
26
|
import {
|
|
7
27
|
DeleteEnvironmentCommandInput,
|
|
8
28
|
DeleteEnvironmentCommandOutput,
|
|
9
29
|
} from "./commands/DeleteEnvironmentCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteKxClusterCommandInput,
|
|
32
|
+
DeleteKxClusterCommandOutput,
|
|
33
|
+
} from "./commands/DeleteKxClusterCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteKxDatabaseCommandInput,
|
|
36
|
+
DeleteKxDatabaseCommandOutput,
|
|
37
|
+
} from "./commands/DeleteKxDatabaseCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteKxEnvironmentCommandInput,
|
|
40
|
+
DeleteKxEnvironmentCommandOutput,
|
|
41
|
+
} from "./commands/DeleteKxEnvironmentCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteKxUserCommandInput,
|
|
44
|
+
DeleteKxUserCommandOutput,
|
|
45
|
+
} from "./commands/DeleteKxUserCommand";
|
|
10
46
|
import {
|
|
11
47
|
GetEnvironmentCommandInput,
|
|
12
48
|
GetEnvironmentCommandOutput,
|
|
13
49
|
} from "./commands/GetEnvironmentCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetKxChangesetCommandInput,
|
|
52
|
+
GetKxChangesetCommandOutput,
|
|
53
|
+
} from "./commands/GetKxChangesetCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetKxClusterCommandInput,
|
|
56
|
+
GetKxClusterCommandOutput,
|
|
57
|
+
} from "./commands/GetKxClusterCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetKxConnectionStringCommandInput,
|
|
60
|
+
GetKxConnectionStringCommandOutput,
|
|
61
|
+
} from "./commands/GetKxConnectionStringCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetKxDatabaseCommandInput,
|
|
64
|
+
GetKxDatabaseCommandOutput,
|
|
65
|
+
} from "./commands/GetKxDatabaseCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetKxEnvironmentCommandInput,
|
|
68
|
+
GetKxEnvironmentCommandOutput,
|
|
69
|
+
} from "./commands/GetKxEnvironmentCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetKxUserCommandInput,
|
|
72
|
+
GetKxUserCommandOutput,
|
|
73
|
+
} from "./commands/GetKxUserCommand";
|
|
14
74
|
import {
|
|
15
75
|
ListEnvironmentsCommandInput,
|
|
16
76
|
ListEnvironmentsCommandOutput,
|
|
17
77
|
} from "./commands/ListEnvironmentsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListKxChangesetsCommandInput,
|
|
80
|
+
ListKxChangesetsCommandOutput,
|
|
81
|
+
} from "./commands/ListKxChangesetsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListKxClusterNodesCommandInput,
|
|
84
|
+
ListKxClusterNodesCommandOutput,
|
|
85
|
+
} from "./commands/ListKxClusterNodesCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListKxClustersCommandInput,
|
|
88
|
+
ListKxClustersCommandOutput,
|
|
89
|
+
} from "./commands/ListKxClustersCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListKxDatabasesCommandInput,
|
|
92
|
+
ListKxDatabasesCommandOutput,
|
|
93
|
+
} from "./commands/ListKxDatabasesCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListKxEnvironmentsCommandInput,
|
|
96
|
+
ListKxEnvironmentsCommandOutput,
|
|
97
|
+
} from "./commands/ListKxEnvironmentsCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListKxUsersCommandInput,
|
|
100
|
+
ListKxUsersCommandOutput,
|
|
101
|
+
} from "./commands/ListKxUsersCommand";
|
|
18
102
|
import {
|
|
19
103
|
ListTagsForResourceCommandInput,
|
|
20
104
|
ListTagsForResourceCommandOutput,
|
|
@@ -31,6 +115,26 @@ import {
|
|
|
31
115
|
UpdateEnvironmentCommandInput,
|
|
32
116
|
UpdateEnvironmentCommandOutput,
|
|
33
117
|
} from "./commands/UpdateEnvironmentCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateKxClusterDatabasesCommandInput,
|
|
120
|
+
UpdateKxClusterDatabasesCommandOutput,
|
|
121
|
+
} from "./commands/UpdateKxClusterDatabasesCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateKxDatabaseCommandInput,
|
|
124
|
+
UpdateKxDatabaseCommandOutput,
|
|
125
|
+
} from "./commands/UpdateKxDatabaseCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateKxEnvironmentCommandInput,
|
|
128
|
+
UpdateKxEnvironmentCommandOutput,
|
|
129
|
+
} from "./commands/UpdateKxEnvironmentCommand";
|
|
130
|
+
import {
|
|
131
|
+
UpdateKxEnvironmentNetworkCommandInput,
|
|
132
|
+
UpdateKxEnvironmentNetworkCommandOutput,
|
|
133
|
+
} from "./commands/UpdateKxEnvironmentNetworkCommand";
|
|
134
|
+
import {
|
|
135
|
+
UpdateKxUserCommandInput,
|
|
136
|
+
UpdateKxUserCommandOutput,
|
|
137
|
+
} from "./commands/UpdateKxUserCommand";
|
|
34
138
|
import { FinspaceClient } from "./FinspaceClient";
|
|
35
139
|
export interface Finspace {
|
|
36
140
|
createEnvironment(
|
|
@@ -46,6 +150,71 @@ export interface Finspace {
|
|
|
46
150
|
options: __HttpHandlerOptions,
|
|
47
151
|
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
48
152
|
): void;
|
|
153
|
+
createKxChangeset(
|
|
154
|
+
args: CreateKxChangesetCommandInput,
|
|
155
|
+
options?: __HttpHandlerOptions
|
|
156
|
+
): Promise<CreateKxChangesetCommandOutput>;
|
|
157
|
+
createKxChangeset(
|
|
158
|
+
args: CreateKxChangesetCommandInput,
|
|
159
|
+
cb: (err: any, data?: CreateKxChangesetCommandOutput) => void
|
|
160
|
+
): void;
|
|
161
|
+
createKxChangeset(
|
|
162
|
+
args: CreateKxChangesetCommandInput,
|
|
163
|
+
options: __HttpHandlerOptions,
|
|
164
|
+
cb: (err: any, data?: CreateKxChangesetCommandOutput) => void
|
|
165
|
+
): void;
|
|
166
|
+
createKxCluster(
|
|
167
|
+
args: CreateKxClusterCommandInput,
|
|
168
|
+
options?: __HttpHandlerOptions
|
|
169
|
+
): Promise<CreateKxClusterCommandOutput>;
|
|
170
|
+
createKxCluster(
|
|
171
|
+
args: CreateKxClusterCommandInput,
|
|
172
|
+
cb: (err: any, data?: CreateKxClusterCommandOutput) => void
|
|
173
|
+
): void;
|
|
174
|
+
createKxCluster(
|
|
175
|
+
args: CreateKxClusterCommandInput,
|
|
176
|
+
options: __HttpHandlerOptions,
|
|
177
|
+
cb: (err: any, data?: CreateKxClusterCommandOutput) => void
|
|
178
|
+
): void;
|
|
179
|
+
createKxDatabase(
|
|
180
|
+
args: CreateKxDatabaseCommandInput,
|
|
181
|
+
options?: __HttpHandlerOptions
|
|
182
|
+
): Promise<CreateKxDatabaseCommandOutput>;
|
|
183
|
+
createKxDatabase(
|
|
184
|
+
args: CreateKxDatabaseCommandInput,
|
|
185
|
+
cb: (err: any, data?: CreateKxDatabaseCommandOutput) => void
|
|
186
|
+
): void;
|
|
187
|
+
createKxDatabase(
|
|
188
|
+
args: CreateKxDatabaseCommandInput,
|
|
189
|
+
options: __HttpHandlerOptions,
|
|
190
|
+
cb: (err: any, data?: CreateKxDatabaseCommandOutput) => void
|
|
191
|
+
): void;
|
|
192
|
+
createKxEnvironment(
|
|
193
|
+
args: CreateKxEnvironmentCommandInput,
|
|
194
|
+
options?: __HttpHandlerOptions
|
|
195
|
+
): Promise<CreateKxEnvironmentCommandOutput>;
|
|
196
|
+
createKxEnvironment(
|
|
197
|
+
args: CreateKxEnvironmentCommandInput,
|
|
198
|
+
cb: (err: any, data?: CreateKxEnvironmentCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
createKxEnvironment(
|
|
201
|
+
args: CreateKxEnvironmentCommandInput,
|
|
202
|
+
options: __HttpHandlerOptions,
|
|
203
|
+
cb: (err: any, data?: CreateKxEnvironmentCommandOutput) => void
|
|
204
|
+
): void;
|
|
205
|
+
createKxUser(
|
|
206
|
+
args: CreateKxUserCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<CreateKxUserCommandOutput>;
|
|
209
|
+
createKxUser(
|
|
210
|
+
args: CreateKxUserCommandInput,
|
|
211
|
+
cb: (err: any, data?: CreateKxUserCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
createKxUser(
|
|
214
|
+
args: CreateKxUserCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: CreateKxUserCommandOutput) => void
|
|
217
|
+
): void;
|
|
49
218
|
deleteEnvironment(
|
|
50
219
|
args: DeleteEnvironmentCommandInput,
|
|
51
220
|
options?: __HttpHandlerOptions
|
|
@@ -59,6 +228,58 @@ export interface Finspace {
|
|
|
59
228
|
options: __HttpHandlerOptions,
|
|
60
229
|
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
61
230
|
): void;
|
|
231
|
+
deleteKxCluster(
|
|
232
|
+
args: DeleteKxClusterCommandInput,
|
|
233
|
+
options?: __HttpHandlerOptions
|
|
234
|
+
): Promise<DeleteKxClusterCommandOutput>;
|
|
235
|
+
deleteKxCluster(
|
|
236
|
+
args: DeleteKxClusterCommandInput,
|
|
237
|
+
cb: (err: any, data?: DeleteKxClusterCommandOutput) => void
|
|
238
|
+
): void;
|
|
239
|
+
deleteKxCluster(
|
|
240
|
+
args: DeleteKxClusterCommandInput,
|
|
241
|
+
options: __HttpHandlerOptions,
|
|
242
|
+
cb: (err: any, data?: DeleteKxClusterCommandOutput) => void
|
|
243
|
+
): void;
|
|
244
|
+
deleteKxDatabase(
|
|
245
|
+
args: DeleteKxDatabaseCommandInput,
|
|
246
|
+
options?: __HttpHandlerOptions
|
|
247
|
+
): Promise<DeleteKxDatabaseCommandOutput>;
|
|
248
|
+
deleteKxDatabase(
|
|
249
|
+
args: DeleteKxDatabaseCommandInput,
|
|
250
|
+
cb: (err: any, data?: DeleteKxDatabaseCommandOutput) => void
|
|
251
|
+
): void;
|
|
252
|
+
deleteKxDatabase(
|
|
253
|
+
args: DeleteKxDatabaseCommandInput,
|
|
254
|
+
options: __HttpHandlerOptions,
|
|
255
|
+
cb: (err: any, data?: DeleteKxDatabaseCommandOutput) => void
|
|
256
|
+
): void;
|
|
257
|
+
deleteKxEnvironment(
|
|
258
|
+
args: DeleteKxEnvironmentCommandInput,
|
|
259
|
+
options?: __HttpHandlerOptions
|
|
260
|
+
): Promise<DeleteKxEnvironmentCommandOutput>;
|
|
261
|
+
deleteKxEnvironment(
|
|
262
|
+
args: DeleteKxEnvironmentCommandInput,
|
|
263
|
+
cb: (err: any, data?: DeleteKxEnvironmentCommandOutput) => void
|
|
264
|
+
): void;
|
|
265
|
+
deleteKxEnvironment(
|
|
266
|
+
args: DeleteKxEnvironmentCommandInput,
|
|
267
|
+
options: __HttpHandlerOptions,
|
|
268
|
+
cb: (err: any, data?: DeleteKxEnvironmentCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
deleteKxUser(
|
|
271
|
+
args: DeleteKxUserCommandInput,
|
|
272
|
+
options?: __HttpHandlerOptions
|
|
273
|
+
): Promise<DeleteKxUserCommandOutput>;
|
|
274
|
+
deleteKxUser(
|
|
275
|
+
args: DeleteKxUserCommandInput,
|
|
276
|
+
cb: (err: any, data?: DeleteKxUserCommandOutput) => void
|
|
277
|
+
): void;
|
|
278
|
+
deleteKxUser(
|
|
279
|
+
args: DeleteKxUserCommandInput,
|
|
280
|
+
options: __HttpHandlerOptions,
|
|
281
|
+
cb: (err: any, data?: DeleteKxUserCommandOutput) => void
|
|
282
|
+
): void;
|
|
62
283
|
getEnvironment(
|
|
63
284
|
args: GetEnvironmentCommandInput,
|
|
64
285
|
options?: __HttpHandlerOptions
|
|
@@ -72,6 +293,84 @@ export interface Finspace {
|
|
|
72
293
|
options: __HttpHandlerOptions,
|
|
73
294
|
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
74
295
|
): void;
|
|
296
|
+
getKxChangeset(
|
|
297
|
+
args: GetKxChangesetCommandInput,
|
|
298
|
+
options?: __HttpHandlerOptions
|
|
299
|
+
): Promise<GetKxChangesetCommandOutput>;
|
|
300
|
+
getKxChangeset(
|
|
301
|
+
args: GetKxChangesetCommandInput,
|
|
302
|
+
cb: (err: any, data?: GetKxChangesetCommandOutput) => void
|
|
303
|
+
): void;
|
|
304
|
+
getKxChangeset(
|
|
305
|
+
args: GetKxChangesetCommandInput,
|
|
306
|
+
options: __HttpHandlerOptions,
|
|
307
|
+
cb: (err: any, data?: GetKxChangesetCommandOutput) => void
|
|
308
|
+
): void;
|
|
309
|
+
getKxCluster(
|
|
310
|
+
args: GetKxClusterCommandInput,
|
|
311
|
+
options?: __HttpHandlerOptions
|
|
312
|
+
): Promise<GetKxClusterCommandOutput>;
|
|
313
|
+
getKxCluster(
|
|
314
|
+
args: GetKxClusterCommandInput,
|
|
315
|
+
cb: (err: any, data?: GetKxClusterCommandOutput) => void
|
|
316
|
+
): void;
|
|
317
|
+
getKxCluster(
|
|
318
|
+
args: GetKxClusterCommandInput,
|
|
319
|
+
options: __HttpHandlerOptions,
|
|
320
|
+
cb: (err: any, data?: GetKxClusterCommandOutput) => void
|
|
321
|
+
): void;
|
|
322
|
+
getKxConnectionString(
|
|
323
|
+
args: GetKxConnectionStringCommandInput,
|
|
324
|
+
options?: __HttpHandlerOptions
|
|
325
|
+
): Promise<GetKxConnectionStringCommandOutput>;
|
|
326
|
+
getKxConnectionString(
|
|
327
|
+
args: GetKxConnectionStringCommandInput,
|
|
328
|
+
cb: (err: any, data?: GetKxConnectionStringCommandOutput) => void
|
|
329
|
+
): void;
|
|
330
|
+
getKxConnectionString(
|
|
331
|
+
args: GetKxConnectionStringCommandInput,
|
|
332
|
+
options: __HttpHandlerOptions,
|
|
333
|
+
cb: (err: any, data?: GetKxConnectionStringCommandOutput) => void
|
|
334
|
+
): void;
|
|
335
|
+
getKxDatabase(
|
|
336
|
+
args: GetKxDatabaseCommandInput,
|
|
337
|
+
options?: __HttpHandlerOptions
|
|
338
|
+
): Promise<GetKxDatabaseCommandOutput>;
|
|
339
|
+
getKxDatabase(
|
|
340
|
+
args: GetKxDatabaseCommandInput,
|
|
341
|
+
cb: (err: any, data?: GetKxDatabaseCommandOutput) => void
|
|
342
|
+
): void;
|
|
343
|
+
getKxDatabase(
|
|
344
|
+
args: GetKxDatabaseCommandInput,
|
|
345
|
+
options: __HttpHandlerOptions,
|
|
346
|
+
cb: (err: any, data?: GetKxDatabaseCommandOutput) => void
|
|
347
|
+
): void;
|
|
348
|
+
getKxEnvironment(
|
|
349
|
+
args: GetKxEnvironmentCommandInput,
|
|
350
|
+
options?: __HttpHandlerOptions
|
|
351
|
+
): Promise<GetKxEnvironmentCommandOutput>;
|
|
352
|
+
getKxEnvironment(
|
|
353
|
+
args: GetKxEnvironmentCommandInput,
|
|
354
|
+
cb: (err: any, data?: GetKxEnvironmentCommandOutput) => void
|
|
355
|
+
): void;
|
|
356
|
+
getKxEnvironment(
|
|
357
|
+
args: GetKxEnvironmentCommandInput,
|
|
358
|
+
options: __HttpHandlerOptions,
|
|
359
|
+
cb: (err: any, data?: GetKxEnvironmentCommandOutput) => void
|
|
360
|
+
): void;
|
|
361
|
+
getKxUser(
|
|
362
|
+
args: GetKxUserCommandInput,
|
|
363
|
+
options?: __HttpHandlerOptions
|
|
364
|
+
): Promise<GetKxUserCommandOutput>;
|
|
365
|
+
getKxUser(
|
|
366
|
+
args: GetKxUserCommandInput,
|
|
367
|
+
cb: (err: any, data?: GetKxUserCommandOutput) => void
|
|
368
|
+
): void;
|
|
369
|
+
getKxUser(
|
|
370
|
+
args: GetKxUserCommandInput,
|
|
371
|
+
options: __HttpHandlerOptions,
|
|
372
|
+
cb: (err: any, data?: GetKxUserCommandOutput) => void
|
|
373
|
+
): void;
|
|
75
374
|
listEnvironments(
|
|
76
375
|
args: ListEnvironmentsCommandInput,
|
|
77
376
|
options?: __HttpHandlerOptions
|
|
@@ -85,6 +384,84 @@ export interface Finspace {
|
|
|
85
384
|
options: __HttpHandlerOptions,
|
|
86
385
|
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
87
386
|
): void;
|
|
387
|
+
listKxChangesets(
|
|
388
|
+
args: ListKxChangesetsCommandInput,
|
|
389
|
+
options?: __HttpHandlerOptions
|
|
390
|
+
): Promise<ListKxChangesetsCommandOutput>;
|
|
391
|
+
listKxChangesets(
|
|
392
|
+
args: ListKxChangesetsCommandInput,
|
|
393
|
+
cb: (err: any, data?: ListKxChangesetsCommandOutput) => void
|
|
394
|
+
): void;
|
|
395
|
+
listKxChangesets(
|
|
396
|
+
args: ListKxChangesetsCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (err: any, data?: ListKxChangesetsCommandOutput) => void
|
|
399
|
+
): void;
|
|
400
|
+
listKxClusterNodes(
|
|
401
|
+
args: ListKxClusterNodesCommandInput,
|
|
402
|
+
options?: __HttpHandlerOptions
|
|
403
|
+
): Promise<ListKxClusterNodesCommandOutput>;
|
|
404
|
+
listKxClusterNodes(
|
|
405
|
+
args: ListKxClusterNodesCommandInput,
|
|
406
|
+
cb: (err: any, data?: ListKxClusterNodesCommandOutput) => void
|
|
407
|
+
): void;
|
|
408
|
+
listKxClusterNodes(
|
|
409
|
+
args: ListKxClusterNodesCommandInput,
|
|
410
|
+
options: __HttpHandlerOptions,
|
|
411
|
+
cb: (err: any, data?: ListKxClusterNodesCommandOutput) => void
|
|
412
|
+
): void;
|
|
413
|
+
listKxClusters(
|
|
414
|
+
args: ListKxClustersCommandInput,
|
|
415
|
+
options?: __HttpHandlerOptions
|
|
416
|
+
): Promise<ListKxClustersCommandOutput>;
|
|
417
|
+
listKxClusters(
|
|
418
|
+
args: ListKxClustersCommandInput,
|
|
419
|
+
cb: (err: any, data?: ListKxClustersCommandOutput) => void
|
|
420
|
+
): void;
|
|
421
|
+
listKxClusters(
|
|
422
|
+
args: ListKxClustersCommandInput,
|
|
423
|
+
options: __HttpHandlerOptions,
|
|
424
|
+
cb: (err: any, data?: ListKxClustersCommandOutput) => void
|
|
425
|
+
): void;
|
|
426
|
+
listKxDatabases(
|
|
427
|
+
args: ListKxDatabasesCommandInput,
|
|
428
|
+
options?: __HttpHandlerOptions
|
|
429
|
+
): Promise<ListKxDatabasesCommandOutput>;
|
|
430
|
+
listKxDatabases(
|
|
431
|
+
args: ListKxDatabasesCommandInput,
|
|
432
|
+
cb: (err: any, data?: ListKxDatabasesCommandOutput) => void
|
|
433
|
+
): void;
|
|
434
|
+
listKxDatabases(
|
|
435
|
+
args: ListKxDatabasesCommandInput,
|
|
436
|
+
options: __HttpHandlerOptions,
|
|
437
|
+
cb: (err: any, data?: ListKxDatabasesCommandOutput) => void
|
|
438
|
+
): void;
|
|
439
|
+
listKxEnvironments(
|
|
440
|
+
args: ListKxEnvironmentsCommandInput,
|
|
441
|
+
options?: __HttpHandlerOptions
|
|
442
|
+
): Promise<ListKxEnvironmentsCommandOutput>;
|
|
443
|
+
listKxEnvironments(
|
|
444
|
+
args: ListKxEnvironmentsCommandInput,
|
|
445
|
+
cb: (err: any, data?: ListKxEnvironmentsCommandOutput) => void
|
|
446
|
+
): void;
|
|
447
|
+
listKxEnvironments(
|
|
448
|
+
args: ListKxEnvironmentsCommandInput,
|
|
449
|
+
options: __HttpHandlerOptions,
|
|
450
|
+
cb: (err: any, data?: ListKxEnvironmentsCommandOutput) => void
|
|
451
|
+
): void;
|
|
452
|
+
listKxUsers(
|
|
453
|
+
args: ListKxUsersCommandInput,
|
|
454
|
+
options?: __HttpHandlerOptions
|
|
455
|
+
): Promise<ListKxUsersCommandOutput>;
|
|
456
|
+
listKxUsers(
|
|
457
|
+
args: ListKxUsersCommandInput,
|
|
458
|
+
cb: (err: any, data?: ListKxUsersCommandOutput) => void
|
|
459
|
+
): void;
|
|
460
|
+
listKxUsers(
|
|
461
|
+
args: ListKxUsersCommandInput,
|
|
462
|
+
options: __HttpHandlerOptions,
|
|
463
|
+
cb: (err: any, data?: ListKxUsersCommandOutput) => void
|
|
464
|
+
): void;
|
|
88
465
|
listTagsForResource(
|
|
89
466
|
args: ListTagsForResourceCommandInput,
|
|
90
467
|
options?: __HttpHandlerOptions
|
|
@@ -137,5 +514,70 @@ export interface Finspace {
|
|
|
137
514
|
options: __HttpHandlerOptions,
|
|
138
515
|
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
139
516
|
): void;
|
|
517
|
+
updateKxClusterDatabases(
|
|
518
|
+
args: UpdateKxClusterDatabasesCommandInput,
|
|
519
|
+
options?: __HttpHandlerOptions
|
|
520
|
+
): Promise<UpdateKxClusterDatabasesCommandOutput>;
|
|
521
|
+
updateKxClusterDatabases(
|
|
522
|
+
args: UpdateKxClusterDatabasesCommandInput,
|
|
523
|
+
cb: (err: any, data?: UpdateKxClusterDatabasesCommandOutput) => void
|
|
524
|
+
): void;
|
|
525
|
+
updateKxClusterDatabases(
|
|
526
|
+
args: UpdateKxClusterDatabasesCommandInput,
|
|
527
|
+
options: __HttpHandlerOptions,
|
|
528
|
+
cb: (err: any, data?: UpdateKxClusterDatabasesCommandOutput) => void
|
|
529
|
+
): void;
|
|
530
|
+
updateKxDatabase(
|
|
531
|
+
args: UpdateKxDatabaseCommandInput,
|
|
532
|
+
options?: __HttpHandlerOptions
|
|
533
|
+
): Promise<UpdateKxDatabaseCommandOutput>;
|
|
534
|
+
updateKxDatabase(
|
|
535
|
+
args: UpdateKxDatabaseCommandInput,
|
|
536
|
+
cb: (err: any, data?: UpdateKxDatabaseCommandOutput) => void
|
|
537
|
+
): void;
|
|
538
|
+
updateKxDatabase(
|
|
539
|
+
args: UpdateKxDatabaseCommandInput,
|
|
540
|
+
options: __HttpHandlerOptions,
|
|
541
|
+
cb: (err: any, data?: UpdateKxDatabaseCommandOutput) => void
|
|
542
|
+
): void;
|
|
543
|
+
updateKxEnvironment(
|
|
544
|
+
args: UpdateKxEnvironmentCommandInput,
|
|
545
|
+
options?: __HttpHandlerOptions
|
|
546
|
+
): Promise<UpdateKxEnvironmentCommandOutput>;
|
|
547
|
+
updateKxEnvironment(
|
|
548
|
+
args: UpdateKxEnvironmentCommandInput,
|
|
549
|
+
cb: (err: any, data?: UpdateKxEnvironmentCommandOutput) => void
|
|
550
|
+
): void;
|
|
551
|
+
updateKxEnvironment(
|
|
552
|
+
args: UpdateKxEnvironmentCommandInput,
|
|
553
|
+
options: __HttpHandlerOptions,
|
|
554
|
+
cb: (err: any, data?: UpdateKxEnvironmentCommandOutput) => void
|
|
555
|
+
): void;
|
|
556
|
+
updateKxEnvironmentNetwork(
|
|
557
|
+
args: UpdateKxEnvironmentNetworkCommandInput,
|
|
558
|
+
options?: __HttpHandlerOptions
|
|
559
|
+
): Promise<UpdateKxEnvironmentNetworkCommandOutput>;
|
|
560
|
+
updateKxEnvironmentNetwork(
|
|
561
|
+
args: UpdateKxEnvironmentNetworkCommandInput,
|
|
562
|
+
cb: (err: any, data?: UpdateKxEnvironmentNetworkCommandOutput) => void
|
|
563
|
+
): void;
|
|
564
|
+
updateKxEnvironmentNetwork(
|
|
565
|
+
args: UpdateKxEnvironmentNetworkCommandInput,
|
|
566
|
+
options: __HttpHandlerOptions,
|
|
567
|
+
cb: (err: any, data?: UpdateKxEnvironmentNetworkCommandOutput) => void
|
|
568
|
+
): void;
|
|
569
|
+
updateKxUser(
|
|
570
|
+
args: UpdateKxUserCommandInput,
|
|
571
|
+
options?: __HttpHandlerOptions
|
|
572
|
+
): Promise<UpdateKxUserCommandOutput>;
|
|
573
|
+
updateKxUser(
|
|
574
|
+
args: UpdateKxUserCommandInput,
|
|
575
|
+
cb: (err: any, data?: UpdateKxUserCommandOutput) => void
|
|
576
|
+
): void;
|
|
577
|
+
updateKxUser(
|
|
578
|
+
args: UpdateKxUserCommandInput,
|
|
579
|
+
options: __HttpHandlerOptions,
|
|
580
|
+
cb: (err: any, data?: UpdateKxUserCommandOutput) => void
|
|
581
|
+
): void;
|
|
140
582
|
}
|
|
141
583
|
export declare class Finspace extends FinspaceClient implements Finspace {}
|
|
@@ -50,18 +50,102 @@ import {
|
|
|
50
50
|
CreateEnvironmentCommandInput,
|
|
51
51
|
CreateEnvironmentCommandOutput,
|
|
52
52
|
} from "./commands/CreateEnvironmentCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateKxChangesetCommandInput,
|
|
55
|
+
CreateKxChangesetCommandOutput,
|
|
56
|
+
} from "./commands/CreateKxChangesetCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateKxClusterCommandInput,
|
|
59
|
+
CreateKxClusterCommandOutput,
|
|
60
|
+
} from "./commands/CreateKxClusterCommand";
|
|
61
|
+
import {
|
|
62
|
+
CreateKxDatabaseCommandInput,
|
|
63
|
+
CreateKxDatabaseCommandOutput,
|
|
64
|
+
} from "./commands/CreateKxDatabaseCommand";
|
|
65
|
+
import {
|
|
66
|
+
CreateKxEnvironmentCommandInput,
|
|
67
|
+
CreateKxEnvironmentCommandOutput,
|
|
68
|
+
} from "./commands/CreateKxEnvironmentCommand";
|
|
69
|
+
import {
|
|
70
|
+
CreateKxUserCommandInput,
|
|
71
|
+
CreateKxUserCommandOutput,
|
|
72
|
+
} from "./commands/CreateKxUserCommand";
|
|
53
73
|
import {
|
|
54
74
|
DeleteEnvironmentCommandInput,
|
|
55
75
|
DeleteEnvironmentCommandOutput,
|
|
56
76
|
} from "./commands/DeleteEnvironmentCommand";
|
|
77
|
+
import {
|
|
78
|
+
DeleteKxClusterCommandInput,
|
|
79
|
+
DeleteKxClusterCommandOutput,
|
|
80
|
+
} from "./commands/DeleteKxClusterCommand";
|
|
81
|
+
import {
|
|
82
|
+
DeleteKxDatabaseCommandInput,
|
|
83
|
+
DeleteKxDatabaseCommandOutput,
|
|
84
|
+
} from "./commands/DeleteKxDatabaseCommand";
|
|
85
|
+
import {
|
|
86
|
+
DeleteKxEnvironmentCommandInput,
|
|
87
|
+
DeleteKxEnvironmentCommandOutput,
|
|
88
|
+
} from "./commands/DeleteKxEnvironmentCommand";
|
|
89
|
+
import {
|
|
90
|
+
DeleteKxUserCommandInput,
|
|
91
|
+
DeleteKxUserCommandOutput,
|
|
92
|
+
} from "./commands/DeleteKxUserCommand";
|
|
57
93
|
import {
|
|
58
94
|
GetEnvironmentCommandInput,
|
|
59
95
|
GetEnvironmentCommandOutput,
|
|
60
96
|
} from "./commands/GetEnvironmentCommand";
|
|
97
|
+
import {
|
|
98
|
+
GetKxChangesetCommandInput,
|
|
99
|
+
GetKxChangesetCommandOutput,
|
|
100
|
+
} from "./commands/GetKxChangesetCommand";
|
|
101
|
+
import {
|
|
102
|
+
GetKxClusterCommandInput,
|
|
103
|
+
GetKxClusterCommandOutput,
|
|
104
|
+
} from "./commands/GetKxClusterCommand";
|
|
105
|
+
import {
|
|
106
|
+
GetKxConnectionStringCommandInput,
|
|
107
|
+
GetKxConnectionStringCommandOutput,
|
|
108
|
+
} from "./commands/GetKxConnectionStringCommand";
|
|
109
|
+
import {
|
|
110
|
+
GetKxDatabaseCommandInput,
|
|
111
|
+
GetKxDatabaseCommandOutput,
|
|
112
|
+
} from "./commands/GetKxDatabaseCommand";
|
|
113
|
+
import {
|
|
114
|
+
GetKxEnvironmentCommandInput,
|
|
115
|
+
GetKxEnvironmentCommandOutput,
|
|
116
|
+
} from "./commands/GetKxEnvironmentCommand";
|
|
117
|
+
import {
|
|
118
|
+
GetKxUserCommandInput,
|
|
119
|
+
GetKxUserCommandOutput,
|
|
120
|
+
} from "./commands/GetKxUserCommand";
|
|
61
121
|
import {
|
|
62
122
|
ListEnvironmentsCommandInput,
|
|
63
123
|
ListEnvironmentsCommandOutput,
|
|
64
124
|
} from "./commands/ListEnvironmentsCommand";
|
|
125
|
+
import {
|
|
126
|
+
ListKxChangesetsCommandInput,
|
|
127
|
+
ListKxChangesetsCommandOutput,
|
|
128
|
+
} from "./commands/ListKxChangesetsCommand";
|
|
129
|
+
import {
|
|
130
|
+
ListKxClusterNodesCommandInput,
|
|
131
|
+
ListKxClusterNodesCommandOutput,
|
|
132
|
+
} from "./commands/ListKxClusterNodesCommand";
|
|
133
|
+
import {
|
|
134
|
+
ListKxClustersCommandInput,
|
|
135
|
+
ListKxClustersCommandOutput,
|
|
136
|
+
} from "./commands/ListKxClustersCommand";
|
|
137
|
+
import {
|
|
138
|
+
ListKxDatabasesCommandInput,
|
|
139
|
+
ListKxDatabasesCommandOutput,
|
|
140
|
+
} from "./commands/ListKxDatabasesCommand";
|
|
141
|
+
import {
|
|
142
|
+
ListKxEnvironmentsCommandInput,
|
|
143
|
+
ListKxEnvironmentsCommandOutput,
|
|
144
|
+
} from "./commands/ListKxEnvironmentsCommand";
|
|
145
|
+
import {
|
|
146
|
+
ListKxUsersCommandInput,
|
|
147
|
+
ListKxUsersCommandOutput,
|
|
148
|
+
} from "./commands/ListKxUsersCommand";
|
|
65
149
|
import {
|
|
66
150
|
ListTagsForResourceCommandInput,
|
|
67
151
|
ListTagsForResourceCommandOutput,
|
|
@@ -78,6 +162,26 @@ import {
|
|
|
78
162
|
UpdateEnvironmentCommandInput,
|
|
79
163
|
UpdateEnvironmentCommandOutput,
|
|
80
164
|
} from "./commands/UpdateEnvironmentCommand";
|
|
165
|
+
import {
|
|
166
|
+
UpdateKxClusterDatabasesCommandInput,
|
|
167
|
+
UpdateKxClusterDatabasesCommandOutput,
|
|
168
|
+
} from "./commands/UpdateKxClusterDatabasesCommand";
|
|
169
|
+
import {
|
|
170
|
+
UpdateKxDatabaseCommandInput,
|
|
171
|
+
UpdateKxDatabaseCommandOutput,
|
|
172
|
+
} from "./commands/UpdateKxDatabaseCommand";
|
|
173
|
+
import {
|
|
174
|
+
UpdateKxEnvironmentCommandInput,
|
|
175
|
+
UpdateKxEnvironmentCommandOutput,
|
|
176
|
+
} from "./commands/UpdateKxEnvironmentCommand";
|
|
177
|
+
import {
|
|
178
|
+
UpdateKxEnvironmentNetworkCommandInput,
|
|
179
|
+
UpdateKxEnvironmentNetworkCommandOutput,
|
|
180
|
+
} from "./commands/UpdateKxEnvironmentNetworkCommand";
|
|
181
|
+
import {
|
|
182
|
+
UpdateKxUserCommandInput,
|
|
183
|
+
UpdateKxUserCommandOutput,
|
|
184
|
+
} from "./commands/UpdateKxUserCommand";
|
|
81
185
|
import {
|
|
82
186
|
ClientInputEndpointParameters,
|
|
83
187
|
ClientResolvedEndpointParameters,
|
|
@@ -86,22 +190,74 @@ import {
|
|
|
86
190
|
export { __Client };
|
|
87
191
|
export type ServiceInputTypes =
|
|
88
192
|
| CreateEnvironmentCommandInput
|
|
193
|
+
| CreateKxChangesetCommandInput
|
|
194
|
+
| CreateKxClusterCommandInput
|
|
195
|
+
| CreateKxDatabaseCommandInput
|
|
196
|
+
| CreateKxEnvironmentCommandInput
|
|
197
|
+
| CreateKxUserCommandInput
|
|
89
198
|
| DeleteEnvironmentCommandInput
|
|
199
|
+
| DeleteKxClusterCommandInput
|
|
200
|
+
| DeleteKxDatabaseCommandInput
|
|
201
|
+
| DeleteKxEnvironmentCommandInput
|
|
202
|
+
| DeleteKxUserCommandInput
|
|
90
203
|
| GetEnvironmentCommandInput
|
|
204
|
+
| GetKxChangesetCommandInput
|
|
205
|
+
| GetKxClusterCommandInput
|
|
206
|
+
| GetKxConnectionStringCommandInput
|
|
207
|
+
| GetKxDatabaseCommandInput
|
|
208
|
+
| GetKxEnvironmentCommandInput
|
|
209
|
+
| GetKxUserCommandInput
|
|
91
210
|
| ListEnvironmentsCommandInput
|
|
211
|
+
| ListKxChangesetsCommandInput
|
|
212
|
+
| ListKxClusterNodesCommandInput
|
|
213
|
+
| ListKxClustersCommandInput
|
|
214
|
+
| ListKxDatabasesCommandInput
|
|
215
|
+
| ListKxEnvironmentsCommandInput
|
|
216
|
+
| ListKxUsersCommandInput
|
|
92
217
|
| ListTagsForResourceCommandInput
|
|
93
218
|
| TagResourceCommandInput
|
|
94
219
|
| UntagResourceCommandInput
|
|
95
|
-
| UpdateEnvironmentCommandInput
|
|
220
|
+
| UpdateEnvironmentCommandInput
|
|
221
|
+
| UpdateKxClusterDatabasesCommandInput
|
|
222
|
+
| UpdateKxDatabaseCommandInput
|
|
223
|
+
| UpdateKxEnvironmentCommandInput
|
|
224
|
+
| UpdateKxEnvironmentNetworkCommandInput
|
|
225
|
+
| UpdateKxUserCommandInput;
|
|
96
226
|
export type ServiceOutputTypes =
|
|
97
227
|
| CreateEnvironmentCommandOutput
|
|
228
|
+
| CreateKxChangesetCommandOutput
|
|
229
|
+
| CreateKxClusterCommandOutput
|
|
230
|
+
| CreateKxDatabaseCommandOutput
|
|
231
|
+
| CreateKxEnvironmentCommandOutput
|
|
232
|
+
| CreateKxUserCommandOutput
|
|
98
233
|
| DeleteEnvironmentCommandOutput
|
|
234
|
+
| DeleteKxClusterCommandOutput
|
|
235
|
+
| DeleteKxDatabaseCommandOutput
|
|
236
|
+
| DeleteKxEnvironmentCommandOutput
|
|
237
|
+
| DeleteKxUserCommandOutput
|
|
99
238
|
| GetEnvironmentCommandOutput
|
|
239
|
+
| GetKxChangesetCommandOutput
|
|
240
|
+
| GetKxClusterCommandOutput
|
|
241
|
+
| GetKxConnectionStringCommandOutput
|
|
242
|
+
| GetKxDatabaseCommandOutput
|
|
243
|
+
| GetKxEnvironmentCommandOutput
|
|
244
|
+
| GetKxUserCommandOutput
|
|
100
245
|
| ListEnvironmentsCommandOutput
|
|
246
|
+
| ListKxChangesetsCommandOutput
|
|
247
|
+
| ListKxClusterNodesCommandOutput
|
|
248
|
+
| ListKxClustersCommandOutput
|
|
249
|
+
| ListKxDatabasesCommandOutput
|
|
250
|
+
| ListKxEnvironmentsCommandOutput
|
|
251
|
+
| ListKxUsersCommandOutput
|
|
101
252
|
| ListTagsForResourceCommandOutput
|
|
102
253
|
| TagResourceCommandOutput
|
|
103
254
|
| UntagResourceCommandOutput
|
|
104
|
-
| UpdateEnvironmentCommandOutput
|
|
255
|
+
| UpdateEnvironmentCommandOutput
|
|
256
|
+
| UpdateKxClusterDatabasesCommandOutput
|
|
257
|
+
| UpdateKxDatabaseCommandOutput
|
|
258
|
+
| UpdateKxEnvironmentCommandOutput
|
|
259
|
+
| UpdateKxEnvironmentNetworkCommandOutput
|
|
260
|
+
| UpdateKxUserCommandOutput;
|
|
105
261
|
export interface ClientDefaults
|
|
106
262
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
107
263
|
requestHandler?: __HttpHandler;
|