@aws-sdk/client-timestream-influxdb 3.926.0 → 3.928.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.
Files changed (41) hide show
  1. package/dist-cjs/index.js +1088 -852
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/TimestreamInfluxDBClient.js +2 -0
  4. package/dist-es/commands/CreateDbClusterCommand.js +3 -10
  5. package/dist-es/commands/CreateDbInstanceCommand.js +3 -10
  6. package/dist-es/commands/CreateDbParameterGroupCommand.js +3 -9
  7. package/dist-es/commands/DeleteDbClusterCommand.js +3 -9
  8. package/dist-es/commands/DeleteDbInstanceCommand.js +3 -9
  9. package/dist-es/commands/GetDbClusterCommand.js +3 -9
  10. package/dist-es/commands/GetDbInstanceCommand.js +3 -9
  11. package/dist-es/commands/GetDbParameterGroupCommand.js +3 -9
  12. package/dist-es/commands/ListDbClustersCommand.js +3 -9
  13. package/dist-es/commands/ListDbInstancesCommand.js +3 -9
  14. package/dist-es/commands/ListDbInstancesForClusterCommand.js +3 -9
  15. package/dist-es/commands/ListDbParameterGroupsCommand.js +3 -9
  16. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  17. package/dist-es/commands/TagResourceCommand.js +3 -9
  18. package/dist-es/commands/UntagResourceCommand.js +3 -9
  19. package/dist-es/commands/UpdateDbClusterCommand.js +3 -9
  20. package/dist-es/commands/UpdateDbInstanceCommand.js +3 -9
  21. package/dist-es/models/models_0.js +0 -11
  22. package/dist-es/runtimeConfig.shared.js +7 -0
  23. package/dist-es/schemas/schemas_0.js +1037 -0
  24. package/dist-types/TimestreamInfluxDBClient.d.ts +10 -1
  25. package/dist-types/models/models_0.d.ts +0 -8
  26. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  27. package/dist-types/runtimeConfig.d.ts +1 -0
  28. package/dist-types/runtimeConfig.native.d.ts +1 -0
  29. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  30. package/dist-types/schemas/schemas_0.d.ts +83 -0
  31. package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +4 -0
  32. package/dist-types/ts3.4/models/models_0.d.ts +0 -6
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +89 -0
  38. package/package.json +5 -5
  39. package/dist-es/protocols/Aws_json1_0.js +0 -704
  40. package/dist-types/protocols/Aws_json1_0.d.ts +0 -155
  41. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -209
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class TimestreamInfluxDBClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,14 +110,14 @@ class TimestreamInfluxDBClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class TimestreamInfluxDBServiceException extends smithyClient.ServiceException {
113
+ let TimestreamInfluxDBServiceException$1 = class TimestreamInfluxDBServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, TimestreamInfluxDBServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- class AccessDeniedException extends TimestreamInfluxDBServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends TimestreamInfluxDBServiceException$1 {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ class AccessDeniedException extends TimestreamInfluxDBServiceException {
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- }
132
- class ConflictException extends TimestreamInfluxDBServiceException {
131
+ };
132
+ let ConflictException$1 = class ConflictException extends TimestreamInfluxDBServiceException$1 {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  resourceId;
@@ -144,7 +144,7 @@ class ConflictException extends TimestreamInfluxDBServiceException {
144
144
  this.resourceId = opts.resourceId;
145
145
  this.resourceType = opts.resourceType;
146
146
  }
147
- }
147
+ };
148
148
  const DbInstanceType = {
149
149
  DB_INFLUX_12XLARGE: "db.influx.12xlarge",
150
150
  DB_INFLUX_16XLARGE: "db.influx.16xlarge",
@@ -181,7 +181,7 @@ const ClusterStatus = {
181
181
  MAINTENANCE: "MAINTENANCE",
182
182
  UPDATING: "UPDATING",
183
183
  };
184
- class InternalServerException extends TimestreamInfluxDBServiceException {
184
+ let InternalServerException$1 = class InternalServerException extends TimestreamInfluxDBServiceException$1 {
185
185
  name = "InternalServerException";
186
186
  $fault = "server";
187
187
  $retryable = {};
@@ -193,8 +193,8 @@ class InternalServerException extends TimestreamInfluxDBServiceException {
193
193
  });
194
194
  Object.setPrototypeOf(this, InternalServerException.prototype);
195
195
  }
196
- }
197
- class ResourceNotFoundException extends TimestreamInfluxDBServiceException {
196
+ };
197
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends TimestreamInfluxDBServiceException$1 {
198
198
  name = "ResourceNotFoundException";
199
199
  $fault = "client";
200
200
  resourceId;
@@ -209,8 +209,8 @@ class ResourceNotFoundException extends TimestreamInfluxDBServiceException {
209
209
  this.resourceId = opts.resourceId;
210
210
  this.resourceType = opts.resourceType;
211
211
  }
212
- }
213
- class ServiceQuotaExceededException extends TimestreamInfluxDBServiceException {
212
+ };
213
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends TimestreamInfluxDBServiceException$1 {
214
214
  name = "ServiceQuotaExceededException";
215
215
  $fault = "client";
216
216
  constructor(opts) {
@@ -221,8 +221,8 @@ class ServiceQuotaExceededException extends TimestreamInfluxDBServiceException {
221
221
  });
222
222
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
223
223
  }
224
- }
225
- class ThrottlingException extends TimestreamInfluxDBServiceException {
224
+ };
225
+ let ThrottlingException$1 = class ThrottlingException extends TimestreamInfluxDBServiceException$1 {
226
226
  name = "ThrottlingException";
227
227
  $fault = "client";
228
228
  $retryable = {};
@@ -236,12 +236,12 @@ class ThrottlingException extends TimestreamInfluxDBServiceException {
236
236
  Object.setPrototypeOf(this, ThrottlingException.prototype);
237
237
  this.retryAfterSeconds = opts.retryAfterSeconds;
238
238
  }
239
- }
239
+ };
240
240
  const ValidationExceptionReason = {
241
241
  FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
242
242
  OTHER: "OTHER",
243
243
  };
244
- class ValidationException extends TimestreamInfluxDBServiceException {
244
+ let ValidationException$1 = class ValidationException extends TimestreamInfluxDBServiceException$1 {
245
245
  name = "ValidationException";
246
246
  $fault = "client";
247
247
  reason;
@@ -254,7 +254,7 @@ class ValidationException extends TimestreamInfluxDBServiceException {
254
254
  Object.setPrototypeOf(this, ValidationException.prototype);
255
255
  this.reason = opts.reason;
256
256
  }
257
- }
257
+ };
258
258
  const EngineType = {
259
259
  INFLUXDB_V2: "INFLUXDB_V2",
260
260
  INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE",
@@ -331,727 +331,1045 @@ exports._Parameters = void 0;
331
331
  return visitor._(value.$unknown[0], value.$unknown[1]);
332
332
  };
333
333
  })(exports._Parameters || (exports._Parameters = {}));
334
- const CreateDbClusterInputFilterSensitiveLog = (obj) => ({
335
- ...obj,
336
- ...(obj.username && { username: smithyClient.SENSITIVE_STRING }),
337
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
338
- });
339
- const CreateDbInstanceInputFilterSensitiveLog = (obj) => ({
340
- ...obj,
341
- ...(obj.username && { username: smithyClient.SENSITIVE_STRING }),
342
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
343
- });
344
334
 
345
- const se_CreateDbClusterCommand = async (input, context) => {
346
- const headers = sharedHeaders("CreateDbCluster");
347
- let body;
348
- body = JSON.stringify(smithyClient._json(input));
349
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
350
- };
351
- const se_CreateDbInstanceCommand = async (input, context) => {
352
- const headers = sharedHeaders("CreateDbInstance");
353
- let body;
354
- body = JSON.stringify(smithyClient._json(input));
355
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
356
- };
357
- const se_CreateDbParameterGroupCommand = async (input, context) => {
358
- const headers = sharedHeaders("CreateDbParameterGroup");
359
- let body;
360
- body = JSON.stringify(se_CreateDbParameterGroupInput(input));
361
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
362
- };
363
- const se_DeleteDbClusterCommand = async (input, context) => {
364
- const headers = sharedHeaders("DeleteDbCluster");
365
- let body;
366
- body = JSON.stringify(smithyClient._json(input));
367
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
368
- };
369
- const se_DeleteDbInstanceCommand = async (input, context) => {
370
- const headers = sharedHeaders("DeleteDbInstance");
371
- let body;
372
- body = JSON.stringify(smithyClient._json(input));
373
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
374
- };
375
- const se_GetDbClusterCommand = async (input, context) => {
376
- const headers = sharedHeaders("GetDbCluster");
377
- let body;
378
- body = JSON.stringify(smithyClient._json(input));
379
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
380
- };
381
- const se_GetDbInstanceCommand = async (input, context) => {
382
- const headers = sharedHeaders("GetDbInstance");
383
- let body;
384
- body = JSON.stringify(smithyClient._json(input));
385
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
386
- };
387
- const se_GetDbParameterGroupCommand = async (input, context) => {
388
- const headers = sharedHeaders("GetDbParameterGroup");
389
- let body;
390
- body = JSON.stringify(smithyClient._json(input));
391
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
392
- };
393
- const se_ListDbClustersCommand = async (input, context) => {
394
- const headers = sharedHeaders("ListDbClusters");
395
- let body;
396
- body = JSON.stringify(smithyClient._json(input));
397
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
398
- };
399
- const se_ListDbInstancesCommand = async (input, context) => {
400
- const headers = sharedHeaders("ListDbInstances");
401
- let body;
402
- body = JSON.stringify(smithyClient._json(input));
403
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
404
- };
405
- const se_ListDbInstancesForClusterCommand = async (input, context) => {
406
- const headers = sharedHeaders("ListDbInstancesForCluster");
407
- let body;
408
- body = JSON.stringify(smithyClient._json(input));
409
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
410
- };
411
- const se_ListDbParameterGroupsCommand = async (input, context) => {
412
- const headers = sharedHeaders("ListDbParameterGroups");
413
- let body;
414
- body = JSON.stringify(smithyClient._json(input));
415
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
416
- };
417
- const se_ListTagsForResourceCommand = async (input, context) => {
418
- const headers = sharedHeaders("ListTagsForResource");
419
- let body;
420
- body = JSON.stringify(smithyClient._json(input));
421
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
422
- };
423
- const se_TagResourceCommand = async (input, context) => {
424
- const headers = sharedHeaders("TagResource");
425
- let body;
426
- body = JSON.stringify(smithyClient._json(input));
427
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
428
- };
429
- const se_UntagResourceCommand = async (input, context) => {
430
- const headers = sharedHeaders("UntagResource");
431
- let body;
432
- body = JSON.stringify(smithyClient._json(input));
433
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
434
- };
435
- const se_UpdateDbClusterCommand = async (input, context) => {
436
- const headers = sharedHeaders("UpdateDbCluster");
437
- let body;
438
- body = JSON.stringify(smithyClient._json(input));
439
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
440
- };
441
- const se_UpdateDbInstanceCommand = async (input, context) => {
442
- const headers = sharedHeaders("UpdateDbInstance");
443
- let body;
444
- body = JSON.stringify(smithyClient._json(input));
445
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
446
- };
447
- const de_CreateDbClusterCommand = async (output, context) => {
448
- if (output.statusCode >= 300) {
449
- return de_CommandError(output, context);
450
- }
451
- const data = await core$1.parseJsonBody(output.body, context);
452
- let contents = {};
453
- contents = smithyClient._json(data);
454
- const response = {
455
- $metadata: deserializeMetadata(output),
456
- ...contents,
457
- };
458
- return response;
459
- };
460
- const de_CreateDbInstanceCommand = async (output, context) => {
461
- if (output.statusCode >= 300) {
462
- return de_CommandError(output, context);
463
- }
464
- const data = await core$1.parseJsonBody(output.body, context);
465
- let contents = {};
466
- contents = smithyClient._json(data);
467
- const response = {
468
- $metadata: deserializeMetadata(output),
469
- ...contents,
470
- };
471
- return response;
472
- };
473
- const de_CreateDbParameterGroupCommand = async (output, context) => {
474
- if (output.statusCode >= 300) {
475
- return de_CommandError(output, context);
476
- }
477
- const data = await core$1.parseJsonBody(output.body, context);
478
- let contents = {};
479
- contents = de_CreateDbParameterGroupOutput(data);
480
- const response = {
481
- $metadata: deserializeMetadata(output),
482
- ...contents,
483
- };
484
- return response;
485
- };
486
- const de_DeleteDbClusterCommand = async (output, context) => {
487
- if (output.statusCode >= 300) {
488
- return de_CommandError(output, context);
489
- }
490
- const data = await core$1.parseJsonBody(output.body, context);
491
- let contents = {};
492
- contents = smithyClient._json(data);
493
- const response = {
494
- $metadata: deserializeMetadata(output),
495
- ...contents,
496
- };
497
- return response;
498
- };
499
- const de_DeleteDbInstanceCommand = async (output, context) => {
500
- if (output.statusCode >= 300) {
501
- return de_CommandError(output, context);
502
- }
503
- const data = await core$1.parseJsonBody(output.body, context);
504
- let contents = {};
505
- contents = smithyClient._json(data);
506
- const response = {
507
- $metadata: deserializeMetadata(output),
508
- ...contents,
509
- };
510
- return response;
511
- };
512
- const de_GetDbClusterCommand = async (output, context) => {
513
- if (output.statusCode >= 300) {
514
- return de_CommandError(output, context);
515
- }
516
- const data = await core$1.parseJsonBody(output.body, context);
517
- let contents = {};
518
- contents = smithyClient._json(data);
519
- const response = {
520
- $metadata: deserializeMetadata(output),
521
- ...contents,
522
- };
523
- return response;
524
- };
525
- const de_GetDbInstanceCommand = async (output, context) => {
526
- if (output.statusCode >= 300) {
527
- return de_CommandError(output, context);
528
- }
529
- const data = await core$1.parseJsonBody(output.body, context);
530
- let contents = {};
531
- contents = smithyClient._json(data);
532
- const response = {
533
- $metadata: deserializeMetadata(output),
534
- ...contents,
535
- };
536
- return response;
537
- };
538
- const de_GetDbParameterGroupCommand = async (output, context) => {
539
- if (output.statusCode >= 300) {
540
- return de_CommandError(output, context);
541
- }
542
- const data = await core$1.parseJsonBody(output.body, context);
543
- let contents = {};
544
- contents = de_GetDbParameterGroupOutput(data);
545
- const response = {
546
- $metadata: deserializeMetadata(output),
547
- ...contents,
548
- };
549
- return response;
550
- };
551
- const de_ListDbClustersCommand = async (output, context) => {
552
- if (output.statusCode >= 300) {
553
- return de_CommandError(output, context);
554
- }
555
- const data = await core$1.parseJsonBody(output.body, context);
556
- let contents = {};
557
- contents = smithyClient._json(data);
558
- const response = {
559
- $metadata: deserializeMetadata(output),
560
- ...contents,
561
- };
562
- return response;
563
- };
564
- const de_ListDbInstancesCommand = async (output, context) => {
565
- if (output.statusCode >= 300) {
566
- return de_CommandError(output, context);
567
- }
568
- const data = await core$1.parseJsonBody(output.body, context);
569
- let contents = {};
570
- contents = smithyClient._json(data);
571
- const response = {
572
- $metadata: deserializeMetadata(output),
573
- ...contents,
574
- };
575
- return response;
576
- };
577
- const de_ListDbInstancesForClusterCommand = async (output, context) => {
578
- if (output.statusCode >= 300) {
579
- return de_CommandError(output, context);
580
- }
581
- const data = await core$1.parseJsonBody(output.body, context);
582
- let contents = {};
583
- contents = smithyClient._json(data);
584
- const response = {
585
- $metadata: deserializeMetadata(output),
586
- ...contents,
587
- };
588
- return response;
589
- };
590
- const de_ListDbParameterGroupsCommand = async (output, context) => {
591
- if (output.statusCode >= 300) {
592
- return de_CommandError(output, context);
593
- }
594
- const data = await core$1.parseJsonBody(output.body, context);
595
- let contents = {};
596
- contents = smithyClient._json(data);
597
- const response = {
598
- $metadata: deserializeMetadata(output),
599
- ...contents,
600
- };
601
- return response;
602
- };
603
- const de_ListTagsForResourceCommand = async (output, context) => {
604
- if (output.statusCode >= 300) {
605
- return de_CommandError(output, context);
606
- }
607
- const data = await core$1.parseJsonBody(output.body, context);
608
- let contents = {};
609
- contents = smithyClient._json(data);
610
- const response = {
611
- $metadata: deserializeMetadata(output),
612
- ...contents,
613
- };
614
- return response;
615
- };
616
- const de_TagResourceCommand = async (output, context) => {
617
- if (output.statusCode >= 300) {
618
- return de_CommandError(output, context);
619
- }
620
- await smithyClient.collectBody(output.body, context);
621
- const response = {
622
- $metadata: deserializeMetadata(output),
623
- };
624
- return response;
625
- };
626
- const de_UntagResourceCommand = async (output, context) => {
627
- if (output.statusCode >= 300) {
628
- return de_CommandError(output, context);
629
- }
630
- await smithyClient.collectBody(output.body, context);
631
- const response = {
632
- $metadata: deserializeMetadata(output),
633
- };
634
- return response;
635
- };
636
- const de_UpdateDbClusterCommand = async (output, context) => {
637
- if (output.statusCode >= 300) {
638
- return de_CommandError(output, context);
639
- }
640
- const data = await core$1.parseJsonBody(output.body, context);
641
- let contents = {};
642
- contents = smithyClient._json(data);
643
- const response = {
644
- $metadata: deserializeMetadata(output),
645
- ...contents,
646
- };
647
- return response;
648
- };
649
- const de_UpdateDbInstanceCommand = async (output, context) => {
650
- if (output.statusCode >= 300) {
651
- return de_CommandError(output, context);
652
- }
653
- const data = await core$1.parseJsonBody(output.body, context);
654
- let contents = {};
655
- contents = smithyClient._json(data);
656
- const response = {
657
- $metadata: deserializeMetadata(output),
658
- ...contents,
659
- };
660
- return response;
661
- };
662
- const de_CommandError = async (output, context) => {
663
- const parsedOutput = {
664
- ...output,
665
- body: await core$1.parseJsonErrorBody(output.body, context),
666
- };
667
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
668
- switch (errorCode) {
669
- case "AccessDeniedException":
670
- case "com.amazonaws.timestreaminfluxdb#AccessDeniedException":
671
- throw await de_AccessDeniedExceptionRes(parsedOutput);
672
- case "ConflictException":
673
- case "com.amazonaws.timestreaminfluxdb#ConflictException":
674
- throw await de_ConflictExceptionRes(parsedOutput);
675
- case "InternalServerException":
676
- case "com.amazonaws.timestreaminfluxdb#InternalServerException":
677
- throw await de_InternalServerExceptionRes(parsedOutput);
678
- case "ResourceNotFoundException":
679
- case "com.amazonaws.timestreaminfluxdb#ResourceNotFoundException":
680
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
681
- case "ServiceQuotaExceededException":
682
- case "com.amazonaws.timestreaminfluxdb#ServiceQuotaExceededException":
683
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
684
- case "ThrottlingException":
685
- case "com.amazonaws.timestreaminfluxdb#ThrottlingException":
686
- throw await de_ThrottlingExceptionRes(parsedOutput);
687
- case "ValidationException":
688
- case "com.amazonaws.timestreaminfluxdb#ValidationException":
689
- throw await de_ValidationExceptionRes(parsedOutput);
690
- default:
691
- const parsedBody = parsedOutput.body;
692
- return throwDefaultError({
693
- output,
694
- parsedBody,
695
- errorCode,
696
- });
697
- }
698
- };
699
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
700
- const body = parsedOutput.body;
701
- const deserialized = smithyClient._json(body);
702
- const exception = new AccessDeniedException({
703
- $metadata: deserializeMetadata(parsedOutput),
704
- ...deserialized,
705
- });
706
- return smithyClient.decorateServiceException(exception, body);
707
- };
708
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
709
- const body = parsedOutput.body;
710
- const deserialized = smithyClient._json(body);
711
- const exception = new ConflictException({
712
- $metadata: deserializeMetadata(parsedOutput),
713
- ...deserialized,
714
- });
715
- return smithyClient.decorateServiceException(exception, body);
716
- };
717
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
718
- const body = parsedOutput.body;
719
- const deserialized = smithyClient._json(body);
720
- const exception = new InternalServerException({
721
- $metadata: deserializeMetadata(parsedOutput),
722
- ...deserialized,
723
- });
724
- return smithyClient.decorateServiceException(exception, body);
725
- };
726
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
727
- const body = parsedOutput.body;
728
- const deserialized = smithyClient._json(body);
729
- const exception = new ResourceNotFoundException({
730
- $metadata: deserializeMetadata(parsedOutput),
731
- ...deserialized,
732
- });
733
- return smithyClient.decorateServiceException(exception, body);
734
- };
735
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
736
- const body = parsedOutput.body;
737
- const deserialized = smithyClient._json(body);
738
- const exception = new ServiceQuotaExceededException({
739
- $metadata: deserializeMetadata(parsedOutput),
740
- ...deserialized,
741
- });
742
- return smithyClient.decorateServiceException(exception, body);
743
- };
744
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
745
- const body = parsedOutput.body;
746
- const deserialized = smithyClient._json(body);
747
- const exception = new ThrottlingException({
748
- $metadata: deserializeMetadata(parsedOutput),
749
- ...deserialized,
750
- });
751
- return smithyClient.decorateServiceException(exception, body);
752
- };
753
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
754
- const body = parsedOutput.body;
755
- const deserialized = smithyClient._json(body);
756
- const exception = new ValidationException({
757
- $metadata: deserializeMetadata(parsedOutput),
758
- ...deserialized,
759
- });
760
- return smithyClient.decorateServiceException(exception, body);
761
- };
762
- const se_CreateDbParameterGroupInput = (input, context) => {
763
- return smithyClient.take(input, {
764
- description: [],
765
- name: [],
766
- parameters: (_) => se__Parameters(_),
767
- tags: smithyClient._json,
768
- });
769
- };
770
- const se_InfluxDBv3CoreParameters = (input, context) => {
771
- return smithyClient.take(input, {
772
- dataFusionConfig: [],
773
- dataFusionMaxParquetFanout: [],
774
- dataFusionNumThreads: [],
775
- dataFusionRuntimeDisableLifoSlot: [],
776
- dataFusionRuntimeEventInterval: [],
777
- dataFusionRuntimeGlobalQueueInterval: [],
778
- dataFusionRuntimeMaxBlockingThreads: [],
779
- dataFusionRuntimeMaxIoEventsPerTick: [],
780
- dataFusionRuntimeThreadKeepAlive: smithyClient._json,
781
- dataFusionRuntimeThreadPriority: [],
782
- dataFusionRuntimeType: [],
783
- dataFusionUseCachedParquetLoader: [],
784
- deleteGracePeriod: smithyClient._json,
785
- disableParquetMemCache: [],
786
- distinctCacheEvictionInterval: smithyClient._json,
787
- execMemPoolBytes: smithyClient._json,
788
- forceSnapshotMemThreshold: smithyClient._json,
789
- gen1Duration: smithyClient._json,
790
- gen1LookbackDuration: smithyClient._json,
791
- hardDeleteDefaultDuration: smithyClient._json,
792
- lastCacheEvictionInterval: smithyClient._json,
793
- logFilter: [],
794
- logFormat: [],
795
- maxHttpRequestSize: [],
796
- parquetMemCachePruneInterval: smithyClient._json,
797
- parquetMemCachePrunePercentage: smithyClient.serializeFloat,
798
- parquetMemCacheQueryPathDuration: smithyClient._json,
799
- parquetMemCacheSize: smithyClient._json,
800
- preemptiveCacheAge: smithyClient._json,
801
- queryFileLimit: [],
802
- queryLogSize: [],
803
- retentionCheckInterval: smithyClient._json,
804
- snapshottedWalFilesToKeep: [],
805
- tableIndexCacheConcurrencyLimit: [],
806
- tableIndexCacheMaxEntries: [],
807
- walMaxWriteBufferSize: [],
808
- walReplayConcurrencyLimit: [],
809
- walReplayFailOnError: [],
810
- walSnapshotSize: [],
811
- });
812
- };
813
- const se_InfluxDBv3EnterpriseParameters = (input, context) => {
814
- return smithyClient.take(input, {
815
- catalogSyncInterval: smithyClient._json,
816
- compactionCheckInterval: smithyClient._json,
817
- compactionCleanupWait: smithyClient._json,
818
- compactionGen2Duration: smithyClient._json,
819
- compactionMaxNumFilesPerPlan: [],
820
- compactionMultipliers: [],
821
- compactionRowLimit: [],
822
- dataFusionConfig: [],
823
- dataFusionMaxParquetFanout: [],
824
- dataFusionNumThreads: [],
825
- dataFusionRuntimeDisableLifoSlot: [],
826
- dataFusionRuntimeEventInterval: [],
827
- dataFusionRuntimeGlobalQueueInterval: [],
828
- dataFusionRuntimeMaxBlockingThreads: [],
829
- dataFusionRuntimeMaxIoEventsPerTick: [],
830
- dataFusionRuntimeThreadKeepAlive: smithyClient._json,
831
- dataFusionRuntimeThreadPriority: [],
832
- dataFusionRuntimeType: [],
833
- dataFusionUseCachedParquetLoader: [],
834
- dedicatedCompactor: [],
835
- deleteGracePeriod: smithyClient._json,
836
- disableParquetMemCache: [],
837
- distinctCacheEvictionInterval: smithyClient._json,
838
- distinctValueCacheDisableFromHistory: [],
839
- execMemPoolBytes: smithyClient._json,
840
- forceSnapshotMemThreshold: smithyClient._json,
841
- gen1Duration: smithyClient._json,
842
- gen1LookbackDuration: smithyClient._json,
843
- hardDeleteDefaultDuration: smithyClient._json,
844
- ingestQueryInstances: [],
845
- lastCacheEvictionInterval: smithyClient._json,
846
- lastValueCacheDisableFromHistory: [],
847
- logFilter: [],
848
- logFormat: [],
849
- maxHttpRequestSize: [],
850
- parquetMemCachePruneInterval: smithyClient._json,
851
- parquetMemCachePrunePercentage: smithyClient.serializeFloat,
852
- parquetMemCacheQueryPathDuration: smithyClient._json,
853
- parquetMemCacheSize: smithyClient._json,
854
- preemptiveCacheAge: smithyClient._json,
855
- queryFileLimit: [],
856
- queryLogSize: [],
857
- queryOnlyInstances: [],
858
- replicationInterval: smithyClient._json,
859
- retentionCheckInterval: smithyClient._json,
860
- snapshottedWalFilesToKeep: [],
861
- tableIndexCacheConcurrencyLimit: [],
862
- tableIndexCacheMaxEntries: [],
863
- walMaxWriteBufferSize: [],
864
- walReplayConcurrencyLimit: [],
865
- walReplayFailOnError: [],
866
- walSnapshotSize: [],
867
- });
868
- };
869
- const se__Parameters = (input, context) => {
870
- return exports._Parameters.visit(input, {
871
- InfluxDBv2: (value) => ({ InfluxDBv2: smithyClient._json(value) }),
872
- InfluxDBv3Core: (value) => ({ InfluxDBv3Core: se_InfluxDBv3CoreParameters(value) }),
873
- InfluxDBv3Enterprise: (value) => ({ InfluxDBv3Enterprise: se_InfluxDBv3EnterpriseParameters(value) }),
874
- _: (name, value) => ({ [name]: value }),
875
- });
876
- };
877
- const de_CreateDbParameterGroupOutput = (output, context) => {
878
- return smithyClient.take(output, {
879
- arn: smithyClient.expectString,
880
- description: smithyClient.expectString,
881
- id: smithyClient.expectString,
882
- name: smithyClient.expectString,
883
- parameters: (_) => de__Parameters(core$1.awsExpectUnion(_)),
884
- });
885
- };
886
- const de_GetDbParameterGroupOutput = (output, context) => {
887
- return smithyClient.take(output, {
888
- arn: smithyClient.expectString,
889
- description: smithyClient.expectString,
890
- id: smithyClient.expectString,
891
- name: smithyClient.expectString,
892
- parameters: (_) => de__Parameters(core$1.awsExpectUnion(_)),
893
- });
894
- };
895
- const de_InfluxDBv3CoreParameters = (output, context) => {
896
- return smithyClient.take(output, {
897
- dataFusionConfig: smithyClient.expectString,
898
- dataFusionMaxParquetFanout: smithyClient.expectInt32,
899
- dataFusionNumThreads: smithyClient.expectInt32,
900
- dataFusionRuntimeDisableLifoSlot: smithyClient.expectBoolean,
901
- dataFusionRuntimeEventInterval: smithyClient.expectInt32,
902
- dataFusionRuntimeGlobalQueueInterval: smithyClient.expectInt32,
903
- dataFusionRuntimeMaxBlockingThreads: smithyClient.expectInt32,
904
- dataFusionRuntimeMaxIoEventsPerTick: smithyClient.expectInt32,
905
- dataFusionRuntimeThreadKeepAlive: smithyClient._json,
906
- dataFusionRuntimeThreadPriority: smithyClient.expectInt32,
907
- dataFusionRuntimeType: smithyClient.expectString,
908
- dataFusionUseCachedParquetLoader: smithyClient.expectBoolean,
909
- deleteGracePeriod: smithyClient._json,
910
- disableParquetMemCache: smithyClient.expectBoolean,
911
- distinctCacheEvictionInterval: smithyClient._json,
912
- execMemPoolBytes: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
913
- forceSnapshotMemThreshold: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
914
- gen1Duration: smithyClient._json,
915
- gen1LookbackDuration: smithyClient._json,
916
- hardDeleteDefaultDuration: smithyClient._json,
917
- lastCacheEvictionInterval: smithyClient._json,
918
- logFilter: smithyClient.expectString,
919
- logFormat: smithyClient.expectString,
920
- maxHttpRequestSize: smithyClient.expectLong,
921
- parquetMemCachePruneInterval: smithyClient._json,
922
- parquetMemCachePrunePercentage: smithyClient.limitedParseFloat32,
923
- parquetMemCacheQueryPathDuration: smithyClient._json,
924
- parquetMemCacheSize: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
925
- preemptiveCacheAge: smithyClient._json,
926
- queryFileLimit: smithyClient.expectInt32,
927
- queryLogSize: smithyClient.expectInt32,
928
- retentionCheckInterval: smithyClient._json,
929
- snapshottedWalFilesToKeep: smithyClient.expectInt32,
930
- tableIndexCacheConcurrencyLimit: smithyClient.expectInt32,
931
- tableIndexCacheMaxEntries: smithyClient.expectInt32,
932
- walMaxWriteBufferSize: smithyClient.expectInt32,
933
- walReplayConcurrencyLimit: smithyClient.expectInt32,
934
- walReplayFailOnError: smithyClient.expectBoolean,
935
- walSnapshotSize: smithyClient.expectInt32,
936
- });
937
- };
938
- const de_InfluxDBv3EnterpriseParameters = (output, context) => {
939
- return smithyClient.take(output, {
940
- catalogSyncInterval: smithyClient._json,
941
- compactionCheckInterval: smithyClient._json,
942
- compactionCleanupWait: smithyClient._json,
943
- compactionGen2Duration: smithyClient._json,
944
- compactionMaxNumFilesPerPlan: smithyClient.expectInt32,
945
- compactionMultipliers: smithyClient.expectString,
946
- compactionRowLimit: smithyClient.expectInt32,
947
- dataFusionConfig: smithyClient.expectString,
948
- dataFusionMaxParquetFanout: smithyClient.expectInt32,
949
- dataFusionNumThreads: smithyClient.expectInt32,
950
- dataFusionRuntimeDisableLifoSlot: smithyClient.expectBoolean,
951
- dataFusionRuntimeEventInterval: smithyClient.expectInt32,
952
- dataFusionRuntimeGlobalQueueInterval: smithyClient.expectInt32,
953
- dataFusionRuntimeMaxBlockingThreads: smithyClient.expectInt32,
954
- dataFusionRuntimeMaxIoEventsPerTick: smithyClient.expectInt32,
955
- dataFusionRuntimeThreadKeepAlive: smithyClient._json,
956
- dataFusionRuntimeThreadPriority: smithyClient.expectInt32,
957
- dataFusionRuntimeType: smithyClient.expectString,
958
- dataFusionUseCachedParquetLoader: smithyClient.expectBoolean,
959
- dedicatedCompactor: smithyClient.expectBoolean,
960
- deleteGracePeriod: smithyClient._json,
961
- disableParquetMemCache: smithyClient.expectBoolean,
962
- distinctCacheEvictionInterval: smithyClient._json,
963
- distinctValueCacheDisableFromHistory: smithyClient.expectBoolean,
964
- execMemPoolBytes: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
965
- forceSnapshotMemThreshold: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
966
- gen1Duration: smithyClient._json,
967
- gen1LookbackDuration: smithyClient._json,
968
- hardDeleteDefaultDuration: smithyClient._json,
969
- ingestQueryInstances: smithyClient.expectInt32,
970
- lastCacheEvictionInterval: smithyClient._json,
971
- lastValueCacheDisableFromHistory: smithyClient.expectBoolean,
972
- logFilter: smithyClient.expectString,
973
- logFormat: smithyClient.expectString,
974
- maxHttpRequestSize: smithyClient.expectLong,
975
- parquetMemCachePruneInterval: smithyClient._json,
976
- parquetMemCachePrunePercentage: smithyClient.limitedParseFloat32,
977
- parquetMemCacheQueryPathDuration: smithyClient._json,
978
- parquetMemCacheSize: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
979
- preemptiveCacheAge: smithyClient._json,
980
- queryFileLimit: smithyClient.expectInt32,
981
- queryLogSize: smithyClient.expectInt32,
982
- queryOnlyInstances: smithyClient.expectInt32,
983
- replicationInterval: smithyClient._json,
984
- retentionCheckInterval: smithyClient._json,
985
- snapshottedWalFilesToKeep: smithyClient.expectInt32,
986
- tableIndexCacheConcurrencyLimit: smithyClient.expectInt32,
987
- tableIndexCacheMaxEntries: smithyClient.expectInt32,
988
- walMaxWriteBufferSize: smithyClient.expectInt32,
989
- walReplayConcurrencyLimit: smithyClient.expectInt32,
990
- walReplayFailOnError: smithyClient.expectBoolean,
991
- walSnapshotSize: smithyClient.expectInt32,
992
- });
993
- };
994
- const de__Parameters = (output, context) => {
995
- if (output.InfluxDBv2 != null) {
996
- return {
997
- InfluxDBv2: smithyClient._json(output.InfluxDBv2),
998
- };
999
- }
1000
- if (output.InfluxDBv3Core != null) {
1001
- return {
1002
- InfluxDBv3Core: de_InfluxDBv3CoreParameters(output.InfluxDBv3Core),
1003
- };
1004
- }
1005
- if (output.InfluxDBv3Enterprise != null) {
1006
- return {
1007
- InfluxDBv3Enterprise: de_InfluxDBv3EnterpriseParameters(output.InfluxDBv3Enterprise),
1008
- };
1009
- }
1010
- return { $unknown: Object.entries(output)[0] };
1011
- };
1012
- const deserializeMetadata = (output) => ({
1013
- httpStatusCode: output.statusCode,
1014
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1015
- extendedRequestId: output.headers["x-amz-id-2"],
1016
- cfId: output.headers["x-amz-cf-id"],
1017
- });
1018
- const throwDefaultError = smithyClient.withBaseException(TimestreamInfluxDBServiceException);
1019
- const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
1020
- const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
1021
- const contents = {
1022
- protocol,
1023
- hostname,
1024
- port,
1025
- method: "POST",
1026
- path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
1027
- headers,
1028
- };
1029
- if (body !== undefined) {
1030
- contents.body = body;
1031
- }
1032
- return new protocolHttp.HttpRequest(contents);
1033
- };
1034
- function sharedHeaders(operation) {
1035
- return {
1036
- "content-type": "application/x-amz-json-1.0",
1037
- "x-amz-target": `AmazonTimestreamInfluxDB.${operation}`,
1038
- };
1039
- }
335
+ const _ADE = "AccessDeniedException";
336
+ const _CDC = "CreateDbCluster";
337
+ const _CDCI = "CreateDbClusterInput";
338
+ const _CDCO = "CreateDbClusterOutput";
339
+ const _CDI = "CreateDbInstance";
340
+ const _CDII = "CreateDbInstanceInput";
341
+ const _CDIO = "CreateDbInstanceOutput";
342
+ const _CDPG = "CreateDbParameterGroup";
343
+ const _CDPGI = "CreateDbParameterGroupInput";
344
+ const _CDPGO = "CreateDbParameterGroupOutput";
345
+ const _CE = "ConflictException";
346
+ const _D = "Duration";
347
+ const _DCS = "DbClusterSummary";
348
+ const _DCSL = "DbClusterSummaryList";
349
+ const _DDC = "DeleteDbCluster";
350
+ const _DDCI = "DeleteDbClusterInput";
351
+ const _DDCO = "DeleteDbClusterOutput";
352
+ const _DDI = "DeleteDbInstance";
353
+ const _DDII = "DeleteDbInstanceInput";
354
+ const _DDIO = "DeleteDbInstanceOutput";
355
+ const _DIFCS = "DbInstanceForClusterSummary";
356
+ const _DIFCSL = "DbInstanceForClusterSummaryList";
357
+ const _DIS = "DbInstanceSummary";
358
+ const _DISL = "DbInstanceSummaryList";
359
+ const _DPGS = "DbParameterGroupSummary";
360
+ const _DPGSL = "DbParameterGroupSummaryList";
361
+ const _GDC = "GetDbCluster";
362
+ const _GDCI = "GetDbClusterInput";
363
+ const _GDCO = "GetDbClusterOutput";
364
+ const _GDI = "GetDbInstance";
365
+ const _GDII = "GetDbInstanceInput";
366
+ const _GDIO = "GetDbInstanceOutput";
367
+ const _GDPG = "GetDbParameterGroup";
368
+ const _GDPGI = "GetDbParameterGroupInput";
369
+ const _GDPGO = "GetDbParameterGroupOutput";
370
+ const _IDB = "InfluxDBv2";
371
+ const _IDBC = "InfluxDBv3Core";
372
+ const _IDBCP = "InfluxDBv3CoreParameters";
373
+ const _IDBE = "InfluxDBv3Enterprise";
374
+ const _IDBEP = "InfluxDBv3EnterpriseParameters";
375
+ const _IDBP = "InfluxDBv2Parameters";
376
+ const _ISE = "InternalServerException";
377
+ const _LDC = "LogDeliveryConfiguration";
378
+ const _LDCI = "ListDbClustersInput";
379
+ const _LDCO = "ListDbClustersOutput";
380
+ const _LDCi = "ListDbClusters";
381
+ const _LDI = "ListDbInstances";
382
+ const _LDIFC = "ListDbInstancesForCluster";
383
+ const _LDIFCI = "ListDbInstancesForClusterInput";
384
+ const _LDIFCO = "ListDbInstancesForClusterOutput";
385
+ const _LDII = "ListDbInstancesInput";
386
+ const _LDIO = "ListDbInstancesOutput";
387
+ const _LDPG = "ListDbParameterGroups";
388
+ const _LDPGI = "ListDbParameterGroupsInput";
389
+ const _LDPGO = "ListDbParameterGroupsOutput";
390
+ const _LTFR = "ListTagsForResource";
391
+ const _LTFRR = "ListTagsForResourceRequest";
392
+ const _LTFRRi = "ListTagsForResourceResponse";
393
+ const _P = "Password";
394
+ const _POAL = "PercentOrAbsoluteLong";
395
+ const _Pa = "Parameters";
396
+ const _RA = "Retry-After";
397
+ const _RNFE = "ResourceNotFoundException";
398
+ const _SC = "S3Configuration";
399
+ const _SQEE = "ServiceQuotaExceededException";
400
+ const _TE = "ThrottlingException";
401
+ const _TR = "TagResource";
402
+ const _TRR = "TagResourceRequest";
403
+ const _U = "Username";
404
+ const _UDC = "UpdateDbCluster";
405
+ const _UDCI = "UpdateDbClusterInput";
406
+ const _UDCO = "UpdateDbClusterOutput";
407
+ const _UDI = "UpdateDbInstance";
408
+ const _UDII = "UpdateDbInstanceInput";
409
+ const _UDIO = "UpdateDbInstanceOutput";
410
+ const _UR = "UntagResource";
411
+ const _URR = "UntagResourceRequest";
412
+ const _VE = "ValidationException";
413
+ const _a = "arn";
414
+ const _aS = "allocatedStorage";
415
+ const _aZ = "availabilityZone";
416
+ const _ab = "absolute";
417
+ const _b = "bucket";
418
+ const _bN = "bucketName";
419
+ const _c = "client";
420
+ const _cCI = "compactionCheckInterval";
421
+ const _cCW = "compactionCleanupWait";
422
+ const _cGD = "compactionGen2Duration";
423
+ const _cM = "compactionMultipliers";
424
+ const _cMNFPP = "compactionMaxNumFilesPerPlan";
425
+ const _cRL = "compactionRowLimit";
426
+ const _cSI = "catalogSyncInterval";
427
+ const _d = "description";
428
+ const _dC = "dedicatedCompactor";
429
+ const _dCEI = "distinctCacheEvictionInterval";
430
+ const _dCI = "dbClusterId";
431
+ const _dCS = "dbClusterStatus";
432
+ const _dFC = "dataFusionConfig";
433
+ const _dFMPF = "dataFusionMaxParquetFanout";
434
+ const _dFNT = "dataFusionNumThreads";
435
+ const _dFRDLS = "dataFusionRuntimeDisableLifoSlot";
436
+ const _dFREI = "dataFusionRuntimeEventInterval";
437
+ const _dFRGQI = "dataFusionRuntimeGlobalQueueInterval";
438
+ const _dFRMBT = "dataFusionRuntimeMaxBlockingThreads";
439
+ const _dFRMIEPT = "dataFusionRuntimeMaxIoEventsPerTick";
440
+ const _dFRT = "dataFusionRuntimeType";
441
+ const _dFRTKA = "dataFusionRuntimeThreadKeepAlive";
442
+ const _dFRTP = "dataFusionRuntimeThreadPriority";
443
+ const _dFUCPL = "dataFusionUseCachedParquetLoader";
444
+ const _dGP = "deleteGracePeriod";
445
+ const _dIT = "dbInstanceType";
446
+ const _dPGI = "dbParameterGroupIdentifier";
447
+ const _dPMC = "disableParquetMemCache";
448
+ const _dST = "dbStorageType";
449
+ const _dT = "deploymentType";
450
+ const _dTu = "durationType";
451
+ const _dVCDFH = "distinctValueCacheDisableFromHistory";
452
+ const _e = "error";
453
+ const _eMPB = "execMemPoolBytes";
454
+ const _eT = "engineType";
455
+ const _en = "endpoint";
456
+ const _ena = "enabled";
457
+ const _fLE = "fluxLogEnabled";
458
+ const _fM = "failoverMode";
459
+ const _fSMT = "forceSnapshotMemThreshold";
460
+ const _gD = "gen1Duration";
461
+ const _gLD = "gen1LookbackDuration";
462
+ const _hDDD = "hardDeleteDefaultDuration";
463
+ const _hE = "httpError";
464
+ const _hH = "httpHeader";
465
+ const _hIT = "httpIdleTimeout";
466
+ const _hRHT = "httpReadHeaderTimeout";
467
+ const _hRT = "httpReadTimeout";
468
+ const _hWT = "httpWriteTimeout";
469
+ const _i = "id";
470
+ const _iAPSA = "influxAuthParametersSecretArn";
471
+ const _iM = "instanceMode";
472
+ const _iMSB = "influxqlMaxSelectBuckets";
473
+ const _iMSP = "influxqlMaxSelectPoint";
474
+ const _iMSS = "influxqlMaxSelectSeries";
475
+ const _iMn = "instanceModes";
476
+ const _iQI = "ingestQueryInstances";
477
+ const _id = "identifier";
478
+ const _it = "items";
479
+ const _lCEI = "lastCacheEvictionInterval";
480
+ const _lDC = "logDeliveryConfiguration";
481
+ const _lF = "logFilter";
482
+ const _lFo = "logFormat";
483
+ const _lL = "logLevel";
484
+ const _lVCDFH = "lastValueCacheDisableFromHistory";
485
+ const _m = "message";
486
+ const _mD = "metricsDisabled";
487
+ const _mHRS = "maxHttpRequestSize";
488
+ const _mR = "maxResults";
489
+ const _n = "name";
490
+ const _nT = "networkType";
491
+ const _nTe = "nextToken";
492
+ const _nTo = "noTasks";
493
+ const _o = "organization";
494
+ const _p = "password";
495
+ const _pA = "publiclyAccessible";
496
+ const _pCA = "preemptiveCacheAge";
497
+ const _pD = "pprofDisabled";
498
+ const _pMCPI = "parquetMemCachePruneInterval";
499
+ const _pMCPP = "parquetMemCachePrunePercentage";
500
+ const _pMCQPD = "parquetMemCacheQueryPathDuration";
501
+ const _pMCS = "parquetMemCacheSize";
502
+ const _pa = "parameters";
503
+ const _pe = "percent";
504
+ const _po = "port";
505
+ const _qC = "queryConcurrency";
506
+ const _qFL = "queryFileLimit";
507
+ const _qIMB = "queryInitialMemoryBytes";
508
+ const _qLS = "queryLogSize";
509
+ const _qMB = "queryMemoryBytes";
510
+ const _qMMB = "queryMaxMemoryBytes";
511
+ const _qOI = "queryOnlyInstances";
512
+ const _qQS = "queryQueueSize";
513
+ const _r = "reason";
514
+ const _rA = "resourceArn";
515
+ const _rAS = "retryAfterSeconds";
516
+ const _rCI = "retentionCheckInterval";
517
+ const _rE = "readerEndpoint";
518
+ const _rI = "resourceId";
519
+ const _rIe = "replicationInterval";
520
+ const _rT = "resourceType";
521
+ const _s = "status";
522
+ const _sAZ = "secondaryAvailabilityZone";
523
+ const _sC = "s3Configuration";
524
+ const _sCFWCD = "storageCompactFullWriteColdDuration";
525
+ const _sCMMS = "storageCacheMaxMemorySize";
526
+ const _sCSMS = "storageCacheSnapshotMemorySize";
527
+ const _sCSWCD = "storageCacheSnapshotWriteColdDuration";
528
+ const _sCTB = "storageCompactThroughputBurst";
529
+ const _sL = "sessionLength";
530
+ const _sMCC = "storageMaxConcurrentCompactions";
531
+ const _sMILFS = "storageMaxIndexLogFileSize";
532
+ const _sNVFS = "storageNoValidateFieldSize";
533
+ const _sRCI = "storageRetentionCheckInterval";
534
+ const _sRD = "sessionRenewDisabled";
535
+ const _sSFMCSC = "storageSeriesFileMaxConcurrentSnapshotCompactions";
536
+ const _sSISCS = "storageSeriesIdSetCacheSize";
537
+ const _sWFTK = "snapshottedWalFilesToKeep";
538
+ const _sWMCW = "storageWalMaxConcurrentWrites";
539
+ const _sWMWD = "storageWalMaxWriteDelay";
540
+ const _se = "server";
541
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.timestreaminfluxdb";
542
+ const _t = "tags";
543
+ const _tICCL = "tableIndexCacheConcurrencyLimit";
544
+ const _tICME = "tableIndexCacheMaxEntries";
545
+ const _tK = "tagKeys";
546
+ const _tT = "tracingType";
547
+ const _u = "username";
548
+ const _uD = "uiDisabled";
549
+ const _v = "value";
550
+ const _vSGI = "vpcSecurityGroupIds";
551
+ const _vSI = "vpcSubnetIds";
552
+ const _wMWBS = "walMaxWriteBufferSize";
553
+ const _wRCL = "walReplayConcurrencyLimit";
554
+ const _wRFOE = "walReplayFailOnError";
555
+ const _wSS = "walSnapshotSize";
556
+ const n0 = "com.amazonaws.timestreaminfluxdb";
557
+ var Password = [0, n0, _P, 8, 0];
558
+ var Username = [0, n0, _U, 8, 0];
559
+ var AccessDeniedException = [
560
+ -3,
561
+ n0,
562
+ _ADE,
563
+ {
564
+ [_e]: _c,
565
+ [_hE]: 403,
566
+ },
567
+ [_m],
568
+ [0],
569
+ ];
570
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
571
+ var ConflictException = [
572
+ -3,
573
+ n0,
574
+ _CE,
575
+ {
576
+ [_e]: _c,
577
+ [_hE]: 409,
578
+ },
579
+ [_m, _rI, _rT],
580
+ [0, 0, 0],
581
+ ];
582
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
583
+ var CreateDbClusterInput = [
584
+ 3,
585
+ n0,
586
+ _CDCI,
587
+ 0,
588
+ [_n, _u, _p, _o, _b, _po, _dPGI, _dIT, _dST, _aS, _nT, _pA, _vSI, _vSGI, _dT, _fM, _lDC, _t],
589
+ [
590
+ 0,
591
+ [() => Username, 0],
592
+ [() => Password, 0],
593
+ 0,
594
+ 0,
595
+ 1,
596
+ 0,
597
+ 0,
598
+ 0,
599
+ 1,
600
+ 0,
601
+ 2,
602
+ 64 | 0,
603
+ 64 | 0,
604
+ 0,
605
+ 0,
606
+ () => LogDeliveryConfiguration,
607
+ 128 | 0,
608
+ ],
609
+ ];
610
+ var CreateDbClusterOutput = [3, n0, _CDCO, 0, [_dCI, _dCS], [0, 0]];
611
+ var CreateDbInstanceInput = [
612
+ 3,
613
+ n0,
614
+ _CDII,
615
+ 0,
616
+ [_n, _u, _p, _o, _b, _dIT, _vSI, _vSGI, _pA, _dST, _aS, _dPGI, _dT, _lDC, _t, _po, _nT],
617
+ [
618
+ 0,
619
+ [() => Username, 0],
620
+ [() => Password, 0],
621
+ 0,
622
+ 0,
623
+ 0,
624
+ 64 | 0,
625
+ 64 | 0,
626
+ 2,
627
+ 0,
628
+ 1,
629
+ 0,
630
+ 0,
631
+ () => LogDeliveryConfiguration,
632
+ 128 | 0,
633
+ 1,
634
+ 0,
635
+ ],
636
+ ];
637
+ var CreateDbInstanceOutput = [
638
+ 3,
639
+ n0,
640
+ _CDIO,
641
+ 0,
642
+ [
643
+ _i,
644
+ _n,
645
+ _a,
646
+ _s,
647
+ _en,
648
+ _po,
649
+ _nT,
650
+ _dIT,
651
+ _dST,
652
+ _aS,
653
+ _dT,
654
+ _vSI,
655
+ _pA,
656
+ _vSGI,
657
+ _dPGI,
658
+ _aZ,
659
+ _sAZ,
660
+ _lDC,
661
+ _iAPSA,
662
+ _dCI,
663
+ _iM,
664
+ _iMn,
665
+ ],
666
+ [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration, 0, 0, 0, 64 | 0],
667
+ ];
668
+ var CreateDbParameterGroupInput = [
669
+ 3,
670
+ n0,
671
+ _CDPGI,
672
+ 0,
673
+ [_n, _d, _pa, _t],
674
+ [0, 0, () => _Parameters, 128 | 0],
675
+ ];
676
+ var CreateDbParameterGroupOutput = [
677
+ 3,
678
+ n0,
679
+ _CDPGO,
680
+ 0,
681
+ [_i, _n, _a, _d, _pa],
682
+ [0, 0, 0, 0, () => _Parameters],
683
+ ];
684
+ var DbClusterSummary = [
685
+ 3,
686
+ n0,
687
+ _DCS,
688
+ 0,
689
+ [_i, _n, _a, _s, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT],
690
+ [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0],
691
+ ];
692
+ var DbInstanceForClusterSummary = [
693
+ 3,
694
+ n0,
695
+ _DIFCS,
696
+ 0,
697
+ [_i, _n, _a, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _iM, _iMn],
698
+ [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 64 | 0],
699
+ ];
700
+ var DbInstanceSummary = [
701
+ 3,
702
+ n0,
703
+ _DIS,
704
+ 0,
705
+ [_i, _n, _a, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT],
706
+ [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0],
707
+ ];
708
+ var DbParameterGroupSummary = [3, n0, _DPGS, 0, [_i, _n, _a, _d], [0, 0, 0, 0]];
709
+ var DeleteDbClusterInput = [3, n0, _DDCI, 0, [_dCI], [0]];
710
+ var DeleteDbClusterOutput = [3, n0, _DDCO, 0, [_dCS], [0]];
711
+ var DeleteDbInstanceInput = [3, n0, _DDII, 0, [_id], [0]];
712
+ var DeleteDbInstanceOutput = [
713
+ 3,
714
+ n0,
715
+ _DDIO,
716
+ 0,
717
+ [
718
+ _i,
719
+ _n,
720
+ _a,
721
+ _s,
722
+ _en,
723
+ _po,
724
+ _nT,
725
+ _dIT,
726
+ _dST,
727
+ _aS,
728
+ _dT,
729
+ _vSI,
730
+ _pA,
731
+ _vSGI,
732
+ _dPGI,
733
+ _aZ,
734
+ _sAZ,
735
+ _lDC,
736
+ _iAPSA,
737
+ _dCI,
738
+ _iM,
739
+ _iMn,
740
+ ],
741
+ [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration, 0, 0, 0, 64 | 0],
742
+ ];
743
+ var Duration = [3, n0, _D, 0, [_dTu, _v], [0, 1]];
744
+ var GetDbClusterInput = [3, n0, _GDCI, 0, [_dCI], [0]];
745
+ var GetDbClusterOutput = [
746
+ 3,
747
+ n0,
748
+ _GDCO,
749
+ 0,
750
+ [_i, _n, _a, _s, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _iAPSA, _vSI, _vSGI, _fM],
751
+ [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => LogDeliveryConfiguration, 0, 64 | 0, 64 | 0, 0],
752
+ ];
753
+ var GetDbInstanceInput = [3, n0, _GDII, 0, [_id], [0]];
754
+ var GetDbInstanceOutput = [
755
+ 3,
756
+ n0,
757
+ _GDIO,
758
+ 0,
759
+ [
760
+ _i,
761
+ _n,
762
+ _a,
763
+ _s,
764
+ _en,
765
+ _po,
766
+ _nT,
767
+ _dIT,
768
+ _dST,
769
+ _aS,
770
+ _dT,
771
+ _vSI,
772
+ _pA,
773
+ _vSGI,
774
+ _dPGI,
775
+ _aZ,
776
+ _sAZ,
777
+ _lDC,
778
+ _iAPSA,
779
+ _dCI,
780
+ _iM,
781
+ _iMn,
782
+ ],
783
+ [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration, 0, 0, 0, 64 | 0],
784
+ ];
785
+ var GetDbParameterGroupInput = [3, n0, _GDPGI, 0, [_id], [0]];
786
+ var GetDbParameterGroupOutput = [
787
+ 3,
788
+ n0,
789
+ _GDPGO,
790
+ 0,
791
+ [_i, _n, _a, _d, _pa],
792
+ [0, 0, 0, 0, () => _Parameters],
793
+ ];
794
+ var InfluxDBv2Parameters = [
795
+ 3,
796
+ n0,
797
+ _IDBP,
798
+ 0,
799
+ [
800
+ _fLE,
801
+ _lL,
802
+ _nTo,
803
+ _qC,
804
+ _qQS,
805
+ _tT,
806
+ _mD,
807
+ _hIT,
808
+ _hRHT,
809
+ _hRT,
810
+ _hWT,
811
+ _iMSB,
812
+ _iMSP,
813
+ _iMSS,
814
+ _pD,
815
+ _qIMB,
816
+ _qMMB,
817
+ _qMB,
818
+ _sL,
819
+ _sRD,
820
+ _sCMMS,
821
+ _sCSMS,
822
+ _sCSWCD,
823
+ _sCFWCD,
824
+ _sCTB,
825
+ _sMCC,
826
+ _sMILFS,
827
+ _sNVFS,
828
+ _sRCI,
829
+ _sSFMCSC,
830
+ _sSISCS,
831
+ _sWMCW,
832
+ _sWMWD,
833
+ _uD,
834
+ ],
835
+ [
836
+ 2,
837
+ 0,
838
+ 2,
839
+ 1,
840
+ 1,
841
+ 0,
842
+ 2,
843
+ () => Duration,
844
+ () => Duration,
845
+ () => Duration,
846
+ () => Duration,
847
+ 1,
848
+ 1,
849
+ 1,
850
+ 2,
851
+ 1,
852
+ 1,
853
+ 1,
854
+ 1,
855
+ 2,
856
+ 1,
857
+ 1,
858
+ () => Duration,
859
+ () => Duration,
860
+ 1,
861
+ 1,
862
+ 1,
863
+ 2,
864
+ () => Duration,
865
+ 1,
866
+ 1,
867
+ 1,
868
+ () => Duration,
869
+ 2,
870
+ ],
871
+ ];
872
+ var InfluxDBv3CoreParameters = [
873
+ 3,
874
+ n0,
875
+ _IDBCP,
876
+ 0,
877
+ [
878
+ _qFL,
879
+ _qLS,
880
+ _lF,
881
+ _lFo,
882
+ _dFNT,
883
+ _dFRT,
884
+ _dFRDLS,
885
+ _dFREI,
886
+ _dFRGQI,
887
+ _dFRMBT,
888
+ _dFRMIEPT,
889
+ _dFRTKA,
890
+ _dFRTP,
891
+ _dFMPF,
892
+ _dFUCPL,
893
+ _dFC,
894
+ _mHRS,
895
+ _fSMT,
896
+ _wSS,
897
+ _wMWBS,
898
+ _sWFTK,
899
+ _pCA,
900
+ _pMCPP,
901
+ _pMCPI,
902
+ _dPMC,
903
+ _pMCQPD,
904
+ _lCEI,
905
+ _dCEI,
906
+ _gD,
907
+ _eMPB,
908
+ _pMCS,
909
+ _wRFOE,
910
+ _wRCL,
911
+ _tICME,
912
+ _tICCL,
913
+ _gLD,
914
+ _rCI,
915
+ _dGP,
916
+ _hDDD,
917
+ ],
918
+ [
919
+ 1,
920
+ 1,
921
+ 0,
922
+ 0,
923
+ 1,
924
+ 0,
925
+ 2,
926
+ 1,
927
+ 1,
928
+ 1,
929
+ 1,
930
+ () => Duration,
931
+ 1,
932
+ 1,
933
+ 2,
934
+ 0,
935
+ 1,
936
+ () => PercentOrAbsoluteLong,
937
+ 1,
938
+ 1,
939
+ 1,
940
+ () => Duration,
941
+ 1,
942
+ () => Duration,
943
+ 2,
944
+ () => Duration,
945
+ () => Duration,
946
+ () => Duration,
947
+ () => Duration,
948
+ () => PercentOrAbsoluteLong,
949
+ () => PercentOrAbsoluteLong,
950
+ 2,
951
+ 1,
952
+ 1,
953
+ 1,
954
+ () => Duration,
955
+ () => Duration,
956
+ () => Duration,
957
+ () => Duration,
958
+ ],
959
+ ];
960
+ var InfluxDBv3EnterpriseParameters = [
961
+ 3,
962
+ n0,
963
+ _IDBEP,
964
+ 0,
965
+ [
966
+ _qFL,
967
+ _qLS,
968
+ _lF,
969
+ _lFo,
970
+ _dFNT,
971
+ _dFRT,
972
+ _dFRDLS,
973
+ _dFREI,
974
+ _dFRGQI,
975
+ _dFRMBT,
976
+ _dFRMIEPT,
977
+ _dFRTKA,
978
+ _dFRTP,
979
+ _dFMPF,
980
+ _dFUCPL,
981
+ _dFC,
982
+ _mHRS,
983
+ _fSMT,
984
+ _wSS,
985
+ _wMWBS,
986
+ _sWFTK,
987
+ _pCA,
988
+ _pMCPP,
989
+ _pMCPI,
990
+ _dPMC,
991
+ _pMCQPD,
992
+ _lCEI,
993
+ _dCEI,
994
+ _gD,
995
+ _eMPB,
996
+ _pMCS,
997
+ _wRFOE,
998
+ _wRCL,
999
+ _tICME,
1000
+ _tICCL,
1001
+ _gLD,
1002
+ _rCI,
1003
+ _dGP,
1004
+ _hDDD,
1005
+ _iQI,
1006
+ _qOI,
1007
+ _dC,
1008
+ _cRL,
1009
+ _cMNFPP,
1010
+ _cGD,
1011
+ _cM,
1012
+ _cCW,
1013
+ _cCI,
1014
+ _lVCDFH,
1015
+ _dVCDFH,
1016
+ _rIe,
1017
+ _cSI,
1018
+ ],
1019
+ [
1020
+ 1,
1021
+ 1,
1022
+ 0,
1023
+ 0,
1024
+ 1,
1025
+ 0,
1026
+ 2,
1027
+ 1,
1028
+ 1,
1029
+ 1,
1030
+ 1,
1031
+ () => Duration,
1032
+ 1,
1033
+ 1,
1034
+ 2,
1035
+ 0,
1036
+ 1,
1037
+ () => PercentOrAbsoluteLong,
1038
+ 1,
1039
+ 1,
1040
+ 1,
1041
+ () => Duration,
1042
+ 1,
1043
+ () => Duration,
1044
+ 2,
1045
+ () => Duration,
1046
+ () => Duration,
1047
+ () => Duration,
1048
+ () => Duration,
1049
+ () => PercentOrAbsoluteLong,
1050
+ () => PercentOrAbsoluteLong,
1051
+ 2,
1052
+ 1,
1053
+ 1,
1054
+ 1,
1055
+ () => Duration,
1056
+ () => Duration,
1057
+ () => Duration,
1058
+ () => Duration,
1059
+ 1,
1060
+ 1,
1061
+ 2,
1062
+ 1,
1063
+ 1,
1064
+ () => Duration,
1065
+ 0,
1066
+ () => Duration,
1067
+ () => Duration,
1068
+ 2,
1069
+ 2,
1070
+ () => Duration,
1071
+ () => Duration,
1072
+ ],
1073
+ ];
1074
+ var InternalServerException = [
1075
+ -3,
1076
+ n0,
1077
+ _ISE,
1078
+ {
1079
+ [_e]: _se,
1080
+ [_hE]: 500,
1081
+ },
1082
+ [_m],
1083
+ [0],
1084
+ ];
1085
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1086
+ var ListDbClustersInput = [3, n0, _LDCI, 0, [_nTe, _mR], [0, 1]];
1087
+ var ListDbClustersOutput = [
1088
+ 3,
1089
+ n0,
1090
+ _LDCO,
1091
+ 0,
1092
+ [_it, _nTe],
1093
+ [() => DbClusterSummaryList, 0],
1094
+ ];
1095
+ var ListDbInstancesForClusterInput = [3, n0, _LDIFCI, 0, [_dCI, _nTe, _mR], [0, 0, 1]];
1096
+ var ListDbInstancesForClusterOutput = [
1097
+ 3,
1098
+ n0,
1099
+ _LDIFCO,
1100
+ 0,
1101
+ [_it, _nTe],
1102
+ [() => DbInstanceForClusterSummaryList, 0],
1103
+ ];
1104
+ var ListDbInstancesInput = [3, n0, _LDII, 0, [_nTe, _mR], [0, 1]];
1105
+ var ListDbInstancesOutput = [
1106
+ 3,
1107
+ n0,
1108
+ _LDIO,
1109
+ 0,
1110
+ [_it, _nTe],
1111
+ [() => DbInstanceSummaryList, 0],
1112
+ ];
1113
+ var ListDbParameterGroupsInput = [3, n0, _LDPGI, 0, [_nTe, _mR], [0, 1]];
1114
+ var ListDbParameterGroupsOutput = [
1115
+ 3,
1116
+ n0,
1117
+ _LDPGO,
1118
+ 0,
1119
+ [_it, _nTe],
1120
+ [() => DbParameterGroupSummaryList, 0],
1121
+ ];
1122
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
1123
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1124
+ var LogDeliveryConfiguration = [3, n0, _LDC, 0, [_sC], [() => S3Configuration]];
1125
+ var ResourceNotFoundException = [
1126
+ -3,
1127
+ n0,
1128
+ _RNFE,
1129
+ {
1130
+ [_e]: _c,
1131
+ [_hE]: 404,
1132
+ },
1133
+ [_m, _rI, _rT],
1134
+ [0, 0, 0],
1135
+ ];
1136
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1137
+ var S3Configuration = [3, n0, _SC, 0, [_bN, _ena], [0, 2]];
1138
+ var ServiceQuotaExceededException = [
1139
+ -3,
1140
+ n0,
1141
+ _SQEE,
1142
+ {
1143
+ [_e]: _c,
1144
+ [_hE]: 402,
1145
+ },
1146
+ [_m],
1147
+ [0],
1148
+ ];
1149
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1150
+ var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
1151
+ var ThrottlingException = [
1152
+ -3,
1153
+ n0,
1154
+ _TE,
1155
+ {
1156
+ [_e]: _c,
1157
+ [_hE]: 429,
1158
+ },
1159
+ [_m, _rAS],
1160
+ [
1161
+ 0,
1162
+ [
1163
+ 1,
1164
+ {
1165
+ [_hH]: _RA,
1166
+ },
1167
+ ],
1168
+ ],
1169
+ ];
1170
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1171
+ var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
1172
+ var UpdateDbClusterInput = [
1173
+ 3,
1174
+ n0,
1175
+ _UDCI,
1176
+ 0,
1177
+ [_dCI, _lDC, _dPGI, _po, _dIT, _fM],
1178
+ [0, () => LogDeliveryConfiguration, 0, 1, 0, 0],
1179
+ ];
1180
+ var UpdateDbClusterOutput = [3, n0, _UDCO, 0, [_dCS], [0]];
1181
+ var UpdateDbInstanceInput = [
1182
+ 3,
1183
+ n0,
1184
+ _UDII,
1185
+ 0,
1186
+ [_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS],
1187
+ [0, () => LogDeliveryConfiguration, 0, 1, 0, 0, 0, 1],
1188
+ ];
1189
+ var UpdateDbInstanceOutput = [
1190
+ 3,
1191
+ n0,
1192
+ _UDIO,
1193
+ 0,
1194
+ [
1195
+ _i,
1196
+ _n,
1197
+ _a,
1198
+ _s,
1199
+ _en,
1200
+ _po,
1201
+ _nT,
1202
+ _dIT,
1203
+ _dST,
1204
+ _aS,
1205
+ _dT,
1206
+ _vSI,
1207
+ _pA,
1208
+ _vSGI,
1209
+ _dPGI,
1210
+ _aZ,
1211
+ _sAZ,
1212
+ _lDC,
1213
+ _iAPSA,
1214
+ _dCI,
1215
+ _iM,
1216
+ _iMn,
1217
+ ],
1218
+ [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration, 0, 0, 0, 64 | 0],
1219
+ ];
1220
+ var ValidationException = [
1221
+ -3,
1222
+ n0,
1223
+ _VE,
1224
+ {
1225
+ [_e]: _c,
1226
+ [_hE]: 400,
1227
+ },
1228
+ [_m, _r],
1229
+ [0, 0],
1230
+ ];
1231
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1232
+ var __Unit = "unit";
1233
+ var TimestreamInfluxDBServiceException = [
1234
+ -3,
1235
+ _sm,
1236
+ "TimestreamInfluxDBServiceException",
1237
+ 0,
1238
+ [],
1239
+ [],
1240
+ ];
1241
+ schema.TypeRegistry.for(_sm).registerError(TimestreamInfluxDBServiceException, TimestreamInfluxDBServiceException$1);
1242
+ var DbClusterSummaryList = [1, n0, _DCSL, 0, () => DbClusterSummary];
1243
+ var DbInstanceForClusterSummaryList = [1, n0, _DIFCSL, 0, () => DbInstanceForClusterSummary];
1244
+ var DbInstanceSummaryList = [1, n0, _DISL, 0, () => DbInstanceSummary];
1245
+ var DbParameterGroupSummaryList = [1, n0, _DPGSL, 0, () => DbParameterGroupSummary];
1246
+ var _Parameters = [
1247
+ 3,
1248
+ n0,
1249
+ _Pa,
1250
+ 0,
1251
+ [_IDB, _IDBC, _IDBE],
1252
+ [() => InfluxDBv2Parameters, () => InfluxDBv3CoreParameters, () => InfluxDBv3EnterpriseParameters],
1253
+ ];
1254
+ var PercentOrAbsoluteLong = [3, n0, _POAL, 0, [_pe, _ab], [0, 1]];
1255
+ var CreateDbCluster = [
1256
+ 9,
1257
+ n0,
1258
+ _CDC,
1259
+ 2,
1260
+ () => CreateDbClusterInput,
1261
+ () => CreateDbClusterOutput,
1262
+ ];
1263
+ var CreateDbInstance = [
1264
+ 9,
1265
+ n0,
1266
+ _CDI,
1267
+ 2,
1268
+ () => CreateDbInstanceInput,
1269
+ () => CreateDbInstanceOutput,
1270
+ ];
1271
+ var CreateDbParameterGroup = [
1272
+ 9,
1273
+ n0,
1274
+ _CDPG,
1275
+ 2,
1276
+ () => CreateDbParameterGroupInput,
1277
+ () => CreateDbParameterGroupOutput,
1278
+ ];
1279
+ var DeleteDbCluster = [
1280
+ 9,
1281
+ n0,
1282
+ _DDC,
1283
+ 2,
1284
+ () => DeleteDbClusterInput,
1285
+ () => DeleteDbClusterOutput,
1286
+ ];
1287
+ var DeleteDbInstance = [
1288
+ 9,
1289
+ n0,
1290
+ _DDI,
1291
+ 2,
1292
+ () => DeleteDbInstanceInput,
1293
+ () => DeleteDbInstanceOutput,
1294
+ ];
1295
+ var GetDbCluster = [9, n0, _GDC, 0, () => GetDbClusterInput, () => GetDbClusterOutput];
1296
+ var GetDbInstance = [9, n0, _GDI, 0, () => GetDbInstanceInput, () => GetDbInstanceOutput];
1297
+ var GetDbParameterGroup = [
1298
+ 9,
1299
+ n0,
1300
+ _GDPG,
1301
+ 0,
1302
+ () => GetDbParameterGroupInput,
1303
+ () => GetDbParameterGroupOutput,
1304
+ ];
1305
+ var ListDbClusters = [
1306
+ 9,
1307
+ n0,
1308
+ _LDCi,
1309
+ 0,
1310
+ () => ListDbClustersInput,
1311
+ () => ListDbClustersOutput,
1312
+ ];
1313
+ var ListDbInstances = [
1314
+ 9,
1315
+ n0,
1316
+ _LDI,
1317
+ 0,
1318
+ () => ListDbInstancesInput,
1319
+ () => ListDbInstancesOutput,
1320
+ ];
1321
+ var ListDbInstancesForCluster = [
1322
+ 9,
1323
+ n0,
1324
+ _LDIFC,
1325
+ 0,
1326
+ () => ListDbInstancesForClusterInput,
1327
+ () => ListDbInstancesForClusterOutput,
1328
+ ];
1329
+ var ListDbParameterGroups = [
1330
+ 9,
1331
+ n0,
1332
+ _LDPG,
1333
+ 0,
1334
+ () => ListDbParameterGroupsInput,
1335
+ () => ListDbParameterGroupsOutput,
1336
+ ];
1337
+ var ListTagsForResource = [
1338
+ 9,
1339
+ n0,
1340
+ _LTFR,
1341
+ 0,
1342
+ () => ListTagsForResourceRequest,
1343
+ () => ListTagsForResourceResponse,
1344
+ ];
1345
+ var TagResource = [9, n0, _TR, 2, () => TagResourceRequest, () => __Unit];
1346
+ var UntagResource = [9, n0, _UR, 2, () => UntagResourceRequest, () => __Unit];
1347
+ var UpdateDbCluster = [
1348
+ 9,
1349
+ n0,
1350
+ _UDC,
1351
+ 2,
1352
+ () => UpdateDbClusterInput,
1353
+ () => UpdateDbClusterOutput,
1354
+ ];
1355
+ var UpdateDbInstance = [
1356
+ 9,
1357
+ n0,
1358
+ _UDI,
1359
+ 2,
1360
+ () => UpdateDbInstanceInput,
1361
+ () => UpdateDbInstanceOutput,
1362
+ ];
1040
1363
 
1041
1364
  class CreateDbClusterCommand extends smithyClient.Command
1042
1365
  .classBuilder()
1043
1366
  .ep(commonParams)
1044
1367
  .m(function (Command, cs, config, o) {
1045
- return [
1046
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1047
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1048
- ];
1368
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1049
1369
  })
1050
1370
  .s("AmazonTimestreamInfluxDB", "CreateDbCluster", {})
1051
1371
  .n("TimestreamInfluxDBClient", "CreateDbClusterCommand")
1052
- .f(CreateDbClusterInputFilterSensitiveLog, void 0)
1053
- .ser(se_CreateDbClusterCommand)
1054
- .de(de_CreateDbClusterCommand)
1372
+ .sc(CreateDbCluster)
1055
1373
  .build() {
1056
1374
  }
1057
1375
 
@@ -1059,16 +1377,11 @@ class CreateDbInstanceCommand extends smithyClient.Command
1059
1377
  .classBuilder()
1060
1378
  .ep(commonParams)
1061
1379
  .m(function (Command, cs, config, o) {
1062
- return [
1063
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1064
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1065
- ];
1380
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1066
1381
  })
1067
1382
  .s("AmazonTimestreamInfluxDB", "CreateDbInstance", {})
1068
1383
  .n("TimestreamInfluxDBClient", "CreateDbInstanceCommand")
1069
- .f(CreateDbInstanceInputFilterSensitiveLog, void 0)
1070
- .ser(se_CreateDbInstanceCommand)
1071
- .de(de_CreateDbInstanceCommand)
1384
+ .sc(CreateDbInstance)
1072
1385
  .build() {
1073
1386
  }
1074
1387
 
@@ -1076,16 +1389,11 @@ class CreateDbParameterGroupCommand extends smithyClient.Command
1076
1389
  .classBuilder()
1077
1390
  .ep(commonParams)
1078
1391
  .m(function (Command, cs, config, o) {
1079
- return [
1080
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1081
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1082
- ];
1392
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1083
1393
  })
1084
1394
  .s("AmazonTimestreamInfluxDB", "CreateDbParameterGroup", {})
1085
1395
  .n("TimestreamInfluxDBClient", "CreateDbParameterGroupCommand")
1086
- .f(void 0, void 0)
1087
- .ser(se_CreateDbParameterGroupCommand)
1088
- .de(de_CreateDbParameterGroupCommand)
1396
+ .sc(CreateDbParameterGroup)
1089
1397
  .build() {
1090
1398
  }
1091
1399
 
@@ -1093,16 +1401,11 @@ class DeleteDbClusterCommand extends smithyClient.Command
1093
1401
  .classBuilder()
1094
1402
  .ep(commonParams)
1095
1403
  .m(function (Command, cs, config, o) {
1096
- return [
1097
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1098
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1099
- ];
1404
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1100
1405
  })
1101
1406
  .s("AmazonTimestreamInfluxDB", "DeleteDbCluster", {})
1102
1407
  .n("TimestreamInfluxDBClient", "DeleteDbClusterCommand")
1103
- .f(void 0, void 0)
1104
- .ser(se_DeleteDbClusterCommand)
1105
- .de(de_DeleteDbClusterCommand)
1408
+ .sc(DeleteDbCluster)
1106
1409
  .build() {
1107
1410
  }
1108
1411
 
@@ -1110,16 +1413,11 @@ class DeleteDbInstanceCommand extends smithyClient.Command
1110
1413
  .classBuilder()
1111
1414
  .ep(commonParams)
1112
1415
  .m(function (Command, cs, config, o) {
1113
- return [
1114
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1115
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1116
- ];
1416
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1117
1417
  })
1118
1418
  .s("AmazonTimestreamInfluxDB", "DeleteDbInstance", {})
1119
1419
  .n("TimestreamInfluxDBClient", "DeleteDbInstanceCommand")
1120
- .f(void 0, void 0)
1121
- .ser(se_DeleteDbInstanceCommand)
1122
- .de(de_DeleteDbInstanceCommand)
1420
+ .sc(DeleteDbInstance)
1123
1421
  .build() {
1124
1422
  }
1125
1423
 
@@ -1127,16 +1425,11 @@ class GetDbClusterCommand extends smithyClient.Command
1127
1425
  .classBuilder()
1128
1426
  .ep(commonParams)
1129
1427
  .m(function (Command, cs, config, o) {
1130
- return [
1131
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1132
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1133
- ];
1428
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1134
1429
  })
1135
1430
  .s("AmazonTimestreamInfluxDB", "GetDbCluster", {})
1136
1431
  .n("TimestreamInfluxDBClient", "GetDbClusterCommand")
1137
- .f(void 0, void 0)
1138
- .ser(se_GetDbClusterCommand)
1139
- .de(de_GetDbClusterCommand)
1432
+ .sc(GetDbCluster)
1140
1433
  .build() {
1141
1434
  }
1142
1435
 
@@ -1144,16 +1437,11 @@ class GetDbInstanceCommand extends smithyClient.Command
1144
1437
  .classBuilder()
1145
1438
  .ep(commonParams)
1146
1439
  .m(function (Command, cs, config, o) {
1147
- return [
1148
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1149
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1150
- ];
1440
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1151
1441
  })
1152
1442
  .s("AmazonTimestreamInfluxDB", "GetDbInstance", {})
1153
1443
  .n("TimestreamInfluxDBClient", "GetDbInstanceCommand")
1154
- .f(void 0, void 0)
1155
- .ser(se_GetDbInstanceCommand)
1156
- .de(de_GetDbInstanceCommand)
1444
+ .sc(GetDbInstance)
1157
1445
  .build() {
1158
1446
  }
1159
1447
 
@@ -1161,16 +1449,11 @@ class GetDbParameterGroupCommand extends smithyClient.Command
1161
1449
  .classBuilder()
1162
1450
  .ep(commonParams)
1163
1451
  .m(function (Command, cs, config, o) {
1164
- return [
1165
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1166
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1167
- ];
1452
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1168
1453
  })
1169
1454
  .s("AmazonTimestreamInfluxDB", "GetDbParameterGroup", {})
1170
1455
  .n("TimestreamInfluxDBClient", "GetDbParameterGroupCommand")
1171
- .f(void 0, void 0)
1172
- .ser(se_GetDbParameterGroupCommand)
1173
- .de(de_GetDbParameterGroupCommand)
1456
+ .sc(GetDbParameterGroup)
1174
1457
  .build() {
1175
1458
  }
1176
1459
 
@@ -1178,16 +1461,11 @@ class ListDbClustersCommand extends smithyClient.Command
1178
1461
  .classBuilder()
1179
1462
  .ep(commonParams)
1180
1463
  .m(function (Command, cs, config, o) {
1181
- return [
1182
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1183
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1184
- ];
1464
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1185
1465
  })
1186
1466
  .s("AmazonTimestreamInfluxDB", "ListDbClusters", {})
1187
1467
  .n("TimestreamInfluxDBClient", "ListDbClustersCommand")
1188
- .f(void 0, void 0)
1189
- .ser(se_ListDbClustersCommand)
1190
- .de(de_ListDbClustersCommand)
1468
+ .sc(ListDbClusters)
1191
1469
  .build() {
1192
1470
  }
1193
1471
 
@@ -1195,16 +1473,11 @@ class ListDbInstancesCommand extends smithyClient.Command
1195
1473
  .classBuilder()
1196
1474
  .ep(commonParams)
1197
1475
  .m(function (Command, cs, config, o) {
1198
- return [
1199
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1200
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1201
- ];
1476
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1202
1477
  })
1203
1478
  .s("AmazonTimestreamInfluxDB", "ListDbInstances", {})
1204
1479
  .n("TimestreamInfluxDBClient", "ListDbInstancesCommand")
1205
- .f(void 0, void 0)
1206
- .ser(se_ListDbInstancesCommand)
1207
- .de(de_ListDbInstancesCommand)
1480
+ .sc(ListDbInstances)
1208
1481
  .build() {
1209
1482
  }
1210
1483
 
@@ -1212,16 +1485,11 @@ class ListDbInstancesForClusterCommand extends smithyClient.Command
1212
1485
  .classBuilder()
1213
1486
  .ep(commonParams)
1214
1487
  .m(function (Command, cs, config, o) {
1215
- return [
1216
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1217
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1218
- ];
1488
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1219
1489
  })
1220
1490
  .s("AmazonTimestreamInfluxDB", "ListDbInstancesForCluster", {})
1221
1491
  .n("TimestreamInfluxDBClient", "ListDbInstancesForClusterCommand")
1222
- .f(void 0, void 0)
1223
- .ser(se_ListDbInstancesForClusterCommand)
1224
- .de(de_ListDbInstancesForClusterCommand)
1492
+ .sc(ListDbInstancesForCluster)
1225
1493
  .build() {
1226
1494
  }
1227
1495
 
@@ -1229,16 +1497,11 @@ class ListDbParameterGroupsCommand extends smithyClient.Command
1229
1497
  .classBuilder()
1230
1498
  .ep(commonParams)
1231
1499
  .m(function (Command, cs, config, o) {
1232
- return [
1233
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1234
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1235
- ];
1500
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1236
1501
  })
1237
1502
  .s("AmazonTimestreamInfluxDB", "ListDbParameterGroups", {})
1238
1503
  .n("TimestreamInfluxDBClient", "ListDbParameterGroupsCommand")
1239
- .f(void 0, void 0)
1240
- .ser(se_ListDbParameterGroupsCommand)
1241
- .de(de_ListDbParameterGroupsCommand)
1504
+ .sc(ListDbParameterGroups)
1242
1505
  .build() {
1243
1506
  }
1244
1507
 
@@ -1246,16 +1509,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1246
1509
  .classBuilder()
1247
1510
  .ep(commonParams)
1248
1511
  .m(function (Command, cs, config, o) {
1249
- return [
1250
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1251
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1252
- ];
1512
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1253
1513
  })
1254
1514
  .s("AmazonTimestreamInfluxDB", "ListTagsForResource", {})
1255
1515
  .n("TimestreamInfluxDBClient", "ListTagsForResourceCommand")
1256
- .f(void 0, void 0)
1257
- .ser(se_ListTagsForResourceCommand)
1258
- .de(de_ListTagsForResourceCommand)
1516
+ .sc(ListTagsForResource)
1259
1517
  .build() {
1260
1518
  }
1261
1519
 
@@ -1263,16 +1521,11 @@ class TagResourceCommand extends smithyClient.Command
1263
1521
  .classBuilder()
1264
1522
  .ep(commonParams)
1265
1523
  .m(function (Command, cs, config, o) {
1266
- return [
1267
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1268
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1269
- ];
1524
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1270
1525
  })
1271
1526
  .s("AmazonTimestreamInfluxDB", "TagResource", {})
1272
1527
  .n("TimestreamInfluxDBClient", "TagResourceCommand")
1273
- .f(void 0, void 0)
1274
- .ser(se_TagResourceCommand)
1275
- .de(de_TagResourceCommand)
1528
+ .sc(TagResource)
1276
1529
  .build() {
1277
1530
  }
1278
1531
 
@@ -1280,16 +1533,11 @@ class UntagResourceCommand extends smithyClient.Command
1280
1533
  .classBuilder()
1281
1534
  .ep(commonParams)
1282
1535
  .m(function (Command, cs, config, o) {
1283
- return [
1284
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1285
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1286
- ];
1536
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1287
1537
  })
1288
1538
  .s("AmazonTimestreamInfluxDB", "UntagResource", {})
1289
1539
  .n("TimestreamInfluxDBClient", "UntagResourceCommand")
1290
- .f(void 0, void 0)
1291
- .ser(se_UntagResourceCommand)
1292
- .de(de_UntagResourceCommand)
1540
+ .sc(UntagResource)
1293
1541
  .build() {
1294
1542
  }
1295
1543
 
@@ -1297,16 +1545,11 @@ class UpdateDbClusterCommand extends smithyClient.Command
1297
1545
  .classBuilder()
1298
1546
  .ep(commonParams)
1299
1547
  .m(function (Command, cs, config, o) {
1300
- return [
1301
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1302
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1303
- ];
1548
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1304
1549
  })
1305
1550
  .s("AmazonTimestreamInfluxDB", "UpdateDbCluster", {})
1306
1551
  .n("TimestreamInfluxDBClient", "UpdateDbClusterCommand")
1307
- .f(void 0, void 0)
1308
- .ser(se_UpdateDbClusterCommand)
1309
- .de(de_UpdateDbClusterCommand)
1552
+ .sc(UpdateDbCluster)
1310
1553
  .build() {
1311
1554
  }
1312
1555
 
@@ -1314,16 +1557,11 @@ class UpdateDbInstanceCommand extends smithyClient.Command
1314
1557
  .classBuilder()
1315
1558
  .ep(commonParams)
1316
1559
  .m(function (Command, cs, config, o) {
1317
- return [
1318
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1319
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1320
- ];
1560
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1321
1561
  })
1322
1562
  .s("AmazonTimestreamInfluxDB", "UpdateDbInstance", {})
1323
1563
  .n("TimestreamInfluxDBClient", "UpdateDbInstanceCommand")
1324
- .f(void 0, void 0)
1325
- .ser(se_UpdateDbInstanceCommand)
1326
- .de(de_UpdateDbInstanceCommand)
1564
+ .sc(UpdateDbInstance)
1327
1565
  .build() {
1328
1566
  }
1329
1567
 
@@ -1366,14 +1604,12 @@ Object.defineProperty(exports, "__Client", {
1366
1604
  enumerable: true,
1367
1605
  get: function () { return smithyClient.Client; }
1368
1606
  });
1369
- exports.AccessDeniedException = AccessDeniedException;
1607
+ exports.AccessDeniedException = AccessDeniedException$1;
1370
1608
  exports.ClusterDeploymentType = ClusterDeploymentType;
1371
1609
  exports.ClusterStatus = ClusterStatus;
1372
- exports.ConflictException = ConflictException;
1610
+ exports.ConflictException = ConflictException$1;
1373
1611
  exports.CreateDbClusterCommand = CreateDbClusterCommand;
1374
- exports.CreateDbClusterInputFilterSensitiveLog = CreateDbClusterInputFilterSensitiveLog;
1375
1612
  exports.CreateDbInstanceCommand = CreateDbInstanceCommand;
1376
- exports.CreateDbInstanceInputFilterSensitiveLog = CreateDbInstanceInputFilterSensitiveLog;
1377
1613
  exports.CreateDbParameterGroupCommand = CreateDbParameterGroupCommand;
1378
1614
  exports.DataFusionRuntimeType = DataFusionRuntimeType;
1379
1615
  exports.DbInstanceType = DbInstanceType;
@@ -1388,7 +1624,7 @@ exports.GetDbClusterCommand = GetDbClusterCommand;
1388
1624
  exports.GetDbInstanceCommand = GetDbInstanceCommand;
1389
1625
  exports.GetDbParameterGroupCommand = GetDbParameterGroupCommand;
1390
1626
  exports.InstanceMode = InstanceMode;
1391
- exports.InternalServerException = InternalServerException;
1627
+ exports.InternalServerException = InternalServerException$1;
1392
1628
  exports.ListDbClustersCommand = ListDbClustersCommand;
1393
1629
  exports.ListDbInstancesCommand = ListDbInstancesCommand;
1394
1630
  exports.ListDbInstancesForClusterCommand = ListDbInstancesForClusterCommand;
@@ -1397,19 +1633,19 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1397
1633
  exports.LogFormats = LogFormats;
1398
1634
  exports.LogLevel = LogLevel;
1399
1635
  exports.NetworkType = NetworkType;
1400
- exports.ResourceNotFoundException = ResourceNotFoundException;
1401
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1636
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1637
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1402
1638
  exports.Status = Status;
1403
1639
  exports.TagResourceCommand = TagResourceCommand;
1404
- exports.ThrottlingException = ThrottlingException;
1640
+ exports.ThrottlingException = ThrottlingException$1;
1405
1641
  exports.TimestreamInfluxDB = TimestreamInfluxDB;
1406
1642
  exports.TimestreamInfluxDBClient = TimestreamInfluxDBClient;
1407
- exports.TimestreamInfluxDBServiceException = TimestreamInfluxDBServiceException;
1643
+ exports.TimestreamInfluxDBServiceException = TimestreamInfluxDBServiceException$1;
1408
1644
  exports.TracingType = TracingType;
1409
1645
  exports.UntagResourceCommand = UntagResourceCommand;
1410
1646
  exports.UpdateDbClusterCommand = UpdateDbClusterCommand;
1411
1647
  exports.UpdateDbInstanceCommand = UpdateDbInstanceCommand;
1412
- exports.ValidationException = ValidationException;
1648
+ exports.ValidationException = ValidationException$1;
1413
1649
  exports.ValidationExceptionReason = ValidationExceptionReason;
1414
1650
  exports.paginateListDbClusters = paginateListDbClusters;
1415
1651
  exports.paginateListDbInstances = paginateListDbInstances;