@aws-sdk/client-finspace 3.466.0 → 3.470.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +112 -0
- package/dist-cjs/Finspace.js +28 -0
- package/dist-cjs/commands/CreateKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/CreateKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/CreateKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/DeleteKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/GetKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/GetKxScalingGroupCommand.js +51 -0
- package/dist-cjs/commands/GetKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/ListKxDataviewsCommand.js +51 -0
- package/dist-cjs/commands/ListKxScalingGroupsCommand.js +51 -0
- package/dist-cjs/commands/ListKxVolumesCommand.js +51 -0
- package/dist-cjs/commands/UpdateKxDataviewCommand.js +51 -0
- package/dist-cjs/commands/UpdateKxVolumeCommand.js +51 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/models/models_0.js +39 -1
- package/dist-cjs/pagination/ListKxDataviewsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKxScalingGroupsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1477 -207
- package/dist-es/Finspace.js +28 -0
- package/dist-es/commands/CreateKxDataviewCommand.js +47 -0
- package/dist-es/commands/CreateKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/CreateKxVolumeCommand.js +47 -0
- package/dist-es/commands/DeleteKxDataviewCommand.js +47 -0
- package/dist-es/commands/DeleteKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/DeleteKxVolumeCommand.js +47 -0
- package/dist-es/commands/GetKxDataviewCommand.js +47 -0
- package/dist-es/commands/GetKxScalingGroupCommand.js +47 -0
- package/dist-es/commands/GetKxVolumeCommand.js +47 -0
- package/dist-es/commands/ListKxDataviewsCommand.js +47 -0
- package/dist-es/commands/ListKxScalingGroupsCommand.js +47 -0
- package/dist-es/commands/ListKxVolumesCommand.js +47 -0
- package/dist-es/commands/UpdateKxDataviewCommand.js +47 -0
- package/dist-es/commands/UpdateKxVolumeCommand.js +47 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/models/models_0.js +38 -0
- package/dist-es/pagination/ListKxDataviewsPaginator.js +25 -0
- package/dist-es/pagination/ListKxScalingGroupsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1397 -155
- package/dist-types/Finspace.d.ts +98 -0
- package/dist-types/FinspaceClient.d.ts +16 -2
- package/dist-types/commands/CreateKxClusterCommand.d.ts +68 -6
- package/dist-types/commands/CreateKxDataviewCommand.d.ts +136 -0
- package/dist-types/commands/CreateKxScalingGroupCommand.d.ts +108 -0
- package/dist-types/commands/CreateKxVolumeCommand.d.ts +129 -0
- package/dist-types/commands/DeleteKxDataviewCommand.d.ts +94 -0
- package/dist-types/commands/DeleteKxEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKxScalingGroupCommand.d.ts +96 -0
- package/dist-types/commands/DeleteKxUserCommand.d.ts +4 -0
- package/dist-types/commands/DeleteKxVolumeCommand.d.ts +98 -0
- package/dist-types/commands/GetKxClusterCommand.d.ts +37 -3
- package/dist-types/commands/GetKxDataviewCommand.d.ts +130 -0
- package/dist-types/commands/GetKxEnvironmentCommand.d.ts +3 -0
- package/dist-types/commands/GetKxScalingGroupCommand.d.ts +107 -0
- package/dist-types/commands/GetKxVolumeCommand.d.ts +120 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +3 -0
- package/dist-types/commands/ListKxClustersCommand.d.ts +8 -2
- package/dist-types/commands/ListKxDataviewsCommand.d.ts +135 -0
- package/dist-types/commands/ListKxEnvironmentsCommand.d.ts +3 -0
- package/dist-types/commands/ListKxScalingGroupsCommand.d.ts +112 -0
- package/dist-types/commands/ListKxVolumesCommand.d.ts +115 -0
- package/dist-types/commands/UpdateKxClusterDatabasesCommand.d.ts +15 -0
- package/dist-types/commands/UpdateKxDataviewCommand.d.ts +145 -0
- package/dist-types/commands/UpdateKxVolumeCommand.d.ts +128 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +2214 -214
- package/dist-types/pagination/ListKxDataviewsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKxScalingGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
- package/dist-types/ts3.4/Finspace.d.ts +238 -0
- package/dist-types/ts3.4/FinspaceClient.d.ts +86 -2
- package/dist-types/ts3.4/commands/CreateKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKxScalingGroupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKxScalingGroupCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetKxScalingGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetKxVolumeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListKxDataviewsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKxScalingGroupsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListKxVolumesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxDataviewCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKxVolumeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/models/models_0.d.ts +360 -4
- package/dist-types/ts3.4/pagination/ListKxDataviewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKxScalingGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +168 -0
- package/package.json +34 -34
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListKxDataviewsCommandInput, ListKxDataviewsCommandOutput } from "../commands/ListKxDataviewsCommand";
|
|
3
|
+
import { FinspacePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListKxDataviews(config: FinspacePaginationConfiguration, input: ListKxDataviewsCommandInput, ...additionalArguments: any): Paginator<ListKxDataviewsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListKxScalingGroupsCommandInput, ListKxScalingGroupsCommandOutput } from "../commands/ListKxScalingGroupsCommand";
|
|
3
|
+
import { FinspacePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListKxScalingGroups(config: FinspacePaginationConfiguration, input: ListKxScalingGroupsCommandInput, ...additionalArguments: any): Paginator<ListKxScalingGroupsCommandOutput>;
|
|
@@ -2,4 +2,6 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListKxChangesetsPaginator";
|
|
3
3
|
export * from "./ListKxClusterNodesPaginator";
|
|
4
4
|
export * from "./ListKxDatabasesPaginator";
|
|
5
|
+
export * from "./ListKxDataviewsPaginator";
|
|
5
6
|
export * from "./ListKxEnvironmentsPaginator";
|
|
7
|
+
export * from "./ListKxScalingGroupsPaginator";
|
|
@@ -4,27 +4,39 @@ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from ".
|
|
|
4
4
|
import { CreateKxChangesetCommandInput, CreateKxChangesetCommandOutput } from "../commands/CreateKxChangesetCommand";
|
|
5
5
|
import { CreateKxClusterCommandInput, CreateKxClusterCommandOutput } from "../commands/CreateKxClusterCommand";
|
|
6
6
|
import { CreateKxDatabaseCommandInput, CreateKxDatabaseCommandOutput } from "../commands/CreateKxDatabaseCommand";
|
|
7
|
+
import { CreateKxDataviewCommandInput, CreateKxDataviewCommandOutput } from "../commands/CreateKxDataviewCommand";
|
|
7
8
|
import { CreateKxEnvironmentCommandInput, CreateKxEnvironmentCommandOutput } from "../commands/CreateKxEnvironmentCommand";
|
|
9
|
+
import { CreateKxScalingGroupCommandInput, CreateKxScalingGroupCommandOutput } from "../commands/CreateKxScalingGroupCommand";
|
|
8
10
|
import { CreateKxUserCommandInput, CreateKxUserCommandOutput } from "../commands/CreateKxUserCommand";
|
|
11
|
+
import { CreateKxVolumeCommandInput, CreateKxVolumeCommandOutput } from "../commands/CreateKxVolumeCommand";
|
|
9
12
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
10
13
|
import { DeleteKxClusterCommandInput, DeleteKxClusterCommandOutput } from "../commands/DeleteKxClusterCommand";
|
|
11
14
|
import { DeleteKxDatabaseCommandInput, DeleteKxDatabaseCommandOutput } from "../commands/DeleteKxDatabaseCommand";
|
|
15
|
+
import { DeleteKxDataviewCommandInput, DeleteKxDataviewCommandOutput } from "../commands/DeleteKxDataviewCommand";
|
|
12
16
|
import { DeleteKxEnvironmentCommandInput, DeleteKxEnvironmentCommandOutput } from "../commands/DeleteKxEnvironmentCommand";
|
|
17
|
+
import { DeleteKxScalingGroupCommandInput, DeleteKxScalingGroupCommandOutput } from "../commands/DeleteKxScalingGroupCommand";
|
|
13
18
|
import { DeleteKxUserCommandInput, DeleteKxUserCommandOutput } from "../commands/DeleteKxUserCommand";
|
|
19
|
+
import { DeleteKxVolumeCommandInput, DeleteKxVolumeCommandOutput } from "../commands/DeleteKxVolumeCommand";
|
|
14
20
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
15
21
|
import { GetKxChangesetCommandInput, GetKxChangesetCommandOutput } from "../commands/GetKxChangesetCommand";
|
|
16
22
|
import { GetKxClusterCommandInput, GetKxClusterCommandOutput } from "../commands/GetKxClusterCommand";
|
|
17
23
|
import { GetKxConnectionStringCommandInput, GetKxConnectionStringCommandOutput } from "../commands/GetKxConnectionStringCommand";
|
|
18
24
|
import { GetKxDatabaseCommandInput, GetKxDatabaseCommandOutput } from "../commands/GetKxDatabaseCommand";
|
|
25
|
+
import { GetKxDataviewCommandInput, GetKxDataviewCommandOutput } from "../commands/GetKxDataviewCommand";
|
|
19
26
|
import { GetKxEnvironmentCommandInput, GetKxEnvironmentCommandOutput } from "../commands/GetKxEnvironmentCommand";
|
|
27
|
+
import { GetKxScalingGroupCommandInput, GetKxScalingGroupCommandOutput } from "../commands/GetKxScalingGroupCommand";
|
|
20
28
|
import { GetKxUserCommandInput, GetKxUserCommandOutput } from "../commands/GetKxUserCommand";
|
|
29
|
+
import { GetKxVolumeCommandInput, GetKxVolumeCommandOutput } from "../commands/GetKxVolumeCommand";
|
|
21
30
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
22
31
|
import { ListKxChangesetsCommandInput, ListKxChangesetsCommandOutput } from "../commands/ListKxChangesetsCommand";
|
|
23
32
|
import { ListKxClusterNodesCommandInput, ListKxClusterNodesCommandOutput } from "../commands/ListKxClusterNodesCommand";
|
|
24
33
|
import { ListKxClustersCommandInput, ListKxClustersCommandOutput } from "../commands/ListKxClustersCommand";
|
|
25
34
|
import { ListKxDatabasesCommandInput, ListKxDatabasesCommandOutput } from "../commands/ListKxDatabasesCommand";
|
|
35
|
+
import { ListKxDataviewsCommandInput, ListKxDataviewsCommandOutput } from "../commands/ListKxDataviewsCommand";
|
|
26
36
|
import { ListKxEnvironmentsCommandInput, ListKxEnvironmentsCommandOutput } from "../commands/ListKxEnvironmentsCommand";
|
|
37
|
+
import { ListKxScalingGroupsCommandInput, ListKxScalingGroupsCommandOutput } from "../commands/ListKxScalingGroupsCommand";
|
|
27
38
|
import { ListKxUsersCommandInput, ListKxUsersCommandOutput } from "../commands/ListKxUsersCommand";
|
|
39
|
+
import { ListKxVolumesCommandInput, ListKxVolumesCommandOutput } from "../commands/ListKxVolumesCommand";
|
|
28
40
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
29
41
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
30
42
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -32,9 +44,11 @@ import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from ".
|
|
|
32
44
|
import { UpdateKxClusterCodeConfigurationCommandInput, UpdateKxClusterCodeConfigurationCommandOutput } from "../commands/UpdateKxClusterCodeConfigurationCommand";
|
|
33
45
|
import { UpdateKxClusterDatabasesCommandInput, UpdateKxClusterDatabasesCommandOutput } from "../commands/UpdateKxClusterDatabasesCommand";
|
|
34
46
|
import { UpdateKxDatabaseCommandInput, UpdateKxDatabaseCommandOutput } from "../commands/UpdateKxDatabaseCommand";
|
|
47
|
+
import { UpdateKxDataviewCommandInput, UpdateKxDataviewCommandOutput } from "../commands/UpdateKxDataviewCommand";
|
|
35
48
|
import { UpdateKxEnvironmentCommandInput, UpdateKxEnvironmentCommandOutput } from "../commands/UpdateKxEnvironmentCommand";
|
|
36
49
|
import { UpdateKxEnvironmentNetworkCommandInput, UpdateKxEnvironmentNetworkCommandOutput } from "../commands/UpdateKxEnvironmentNetworkCommand";
|
|
37
50
|
import { UpdateKxUserCommandInput, UpdateKxUserCommandOutput } from "../commands/UpdateKxUserCommand";
|
|
51
|
+
import { UpdateKxVolumeCommandInput, UpdateKxVolumeCommandOutput } from "../commands/UpdateKxVolumeCommand";
|
|
38
52
|
/**
|
|
39
53
|
* serializeAws_restJson1CreateEnvironmentCommand
|
|
40
54
|
*/
|
|
@@ -51,14 +65,26 @@ export declare const se_CreateKxClusterCommand: (input: CreateKxClusterCommandIn
|
|
|
51
65
|
* serializeAws_restJson1CreateKxDatabaseCommand
|
|
52
66
|
*/
|
|
53
67
|
export declare const se_CreateKxDatabaseCommand: (input: CreateKxDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
/**
|
|
69
|
+
* serializeAws_restJson1CreateKxDataviewCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const se_CreateKxDataviewCommand: (input: CreateKxDataviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
72
|
/**
|
|
55
73
|
* serializeAws_restJson1CreateKxEnvironmentCommand
|
|
56
74
|
*/
|
|
57
75
|
export declare const se_CreateKxEnvironmentCommand: (input: CreateKxEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
/**
|
|
77
|
+
* serializeAws_restJson1CreateKxScalingGroupCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const se_CreateKxScalingGroupCommand: (input: CreateKxScalingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
80
|
/**
|
|
59
81
|
* serializeAws_restJson1CreateKxUserCommand
|
|
60
82
|
*/
|
|
61
83
|
export declare const se_CreateKxUserCommand: (input: CreateKxUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
/**
|
|
85
|
+
* serializeAws_restJson1CreateKxVolumeCommand
|
|
86
|
+
*/
|
|
87
|
+
export declare const se_CreateKxVolumeCommand: (input: CreateKxVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
88
|
/**
|
|
63
89
|
* serializeAws_restJson1DeleteEnvironmentCommand
|
|
64
90
|
*/
|
|
@@ -71,14 +97,26 @@ export declare const se_DeleteKxClusterCommand: (input: DeleteKxClusterCommandIn
|
|
|
71
97
|
* serializeAws_restJson1DeleteKxDatabaseCommand
|
|
72
98
|
*/
|
|
73
99
|
export declare const se_DeleteKxDatabaseCommand: (input: DeleteKxDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_restJson1DeleteKxDataviewCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_DeleteKxDataviewCommand: (input: DeleteKxDataviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
104
|
/**
|
|
75
105
|
* serializeAws_restJson1DeleteKxEnvironmentCommand
|
|
76
106
|
*/
|
|
77
107
|
export declare const se_DeleteKxEnvironmentCommand: (input: DeleteKxEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1DeleteKxScalingGroupCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_DeleteKxScalingGroupCommand: (input: DeleteKxScalingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
112
|
/**
|
|
79
113
|
* serializeAws_restJson1DeleteKxUserCommand
|
|
80
114
|
*/
|
|
81
115
|
export declare const se_DeleteKxUserCommand: (input: DeleteKxUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1DeleteKxVolumeCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_DeleteKxVolumeCommand: (input: DeleteKxVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
120
|
/**
|
|
83
121
|
* serializeAws_restJson1GetEnvironmentCommand
|
|
84
122
|
*/
|
|
@@ -99,14 +137,26 @@ export declare const se_GetKxConnectionStringCommand: (input: GetKxConnectionStr
|
|
|
99
137
|
* serializeAws_restJson1GetKxDatabaseCommand
|
|
100
138
|
*/
|
|
101
139
|
export declare const se_GetKxDatabaseCommand: (input: GetKxDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
/**
|
|
141
|
+
* serializeAws_restJson1GetKxDataviewCommand
|
|
142
|
+
*/
|
|
143
|
+
export declare const se_GetKxDataviewCommand: (input: GetKxDataviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
144
|
/**
|
|
103
145
|
* serializeAws_restJson1GetKxEnvironmentCommand
|
|
104
146
|
*/
|
|
105
147
|
export declare const se_GetKxEnvironmentCommand: (input: GetKxEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
|
+
/**
|
|
149
|
+
* serializeAws_restJson1GetKxScalingGroupCommand
|
|
150
|
+
*/
|
|
151
|
+
export declare const se_GetKxScalingGroupCommand: (input: GetKxScalingGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
152
|
/**
|
|
107
153
|
* serializeAws_restJson1GetKxUserCommand
|
|
108
154
|
*/
|
|
109
155
|
export declare const se_GetKxUserCommand: (input: GetKxUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
156
|
+
/**
|
|
157
|
+
* serializeAws_restJson1GetKxVolumeCommand
|
|
158
|
+
*/
|
|
159
|
+
export declare const se_GetKxVolumeCommand: (input: GetKxVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
160
|
/**
|
|
111
161
|
* serializeAws_restJson1ListEnvironmentsCommand
|
|
112
162
|
*/
|
|
@@ -127,14 +177,26 @@ export declare const se_ListKxClustersCommand: (input: ListKxClustersCommandInpu
|
|
|
127
177
|
* serializeAws_restJson1ListKxDatabasesCommand
|
|
128
178
|
*/
|
|
129
179
|
export declare const se_ListKxDatabasesCommand: (input: ListKxDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
|
+
/**
|
|
181
|
+
* serializeAws_restJson1ListKxDataviewsCommand
|
|
182
|
+
*/
|
|
183
|
+
export declare const se_ListKxDataviewsCommand: (input: ListKxDataviewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
184
|
/**
|
|
131
185
|
* serializeAws_restJson1ListKxEnvironmentsCommand
|
|
132
186
|
*/
|
|
133
187
|
export declare const se_ListKxEnvironmentsCommand: (input: ListKxEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
188
|
+
/**
|
|
189
|
+
* serializeAws_restJson1ListKxScalingGroupsCommand
|
|
190
|
+
*/
|
|
191
|
+
export declare const se_ListKxScalingGroupsCommand: (input: ListKxScalingGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
192
|
/**
|
|
135
193
|
* serializeAws_restJson1ListKxUsersCommand
|
|
136
194
|
*/
|
|
137
195
|
export declare const se_ListKxUsersCommand: (input: ListKxUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
196
|
+
/**
|
|
197
|
+
* serializeAws_restJson1ListKxVolumesCommand
|
|
198
|
+
*/
|
|
199
|
+
export declare const se_ListKxVolumesCommand: (input: ListKxVolumesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
200
|
/**
|
|
139
201
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
140
202
|
*/
|
|
@@ -163,6 +225,10 @@ export declare const se_UpdateKxClusterDatabasesCommand: (input: UpdateKxCluster
|
|
|
163
225
|
* serializeAws_restJson1UpdateKxDatabaseCommand
|
|
164
226
|
*/
|
|
165
227
|
export declare const se_UpdateKxDatabaseCommand: (input: UpdateKxDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
228
|
+
/**
|
|
229
|
+
* serializeAws_restJson1UpdateKxDataviewCommand
|
|
230
|
+
*/
|
|
231
|
+
export declare const se_UpdateKxDataviewCommand: (input: UpdateKxDataviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
232
|
/**
|
|
167
233
|
* serializeAws_restJson1UpdateKxEnvironmentCommand
|
|
168
234
|
*/
|
|
@@ -175,6 +241,10 @@ export declare const se_UpdateKxEnvironmentNetworkCommand: (input: UpdateKxEnvir
|
|
|
175
241
|
* serializeAws_restJson1UpdateKxUserCommand
|
|
176
242
|
*/
|
|
177
243
|
export declare const se_UpdateKxUserCommand: (input: UpdateKxUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
244
|
+
/**
|
|
245
|
+
* serializeAws_restJson1UpdateKxVolumeCommand
|
|
246
|
+
*/
|
|
247
|
+
export declare const se_UpdateKxVolumeCommand: (input: UpdateKxVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
248
|
/**
|
|
179
249
|
* deserializeAws_restJson1CreateEnvironmentCommand
|
|
180
250
|
*/
|
|
@@ -191,14 +261,26 @@ export declare const de_CreateKxClusterCommand: (output: __HttpResponse, context
|
|
|
191
261
|
* deserializeAws_restJson1CreateKxDatabaseCommand
|
|
192
262
|
*/
|
|
193
263
|
export declare const de_CreateKxDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKxDatabaseCommandOutput>;
|
|
264
|
+
/**
|
|
265
|
+
* deserializeAws_restJson1CreateKxDataviewCommand
|
|
266
|
+
*/
|
|
267
|
+
export declare const de_CreateKxDataviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKxDataviewCommandOutput>;
|
|
194
268
|
/**
|
|
195
269
|
* deserializeAws_restJson1CreateKxEnvironmentCommand
|
|
196
270
|
*/
|
|
197
271
|
export declare const de_CreateKxEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKxEnvironmentCommandOutput>;
|
|
272
|
+
/**
|
|
273
|
+
* deserializeAws_restJson1CreateKxScalingGroupCommand
|
|
274
|
+
*/
|
|
275
|
+
export declare const de_CreateKxScalingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKxScalingGroupCommandOutput>;
|
|
198
276
|
/**
|
|
199
277
|
* deserializeAws_restJson1CreateKxUserCommand
|
|
200
278
|
*/
|
|
201
279
|
export declare const de_CreateKxUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKxUserCommandOutput>;
|
|
280
|
+
/**
|
|
281
|
+
* deserializeAws_restJson1CreateKxVolumeCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const de_CreateKxVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKxVolumeCommandOutput>;
|
|
202
284
|
/**
|
|
203
285
|
* deserializeAws_restJson1DeleteEnvironmentCommand
|
|
204
286
|
*/
|
|
@@ -211,14 +293,26 @@ export declare const de_DeleteKxClusterCommand: (output: __HttpResponse, context
|
|
|
211
293
|
* deserializeAws_restJson1DeleteKxDatabaseCommand
|
|
212
294
|
*/
|
|
213
295
|
export declare const de_DeleteKxDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKxDatabaseCommandOutput>;
|
|
296
|
+
/**
|
|
297
|
+
* deserializeAws_restJson1DeleteKxDataviewCommand
|
|
298
|
+
*/
|
|
299
|
+
export declare const de_DeleteKxDataviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKxDataviewCommandOutput>;
|
|
214
300
|
/**
|
|
215
301
|
* deserializeAws_restJson1DeleteKxEnvironmentCommand
|
|
216
302
|
*/
|
|
217
303
|
export declare const de_DeleteKxEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKxEnvironmentCommandOutput>;
|
|
304
|
+
/**
|
|
305
|
+
* deserializeAws_restJson1DeleteKxScalingGroupCommand
|
|
306
|
+
*/
|
|
307
|
+
export declare const de_DeleteKxScalingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKxScalingGroupCommandOutput>;
|
|
218
308
|
/**
|
|
219
309
|
* deserializeAws_restJson1DeleteKxUserCommand
|
|
220
310
|
*/
|
|
221
311
|
export declare const de_DeleteKxUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKxUserCommandOutput>;
|
|
312
|
+
/**
|
|
313
|
+
* deserializeAws_restJson1DeleteKxVolumeCommand
|
|
314
|
+
*/
|
|
315
|
+
export declare const de_DeleteKxVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKxVolumeCommandOutput>;
|
|
222
316
|
/**
|
|
223
317
|
* deserializeAws_restJson1GetEnvironmentCommand
|
|
224
318
|
*/
|
|
@@ -239,14 +333,26 @@ export declare const de_GetKxConnectionStringCommand: (output: __HttpResponse, c
|
|
|
239
333
|
* deserializeAws_restJson1GetKxDatabaseCommand
|
|
240
334
|
*/
|
|
241
335
|
export declare const de_GetKxDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKxDatabaseCommandOutput>;
|
|
336
|
+
/**
|
|
337
|
+
* deserializeAws_restJson1GetKxDataviewCommand
|
|
338
|
+
*/
|
|
339
|
+
export declare const de_GetKxDataviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKxDataviewCommandOutput>;
|
|
242
340
|
/**
|
|
243
341
|
* deserializeAws_restJson1GetKxEnvironmentCommand
|
|
244
342
|
*/
|
|
245
343
|
export declare const de_GetKxEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKxEnvironmentCommandOutput>;
|
|
344
|
+
/**
|
|
345
|
+
* deserializeAws_restJson1GetKxScalingGroupCommand
|
|
346
|
+
*/
|
|
347
|
+
export declare const de_GetKxScalingGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKxScalingGroupCommandOutput>;
|
|
246
348
|
/**
|
|
247
349
|
* deserializeAws_restJson1GetKxUserCommand
|
|
248
350
|
*/
|
|
249
351
|
export declare const de_GetKxUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKxUserCommandOutput>;
|
|
352
|
+
/**
|
|
353
|
+
* deserializeAws_restJson1GetKxVolumeCommand
|
|
354
|
+
*/
|
|
355
|
+
export declare const de_GetKxVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKxVolumeCommandOutput>;
|
|
250
356
|
/**
|
|
251
357
|
* deserializeAws_restJson1ListEnvironmentsCommand
|
|
252
358
|
*/
|
|
@@ -267,14 +373,26 @@ export declare const de_ListKxClustersCommand: (output: __HttpResponse, context:
|
|
|
267
373
|
* deserializeAws_restJson1ListKxDatabasesCommand
|
|
268
374
|
*/
|
|
269
375
|
export declare const de_ListKxDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKxDatabasesCommandOutput>;
|
|
376
|
+
/**
|
|
377
|
+
* deserializeAws_restJson1ListKxDataviewsCommand
|
|
378
|
+
*/
|
|
379
|
+
export declare const de_ListKxDataviewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKxDataviewsCommandOutput>;
|
|
270
380
|
/**
|
|
271
381
|
* deserializeAws_restJson1ListKxEnvironmentsCommand
|
|
272
382
|
*/
|
|
273
383
|
export declare const de_ListKxEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKxEnvironmentsCommandOutput>;
|
|
384
|
+
/**
|
|
385
|
+
* deserializeAws_restJson1ListKxScalingGroupsCommand
|
|
386
|
+
*/
|
|
387
|
+
export declare const de_ListKxScalingGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKxScalingGroupsCommandOutput>;
|
|
274
388
|
/**
|
|
275
389
|
* deserializeAws_restJson1ListKxUsersCommand
|
|
276
390
|
*/
|
|
277
391
|
export declare const de_ListKxUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKxUsersCommandOutput>;
|
|
392
|
+
/**
|
|
393
|
+
* deserializeAws_restJson1ListKxVolumesCommand
|
|
394
|
+
*/
|
|
395
|
+
export declare const de_ListKxVolumesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKxVolumesCommandOutput>;
|
|
278
396
|
/**
|
|
279
397
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
280
398
|
*/
|
|
@@ -303,6 +421,10 @@ export declare const de_UpdateKxClusterDatabasesCommand: (output: __HttpResponse
|
|
|
303
421
|
* deserializeAws_restJson1UpdateKxDatabaseCommand
|
|
304
422
|
*/
|
|
305
423
|
export declare const de_UpdateKxDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKxDatabaseCommandOutput>;
|
|
424
|
+
/**
|
|
425
|
+
* deserializeAws_restJson1UpdateKxDataviewCommand
|
|
426
|
+
*/
|
|
427
|
+
export declare const de_UpdateKxDataviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKxDataviewCommandOutput>;
|
|
306
428
|
/**
|
|
307
429
|
* deserializeAws_restJson1UpdateKxEnvironmentCommand
|
|
308
430
|
*/
|
|
@@ -315,3 +437,7 @@ export declare const de_UpdateKxEnvironmentNetworkCommand: (output: __HttpRespon
|
|
|
315
437
|
* deserializeAws_restJson1UpdateKxUserCommand
|
|
316
438
|
*/
|
|
317
439
|
export declare const de_UpdateKxUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKxUserCommandOutput>;
|
|
440
|
+
/**
|
|
441
|
+
* deserializeAws_restJson1UpdateKxVolumeCommand
|
|
442
|
+
*/
|
|
443
|
+
export declare const de_UpdateKxVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKxVolumeCommandOutput>;
|