@aws-sdk/client-finspace 3.721.0 → 3.726.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/dist-cjs/index.js +282 -210
- package/dist-es/FinspaceClient.js +1 -0
- package/dist-es/models/models_0.js +21 -20
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -216,7 +216,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
216
216
|
}, "resolveRuntimeExtensions");
|
|
217
217
|
|
|
218
218
|
// src/FinspaceClient.ts
|
|
219
|
-
var
|
|
219
|
+
var FinspaceClient = class extends import_smithy_client.Client {
|
|
220
|
+
static {
|
|
221
|
+
__name(this, "FinspaceClient");
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* The resolved configuration of FinspaceClient class. This is resolved and normalized from the {@link FinspaceClientConfig | constructor configuration interface}.
|
|
225
|
+
*/
|
|
226
|
+
config;
|
|
220
227
|
constructor(...[configuration]) {
|
|
221
228
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
222
229
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -226,7 +233,7 @@ var _FinspaceClient = class _FinspaceClient extends import_smithy_client.Client
|
|
|
226
233
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
227
234
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
228
235
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
229
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
236
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
230
237
|
super(_config_8);
|
|
231
238
|
this.config = _config_8;
|
|
232
239
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -254,8 +261,6 @@ var _FinspaceClient = class _FinspaceClient extends import_smithy_client.Client
|
|
|
254
261
|
super.destroy();
|
|
255
262
|
}
|
|
256
263
|
};
|
|
257
|
-
__name(_FinspaceClient, "FinspaceClient");
|
|
258
|
-
var FinspaceClient = _FinspaceClient;
|
|
259
264
|
|
|
260
265
|
// src/Finspace.ts
|
|
261
266
|
|
|
@@ -270,7 +275,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
270
275
|
|
|
271
276
|
// src/models/FinspaceServiceException.ts
|
|
272
277
|
|
|
273
|
-
var
|
|
278
|
+
var FinspaceServiceException = class _FinspaceServiceException extends import_smithy_client.ServiceException {
|
|
279
|
+
static {
|
|
280
|
+
__name(this, "FinspaceServiceException");
|
|
281
|
+
}
|
|
274
282
|
/**
|
|
275
283
|
* @internal
|
|
276
284
|
*/
|
|
@@ -279,11 +287,14 @@ var _FinspaceServiceException = class _FinspaceServiceException extends import_s
|
|
|
279
287
|
Object.setPrototypeOf(this, _FinspaceServiceException.prototype);
|
|
280
288
|
}
|
|
281
289
|
};
|
|
282
|
-
__name(_FinspaceServiceException, "FinspaceServiceException");
|
|
283
|
-
var FinspaceServiceException = _FinspaceServiceException;
|
|
284
290
|
|
|
285
291
|
// src/models/models_0.ts
|
|
286
|
-
var
|
|
292
|
+
var AccessDeniedException = class _AccessDeniedException extends FinspaceServiceException {
|
|
293
|
+
static {
|
|
294
|
+
__name(this, "AccessDeniedException");
|
|
295
|
+
}
|
|
296
|
+
name = "AccessDeniedException";
|
|
297
|
+
$fault = "client";
|
|
287
298
|
/**
|
|
288
299
|
* @internal
|
|
289
300
|
*/
|
|
@@ -293,13 +304,9 @@ var _AccessDeniedException = class _AccessDeniedException extends FinspaceServic
|
|
|
293
304
|
$fault: "client",
|
|
294
305
|
...opts
|
|
295
306
|
});
|
|
296
|
-
this.name = "AccessDeniedException";
|
|
297
|
-
this.$fault = "client";
|
|
298
307
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
299
308
|
}
|
|
300
309
|
};
|
|
301
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
302
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
303
310
|
var AutoScalingMetric = {
|
|
304
311
|
CPU_UTILIZATION_PERCENTAGE: "CPU_UTILIZATION_PERCENTAGE"
|
|
305
312
|
};
|
|
@@ -307,7 +314,12 @@ var FederationMode = {
|
|
|
307
314
|
FEDERATED: "FEDERATED",
|
|
308
315
|
LOCAL: "LOCAL"
|
|
309
316
|
};
|
|
310
|
-
var
|
|
317
|
+
var InternalServerException = class _InternalServerException extends FinspaceServiceException {
|
|
318
|
+
static {
|
|
319
|
+
__name(this, "InternalServerException");
|
|
320
|
+
}
|
|
321
|
+
name = "InternalServerException";
|
|
322
|
+
$fault = "server";
|
|
311
323
|
/**
|
|
312
324
|
* @internal
|
|
313
325
|
*/
|
|
@@ -317,14 +329,15 @@ var _InternalServerException = class _InternalServerException extends FinspaceSe
|
|
|
317
329
|
$fault: "server",
|
|
318
330
|
...opts
|
|
319
331
|
});
|
|
320
|
-
this.name = "InternalServerException";
|
|
321
|
-
this.$fault = "server";
|
|
322
332
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
323
333
|
}
|
|
324
334
|
};
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
335
|
+
var LimitExceededException = class _LimitExceededException extends FinspaceServiceException {
|
|
336
|
+
static {
|
|
337
|
+
__name(this, "LimitExceededException");
|
|
338
|
+
}
|
|
339
|
+
name = "LimitExceededException";
|
|
340
|
+
$fault = "client";
|
|
328
341
|
/**
|
|
329
342
|
* @internal
|
|
330
343
|
*/
|
|
@@ -334,14 +347,15 @@ var _LimitExceededException = class _LimitExceededException extends FinspaceServ
|
|
|
334
347
|
$fault: "client",
|
|
335
348
|
...opts
|
|
336
349
|
});
|
|
337
|
-
this.name = "LimitExceededException";
|
|
338
|
-
this.$fault = "client";
|
|
339
350
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
340
351
|
}
|
|
341
352
|
};
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
353
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends FinspaceServiceException {
|
|
354
|
+
static {
|
|
355
|
+
__name(this, "ServiceQuotaExceededException");
|
|
356
|
+
}
|
|
357
|
+
name = "ServiceQuotaExceededException";
|
|
358
|
+
$fault = "client";
|
|
345
359
|
/**
|
|
346
360
|
* @internal
|
|
347
361
|
*/
|
|
@@ -351,14 +365,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
351
365
|
$fault: "client",
|
|
352
366
|
...opts
|
|
353
367
|
});
|
|
354
|
-
this.name = "ServiceQuotaExceededException";
|
|
355
|
-
this.$fault = "client";
|
|
356
368
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
357
369
|
}
|
|
358
370
|
};
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
371
|
+
var ThrottlingException = class _ThrottlingException extends FinspaceServiceException {
|
|
372
|
+
static {
|
|
373
|
+
__name(this, "ThrottlingException");
|
|
374
|
+
}
|
|
375
|
+
name = "ThrottlingException";
|
|
376
|
+
$fault = "client";
|
|
362
377
|
/**
|
|
363
378
|
* @internal
|
|
364
379
|
*/
|
|
@@ -368,14 +383,15 @@ var _ThrottlingException = class _ThrottlingException extends FinspaceServiceExc
|
|
|
368
383
|
$fault: "client",
|
|
369
384
|
...opts
|
|
370
385
|
});
|
|
371
|
-
this.name = "ThrottlingException";
|
|
372
|
-
this.$fault = "client";
|
|
373
386
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
374
387
|
}
|
|
375
388
|
};
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
389
|
+
var ValidationException = class _ValidationException extends FinspaceServiceException {
|
|
390
|
+
static {
|
|
391
|
+
__name(this, "ValidationException");
|
|
392
|
+
}
|
|
393
|
+
name = "ValidationException";
|
|
394
|
+
$fault = "client";
|
|
379
395
|
/**
|
|
380
396
|
* @internal
|
|
381
397
|
*/
|
|
@@ -385,14 +401,20 @@ var _ValidationException = class _ValidationException extends FinspaceServiceExc
|
|
|
385
401
|
$fault: "client",
|
|
386
402
|
...opts
|
|
387
403
|
});
|
|
388
|
-
this.name = "ValidationException";
|
|
389
|
-
this.$fault = "client";
|
|
390
404
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
391
405
|
}
|
|
392
406
|
};
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
407
|
+
var ConflictException = class _ConflictException extends FinspaceServiceException {
|
|
408
|
+
static {
|
|
409
|
+
__name(this, "ConflictException");
|
|
410
|
+
}
|
|
411
|
+
name = "ConflictException";
|
|
412
|
+
$fault = "client";
|
|
413
|
+
/**
|
|
414
|
+
* <p>The reason for the conflict exception.</p>
|
|
415
|
+
* @public
|
|
416
|
+
*/
|
|
417
|
+
reason;
|
|
396
418
|
/**
|
|
397
419
|
* @internal
|
|
398
420
|
*/
|
|
@@ -402,14 +424,10 @@ var _ConflictException = class _ConflictException extends FinspaceServiceExcepti
|
|
|
402
424
|
$fault: "client",
|
|
403
425
|
...opts
|
|
404
426
|
});
|
|
405
|
-
this.name = "ConflictException";
|
|
406
|
-
this.$fault = "client";
|
|
407
427
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
408
428
|
this.reason = opts.reason;
|
|
409
429
|
}
|
|
410
430
|
};
|
|
411
|
-
__name(_ConflictException, "ConflictException");
|
|
412
|
-
var ConflictException = _ConflictException;
|
|
413
431
|
var ChangeType = {
|
|
414
432
|
DELETE: "DELETE",
|
|
415
433
|
PUT: "PUT"
|
|
@@ -430,7 +448,12 @@ var ChangesetStatus = {
|
|
|
430
448
|
PENDING: "PENDING",
|
|
431
449
|
PROCESSING: "PROCESSING"
|
|
432
450
|
};
|
|
433
|
-
var
|
|
451
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends FinspaceServiceException {
|
|
452
|
+
static {
|
|
453
|
+
__name(this, "ResourceNotFoundException");
|
|
454
|
+
}
|
|
455
|
+
name = "ResourceNotFoundException";
|
|
456
|
+
$fault = "client";
|
|
434
457
|
/**
|
|
435
458
|
* @internal
|
|
436
459
|
*/
|
|
@@ -440,13 +463,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Finspa
|
|
|
440
463
|
$fault: "client",
|
|
441
464
|
...opts
|
|
442
465
|
});
|
|
443
|
-
this.name = "ResourceNotFoundException";
|
|
444
|
-
this.$fault = "client";
|
|
445
466
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
446
467
|
}
|
|
447
468
|
};
|
|
448
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
449
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
450
469
|
var KxAzMode = {
|
|
451
470
|
MULTI: "MULTI",
|
|
452
471
|
SINGLE: "SINGLE"
|
|
@@ -477,7 +496,12 @@ var KxClusterStatus = {
|
|
|
477
496
|
var VolumeType = {
|
|
478
497
|
NAS_1: "NAS_1"
|
|
479
498
|
};
|
|
480
|
-
var
|
|
499
|
+
var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends FinspaceServiceException {
|
|
500
|
+
static {
|
|
501
|
+
__name(this, "ResourceAlreadyExistsException");
|
|
502
|
+
}
|
|
503
|
+
name = "ResourceAlreadyExistsException";
|
|
504
|
+
$fault = "client";
|
|
481
505
|
/**
|
|
482
506
|
* @internal
|
|
483
507
|
*/
|
|
@@ -487,13 +511,9 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
|
|
|
487
511
|
$fault: "client",
|
|
488
512
|
...opts
|
|
489
513
|
});
|
|
490
|
-
this.name = "ResourceAlreadyExistsException";
|
|
491
|
-
this.$fault = "client";
|
|
492
514
|
Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
|
|
493
515
|
}
|
|
494
516
|
};
|
|
495
|
-
__name(_ResourceAlreadyExistsException, "ResourceAlreadyExistsException");
|
|
496
|
-
var ResourceAlreadyExistsException = _ResourceAlreadyExistsException;
|
|
497
517
|
var KxDataviewStatus = {
|
|
498
518
|
ACTIVE: "ACTIVE",
|
|
499
519
|
CREATING: "CREATING",
|
|
@@ -565,7 +585,12 @@ var KxNodeStatus = {
|
|
|
565
585
|
PROVISIONING: "PROVISIONING",
|
|
566
586
|
RUNNING: "RUNNING"
|
|
567
587
|
};
|
|
568
|
-
var
|
|
588
|
+
var InvalidRequestException = class _InvalidRequestException extends FinspaceServiceException {
|
|
589
|
+
static {
|
|
590
|
+
__name(this, "InvalidRequestException");
|
|
591
|
+
}
|
|
592
|
+
name = "InvalidRequestException";
|
|
593
|
+
$fault = "client";
|
|
569
594
|
/**
|
|
570
595
|
* @internal
|
|
571
596
|
*/
|
|
@@ -575,13 +600,9 @@ var _InvalidRequestException = class _InvalidRequestException extends FinspaceSe
|
|
|
575
600
|
$fault: "client",
|
|
576
601
|
...opts
|
|
577
602
|
});
|
|
578
|
-
this.name = "InvalidRequestException";
|
|
579
|
-
this.$fault = "client";
|
|
580
603
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
581
604
|
}
|
|
582
605
|
};
|
|
583
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
584
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
585
606
|
var KxClusterCodeDeploymentStrategy = {
|
|
586
607
|
FORCE: "FORCE",
|
|
587
608
|
NO_RESTART: "NO_RESTART",
|
|
@@ -2668,701 +2689,751 @@ var _uA = "userArn";
|
|
|
2668
2689
|
var _vT = "volumeType";
|
|
2669
2690
|
|
|
2670
2691
|
// src/commands/CreateEnvironmentCommand.ts
|
|
2671
|
-
var
|
|
2692
|
+
var CreateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2672
2693
|
return [
|
|
2673
2694
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2674
2695
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2675
2696
|
];
|
|
2676
2697
|
}).s("AWSHabaneroManagementService", "CreateEnvironment", {}).n("FinspaceClient", "CreateEnvironmentCommand").f(CreateEnvironmentRequestFilterSensitiveLog, void 0).ser(se_CreateEnvironmentCommand).de(de_CreateEnvironmentCommand).build() {
|
|
2698
|
+
static {
|
|
2699
|
+
__name(this, "CreateEnvironmentCommand");
|
|
2700
|
+
}
|
|
2677
2701
|
};
|
|
2678
|
-
__name(_CreateEnvironmentCommand, "CreateEnvironmentCommand");
|
|
2679
|
-
var CreateEnvironmentCommand = _CreateEnvironmentCommand;
|
|
2680
2702
|
|
|
2681
2703
|
// src/commands/CreateKxChangesetCommand.ts
|
|
2682
2704
|
|
|
2683
2705
|
|
|
2684
2706
|
|
|
2685
|
-
var
|
|
2707
|
+
var CreateKxChangesetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2686
2708
|
return [
|
|
2687
2709
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2688
2710
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2689
2711
|
];
|
|
2690
2712
|
}).s("AWSHabaneroManagementService", "CreateKxChangeset", {}).n("FinspaceClient", "CreateKxChangesetCommand").f(void 0, void 0).ser(se_CreateKxChangesetCommand).de(de_CreateKxChangesetCommand).build() {
|
|
2713
|
+
static {
|
|
2714
|
+
__name(this, "CreateKxChangesetCommand");
|
|
2715
|
+
}
|
|
2691
2716
|
};
|
|
2692
|
-
__name(_CreateKxChangesetCommand, "CreateKxChangesetCommand");
|
|
2693
|
-
var CreateKxChangesetCommand = _CreateKxChangesetCommand;
|
|
2694
2717
|
|
|
2695
2718
|
// src/commands/CreateKxClusterCommand.ts
|
|
2696
2719
|
|
|
2697
2720
|
|
|
2698
2721
|
|
|
2699
|
-
var
|
|
2722
|
+
var CreateKxClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2700
2723
|
return [
|
|
2701
2724
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2702
2725
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2703
2726
|
];
|
|
2704
2727
|
}).s("AWSHabaneroManagementService", "CreateKxCluster", {}).n("FinspaceClient", "CreateKxClusterCommand").f(void 0, void 0).ser(se_CreateKxClusterCommand).de(de_CreateKxClusterCommand).build() {
|
|
2728
|
+
static {
|
|
2729
|
+
__name(this, "CreateKxClusterCommand");
|
|
2730
|
+
}
|
|
2705
2731
|
};
|
|
2706
|
-
__name(_CreateKxClusterCommand, "CreateKxClusterCommand");
|
|
2707
|
-
var CreateKxClusterCommand = _CreateKxClusterCommand;
|
|
2708
2732
|
|
|
2709
2733
|
// src/commands/CreateKxDatabaseCommand.ts
|
|
2710
2734
|
|
|
2711
2735
|
|
|
2712
2736
|
|
|
2713
|
-
var
|
|
2737
|
+
var CreateKxDatabaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2714
2738
|
return [
|
|
2715
2739
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2716
2740
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2717
2741
|
];
|
|
2718
2742
|
}).s("AWSHabaneroManagementService", "CreateKxDatabase", {}).n("FinspaceClient", "CreateKxDatabaseCommand").f(void 0, void 0).ser(se_CreateKxDatabaseCommand).de(de_CreateKxDatabaseCommand).build() {
|
|
2743
|
+
static {
|
|
2744
|
+
__name(this, "CreateKxDatabaseCommand");
|
|
2745
|
+
}
|
|
2719
2746
|
};
|
|
2720
|
-
__name(_CreateKxDatabaseCommand, "CreateKxDatabaseCommand");
|
|
2721
|
-
var CreateKxDatabaseCommand = _CreateKxDatabaseCommand;
|
|
2722
2747
|
|
|
2723
2748
|
// src/commands/CreateKxDataviewCommand.ts
|
|
2724
2749
|
|
|
2725
2750
|
|
|
2726
2751
|
|
|
2727
|
-
var
|
|
2752
|
+
var CreateKxDataviewCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2728
2753
|
return [
|
|
2729
2754
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2730
2755
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2731
2756
|
];
|
|
2732
2757
|
}).s("AWSHabaneroManagementService", "CreateKxDataview", {}).n("FinspaceClient", "CreateKxDataviewCommand").f(void 0, void 0).ser(se_CreateKxDataviewCommand).de(de_CreateKxDataviewCommand).build() {
|
|
2758
|
+
static {
|
|
2759
|
+
__name(this, "CreateKxDataviewCommand");
|
|
2760
|
+
}
|
|
2733
2761
|
};
|
|
2734
|
-
__name(_CreateKxDataviewCommand, "CreateKxDataviewCommand");
|
|
2735
|
-
var CreateKxDataviewCommand = _CreateKxDataviewCommand;
|
|
2736
2762
|
|
|
2737
2763
|
// src/commands/CreateKxEnvironmentCommand.ts
|
|
2738
2764
|
|
|
2739
2765
|
|
|
2740
2766
|
|
|
2741
|
-
var
|
|
2767
|
+
var CreateKxEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2742
2768
|
return [
|
|
2743
2769
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2744
2770
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2745
2771
|
];
|
|
2746
2772
|
}).s("AWSHabaneroManagementService", "CreateKxEnvironment", {}).n("FinspaceClient", "CreateKxEnvironmentCommand").f(void 0, void 0).ser(se_CreateKxEnvironmentCommand).de(de_CreateKxEnvironmentCommand).build() {
|
|
2773
|
+
static {
|
|
2774
|
+
__name(this, "CreateKxEnvironmentCommand");
|
|
2775
|
+
}
|
|
2747
2776
|
};
|
|
2748
|
-
__name(_CreateKxEnvironmentCommand, "CreateKxEnvironmentCommand");
|
|
2749
|
-
var CreateKxEnvironmentCommand = _CreateKxEnvironmentCommand;
|
|
2750
2777
|
|
|
2751
2778
|
// src/commands/CreateKxScalingGroupCommand.ts
|
|
2752
2779
|
|
|
2753
2780
|
|
|
2754
2781
|
|
|
2755
|
-
var
|
|
2782
|
+
var CreateKxScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2756
2783
|
return [
|
|
2757
2784
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2758
2785
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2759
2786
|
];
|
|
2760
2787
|
}).s("AWSHabaneroManagementService", "CreateKxScalingGroup", {}).n("FinspaceClient", "CreateKxScalingGroupCommand").f(void 0, void 0).ser(se_CreateKxScalingGroupCommand).de(de_CreateKxScalingGroupCommand).build() {
|
|
2788
|
+
static {
|
|
2789
|
+
__name(this, "CreateKxScalingGroupCommand");
|
|
2790
|
+
}
|
|
2761
2791
|
};
|
|
2762
|
-
__name(_CreateKxScalingGroupCommand, "CreateKxScalingGroupCommand");
|
|
2763
|
-
var CreateKxScalingGroupCommand = _CreateKxScalingGroupCommand;
|
|
2764
2792
|
|
|
2765
2793
|
// src/commands/CreateKxUserCommand.ts
|
|
2766
2794
|
|
|
2767
2795
|
|
|
2768
2796
|
|
|
2769
|
-
var
|
|
2797
|
+
var CreateKxUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2770
2798
|
return [
|
|
2771
2799
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2772
2800
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2773
2801
|
];
|
|
2774
2802
|
}).s("AWSHabaneroManagementService", "CreateKxUser", {}).n("FinspaceClient", "CreateKxUserCommand").f(void 0, void 0).ser(se_CreateKxUserCommand).de(de_CreateKxUserCommand).build() {
|
|
2803
|
+
static {
|
|
2804
|
+
__name(this, "CreateKxUserCommand");
|
|
2805
|
+
}
|
|
2775
2806
|
};
|
|
2776
|
-
__name(_CreateKxUserCommand, "CreateKxUserCommand");
|
|
2777
|
-
var CreateKxUserCommand = _CreateKxUserCommand;
|
|
2778
2807
|
|
|
2779
2808
|
// src/commands/CreateKxVolumeCommand.ts
|
|
2780
2809
|
|
|
2781
2810
|
|
|
2782
2811
|
|
|
2783
|
-
var
|
|
2812
|
+
var CreateKxVolumeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2784
2813
|
return [
|
|
2785
2814
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2786
2815
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2787
2816
|
];
|
|
2788
2817
|
}).s("AWSHabaneroManagementService", "CreateKxVolume", {}).n("FinspaceClient", "CreateKxVolumeCommand").f(void 0, void 0).ser(se_CreateKxVolumeCommand).de(de_CreateKxVolumeCommand).build() {
|
|
2818
|
+
static {
|
|
2819
|
+
__name(this, "CreateKxVolumeCommand");
|
|
2820
|
+
}
|
|
2789
2821
|
};
|
|
2790
|
-
__name(_CreateKxVolumeCommand, "CreateKxVolumeCommand");
|
|
2791
|
-
var CreateKxVolumeCommand = _CreateKxVolumeCommand;
|
|
2792
2822
|
|
|
2793
2823
|
// src/commands/DeleteEnvironmentCommand.ts
|
|
2794
2824
|
|
|
2795
2825
|
|
|
2796
2826
|
|
|
2797
|
-
var
|
|
2827
|
+
var DeleteEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2798
2828
|
return [
|
|
2799
2829
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2800
2830
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2801
2831
|
];
|
|
2802
2832
|
}).s("AWSHabaneroManagementService", "DeleteEnvironment", {}).n("FinspaceClient", "DeleteEnvironmentCommand").f(void 0, void 0).ser(se_DeleteEnvironmentCommand).de(de_DeleteEnvironmentCommand).build() {
|
|
2833
|
+
static {
|
|
2834
|
+
__name(this, "DeleteEnvironmentCommand");
|
|
2835
|
+
}
|
|
2803
2836
|
};
|
|
2804
|
-
__name(_DeleteEnvironmentCommand, "DeleteEnvironmentCommand");
|
|
2805
|
-
var DeleteEnvironmentCommand = _DeleteEnvironmentCommand;
|
|
2806
2837
|
|
|
2807
2838
|
// src/commands/DeleteKxClusterCommand.ts
|
|
2808
2839
|
|
|
2809
2840
|
|
|
2810
2841
|
|
|
2811
|
-
var
|
|
2842
|
+
var DeleteKxClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2812
2843
|
return [
|
|
2813
2844
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2814
2845
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2815
2846
|
];
|
|
2816
2847
|
}).s("AWSHabaneroManagementService", "DeleteKxCluster", {}).n("FinspaceClient", "DeleteKxClusterCommand").f(void 0, void 0).ser(se_DeleteKxClusterCommand).de(de_DeleteKxClusterCommand).build() {
|
|
2848
|
+
static {
|
|
2849
|
+
__name(this, "DeleteKxClusterCommand");
|
|
2850
|
+
}
|
|
2817
2851
|
};
|
|
2818
|
-
__name(_DeleteKxClusterCommand, "DeleteKxClusterCommand");
|
|
2819
|
-
var DeleteKxClusterCommand = _DeleteKxClusterCommand;
|
|
2820
2852
|
|
|
2821
2853
|
// src/commands/DeleteKxClusterNodeCommand.ts
|
|
2822
2854
|
|
|
2823
2855
|
|
|
2824
2856
|
|
|
2825
|
-
var
|
|
2857
|
+
var DeleteKxClusterNodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2826
2858
|
return [
|
|
2827
2859
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2828
2860
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2829
2861
|
];
|
|
2830
2862
|
}).s("AWSHabaneroManagementService", "DeleteKxClusterNode", {}).n("FinspaceClient", "DeleteKxClusterNodeCommand").f(void 0, void 0).ser(se_DeleteKxClusterNodeCommand).de(de_DeleteKxClusterNodeCommand).build() {
|
|
2863
|
+
static {
|
|
2864
|
+
__name(this, "DeleteKxClusterNodeCommand");
|
|
2865
|
+
}
|
|
2831
2866
|
};
|
|
2832
|
-
__name(_DeleteKxClusterNodeCommand, "DeleteKxClusterNodeCommand");
|
|
2833
|
-
var DeleteKxClusterNodeCommand = _DeleteKxClusterNodeCommand;
|
|
2834
2867
|
|
|
2835
2868
|
// src/commands/DeleteKxDatabaseCommand.ts
|
|
2836
2869
|
|
|
2837
2870
|
|
|
2838
2871
|
|
|
2839
|
-
var
|
|
2872
|
+
var DeleteKxDatabaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2840
2873
|
return [
|
|
2841
2874
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2842
2875
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2843
2876
|
];
|
|
2844
2877
|
}).s("AWSHabaneroManagementService", "DeleteKxDatabase", {}).n("FinspaceClient", "DeleteKxDatabaseCommand").f(void 0, void 0).ser(se_DeleteKxDatabaseCommand).de(de_DeleteKxDatabaseCommand).build() {
|
|
2878
|
+
static {
|
|
2879
|
+
__name(this, "DeleteKxDatabaseCommand");
|
|
2880
|
+
}
|
|
2845
2881
|
};
|
|
2846
|
-
__name(_DeleteKxDatabaseCommand, "DeleteKxDatabaseCommand");
|
|
2847
|
-
var DeleteKxDatabaseCommand = _DeleteKxDatabaseCommand;
|
|
2848
2882
|
|
|
2849
2883
|
// src/commands/DeleteKxDataviewCommand.ts
|
|
2850
2884
|
|
|
2851
2885
|
|
|
2852
2886
|
|
|
2853
|
-
var
|
|
2887
|
+
var DeleteKxDataviewCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2854
2888
|
return [
|
|
2855
2889
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2856
2890
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2857
2891
|
];
|
|
2858
2892
|
}).s("AWSHabaneroManagementService", "DeleteKxDataview", {}).n("FinspaceClient", "DeleteKxDataviewCommand").f(void 0, void 0).ser(se_DeleteKxDataviewCommand).de(de_DeleteKxDataviewCommand).build() {
|
|
2893
|
+
static {
|
|
2894
|
+
__name(this, "DeleteKxDataviewCommand");
|
|
2895
|
+
}
|
|
2859
2896
|
};
|
|
2860
|
-
__name(_DeleteKxDataviewCommand, "DeleteKxDataviewCommand");
|
|
2861
|
-
var DeleteKxDataviewCommand = _DeleteKxDataviewCommand;
|
|
2862
2897
|
|
|
2863
2898
|
// src/commands/DeleteKxEnvironmentCommand.ts
|
|
2864
2899
|
|
|
2865
2900
|
|
|
2866
2901
|
|
|
2867
|
-
var
|
|
2902
|
+
var DeleteKxEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2868
2903
|
return [
|
|
2869
2904
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2870
2905
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2871
2906
|
];
|
|
2872
2907
|
}).s("AWSHabaneroManagementService", "DeleteKxEnvironment", {}).n("FinspaceClient", "DeleteKxEnvironmentCommand").f(void 0, void 0).ser(se_DeleteKxEnvironmentCommand).de(de_DeleteKxEnvironmentCommand).build() {
|
|
2908
|
+
static {
|
|
2909
|
+
__name(this, "DeleteKxEnvironmentCommand");
|
|
2910
|
+
}
|
|
2873
2911
|
};
|
|
2874
|
-
__name(_DeleteKxEnvironmentCommand, "DeleteKxEnvironmentCommand");
|
|
2875
|
-
var DeleteKxEnvironmentCommand = _DeleteKxEnvironmentCommand;
|
|
2876
2912
|
|
|
2877
2913
|
// src/commands/DeleteKxScalingGroupCommand.ts
|
|
2878
2914
|
|
|
2879
2915
|
|
|
2880
2916
|
|
|
2881
|
-
var
|
|
2917
|
+
var DeleteKxScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2882
2918
|
return [
|
|
2883
2919
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2884
2920
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2885
2921
|
];
|
|
2886
2922
|
}).s("AWSHabaneroManagementService", "DeleteKxScalingGroup", {}).n("FinspaceClient", "DeleteKxScalingGroupCommand").f(void 0, void 0).ser(se_DeleteKxScalingGroupCommand).de(de_DeleteKxScalingGroupCommand).build() {
|
|
2923
|
+
static {
|
|
2924
|
+
__name(this, "DeleteKxScalingGroupCommand");
|
|
2925
|
+
}
|
|
2887
2926
|
};
|
|
2888
|
-
__name(_DeleteKxScalingGroupCommand, "DeleteKxScalingGroupCommand");
|
|
2889
|
-
var DeleteKxScalingGroupCommand = _DeleteKxScalingGroupCommand;
|
|
2890
2927
|
|
|
2891
2928
|
// src/commands/DeleteKxUserCommand.ts
|
|
2892
2929
|
|
|
2893
2930
|
|
|
2894
2931
|
|
|
2895
|
-
var
|
|
2932
|
+
var DeleteKxUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2896
2933
|
return [
|
|
2897
2934
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2898
2935
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2899
2936
|
];
|
|
2900
2937
|
}).s("AWSHabaneroManagementService", "DeleteKxUser", {}).n("FinspaceClient", "DeleteKxUserCommand").f(void 0, void 0).ser(se_DeleteKxUserCommand).de(de_DeleteKxUserCommand).build() {
|
|
2938
|
+
static {
|
|
2939
|
+
__name(this, "DeleteKxUserCommand");
|
|
2940
|
+
}
|
|
2901
2941
|
};
|
|
2902
|
-
__name(_DeleteKxUserCommand, "DeleteKxUserCommand");
|
|
2903
|
-
var DeleteKxUserCommand = _DeleteKxUserCommand;
|
|
2904
2942
|
|
|
2905
2943
|
// src/commands/DeleteKxVolumeCommand.ts
|
|
2906
2944
|
|
|
2907
2945
|
|
|
2908
2946
|
|
|
2909
|
-
var
|
|
2947
|
+
var DeleteKxVolumeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2910
2948
|
return [
|
|
2911
2949
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2912
2950
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2913
2951
|
];
|
|
2914
2952
|
}).s("AWSHabaneroManagementService", "DeleteKxVolume", {}).n("FinspaceClient", "DeleteKxVolumeCommand").f(void 0, void 0).ser(se_DeleteKxVolumeCommand).de(de_DeleteKxVolumeCommand).build() {
|
|
2953
|
+
static {
|
|
2954
|
+
__name(this, "DeleteKxVolumeCommand");
|
|
2955
|
+
}
|
|
2915
2956
|
};
|
|
2916
|
-
__name(_DeleteKxVolumeCommand, "DeleteKxVolumeCommand");
|
|
2917
|
-
var DeleteKxVolumeCommand = _DeleteKxVolumeCommand;
|
|
2918
2957
|
|
|
2919
2958
|
// src/commands/GetEnvironmentCommand.ts
|
|
2920
2959
|
|
|
2921
2960
|
|
|
2922
2961
|
|
|
2923
|
-
var
|
|
2962
|
+
var GetEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2924
2963
|
return [
|
|
2925
2964
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2926
2965
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2927
2966
|
];
|
|
2928
2967
|
}).s("AWSHabaneroManagementService", "GetEnvironment", {}).n("FinspaceClient", "GetEnvironmentCommand").f(void 0, void 0).ser(se_GetEnvironmentCommand).de(de_GetEnvironmentCommand).build() {
|
|
2968
|
+
static {
|
|
2969
|
+
__name(this, "GetEnvironmentCommand");
|
|
2970
|
+
}
|
|
2929
2971
|
};
|
|
2930
|
-
__name(_GetEnvironmentCommand, "GetEnvironmentCommand");
|
|
2931
|
-
var GetEnvironmentCommand = _GetEnvironmentCommand;
|
|
2932
2972
|
|
|
2933
2973
|
// src/commands/GetKxChangesetCommand.ts
|
|
2934
2974
|
|
|
2935
2975
|
|
|
2936
2976
|
|
|
2937
|
-
var
|
|
2977
|
+
var GetKxChangesetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2938
2978
|
return [
|
|
2939
2979
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2940
2980
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2941
2981
|
];
|
|
2942
2982
|
}).s("AWSHabaneroManagementService", "GetKxChangeset", {}).n("FinspaceClient", "GetKxChangesetCommand").f(void 0, void 0).ser(se_GetKxChangesetCommand).de(de_GetKxChangesetCommand).build() {
|
|
2983
|
+
static {
|
|
2984
|
+
__name(this, "GetKxChangesetCommand");
|
|
2985
|
+
}
|
|
2943
2986
|
};
|
|
2944
|
-
__name(_GetKxChangesetCommand, "GetKxChangesetCommand");
|
|
2945
|
-
var GetKxChangesetCommand = _GetKxChangesetCommand;
|
|
2946
2987
|
|
|
2947
2988
|
// src/commands/GetKxClusterCommand.ts
|
|
2948
2989
|
|
|
2949
2990
|
|
|
2950
2991
|
|
|
2951
|
-
var
|
|
2992
|
+
var GetKxClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2952
2993
|
return [
|
|
2953
2994
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2954
2995
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2955
2996
|
];
|
|
2956
2997
|
}).s("AWSHabaneroManagementService", "GetKxCluster", {}).n("FinspaceClient", "GetKxClusterCommand").f(void 0, void 0).ser(se_GetKxClusterCommand).de(de_GetKxClusterCommand).build() {
|
|
2998
|
+
static {
|
|
2999
|
+
__name(this, "GetKxClusterCommand");
|
|
3000
|
+
}
|
|
2957
3001
|
};
|
|
2958
|
-
__name(_GetKxClusterCommand, "GetKxClusterCommand");
|
|
2959
|
-
var GetKxClusterCommand = _GetKxClusterCommand;
|
|
2960
3002
|
|
|
2961
3003
|
// src/commands/GetKxConnectionStringCommand.ts
|
|
2962
3004
|
|
|
2963
3005
|
|
|
2964
3006
|
|
|
2965
|
-
var
|
|
3007
|
+
var GetKxConnectionStringCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2966
3008
|
return [
|
|
2967
3009
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2968
3010
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2969
3011
|
];
|
|
2970
3012
|
}).s("AWSHabaneroManagementService", "GetKxConnectionString", {}).n("FinspaceClient", "GetKxConnectionStringCommand").f(void 0, GetKxConnectionStringResponseFilterSensitiveLog).ser(se_GetKxConnectionStringCommand).de(de_GetKxConnectionStringCommand).build() {
|
|
3013
|
+
static {
|
|
3014
|
+
__name(this, "GetKxConnectionStringCommand");
|
|
3015
|
+
}
|
|
2971
3016
|
};
|
|
2972
|
-
__name(_GetKxConnectionStringCommand, "GetKxConnectionStringCommand");
|
|
2973
|
-
var GetKxConnectionStringCommand = _GetKxConnectionStringCommand;
|
|
2974
3017
|
|
|
2975
3018
|
// src/commands/GetKxDatabaseCommand.ts
|
|
2976
3019
|
|
|
2977
3020
|
|
|
2978
3021
|
|
|
2979
|
-
var
|
|
3022
|
+
var GetKxDatabaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2980
3023
|
return [
|
|
2981
3024
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2982
3025
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2983
3026
|
];
|
|
2984
3027
|
}).s("AWSHabaneroManagementService", "GetKxDatabase", {}).n("FinspaceClient", "GetKxDatabaseCommand").f(void 0, void 0).ser(se_GetKxDatabaseCommand).de(de_GetKxDatabaseCommand).build() {
|
|
3028
|
+
static {
|
|
3029
|
+
__name(this, "GetKxDatabaseCommand");
|
|
3030
|
+
}
|
|
2985
3031
|
};
|
|
2986
|
-
__name(_GetKxDatabaseCommand, "GetKxDatabaseCommand");
|
|
2987
|
-
var GetKxDatabaseCommand = _GetKxDatabaseCommand;
|
|
2988
3032
|
|
|
2989
3033
|
// src/commands/GetKxDataviewCommand.ts
|
|
2990
3034
|
|
|
2991
3035
|
|
|
2992
3036
|
|
|
2993
|
-
var
|
|
3037
|
+
var GetKxDataviewCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2994
3038
|
return [
|
|
2995
3039
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2996
3040
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2997
3041
|
];
|
|
2998
3042
|
}).s("AWSHabaneroManagementService", "GetKxDataview", {}).n("FinspaceClient", "GetKxDataviewCommand").f(void 0, void 0).ser(se_GetKxDataviewCommand).de(de_GetKxDataviewCommand).build() {
|
|
3043
|
+
static {
|
|
3044
|
+
__name(this, "GetKxDataviewCommand");
|
|
3045
|
+
}
|
|
2999
3046
|
};
|
|
3000
|
-
__name(_GetKxDataviewCommand, "GetKxDataviewCommand");
|
|
3001
|
-
var GetKxDataviewCommand = _GetKxDataviewCommand;
|
|
3002
3047
|
|
|
3003
3048
|
// src/commands/GetKxEnvironmentCommand.ts
|
|
3004
3049
|
|
|
3005
3050
|
|
|
3006
3051
|
|
|
3007
|
-
var
|
|
3052
|
+
var GetKxEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3008
3053
|
return [
|
|
3009
3054
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3010
3055
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3011
3056
|
];
|
|
3012
3057
|
}).s("AWSHabaneroManagementService", "GetKxEnvironment", {}).n("FinspaceClient", "GetKxEnvironmentCommand").f(void 0, void 0).ser(se_GetKxEnvironmentCommand).de(de_GetKxEnvironmentCommand).build() {
|
|
3058
|
+
static {
|
|
3059
|
+
__name(this, "GetKxEnvironmentCommand");
|
|
3060
|
+
}
|
|
3013
3061
|
};
|
|
3014
|
-
__name(_GetKxEnvironmentCommand, "GetKxEnvironmentCommand");
|
|
3015
|
-
var GetKxEnvironmentCommand = _GetKxEnvironmentCommand;
|
|
3016
3062
|
|
|
3017
3063
|
// src/commands/GetKxScalingGroupCommand.ts
|
|
3018
3064
|
|
|
3019
3065
|
|
|
3020
3066
|
|
|
3021
|
-
var
|
|
3067
|
+
var GetKxScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3022
3068
|
return [
|
|
3023
3069
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3024
3070
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3025
3071
|
];
|
|
3026
3072
|
}).s("AWSHabaneroManagementService", "GetKxScalingGroup", {}).n("FinspaceClient", "GetKxScalingGroupCommand").f(void 0, void 0).ser(se_GetKxScalingGroupCommand).de(de_GetKxScalingGroupCommand).build() {
|
|
3073
|
+
static {
|
|
3074
|
+
__name(this, "GetKxScalingGroupCommand");
|
|
3075
|
+
}
|
|
3027
3076
|
};
|
|
3028
|
-
__name(_GetKxScalingGroupCommand, "GetKxScalingGroupCommand");
|
|
3029
|
-
var GetKxScalingGroupCommand = _GetKxScalingGroupCommand;
|
|
3030
3077
|
|
|
3031
3078
|
// src/commands/GetKxUserCommand.ts
|
|
3032
3079
|
|
|
3033
3080
|
|
|
3034
3081
|
|
|
3035
|
-
var
|
|
3082
|
+
var GetKxUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3036
3083
|
return [
|
|
3037
3084
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3038
3085
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3039
3086
|
];
|
|
3040
3087
|
}).s("AWSHabaneroManagementService", "GetKxUser", {}).n("FinspaceClient", "GetKxUserCommand").f(void 0, void 0).ser(se_GetKxUserCommand).de(de_GetKxUserCommand).build() {
|
|
3088
|
+
static {
|
|
3089
|
+
__name(this, "GetKxUserCommand");
|
|
3090
|
+
}
|
|
3041
3091
|
};
|
|
3042
|
-
__name(_GetKxUserCommand, "GetKxUserCommand");
|
|
3043
|
-
var GetKxUserCommand = _GetKxUserCommand;
|
|
3044
3092
|
|
|
3045
3093
|
// src/commands/GetKxVolumeCommand.ts
|
|
3046
3094
|
|
|
3047
3095
|
|
|
3048
3096
|
|
|
3049
|
-
var
|
|
3097
|
+
var GetKxVolumeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3050
3098
|
return [
|
|
3051
3099
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3052
3100
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3053
3101
|
];
|
|
3054
3102
|
}).s("AWSHabaneroManagementService", "GetKxVolume", {}).n("FinspaceClient", "GetKxVolumeCommand").f(void 0, void 0).ser(se_GetKxVolumeCommand).de(de_GetKxVolumeCommand).build() {
|
|
3103
|
+
static {
|
|
3104
|
+
__name(this, "GetKxVolumeCommand");
|
|
3105
|
+
}
|
|
3055
3106
|
};
|
|
3056
|
-
__name(_GetKxVolumeCommand, "GetKxVolumeCommand");
|
|
3057
|
-
var GetKxVolumeCommand = _GetKxVolumeCommand;
|
|
3058
3107
|
|
|
3059
3108
|
// src/commands/ListEnvironmentsCommand.ts
|
|
3060
3109
|
|
|
3061
3110
|
|
|
3062
3111
|
|
|
3063
|
-
var
|
|
3112
|
+
var ListEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3064
3113
|
return [
|
|
3065
3114
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3066
3115
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3067
3116
|
];
|
|
3068
3117
|
}).s("AWSHabaneroManagementService", "ListEnvironments", {}).n("FinspaceClient", "ListEnvironmentsCommand").f(void 0, void 0).ser(se_ListEnvironmentsCommand).de(de_ListEnvironmentsCommand).build() {
|
|
3118
|
+
static {
|
|
3119
|
+
__name(this, "ListEnvironmentsCommand");
|
|
3120
|
+
}
|
|
3069
3121
|
};
|
|
3070
|
-
__name(_ListEnvironmentsCommand, "ListEnvironmentsCommand");
|
|
3071
|
-
var ListEnvironmentsCommand = _ListEnvironmentsCommand;
|
|
3072
3122
|
|
|
3073
3123
|
// src/commands/ListKxChangesetsCommand.ts
|
|
3074
3124
|
|
|
3075
3125
|
|
|
3076
3126
|
|
|
3077
|
-
var
|
|
3127
|
+
var ListKxChangesetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3078
3128
|
return [
|
|
3079
3129
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3080
3130
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3081
3131
|
];
|
|
3082
3132
|
}).s("AWSHabaneroManagementService", "ListKxChangesets", {}).n("FinspaceClient", "ListKxChangesetsCommand").f(void 0, void 0).ser(se_ListKxChangesetsCommand).de(de_ListKxChangesetsCommand).build() {
|
|
3133
|
+
static {
|
|
3134
|
+
__name(this, "ListKxChangesetsCommand");
|
|
3135
|
+
}
|
|
3083
3136
|
};
|
|
3084
|
-
__name(_ListKxChangesetsCommand, "ListKxChangesetsCommand");
|
|
3085
|
-
var ListKxChangesetsCommand = _ListKxChangesetsCommand;
|
|
3086
3137
|
|
|
3087
3138
|
// src/commands/ListKxClusterNodesCommand.ts
|
|
3088
3139
|
|
|
3089
3140
|
|
|
3090
3141
|
|
|
3091
|
-
var
|
|
3142
|
+
var ListKxClusterNodesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3092
3143
|
return [
|
|
3093
3144
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3094
3145
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3095
3146
|
];
|
|
3096
3147
|
}).s("AWSHabaneroManagementService", "ListKxClusterNodes", {}).n("FinspaceClient", "ListKxClusterNodesCommand").f(void 0, void 0).ser(se_ListKxClusterNodesCommand).de(de_ListKxClusterNodesCommand).build() {
|
|
3148
|
+
static {
|
|
3149
|
+
__name(this, "ListKxClusterNodesCommand");
|
|
3150
|
+
}
|
|
3097
3151
|
};
|
|
3098
|
-
__name(_ListKxClusterNodesCommand, "ListKxClusterNodesCommand");
|
|
3099
|
-
var ListKxClusterNodesCommand = _ListKxClusterNodesCommand;
|
|
3100
3152
|
|
|
3101
3153
|
// src/commands/ListKxClustersCommand.ts
|
|
3102
3154
|
|
|
3103
3155
|
|
|
3104
3156
|
|
|
3105
|
-
var
|
|
3157
|
+
var ListKxClustersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3106
3158
|
return [
|
|
3107
3159
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3108
3160
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3109
3161
|
];
|
|
3110
3162
|
}).s("AWSHabaneroManagementService", "ListKxClusters", {}).n("FinspaceClient", "ListKxClustersCommand").f(void 0, void 0).ser(se_ListKxClustersCommand).de(de_ListKxClustersCommand).build() {
|
|
3163
|
+
static {
|
|
3164
|
+
__name(this, "ListKxClustersCommand");
|
|
3165
|
+
}
|
|
3111
3166
|
};
|
|
3112
|
-
__name(_ListKxClustersCommand, "ListKxClustersCommand");
|
|
3113
|
-
var ListKxClustersCommand = _ListKxClustersCommand;
|
|
3114
3167
|
|
|
3115
3168
|
// src/commands/ListKxDatabasesCommand.ts
|
|
3116
3169
|
|
|
3117
3170
|
|
|
3118
3171
|
|
|
3119
|
-
var
|
|
3172
|
+
var ListKxDatabasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3120
3173
|
return [
|
|
3121
3174
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3122
3175
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3123
3176
|
];
|
|
3124
3177
|
}).s("AWSHabaneroManagementService", "ListKxDatabases", {}).n("FinspaceClient", "ListKxDatabasesCommand").f(void 0, void 0).ser(se_ListKxDatabasesCommand).de(de_ListKxDatabasesCommand).build() {
|
|
3178
|
+
static {
|
|
3179
|
+
__name(this, "ListKxDatabasesCommand");
|
|
3180
|
+
}
|
|
3125
3181
|
};
|
|
3126
|
-
__name(_ListKxDatabasesCommand, "ListKxDatabasesCommand");
|
|
3127
|
-
var ListKxDatabasesCommand = _ListKxDatabasesCommand;
|
|
3128
3182
|
|
|
3129
3183
|
// src/commands/ListKxDataviewsCommand.ts
|
|
3130
3184
|
|
|
3131
3185
|
|
|
3132
3186
|
|
|
3133
|
-
var
|
|
3187
|
+
var ListKxDataviewsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3134
3188
|
return [
|
|
3135
3189
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3136
3190
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3137
3191
|
];
|
|
3138
3192
|
}).s("AWSHabaneroManagementService", "ListKxDataviews", {}).n("FinspaceClient", "ListKxDataviewsCommand").f(void 0, void 0).ser(se_ListKxDataviewsCommand).de(de_ListKxDataviewsCommand).build() {
|
|
3193
|
+
static {
|
|
3194
|
+
__name(this, "ListKxDataviewsCommand");
|
|
3195
|
+
}
|
|
3139
3196
|
};
|
|
3140
|
-
__name(_ListKxDataviewsCommand, "ListKxDataviewsCommand");
|
|
3141
|
-
var ListKxDataviewsCommand = _ListKxDataviewsCommand;
|
|
3142
3197
|
|
|
3143
3198
|
// src/commands/ListKxEnvironmentsCommand.ts
|
|
3144
3199
|
|
|
3145
3200
|
|
|
3146
3201
|
|
|
3147
|
-
var
|
|
3202
|
+
var ListKxEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3148
3203
|
return [
|
|
3149
3204
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3150
3205
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3151
3206
|
];
|
|
3152
3207
|
}).s("AWSHabaneroManagementService", "ListKxEnvironments", {}).n("FinspaceClient", "ListKxEnvironmentsCommand").f(void 0, void 0).ser(se_ListKxEnvironmentsCommand).de(de_ListKxEnvironmentsCommand).build() {
|
|
3208
|
+
static {
|
|
3209
|
+
__name(this, "ListKxEnvironmentsCommand");
|
|
3210
|
+
}
|
|
3153
3211
|
};
|
|
3154
|
-
__name(_ListKxEnvironmentsCommand, "ListKxEnvironmentsCommand");
|
|
3155
|
-
var ListKxEnvironmentsCommand = _ListKxEnvironmentsCommand;
|
|
3156
3212
|
|
|
3157
3213
|
// src/commands/ListKxScalingGroupsCommand.ts
|
|
3158
3214
|
|
|
3159
3215
|
|
|
3160
3216
|
|
|
3161
|
-
var
|
|
3217
|
+
var ListKxScalingGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3162
3218
|
return [
|
|
3163
3219
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3164
3220
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3165
3221
|
];
|
|
3166
3222
|
}).s("AWSHabaneroManagementService", "ListKxScalingGroups", {}).n("FinspaceClient", "ListKxScalingGroupsCommand").f(void 0, void 0).ser(se_ListKxScalingGroupsCommand).de(de_ListKxScalingGroupsCommand).build() {
|
|
3223
|
+
static {
|
|
3224
|
+
__name(this, "ListKxScalingGroupsCommand");
|
|
3225
|
+
}
|
|
3167
3226
|
};
|
|
3168
|
-
__name(_ListKxScalingGroupsCommand, "ListKxScalingGroupsCommand");
|
|
3169
|
-
var ListKxScalingGroupsCommand = _ListKxScalingGroupsCommand;
|
|
3170
3227
|
|
|
3171
3228
|
// src/commands/ListKxUsersCommand.ts
|
|
3172
3229
|
|
|
3173
3230
|
|
|
3174
3231
|
|
|
3175
|
-
var
|
|
3232
|
+
var ListKxUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3176
3233
|
return [
|
|
3177
3234
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3178
3235
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3179
3236
|
];
|
|
3180
3237
|
}).s("AWSHabaneroManagementService", "ListKxUsers", {}).n("FinspaceClient", "ListKxUsersCommand").f(void 0, void 0).ser(se_ListKxUsersCommand).de(de_ListKxUsersCommand).build() {
|
|
3238
|
+
static {
|
|
3239
|
+
__name(this, "ListKxUsersCommand");
|
|
3240
|
+
}
|
|
3181
3241
|
};
|
|
3182
|
-
__name(_ListKxUsersCommand, "ListKxUsersCommand");
|
|
3183
|
-
var ListKxUsersCommand = _ListKxUsersCommand;
|
|
3184
3242
|
|
|
3185
3243
|
// src/commands/ListKxVolumesCommand.ts
|
|
3186
3244
|
|
|
3187
3245
|
|
|
3188
3246
|
|
|
3189
|
-
var
|
|
3247
|
+
var ListKxVolumesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3190
3248
|
return [
|
|
3191
3249
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3192
3250
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3193
3251
|
];
|
|
3194
3252
|
}).s("AWSHabaneroManagementService", "ListKxVolumes", {}).n("FinspaceClient", "ListKxVolumesCommand").f(void 0, void 0).ser(se_ListKxVolumesCommand).de(de_ListKxVolumesCommand).build() {
|
|
3253
|
+
static {
|
|
3254
|
+
__name(this, "ListKxVolumesCommand");
|
|
3255
|
+
}
|
|
3195
3256
|
};
|
|
3196
|
-
__name(_ListKxVolumesCommand, "ListKxVolumesCommand");
|
|
3197
|
-
var ListKxVolumesCommand = _ListKxVolumesCommand;
|
|
3198
3257
|
|
|
3199
3258
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3200
3259
|
|
|
3201
3260
|
|
|
3202
3261
|
|
|
3203
|
-
var
|
|
3262
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3204
3263
|
return [
|
|
3205
3264
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3206
3265
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3207
3266
|
];
|
|
3208
3267
|
}).s("AWSHabaneroManagementService", "ListTagsForResource", {}).n("FinspaceClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3268
|
+
static {
|
|
3269
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3270
|
+
}
|
|
3209
3271
|
};
|
|
3210
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3211
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3212
3272
|
|
|
3213
3273
|
// src/commands/TagResourceCommand.ts
|
|
3214
3274
|
|
|
3215
3275
|
|
|
3216
3276
|
|
|
3217
|
-
var
|
|
3277
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3218
3278
|
return [
|
|
3219
3279
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3220
3280
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3221
3281
|
];
|
|
3222
3282
|
}).s("AWSHabaneroManagementService", "TagResource", {}).n("FinspaceClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3283
|
+
static {
|
|
3284
|
+
__name(this, "TagResourceCommand");
|
|
3285
|
+
}
|
|
3223
3286
|
};
|
|
3224
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3225
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3226
3287
|
|
|
3227
3288
|
// src/commands/UntagResourceCommand.ts
|
|
3228
3289
|
|
|
3229
3290
|
|
|
3230
3291
|
|
|
3231
|
-
var
|
|
3292
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3232
3293
|
return [
|
|
3233
3294
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3234
3295
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3235
3296
|
];
|
|
3236
3297
|
}).s("AWSHabaneroManagementService", "UntagResource", {}).n("FinspaceClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3298
|
+
static {
|
|
3299
|
+
__name(this, "UntagResourceCommand");
|
|
3300
|
+
}
|
|
3237
3301
|
};
|
|
3238
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3239
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3240
3302
|
|
|
3241
3303
|
// src/commands/UpdateEnvironmentCommand.ts
|
|
3242
3304
|
|
|
3243
3305
|
|
|
3244
3306
|
|
|
3245
|
-
var
|
|
3307
|
+
var UpdateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3246
3308
|
return [
|
|
3247
3309
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3248
3310
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3249
3311
|
];
|
|
3250
3312
|
}).s("AWSHabaneroManagementService", "UpdateEnvironment", {}).n("FinspaceClient", "UpdateEnvironmentCommand").f(void 0, void 0).ser(se_UpdateEnvironmentCommand).de(de_UpdateEnvironmentCommand).build() {
|
|
3313
|
+
static {
|
|
3314
|
+
__name(this, "UpdateEnvironmentCommand");
|
|
3315
|
+
}
|
|
3251
3316
|
};
|
|
3252
|
-
__name(_UpdateEnvironmentCommand, "UpdateEnvironmentCommand");
|
|
3253
|
-
var UpdateEnvironmentCommand = _UpdateEnvironmentCommand;
|
|
3254
3317
|
|
|
3255
3318
|
// src/commands/UpdateKxClusterCodeConfigurationCommand.ts
|
|
3256
3319
|
|
|
3257
3320
|
|
|
3258
3321
|
|
|
3259
|
-
var
|
|
3322
|
+
var UpdateKxClusterCodeConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3260
3323
|
return [
|
|
3261
3324
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3262
3325
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3263
3326
|
];
|
|
3264
3327
|
}).s("AWSHabaneroManagementService", "UpdateKxClusterCodeConfiguration", {}).n("FinspaceClient", "UpdateKxClusterCodeConfigurationCommand").f(void 0, void 0).ser(se_UpdateKxClusterCodeConfigurationCommand).de(de_UpdateKxClusterCodeConfigurationCommand).build() {
|
|
3328
|
+
static {
|
|
3329
|
+
__name(this, "UpdateKxClusterCodeConfigurationCommand");
|
|
3330
|
+
}
|
|
3265
3331
|
};
|
|
3266
|
-
__name(_UpdateKxClusterCodeConfigurationCommand, "UpdateKxClusterCodeConfigurationCommand");
|
|
3267
|
-
var UpdateKxClusterCodeConfigurationCommand = _UpdateKxClusterCodeConfigurationCommand;
|
|
3268
3332
|
|
|
3269
3333
|
// src/commands/UpdateKxClusterDatabasesCommand.ts
|
|
3270
3334
|
|
|
3271
3335
|
|
|
3272
3336
|
|
|
3273
|
-
var
|
|
3337
|
+
var UpdateKxClusterDatabasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3274
3338
|
return [
|
|
3275
3339
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3276
3340
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3277
3341
|
];
|
|
3278
3342
|
}).s("AWSHabaneroManagementService", "UpdateKxClusterDatabases", {}).n("FinspaceClient", "UpdateKxClusterDatabasesCommand").f(void 0, void 0).ser(se_UpdateKxClusterDatabasesCommand).de(de_UpdateKxClusterDatabasesCommand).build() {
|
|
3343
|
+
static {
|
|
3344
|
+
__name(this, "UpdateKxClusterDatabasesCommand");
|
|
3345
|
+
}
|
|
3279
3346
|
};
|
|
3280
|
-
__name(_UpdateKxClusterDatabasesCommand, "UpdateKxClusterDatabasesCommand");
|
|
3281
|
-
var UpdateKxClusterDatabasesCommand = _UpdateKxClusterDatabasesCommand;
|
|
3282
3347
|
|
|
3283
3348
|
// src/commands/UpdateKxDatabaseCommand.ts
|
|
3284
3349
|
|
|
3285
3350
|
|
|
3286
3351
|
|
|
3287
|
-
var
|
|
3352
|
+
var UpdateKxDatabaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3288
3353
|
return [
|
|
3289
3354
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3290
3355
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3291
3356
|
];
|
|
3292
3357
|
}).s("AWSHabaneroManagementService", "UpdateKxDatabase", {}).n("FinspaceClient", "UpdateKxDatabaseCommand").f(void 0, void 0).ser(se_UpdateKxDatabaseCommand).de(de_UpdateKxDatabaseCommand).build() {
|
|
3358
|
+
static {
|
|
3359
|
+
__name(this, "UpdateKxDatabaseCommand");
|
|
3360
|
+
}
|
|
3293
3361
|
};
|
|
3294
|
-
__name(_UpdateKxDatabaseCommand, "UpdateKxDatabaseCommand");
|
|
3295
|
-
var UpdateKxDatabaseCommand = _UpdateKxDatabaseCommand;
|
|
3296
3362
|
|
|
3297
3363
|
// src/commands/UpdateKxDataviewCommand.ts
|
|
3298
3364
|
|
|
3299
3365
|
|
|
3300
3366
|
|
|
3301
|
-
var
|
|
3367
|
+
var UpdateKxDataviewCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3302
3368
|
return [
|
|
3303
3369
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3304
3370
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3305
3371
|
];
|
|
3306
3372
|
}).s("AWSHabaneroManagementService", "UpdateKxDataview", {}).n("FinspaceClient", "UpdateKxDataviewCommand").f(void 0, void 0).ser(se_UpdateKxDataviewCommand).de(de_UpdateKxDataviewCommand).build() {
|
|
3373
|
+
static {
|
|
3374
|
+
__name(this, "UpdateKxDataviewCommand");
|
|
3375
|
+
}
|
|
3307
3376
|
};
|
|
3308
|
-
__name(_UpdateKxDataviewCommand, "UpdateKxDataviewCommand");
|
|
3309
|
-
var UpdateKxDataviewCommand = _UpdateKxDataviewCommand;
|
|
3310
3377
|
|
|
3311
3378
|
// src/commands/UpdateKxEnvironmentCommand.ts
|
|
3312
3379
|
|
|
3313
3380
|
|
|
3314
3381
|
|
|
3315
|
-
var
|
|
3382
|
+
var UpdateKxEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3316
3383
|
return [
|
|
3317
3384
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3318
3385
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3319
3386
|
];
|
|
3320
3387
|
}).s("AWSHabaneroManagementService", "UpdateKxEnvironment", {}).n("FinspaceClient", "UpdateKxEnvironmentCommand").f(void 0, void 0).ser(se_UpdateKxEnvironmentCommand).de(de_UpdateKxEnvironmentCommand).build() {
|
|
3388
|
+
static {
|
|
3389
|
+
__name(this, "UpdateKxEnvironmentCommand");
|
|
3390
|
+
}
|
|
3321
3391
|
};
|
|
3322
|
-
__name(_UpdateKxEnvironmentCommand, "UpdateKxEnvironmentCommand");
|
|
3323
|
-
var UpdateKxEnvironmentCommand = _UpdateKxEnvironmentCommand;
|
|
3324
3392
|
|
|
3325
3393
|
// src/commands/UpdateKxEnvironmentNetworkCommand.ts
|
|
3326
3394
|
|
|
3327
3395
|
|
|
3328
3396
|
|
|
3329
|
-
var
|
|
3397
|
+
var UpdateKxEnvironmentNetworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3330
3398
|
return [
|
|
3331
3399
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3332
3400
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3333
3401
|
];
|
|
3334
3402
|
}).s("AWSHabaneroManagementService", "UpdateKxEnvironmentNetwork", {}).n("FinspaceClient", "UpdateKxEnvironmentNetworkCommand").f(void 0, void 0).ser(se_UpdateKxEnvironmentNetworkCommand).de(de_UpdateKxEnvironmentNetworkCommand).build() {
|
|
3403
|
+
static {
|
|
3404
|
+
__name(this, "UpdateKxEnvironmentNetworkCommand");
|
|
3405
|
+
}
|
|
3335
3406
|
};
|
|
3336
|
-
__name(_UpdateKxEnvironmentNetworkCommand, "UpdateKxEnvironmentNetworkCommand");
|
|
3337
|
-
var UpdateKxEnvironmentNetworkCommand = _UpdateKxEnvironmentNetworkCommand;
|
|
3338
3407
|
|
|
3339
3408
|
// src/commands/UpdateKxUserCommand.ts
|
|
3340
3409
|
|
|
3341
3410
|
|
|
3342
3411
|
|
|
3343
|
-
var
|
|
3412
|
+
var UpdateKxUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3344
3413
|
return [
|
|
3345
3414
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3346
3415
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3347
3416
|
];
|
|
3348
3417
|
}).s("AWSHabaneroManagementService", "UpdateKxUser", {}).n("FinspaceClient", "UpdateKxUserCommand").f(void 0, void 0).ser(se_UpdateKxUserCommand).de(de_UpdateKxUserCommand).build() {
|
|
3418
|
+
static {
|
|
3419
|
+
__name(this, "UpdateKxUserCommand");
|
|
3420
|
+
}
|
|
3349
3421
|
};
|
|
3350
|
-
__name(_UpdateKxUserCommand, "UpdateKxUserCommand");
|
|
3351
|
-
var UpdateKxUserCommand = _UpdateKxUserCommand;
|
|
3352
3422
|
|
|
3353
3423
|
// src/commands/UpdateKxVolumeCommand.ts
|
|
3354
3424
|
|
|
3355
3425
|
|
|
3356
3426
|
|
|
3357
|
-
var
|
|
3427
|
+
var UpdateKxVolumeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3358
3428
|
return [
|
|
3359
3429
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3360
3430
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3361
3431
|
];
|
|
3362
3432
|
}).s("AWSHabaneroManagementService", "UpdateKxVolume", {}).n("FinspaceClient", "UpdateKxVolumeCommand").f(void 0, void 0).ser(se_UpdateKxVolumeCommand).de(de_UpdateKxVolumeCommand).build() {
|
|
3433
|
+
static {
|
|
3434
|
+
__name(this, "UpdateKxVolumeCommand");
|
|
3435
|
+
}
|
|
3363
3436
|
};
|
|
3364
|
-
__name(_UpdateKxVolumeCommand, "UpdateKxVolumeCommand");
|
|
3365
|
-
var UpdateKxVolumeCommand = _UpdateKxVolumeCommand;
|
|
3366
3437
|
|
|
3367
3438
|
// src/Finspace.ts
|
|
3368
3439
|
var commands = {
|
|
@@ -3417,10 +3488,11 @@ var commands = {
|
|
|
3417
3488
|
UpdateKxUserCommand,
|
|
3418
3489
|
UpdateKxVolumeCommand
|
|
3419
3490
|
};
|
|
3420
|
-
var
|
|
3491
|
+
var Finspace = class extends FinspaceClient {
|
|
3492
|
+
static {
|
|
3493
|
+
__name(this, "Finspace");
|
|
3494
|
+
}
|
|
3421
3495
|
};
|
|
3422
|
-
__name(_Finspace, "Finspace");
|
|
3423
|
-
var Finspace = _Finspace;
|
|
3424
3496
|
(0, import_smithy_client.createAggregatedClient)(commands, Finspace);
|
|
3425
3497
|
|
|
3426
3498
|
// src/pagination/ListKxChangesetsPaginator.ts
|