@aws-sdk/client-finspace 3.345.0 → 3.347.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 +31 -29
|
@@ -7,18 +7,102 @@ import {
|
|
|
7
7
|
CreateEnvironmentCommandInput,
|
|
8
8
|
CreateEnvironmentCommandOutput,
|
|
9
9
|
} from "../commands/CreateEnvironmentCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateKxChangesetCommandInput,
|
|
12
|
+
CreateKxChangesetCommandOutput,
|
|
13
|
+
} from "../commands/CreateKxChangesetCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateKxClusterCommandInput,
|
|
16
|
+
CreateKxClusterCommandOutput,
|
|
17
|
+
} from "../commands/CreateKxClusterCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateKxDatabaseCommandInput,
|
|
20
|
+
CreateKxDatabaseCommandOutput,
|
|
21
|
+
} from "../commands/CreateKxDatabaseCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateKxEnvironmentCommandInput,
|
|
24
|
+
CreateKxEnvironmentCommandOutput,
|
|
25
|
+
} from "../commands/CreateKxEnvironmentCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateKxUserCommandInput,
|
|
28
|
+
CreateKxUserCommandOutput,
|
|
29
|
+
} from "../commands/CreateKxUserCommand";
|
|
10
30
|
import {
|
|
11
31
|
DeleteEnvironmentCommandInput,
|
|
12
32
|
DeleteEnvironmentCommandOutput,
|
|
13
33
|
} from "../commands/DeleteEnvironmentCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteKxClusterCommandInput,
|
|
36
|
+
DeleteKxClusterCommandOutput,
|
|
37
|
+
} from "../commands/DeleteKxClusterCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteKxDatabaseCommandInput,
|
|
40
|
+
DeleteKxDatabaseCommandOutput,
|
|
41
|
+
} from "../commands/DeleteKxDatabaseCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteKxEnvironmentCommandInput,
|
|
44
|
+
DeleteKxEnvironmentCommandOutput,
|
|
45
|
+
} from "../commands/DeleteKxEnvironmentCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteKxUserCommandInput,
|
|
48
|
+
DeleteKxUserCommandOutput,
|
|
49
|
+
} from "../commands/DeleteKxUserCommand";
|
|
14
50
|
import {
|
|
15
51
|
GetEnvironmentCommandInput,
|
|
16
52
|
GetEnvironmentCommandOutput,
|
|
17
53
|
} from "../commands/GetEnvironmentCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetKxChangesetCommandInput,
|
|
56
|
+
GetKxChangesetCommandOutput,
|
|
57
|
+
} from "../commands/GetKxChangesetCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetKxClusterCommandInput,
|
|
60
|
+
GetKxClusterCommandOutput,
|
|
61
|
+
} from "../commands/GetKxClusterCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetKxConnectionStringCommandInput,
|
|
64
|
+
GetKxConnectionStringCommandOutput,
|
|
65
|
+
} from "../commands/GetKxConnectionStringCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetKxDatabaseCommandInput,
|
|
68
|
+
GetKxDatabaseCommandOutput,
|
|
69
|
+
} from "../commands/GetKxDatabaseCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetKxEnvironmentCommandInput,
|
|
72
|
+
GetKxEnvironmentCommandOutput,
|
|
73
|
+
} from "../commands/GetKxEnvironmentCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetKxUserCommandInput,
|
|
76
|
+
GetKxUserCommandOutput,
|
|
77
|
+
} from "../commands/GetKxUserCommand";
|
|
18
78
|
import {
|
|
19
79
|
ListEnvironmentsCommandInput,
|
|
20
80
|
ListEnvironmentsCommandOutput,
|
|
21
81
|
} from "../commands/ListEnvironmentsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListKxChangesetsCommandInput,
|
|
84
|
+
ListKxChangesetsCommandOutput,
|
|
85
|
+
} from "../commands/ListKxChangesetsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListKxClusterNodesCommandInput,
|
|
88
|
+
ListKxClusterNodesCommandOutput,
|
|
89
|
+
} from "../commands/ListKxClusterNodesCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListKxClustersCommandInput,
|
|
92
|
+
ListKxClustersCommandOutput,
|
|
93
|
+
} from "../commands/ListKxClustersCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListKxDatabasesCommandInput,
|
|
96
|
+
ListKxDatabasesCommandOutput,
|
|
97
|
+
} from "../commands/ListKxDatabasesCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListKxEnvironmentsCommandInput,
|
|
100
|
+
ListKxEnvironmentsCommandOutput,
|
|
101
|
+
} from "../commands/ListKxEnvironmentsCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListKxUsersCommandInput,
|
|
104
|
+
ListKxUsersCommandOutput,
|
|
105
|
+
} from "../commands/ListKxUsersCommand";
|
|
22
106
|
import {
|
|
23
107
|
ListTagsForResourceCommandInput,
|
|
24
108
|
ListTagsForResourceCommandOutput,
|
|
@@ -35,22 +119,126 @@ import {
|
|
|
35
119
|
UpdateEnvironmentCommandInput,
|
|
36
120
|
UpdateEnvironmentCommandOutput,
|
|
37
121
|
} from "../commands/UpdateEnvironmentCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateKxClusterDatabasesCommandInput,
|
|
124
|
+
UpdateKxClusterDatabasesCommandOutput,
|
|
125
|
+
} from "../commands/UpdateKxClusterDatabasesCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateKxDatabaseCommandInput,
|
|
128
|
+
UpdateKxDatabaseCommandOutput,
|
|
129
|
+
} from "../commands/UpdateKxDatabaseCommand";
|
|
130
|
+
import {
|
|
131
|
+
UpdateKxEnvironmentCommandInput,
|
|
132
|
+
UpdateKxEnvironmentCommandOutput,
|
|
133
|
+
} from "../commands/UpdateKxEnvironmentCommand";
|
|
134
|
+
import {
|
|
135
|
+
UpdateKxEnvironmentNetworkCommandInput,
|
|
136
|
+
UpdateKxEnvironmentNetworkCommandOutput,
|
|
137
|
+
} from "../commands/UpdateKxEnvironmentNetworkCommand";
|
|
138
|
+
import {
|
|
139
|
+
UpdateKxUserCommandInput,
|
|
140
|
+
UpdateKxUserCommandOutput,
|
|
141
|
+
} from "../commands/UpdateKxUserCommand";
|
|
38
142
|
export declare const se_CreateEnvironmentCommand: (
|
|
39
143
|
input: CreateEnvironmentCommandInput,
|
|
40
144
|
context: __SerdeContext
|
|
41
145
|
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_CreateKxChangesetCommand: (
|
|
147
|
+
input: CreateKxChangesetCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_CreateKxClusterCommand: (
|
|
151
|
+
input: CreateKxClusterCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_CreateKxDatabaseCommand: (
|
|
155
|
+
input: CreateKxDatabaseCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_CreateKxEnvironmentCommand: (
|
|
159
|
+
input: CreateKxEnvironmentCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_CreateKxUserCommand: (
|
|
163
|
+
input: CreateKxUserCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
42
166
|
export declare const se_DeleteEnvironmentCommand: (
|
|
43
167
|
input: DeleteEnvironmentCommandInput,
|
|
44
168
|
context: __SerdeContext
|
|
45
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_DeleteKxClusterCommand: (
|
|
171
|
+
input: DeleteKxClusterCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_DeleteKxDatabaseCommand: (
|
|
175
|
+
input: DeleteKxDatabaseCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_DeleteKxEnvironmentCommand: (
|
|
179
|
+
input: DeleteKxEnvironmentCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_DeleteKxUserCommand: (
|
|
183
|
+
input: DeleteKxUserCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
46
186
|
export declare const se_GetEnvironmentCommand: (
|
|
47
187
|
input: GetEnvironmentCommandInput,
|
|
48
188
|
context: __SerdeContext
|
|
49
189
|
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const se_GetKxChangesetCommand: (
|
|
191
|
+
input: GetKxChangesetCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_GetKxClusterCommand: (
|
|
195
|
+
input: GetKxClusterCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_GetKxConnectionStringCommand: (
|
|
199
|
+
input: GetKxConnectionStringCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_GetKxDatabaseCommand: (
|
|
203
|
+
input: GetKxDatabaseCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_GetKxEnvironmentCommand: (
|
|
207
|
+
input: GetKxEnvironmentCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_GetKxUserCommand: (
|
|
211
|
+
input: GetKxUserCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
50
214
|
export declare const se_ListEnvironmentsCommand: (
|
|
51
215
|
input: ListEnvironmentsCommandInput,
|
|
52
216
|
context: __SerdeContext
|
|
53
217
|
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const se_ListKxChangesetsCommand: (
|
|
219
|
+
input: ListKxChangesetsCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const se_ListKxClusterNodesCommand: (
|
|
223
|
+
input: ListKxClusterNodesCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const se_ListKxClustersCommand: (
|
|
227
|
+
input: ListKxClustersCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const se_ListKxDatabasesCommand: (
|
|
231
|
+
input: ListKxDatabasesCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const se_ListKxEnvironmentsCommand: (
|
|
235
|
+
input: ListKxEnvironmentsCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const se_ListKxUsersCommand: (
|
|
239
|
+
input: ListKxUsersCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
54
242
|
export declare const se_ListTagsForResourceCommand: (
|
|
55
243
|
input: ListTagsForResourceCommandInput,
|
|
56
244
|
context: __SerdeContext
|
|
@@ -67,22 +255,126 @@ export declare const se_UpdateEnvironmentCommand: (
|
|
|
67
255
|
input: UpdateEnvironmentCommandInput,
|
|
68
256
|
context: __SerdeContext
|
|
69
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_UpdateKxClusterDatabasesCommand: (
|
|
259
|
+
input: UpdateKxClusterDatabasesCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const se_UpdateKxDatabaseCommand: (
|
|
263
|
+
input: UpdateKxDatabaseCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
266
|
+
export declare const se_UpdateKxEnvironmentCommand: (
|
|
267
|
+
input: UpdateKxEnvironmentCommandInput,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<__HttpRequest>;
|
|
270
|
+
export declare const se_UpdateKxEnvironmentNetworkCommand: (
|
|
271
|
+
input: UpdateKxEnvironmentNetworkCommandInput,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_UpdateKxUserCommand: (
|
|
275
|
+
input: UpdateKxUserCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
70
278
|
export declare const de_CreateEnvironmentCommand: (
|
|
71
279
|
output: __HttpResponse,
|
|
72
280
|
context: __SerdeContext
|
|
73
281
|
) => Promise<CreateEnvironmentCommandOutput>;
|
|
282
|
+
export declare const de_CreateKxChangesetCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<CreateKxChangesetCommandOutput>;
|
|
286
|
+
export declare const de_CreateKxClusterCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<CreateKxClusterCommandOutput>;
|
|
290
|
+
export declare const de_CreateKxDatabaseCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<CreateKxDatabaseCommandOutput>;
|
|
294
|
+
export declare const de_CreateKxEnvironmentCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<CreateKxEnvironmentCommandOutput>;
|
|
298
|
+
export declare const de_CreateKxUserCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<CreateKxUserCommandOutput>;
|
|
74
302
|
export declare const de_DeleteEnvironmentCommand: (
|
|
75
303
|
output: __HttpResponse,
|
|
76
304
|
context: __SerdeContext
|
|
77
305
|
) => Promise<DeleteEnvironmentCommandOutput>;
|
|
306
|
+
export declare const de_DeleteKxClusterCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<DeleteKxClusterCommandOutput>;
|
|
310
|
+
export declare const de_DeleteKxDatabaseCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<DeleteKxDatabaseCommandOutput>;
|
|
314
|
+
export declare const de_DeleteKxEnvironmentCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<DeleteKxEnvironmentCommandOutput>;
|
|
318
|
+
export declare const de_DeleteKxUserCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<DeleteKxUserCommandOutput>;
|
|
78
322
|
export declare const de_GetEnvironmentCommand: (
|
|
79
323
|
output: __HttpResponse,
|
|
80
324
|
context: __SerdeContext
|
|
81
325
|
) => Promise<GetEnvironmentCommandOutput>;
|
|
326
|
+
export declare const de_GetKxChangesetCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<GetKxChangesetCommandOutput>;
|
|
330
|
+
export declare const de_GetKxClusterCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<GetKxClusterCommandOutput>;
|
|
334
|
+
export declare const de_GetKxConnectionStringCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<GetKxConnectionStringCommandOutput>;
|
|
338
|
+
export declare const de_GetKxDatabaseCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<GetKxDatabaseCommandOutput>;
|
|
342
|
+
export declare const de_GetKxEnvironmentCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<GetKxEnvironmentCommandOutput>;
|
|
346
|
+
export declare const de_GetKxUserCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<GetKxUserCommandOutput>;
|
|
82
350
|
export declare const de_ListEnvironmentsCommand: (
|
|
83
351
|
output: __HttpResponse,
|
|
84
352
|
context: __SerdeContext
|
|
85
353
|
) => Promise<ListEnvironmentsCommandOutput>;
|
|
354
|
+
export declare const de_ListKxChangesetsCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<ListKxChangesetsCommandOutput>;
|
|
358
|
+
export declare const de_ListKxClusterNodesCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<ListKxClusterNodesCommandOutput>;
|
|
362
|
+
export declare const de_ListKxClustersCommand: (
|
|
363
|
+
output: __HttpResponse,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<ListKxClustersCommandOutput>;
|
|
366
|
+
export declare const de_ListKxDatabasesCommand: (
|
|
367
|
+
output: __HttpResponse,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<ListKxDatabasesCommandOutput>;
|
|
370
|
+
export declare const de_ListKxEnvironmentsCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<ListKxEnvironmentsCommandOutput>;
|
|
374
|
+
export declare const de_ListKxUsersCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<ListKxUsersCommandOutput>;
|
|
86
378
|
export declare const de_ListTagsForResourceCommand: (
|
|
87
379
|
output: __HttpResponse,
|
|
88
380
|
context: __SerdeContext
|
|
@@ -99,3 +391,23 @@ export declare const de_UpdateEnvironmentCommand: (
|
|
|
99
391
|
output: __HttpResponse,
|
|
100
392
|
context: __SerdeContext
|
|
101
393
|
) => Promise<UpdateEnvironmentCommandOutput>;
|
|
394
|
+
export declare const de_UpdateKxClusterDatabasesCommand: (
|
|
395
|
+
output: __HttpResponse,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<UpdateKxClusterDatabasesCommandOutput>;
|
|
398
|
+
export declare const de_UpdateKxDatabaseCommand: (
|
|
399
|
+
output: __HttpResponse,
|
|
400
|
+
context: __SerdeContext
|
|
401
|
+
) => Promise<UpdateKxDatabaseCommandOutput>;
|
|
402
|
+
export declare const de_UpdateKxEnvironmentCommand: (
|
|
403
|
+
output: __HttpResponse,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<UpdateKxEnvironmentCommandOutput>;
|
|
406
|
+
export declare const de_UpdateKxEnvironmentNetworkCommand: (
|
|
407
|
+
output: __HttpResponse,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<UpdateKxEnvironmentNetworkCommandOutput>;
|
|
410
|
+
export declare const de_UpdateKxUserCommand: (
|
|
411
|
+
output: __HttpResponse,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<UpdateKxUserCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-finspace",
|
|
3
3
|
"description": "AWS SDK for JavaScript Finspace Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.347.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,45 +21,47 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.347.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.347.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.347.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.347.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.347.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.347.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.347.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.347.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.347.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.347.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.347.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.347.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.347.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.347.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.347.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.347.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
|
+
"@aws-sdk/types": "3.347.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.347.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.347.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.347.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.347.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.347.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.347.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|
|
57
|
-
"tslib": "^2.5.0"
|
|
57
|
+
"tslib": "^2.5.0",
|
|
58
|
+
"uuid": "^8.3.2"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
61
|
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
61
62
|
"@tsconfig/node14": "1.0.3",
|
|
62
63
|
"@types/node": "^14.14.31",
|
|
64
|
+
"@types/uuid": "^8.3.0",
|
|
63
65
|
"concurrently": "7.0.0",
|
|
64
66
|
"downlevel-dts": "0.10.1",
|
|
65
67
|
"rimraf": "3.0.2",
|