@aws-sdk/client-timestream-influxdb 3.927.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.
- package/dist-cjs/index.js +1088 -852
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/TimestreamInfluxDBClient.js +2 -0
- package/dist-es/commands/CreateDbClusterCommand.js +3 -10
- package/dist-es/commands/CreateDbInstanceCommand.js +3 -10
- package/dist-es/commands/CreateDbParameterGroupCommand.js +3 -9
- package/dist-es/commands/DeleteDbClusterCommand.js +3 -9
- package/dist-es/commands/DeleteDbInstanceCommand.js +3 -9
- package/dist-es/commands/GetDbClusterCommand.js +3 -9
- package/dist-es/commands/GetDbInstanceCommand.js +3 -9
- package/dist-es/commands/GetDbParameterGroupCommand.js +3 -9
- package/dist-es/commands/ListDbClustersCommand.js +3 -9
- package/dist-es/commands/ListDbInstancesCommand.js +3 -9
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +3 -9
- package/dist-es/commands/ListDbParameterGroupsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDbClusterCommand.js +3 -9
- package/dist-es/commands/UpdateDbInstanceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -11
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1037 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +83 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +89 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -704
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -155
- 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
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
const
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
const
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
const
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
const
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
const
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
const
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
const
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
const
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
const
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
const
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
const
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
const
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
const
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
const
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
const
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
const
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
const
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
const
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
const
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
const
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
const
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
const
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
const
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
const
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
const
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
const
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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;
|