@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
package/README.md
CHANGED
|
@@ -234,6 +234,14 @@ CreateKxDatabase
|
|
|
234
234
|
|
|
235
235
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/CreateKxDatabaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxDatabaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxDatabaseCommandOutput/)
|
|
236
236
|
|
|
237
|
+
</details>
|
|
238
|
+
<details>
|
|
239
|
+
<summary>
|
|
240
|
+
CreateKxDataview
|
|
241
|
+
</summary>
|
|
242
|
+
|
|
243
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/CreateKxDataviewCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxDataviewCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxDataviewCommandOutput/)
|
|
244
|
+
|
|
237
245
|
</details>
|
|
238
246
|
<details>
|
|
239
247
|
<summary>
|
|
@@ -242,6 +250,14 @@ CreateKxEnvironment
|
|
|
242
250
|
|
|
243
251
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/CreateKxEnvironmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxEnvironmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxEnvironmentCommandOutput/)
|
|
244
252
|
|
|
253
|
+
</details>
|
|
254
|
+
<details>
|
|
255
|
+
<summary>
|
|
256
|
+
CreateKxScalingGroup
|
|
257
|
+
</summary>
|
|
258
|
+
|
|
259
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/CreateKxScalingGroupCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxScalingGroupCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxScalingGroupCommandOutput/)
|
|
260
|
+
|
|
245
261
|
</details>
|
|
246
262
|
<details>
|
|
247
263
|
<summary>
|
|
@@ -250,6 +266,14 @@ CreateKxUser
|
|
|
250
266
|
|
|
251
267
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/CreateKxUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxUserCommandOutput/)
|
|
252
268
|
|
|
269
|
+
</details>
|
|
270
|
+
<details>
|
|
271
|
+
<summary>
|
|
272
|
+
CreateKxVolume
|
|
273
|
+
</summary>
|
|
274
|
+
|
|
275
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/CreateKxVolumeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxVolumeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/CreateKxVolumeCommandOutput/)
|
|
276
|
+
|
|
253
277
|
</details>
|
|
254
278
|
<details>
|
|
255
279
|
<summary>
|
|
@@ -274,6 +298,14 @@ DeleteKxDatabase
|
|
|
274
298
|
|
|
275
299
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/DeleteKxDatabaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxDatabaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxDatabaseCommandOutput/)
|
|
276
300
|
|
|
301
|
+
</details>
|
|
302
|
+
<details>
|
|
303
|
+
<summary>
|
|
304
|
+
DeleteKxDataview
|
|
305
|
+
</summary>
|
|
306
|
+
|
|
307
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/DeleteKxDataviewCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxDataviewCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxDataviewCommandOutput/)
|
|
308
|
+
|
|
277
309
|
</details>
|
|
278
310
|
<details>
|
|
279
311
|
<summary>
|
|
@@ -282,6 +314,14 @@ DeleteKxEnvironment
|
|
|
282
314
|
|
|
283
315
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/DeleteKxEnvironmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxEnvironmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxEnvironmentCommandOutput/)
|
|
284
316
|
|
|
317
|
+
</details>
|
|
318
|
+
<details>
|
|
319
|
+
<summary>
|
|
320
|
+
DeleteKxScalingGroup
|
|
321
|
+
</summary>
|
|
322
|
+
|
|
323
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/DeleteKxScalingGroupCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxScalingGroupCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxScalingGroupCommandOutput/)
|
|
324
|
+
|
|
285
325
|
</details>
|
|
286
326
|
<details>
|
|
287
327
|
<summary>
|
|
@@ -290,6 +330,14 @@ DeleteKxUser
|
|
|
290
330
|
|
|
291
331
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/DeleteKxUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxUserCommandOutput/)
|
|
292
332
|
|
|
333
|
+
</details>
|
|
334
|
+
<details>
|
|
335
|
+
<summary>
|
|
336
|
+
DeleteKxVolume
|
|
337
|
+
</summary>
|
|
338
|
+
|
|
339
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/DeleteKxVolumeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxVolumeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/DeleteKxVolumeCommandOutput/)
|
|
340
|
+
|
|
293
341
|
</details>
|
|
294
342
|
<details>
|
|
295
343
|
<summary>
|
|
@@ -330,6 +378,14 @@ GetKxDatabase
|
|
|
330
378
|
|
|
331
379
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/GetKxDatabaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxDatabaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxDatabaseCommandOutput/)
|
|
332
380
|
|
|
381
|
+
</details>
|
|
382
|
+
<details>
|
|
383
|
+
<summary>
|
|
384
|
+
GetKxDataview
|
|
385
|
+
</summary>
|
|
386
|
+
|
|
387
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/GetKxDataviewCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxDataviewCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxDataviewCommandOutput/)
|
|
388
|
+
|
|
333
389
|
</details>
|
|
334
390
|
<details>
|
|
335
391
|
<summary>
|
|
@@ -338,6 +394,14 @@ GetKxEnvironment
|
|
|
338
394
|
|
|
339
395
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/GetKxEnvironmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxEnvironmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxEnvironmentCommandOutput/)
|
|
340
396
|
|
|
397
|
+
</details>
|
|
398
|
+
<details>
|
|
399
|
+
<summary>
|
|
400
|
+
GetKxScalingGroup
|
|
401
|
+
</summary>
|
|
402
|
+
|
|
403
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/GetKxScalingGroupCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxScalingGroupCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxScalingGroupCommandOutput/)
|
|
404
|
+
|
|
341
405
|
</details>
|
|
342
406
|
<details>
|
|
343
407
|
<summary>
|
|
@@ -346,6 +410,14 @@ GetKxUser
|
|
|
346
410
|
|
|
347
411
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/GetKxUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxUserCommandOutput/)
|
|
348
412
|
|
|
413
|
+
</details>
|
|
414
|
+
<details>
|
|
415
|
+
<summary>
|
|
416
|
+
GetKxVolume
|
|
417
|
+
</summary>
|
|
418
|
+
|
|
419
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/GetKxVolumeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxVolumeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/GetKxVolumeCommandOutput/)
|
|
420
|
+
|
|
349
421
|
</details>
|
|
350
422
|
<details>
|
|
351
423
|
<summary>
|
|
@@ -386,6 +458,14 @@ ListKxDatabases
|
|
|
386
458
|
|
|
387
459
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/ListKxDatabasesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxDatabasesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxDatabasesCommandOutput/)
|
|
388
460
|
|
|
461
|
+
</details>
|
|
462
|
+
<details>
|
|
463
|
+
<summary>
|
|
464
|
+
ListKxDataviews
|
|
465
|
+
</summary>
|
|
466
|
+
|
|
467
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/ListKxDataviewsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxDataviewsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxDataviewsCommandOutput/)
|
|
468
|
+
|
|
389
469
|
</details>
|
|
390
470
|
<details>
|
|
391
471
|
<summary>
|
|
@@ -394,6 +474,14 @@ ListKxEnvironments
|
|
|
394
474
|
|
|
395
475
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/ListKxEnvironmentsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxEnvironmentsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxEnvironmentsCommandOutput/)
|
|
396
476
|
|
|
477
|
+
</details>
|
|
478
|
+
<details>
|
|
479
|
+
<summary>
|
|
480
|
+
ListKxScalingGroups
|
|
481
|
+
</summary>
|
|
482
|
+
|
|
483
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/ListKxScalingGroupsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxScalingGroupsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxScalingGroupsCommandOutput/)
|
|
484
|
+
|
|
397
485
|
</details>
|
|
398
486
|
<details>
|
|
399
487
|
<summary>
|
|
@@ -402,6 +490,14 @@ ListKxUsers
|
|
|
402
490
|
|
|
403
491
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/ListKxUsersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxUsersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxUsersCommandOutput/)
|
|
404
492
|
|
|
493
|
+
</details>
|
|
494
|
+
<details>
|
|
495
|
+
<summary>
|
|
496
|
+
ListKxVolumes
|
|
497
|
+
</summary>
|
|
498
|
+
|
|
499
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/ListKxVolumesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxVolumesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/ListKxVolumesCommandOutput/)
|
|
500
|
+
|
|
405
501
|
</details>
|
|
406
502
|
<details>
|
|
407
503
|
<summary>
|
|
@@ -458,6 +554,14 @@ UpdateKxDatabase
|
|
|
458
554
|
|
|
459
555
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/UpdateKxDatabaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxDatabaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxDatabaseCommandOutput/)
|
|
460
556
|
|
|
557
|
+
</details>
|
|
558
|
+
<details>
|
|
559
|
+
<summary>
|
|
560
|
+
UpdateKxDataview
|
|
561
|
+
</summary>
|
|
562
|
+
|
|
563
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/UpdateKxDataviewCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxDataviewCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxDataviewCommandOutput/)
|
|
564
|
+
|
|
461
565
|
</details>
|
|
462
566
|
<details>
|
|
463
567
|
<summary>
|
|
@@ -483,3 +587,11 @@ UpdateKxUser
|
|
|
483
587
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/UpdateKxUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxUserCommandOutput/)
|
|
484
588
|
|
|
485
589
|
</details>
|
|
590
|
+
<details>
|
|
591
|
+
<summary>
|
|
592
|
+
UpdateKxVolume
|
|
593
|
+
</summary>
|
|
594
|
+
|
|
595
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/finspace/command/UpdateKxVolumeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxVolumeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-finspace/Interface/UpdateKxVolumeCommandOutput/)
|
|
596
|
+
|
|
597
|
+
</details>
|
package/dist-cjs/Finspace.js
CHANGED
|
@@ -6,27 +6,39 @@ const CreateEnvironmentCommand_1 = require("./commands/CreateEnvironmentCommand"
|
|
|
6
6
|
const CreateKxChangesetCommand_1 = require("./commands/CreateKxChangesetCommand");
|
|
7
7
|
const CreateKxClusterCommand_1 = require("./commands/CreateKxClusterCommand");
|
|
8
8
|
const CreateKxDatabaseCommand_1 = require("./commands/CreateKxDatabaseCommand");
|
|
9
|
+
const CreateKxDataviewCommand_1 = require("./commands/CreateKxDataviewCommand");
|
|
9
10
|
const CreateKxEnvironmentCommand_1 = require("./commands/CreateKxEnvironmentCommand");
|
|
11
|
+
const CreateKxScalingGroupCommand_1 = require("./commands/CreateKxScalingGroupCommand");
|
|
10
12
|
const CreateKxUserCommand_1 = require("./commands/CreateKxUserCommand");
|
|
13
|
+
const CreateKxVolumeCommand_1 = require("./commands/CreateKxVolumeCommand");
|
|
11
14
|
const DeleteEnvironmentCommand_1 = require("./commands/DeleteEnvironmentCommand");
|
|
12
15
|
const DeleteKxClusterCommand_1 = require("./commands/DeleteKxClusterCommand");
|
|
13
16
|
const DeleteKxDatabaseCommand_1 = require("./commands/DeleteKxDatabaseCommand");
|
|
17
|
+
const DeleteKxDataviewCommand_1 = require("./commands/DeleteKxDataviewCommand");
|
|
14
18
|
const DeleteKxEnvironmentCommand_1 = require("./commands/DeleteKxEnvironmentCommand");
|
|
19
|
+
const DeleteKxScalingGroupCommand_1 = require("./commands/DeleteKxScalingGroupCommand");
|
|
15
20
|
const DeleteKxUserCommand_1 = require("./commands/DeleteKxUserCommand");
|
|
21
|
+
const DeleteKxVolumeCommand_1 = require("./commands/DeleteKxVolumeCommand");
|
|
16
22
|
const GetEnvironmentCommand_1 = require("./commands/GetEnvironmentCommand");
|
|
17
23
|
const GetKxChangesetCommand_1 = require("./commands/GetKxChangesetCommand");
|
|
18
24
|
const GetKxClusterCommand_1 = require("./commands/GetKxClusterCommand");
|
|
19
25
|
const GetKxConnectionStringCommand_1 = require("./commands/GetKxConnectionStringCommand");
|
|
20
26
|
const GetKxDatabaseCommand_1 = require("./commands/GetKxDatabaseCommand");
|
|
27
|
+
const GetKxDataviewCommand_1 = require("./commands/GetKxDataviewCommand");
|
|
21
28
|
const GetKxEnvironmentCommand_1 = require("./commands/GetKxEnvironmentCommand");
|
|
29
|
+
const GetKxScalingGroupCommand_1 = require("./commands/GetKxScalingGroupCommand");
|
|
22
30
|
const GetKxUserCommand_1 = require("./commands/GetKxUserCommand");
|
|
31
|
+
const GetKxVolumeCommand_1 = require("./commands/GetKxVolumeCommand");
|
|
23
32
|
const ListEnvironmentsCommand_1 = require("./commands/ListEnvironmentsCommand");
|
|
24
33
|
const ListKxChangesetsCommand_1 = require("./commands/ListKxChangesetsCommand");
|
|
25
34
|
const ListKxClusterNodesCommand_1 = require("./commands/ListKxClusterNodesCommand");
|
|
26
35
|
const ListKxClustersCommand_1 = require("./commands/ListKxClustersCommand");
|
|
27
36
|
const ListKxDatabasesCommand_1 = require("./commands/ListKxDatabasesCommand");
|
|
37
|
+
const ListKxDataviewsCommand_1 = require("./commands/ListKxDataviewsCommand");
|
|
28
38
|
const ListKxEnvironmentsCommand_1 = require("./commands/ListKxEnvironmentsCommand");
|
|
39
|
+
const ListKxScalingGroupsCommand_1 = require("./commands/ListKxScalingGroupsCommand");
|
|
29
40
|
const ListKxUsersCommand_1 = require("./commands/ListKxUsersCommand");
|
|
41
|
+
const ListKxVolumesCommand_1 = require("./commands/ListKxVolumesCommand");
|
|
30
42
|
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
31
43
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
32
44
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
@@ -34,36 +46,50 @@ const UpdateEnvironmentCommand_1 = require("./commands/UpdateEnvironmentCommand"
|
|
|
34
46
|
const UpdateKxClusterCodeConfigurationCommand_1 = require("./commands/UpdateKxClusterCodeConfigurationCommand");
|
|
35
47
|
const UpdateKxClusterDatabasesCommand_1 = require("./commands/UpdateKxClusterDatabasesCommand");
|
|
36
48
|
const UpdateKxDatabaseCommand_1 = require("./commands/UpdateKxDatabaseCommand");
|
|
49
|
+
const UpdateKxDataviewCommand_1 = require("./commands/UpdateKxDataviewCommand");
|
|
37
50
|
const UpdateKxEnvironmentCommand_1 = require("./commands/UpdateKxEnvironmentCommand");
|
|
38
51
|
const UpdateKxEnvironmentNetworkCommand_1 = require("./commands/UpdateKxEnvironmentNetworkCommand");
|
|
39
52
|
const UpdateKxUserCommand_1 = require("./commands/UpdateKxUserCommand");
|
|
53
|
+
const UpdateKxVolumeCommand_1 = require("./commands/UpdateKxVolumeCommand");
|
|
40
54
|
const FinspaceClient_1 = require("./FinspaceClient");
|
|
41
55
|
const commands = {
|
|
42
56
|
CreateEnvironmentCommand: CreateEnvironmentCommand_1.CreateEnvironmentCommand,
|
|
43
57
|
CreateKxChangesetCommand: CreateKxChangesetCommand_1.CreateKxChangesetCommand,
|
|
44
58
|
CreateKxClusterCommand: CreateKxClusterCommand_1.CreateKxClusterCommand,
|
|
45
59
|
CreateKxDatabaseCommand: CreateKxDatabaseCommand_1.CreateKxDatabaseCommand,
|
|
60
|
+
CreateKxDataviewCommand: CreateKxDataviewCommand_1.CreateKxDataviewCommand,
|
|
46
61
|
CreateKxEnvironmentCommand: CreateKxEnvironmentCommand_1.CreateKxEnvironmentCommand,
|
|
62
|
+
CreateKxScalingGroupCommand: CreateKxScalingGroupCommand_1.CreateKxScalingGroupCommand,
|
|
47
63
|
CreateKxUserCommand: CreateKxUserCommand_1.CreateKxUserCommand,
|
|
64
|
+
CreateKxVolumeCommand: CreateKxVolumeCommand_1.CreateKxVolumeCommand,
|
|
48
65
|
DeleteEnvironmentCommand: DeleteEnvironmentCommand_1.DeleteEnvironmentCommand,
|
|
49
66
|
DeleteKxClusterCommand: DeleteKxClusterCommand_1.DeleteKxClusterCommand,
|
|
50
67
|
DeleteKxDatabaseCommand: DeleteKxDatabaseCommand_1.DeleteKxDatabaseCommand,
|
|
68
|
+
DeleteKxDataviewCommand: DeleteKxDataviewCommand_1.DeleteKxDataviewCommand,
|
|
51
69
|
DeleteKxEnvironmentCommand: DeleteKxEnvironmentCommand_1.DeleteKxEnvironmentCommand,
|
|
70
|
+
DeleteKxScalingGroupCommand: DeleteKxScalingGroupCommand_1.DeleteKxScalingGroupCommand,
|
|
52
71
|
DeleteKxUserCommand: DeleteKxUserCommand_1.DeleteKxUserCommand,
|
|
72
|
+
DeleteKxVolumeCommand: DeleteKxVolumeCommand_1.DeleteKxVolumeCommand,
|
|
53
73
|
GetEnvironmentCommand: GetEnvironmentCommand_1.GetEnvironmentCommand,
|
|
54
74
|
GetKxChangesetCommand: GetKxChangesetCommand_1.GetKxChangesetCommand,
|
|
55
75
|
GetKxClusterCommand: GetKxClusterCommand_1.GetKxClusterCommand,
|
|
56
76
|
GetKxConnectionStringCommand: GetKxConnectionStringCommand_1.GetKxConnectionStringCommand,
|
|
57
77
|
GetKxDatabaseCommand: GetKxDatabaseCommand_1.GetKxDatabaseCommand,
|
|
78
|
+
GetKxDataviewCommand: GetKxDataviewCommand_1.GetKxDataviewCommand,
|
|
58
79
|
GetKxEnvironmentCommand: GetKxEnvironmentCommand_1.GetKxEnvironmentCommand,
|
|
80
|
+
GetKxScalingGroupCommand: GetKxScalingGroupCommand_1.GetKxScalingGroupCommand,
|
|
59
81
|
GetKxUserCommand: GetKxUserCommand_1.GetKxUserCommand,
|
|
82
|
+
GetKxVolumeCommand: GetKxVolumeCommand_1.GetKxVolumeCommand,
|
|
60
83
|
ListEnvironmentsCommand: ListEnvironmentsCommand_1.ListEnvironmentsCommand,
|
|
61
84
|
ListKxChangesetsCommand: ListKxChangesetsCommand_1.ListKxChangesetsCommand,
|
|
62
85
|
ListKxClusterNodesCommand: ListKxClusterNodesCommand_1.ListKxClusterNodesCommand,
|
|
63
86
|
ListKxClustersCommand: ListKxClustersCommand_1.ListKxClustersCommand,
|
|
64
87
|
ListKxDatabasesCommand: ListKxDatabasesCommand_1.ListKxDatabasesCommand,
|
|
88
|
+
ListKxDataviewsCommand: ListKxDataviewsCommand_1.ListKxDataviewsCommand,
|
|
65
89
|
ListKxEnvironmentsCommand: ListKxEnvironmentsCommand_1.ListKxEnvironmentsCommand,
|
|
90
|
+
ListKxScalingGroupsCommand: ListKxScalingGroupsCommand_1.ListKxScalingGroupsCommand,
|
|
66
91
|
ListKxUsersCommand: ListKxUsersCommand_1.ListKxUsersCommand,
|
|
92
|
+
ListKxVolumesCommand: ListKxVolumesCommand_1.ListKxVolumesCommand,
|
|
67
93
|
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
68
94
|
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
69
95
|
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
@@ -71,9 +97,11 @@ const commands = {
|
|
|
71
97
|
UpdateKxClusterCodeConfigurationCommand: UpdateKxClusterCodeConfigurationCommand_1.UpdateKxClusterCodeConfigurationCommand,
|
|
72
98
|
UpdateKxClusterDatabasesCommand: UpdateKxClusterDatabasesCommand_1.UpdateKxClusterDatabasesCommand,
|
|
73
99
|
UpdateKxDatabaseCommand: UpdateKxDatabaseCommand_1.UpdateKxDatabaseCommand,
|
|
100
|
+
UpdateKxDataviewCommand: UpdateKxDataviewCommand_1.UpdateKxDataviewCommand,
|
|
74
101
|
UpdateKxEnvironmentCommand: UpdateKxEnvironmentCommand_1.UpdateKxEnvironmentCommand,
|
|
75
102
|
UpdateKxEnvironmentNetworkCommand: UpdateKxEnvironmentNetworkCommand_1.UpdateKxEnvironmentNetworkCommand,
|
|
76
103
|
UpdateKxUserCommand: UpdateKxUserCommand_1.UpdateKxUserCommand,
|
|
104
|
+
UpdateKxVolumeCommand: UpdateKxVolumeCommand_1.UpdateKxVolumeCommand,
|
|
77
105
|
};
|
|
78
106
|
class Finspace extends FinspaceClient_1.FinspaceClient {
|
|
79
107
|
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateKxDataviewCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreateKxDataviewCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateKxDataviewCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "FinspaceClient";
|
|
29
|
+
const commandName = "CreateKxDataviewCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSHabaneroManagementService",
|
|
38
|
+
operation: "CreateKxDataview",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreateKxDataviewCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreateKxDataviewCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreateKxDataviewCommand = CreateKxDataviewCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateKxScalingGroupCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreateKxScalingGroupCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateKxScalingGroupCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "FinspaceClient";
|
|
29
|
+
const commandName = "CreateKxScalingGroupCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSHabaneroManagementService",
|
|
38
|
+
operation: "CreateKxScalingGroup",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreateKxScalingGroupCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreateKxScalingGroupCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreateKxScalingGroupCommand = CreateKxScalingGroupCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateKxVolumeCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreateKxVolumeCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateKxVolumeCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "FinspaceClient";
|
|
29
|
+
const commandName = "CreateKxVolumeCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSHabaneroManagementService",
|
|
38
|
+
operation: "CreateKxVolume",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreateKxVolumeCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreateKxVolumeCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreateKxVolumeCommand = CreateKxVolumeCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteKxDataviewCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeleteKxDataviewCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteKxDataviewCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "FinspaceClient";
|
|
29
|
+
const commandName = "DeleteKxDataviewCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSHabaneroManagementService",
|
|
38
|
+
operation: "DeleteKxDataview",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeleteKxDataviewCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeleteKxDataviewCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeleteKxDataviewCommand = DeleteKxDataviewCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteKxScalingGroupCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeleteKxScalingGroupCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteKxScalingGroupCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "FinspaceClient";
|
|
29
|
+
const commandName = "DeleteKxScalingGroupCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSHabaneroManagementService",
|
|
38
|
+
operation: "DeleteKxScalingGroup",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeleteKxScalingGroupCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeleteKxScalingGroupCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeleteKxScalingGroupCommand = DeleteKxScalingGroupCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteKxVolumeCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeleteKxVolumeCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteKxVolumeCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "FinspaceClient";
|
|
29
|
+
const commandName = "DeleteKxVolumeCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AWSHabaneroManagementService",
|
|
38
|
+
operation: "DeleteKxVolume",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeleteKxVolumeCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeleteKxVolumeCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeleteKxVolumeCommand = DeleteKxVolumeCommand;
|