@aws-sdk/client-timestream-influxdb 3.948.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist-cjs/index.js +375 -202
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/TimestreamInfluxDB.js +4 -0
- package/dist-es/commands/CreateDbClusterCommand.js +2 -2
- package/dist-es/commands/CreateDbInstanceCommand.js +2 -2
- package/dist-es/commands/CreateDbParameterGroupCommand.js +2 -2
- package/dist-es/commands/DeleteDbClusterCommand.js +2 -2
- package/dist-es/commands/DeleteDbInstanceCommand.js +2 -2
- package/dist-es/commands/GetDbClusterCommand.js +2 -2
- package/dist-es/commands/GetDbInstanceCommand.js +2 -2
- package/dist-es/commands/GetDbParameterGroupCommand.js +2 -2
- package/dist-es/commands/ListDbClustersCommand.js +2 -2
- package/dist-es/commands/ListDbInstancesCommand.js +2 -2
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +2 -2
- package/dist-es/commands/ListDbParameterGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RebootDbClusterCommand.js +16 -0
- package/dist-es/commands/RebootDbInstanceCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDbClusterCommand.js +2 -2
- package/dist-es/commands/UpdateDbInstanceCommand.js +2 -2
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +237 -172
- package/dist-types/TimestreamInfluxDB.d.ts +14 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +5 -12
- package/dist-types/commands/CreateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/GetDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ListDbClustersCommand.d.ts +1 -1
- package/dist-types/commands/ListDbInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +1 -1
- package/dist-types/commands/RebootDbClusterCommand.d.ts +95 -0
- package/dist-types/commands/RebootDbInstanceCommand.d.ts +124 -0
- package/dist-types/commands/UpdateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +150 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +76 -83
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +34 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +12 -4
- package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +75 -84
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class TimestreamInfluxDBClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
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
|
-
|
|
120
|
+
class AccessDeniedException extends TimestreamInfluxDBServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends TimestreamInfl
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class ConflictException extends TimestreamInfluxDBServiceException {
|
|
133
133
|
name = "ConflictException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
resourceId;
|
|
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends TimestreamInfluxDBServ
|
|
|
144
144
|
this.resourceId = opts.resourceId;
|
|
145
145
|
this.resourceType = opts.resourceType;
|
|
146
146
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
147
|
+
}
|
|
148
|
+
class InternalServerException extends TimestreamInfluxDBServiceException {
|
|
149
149
|
name = "InternalServerException";
|
|
150
150
|
$fault = "server";
|
|
151
151
|
$retryable = {};
|
|
@@ -157,8 +157,8 @@ let InternalServerException$1 = class InternalServerException extends Timestream
|
|
|
157
157
|
});
|
|
158
158
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
159
|
}
|
|
160
|
-
}
|
|
161
|
-
|
|
160
|
+
}
|
|
161
|
+
class ResourceNotFoundException extends TimestreamInfluxDBServiceException {
|
|
162
162
|
name = "ResourceNotFoundException";
|
|
163
163
|
$fault = "client";
|
|
164
164
|
resourceId;
|
|
@@ -173,8 +173,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Timest
|
|
|
173
173
|
this.resourceId = opts.resourceId;
|
|
174
174
|
this.resourceType = opts.resourceType;
|
|
175
175
|
}
|
|
176
|
-
}
|
|
177
|
-
|
|
176
|
+
}
|
|
177
|
+
class ServiceQuotaExceededException extends TimestreamInfluxDBServiceException {
|
|
178
178
|
name = "ServiceQuotaExceededException";
|
|
179
179
|
$fault = "client";
|
|
180
180
|
constructor(opts) {
|
|
@@ -185,8 +185,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
185
185
|
});
|
|
186
186
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
187
187
|
}
|
|
188
|
-
}
|
|
189
|
-
|
|
188
|
+
}
|
|
189
|
+
class ThrottlingException extends TimestreamInfluxDBServiceException {
|
|
190
190
|
name = "ThrottlingException";
|
|
191
191
|
$fault = "client";
|
|
192
192
|
$retryable = {};
|
|
@@ -200,8 +200,8 @@ let ThrottlingException$1 = class ThrottlingException extends TimestreamInfluxDB
|
|
|
200
200
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
201
201
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class ValidationException extends TimestreamInfluxDBServiceException {
|
|
205
205
|
name = "ValidationException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
reason;
|
|
@@ -214,7 +214,7 @@ let ValidationException$1 = class ValidationException extends TimestreamInfluxDB
|
|
|
214
214
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
215
215
|
this.reason = opts.reason;
|
|
216
216
|
}
|
|
217
|
-
}
|
|
217
|
+
}
|
|
218
218
|
|
|
219
219
|
const _ADE = "AccessDeniedException";
|
|
220
220
|
const _CDC = "CreateDbCluster";
|
|
@@ -278,6 +278,12 @@ const _P = "Password";
|
|
|
278
278
|
const _POAL = "PercentOrAbsoluteLong";
|
|
279
279
|
const _Pa = "Parameters";
|
|
280
280
|
const _RA = "Retry-After";
|
|
281
|
+
const _RDC = "RebootDbCluster";
|
|
282
|
+
const _RDCI = "RebootDbClusterInput";
|
|
283
|
+
const _RDCO = "RebootDbClusterOutput";
|
|
284
|
+
const _RDI = "RebootDbInstance";
|
|
285
|
+
const _RDII = "RebootDbInstanceInput";
|
|
286
|
+
const _RDIO = "RebootDbInstanceOutput";
|
|
281
287
|
const _RNFE = "ResourceNotFoundException";
|
|
282
288
|
const _SC = "S3Configuration";
|
|
283
289
|
const _SQEE = "ServiceQuotaExceededException";
|
|
@@ -352,6 +358,7 @@ const _hRT = "httpReadTimeout";
|
|
|
352
358
|
const _hWT = "httpWriteTimeout";
|
|
353
359
|
const _i = "id";
|
|
354
360
|
const _iAPSA = "influxAuthParametersSecretArn";
|
|
361
|
+
const _iI = "instanceIds";
|
|
355
362
|
const _iM = "instanceMode";
|
|
356
363
|
const _iMSB = "influxqlMaxSelectBuckets";
|
|
357
364
|
const _iMSP = "influxqlMaxSelectPoint";
|
|
@@ -440,11 +447,11 @@ const _wSS = "walSnapshotSize";
|
|
|
440
447
|
const n0 = "com.amazonaws.timestreaminfluxdb";
|
|
441
448
|
var Password = [0, n0, _P, 8, 0];
|
|
442
449
|
var Username = [0, n0, _U, 8, 0];
|
|
443
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
444
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
445
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
446
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
447
|
-
var CreateDbClusterInput = [
|
|
450
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
451
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
452
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
453
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
454
|
+
var CreateDbClusterInput$ = [
|
|
448
455
|
3,
|
|
449
456
|
n0,
|
|
450
457
|
_CDCI,
|
|
@@ -467,12 +474,12 @@ var CreateDbClusterInput = [
|
|
|
467
474
|
64 | 0,
|
|
468
475
|
0,
|
|
469
476
|
0,
|
|
470
|
-
() => LogDeliveryConfiguration
|
|
477
|
+
() => LogDeliveryConfiguration$,
|
|
471
478
|
128 | 0,
|
|
472
479
|
],
|
|
473
480
|
];
|
|
474
|
-
var CreateDbClusterOutput = [3, n0, _CDCO, 0, [_dCI, _dCS], [0, 0]];
|
|
475
|
-
var CreateDbInstanceInput = [
|
|
481
|
+
var CreateDbClusterOutput$ = [3, n0, _CDCO, 0, [_dCI, _dCS], [0, 0]];
|
|
482
|
+
var CreateDbInstanceInput$ = [
|
|
476
483
|
3,
|
|
477
484
|
n0,
|
|
478
485
|
_CDII,
|
|
@@ -492,13 +499,13 @@ var CreateDbInstanceInput = [
|
|
|
492
499
|
1,
|
|
493
500
|
0,
|
|
494
501
|
0,
|
|
495
|
-
() => LogDeliveryConfiguration
|
|
502
|
+
() => LogDeliveryConfiguration$,
|
|
496
503
|
128 | 0,
|
|
497
504
|
1,
|
|
498
505
|
0,
|
|
499
506
|
],
|
|
500
507
|
];
|
|
501
|
-
var CreateDbInstanceOutput = [
|
|
508
|
+
var CreateDbInstanceOutput$ = [
|
|
502
509
|
3,
|
|
503
510
|
n0,
|
|
504
511
|
_CDIO,
|
|
@@ -527,25 +534,25 @@ var CreateDbInstanceOutput = [
|
|
|
527
534
|
_iM,
|
|
528
535
|
_iMn,
|
|
529
536
|
],
|
|
530
|
-
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration
|
|
537
|
+
[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],
|
|
531
538
|
];
|
|
532
|
-
var CreateDbParameterGroupInput = [
|
|
539
|
+
var CreateDbParameterGroupInput$ = [
|
|
533
540
|
3,
|
|
534
541
|
n0,
|
|
535
542
|
_CDPGI,
|
|
536
543
|
0,
|
|
537
544
|
[_n, _d, _pa, _t],
|
|
538
|
-
[0, 0, () => _Parameters
|
|
545
|
+
[0, 0, () => _Parameters$, 128 | 0],
|
|
539
546
|
];
|
|
540
|
-
var CreateDbParameterGroupOutput = [
|
|
547
|
+
var CreateDbParameterGroupOutput$ = [
|
|
541
548
|
3,
|
|
542
549
|
n0,
|
|
543
550
|
_CDPGO,
|
|
544
551
|
0,
|
|
545
552
|
[_i, _n, _a, _d, _pa],
|
|
546
|
-
[0, 0, 0, 0, () => _Parameters],
|
|
553
|
+
[0, 0, 0, 0, () => _Parameters$],
|
|
547
554
|
];
|
|
548
|
-
var DbClusterSummary = [
|
|
555
|
+
var DbClusterSummary$ = [
|
|
549
556
|
3,
|
|
550
557
|
n0,
|
|
551
558
|
_DCS,
|
|
@@ -553,7 +560,7 @@ var DbClusterSummary = [
|
|
|
553
560
|
[_i, _n, _a, _s, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT],
|
|
554
561
|
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0],
|
|
555
562
|
];
|
|
556
|
-
var DbInstanceForClusterSummary = [
|
|
563
|
+
var DbInstanceForClusterSummary$ = [
|
|
557
564
|
3,
|
|
558
565
|
n0,
|
|
559
566
|
_DIFCS,
|
|
@@ -561,7 +568,7 @@ var DbInstanceForClusterSummary = [
|
|
|
561
568
|
[_i, _n, _a, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _iM, _iMn],
|
|
562
569
|
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 64 | 0],
|
|
563
570
|
];
|
|
564
|
-
var DbInstanceSummary = [
|
|
571
|
+
var DbInstanceSummary$ = [
|
|
565
572
|
3,
|
|
566
573
|
n0,
|
|
567
574
|
_DIS,
|
|
@@ -569,11 +576,11 @@ var DbInstanceSummary = [
|
|
|
569
576
|
[_i, _n, _a, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT],
|
|
570
577
|
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0],
|
|
571
578
|
];
|
|
572
|
-
var DbParameterGroupSummary = [3, n0, _DPGS, 0, [_i, _n, _a, _d], [0, 0, 0, 0]];
|
|
573
|
-
var DeleteDbClusterInput = [3, n0, _DDCI, 0, [_dCI], [0]];
|
|
574
|
-
var DeleteDbClusterOutput = [3, n0, _DDCO, 0, [_dCS], [0]];
|
|
575
|
-
var DeleteDbInstanceInput = [3, n0, _DDII, 0, [_id], [0]];
|
|
576
|
-
var DeleteDbInstanceOutput = [
|
|
579
|
+
var DbParameterGroupSummary$ = [3, n0, _DPGS, 0, [_i, _n, _a, _d], [0, 0, 0, 0]];
|
|
580
|
+
var DeleteDbClusterInput$ = [3, n0, _DDCI, 0, [_dCI], [0]];
|
|
581
|
+
var DeleteDbClusterOutput$ = [3, n0, _DDCO, 0, [_dCS], [0]];
|
|
582
|
+
var DeleteDbInstanceInput$ = [3, n0, _DDII, 0, [_id], [0]];
|
|
583
|
+
var DeleteDbInstanceOutput$ = [
|
|
577
584
|
3,
|
|
578
585
|
n0,
|
|
579
586
|
_DDIO,
|
|
@@ -602,20 +609,20 @@ var DeleteDbInstanceOutput = [
|
|
|
602
609
|
_iM,
|
|
603
610
|
_iMn,
|
|
604
611
|
],
|
|
605
|
-
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration
|
|
612
|
+
[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],
|
|
606
613
|
];
|
|
607
|
-
var Duration = [3, n0, _D, 0, [_dTu, _v], [0, 1]];
|
|
608
|
-
var GetDbClusterInput = [3, n0, _GDCI, 0, [_dCI], [0]];
|
|
609
|
-
var GetDbClusterOutput = [
|
|
614
|
+
var Duration$ = [3, n0, _D, 0, [_dTu, _v], [0, 1]];
|
|
615
|
+
var GetDbClusterInput$ = [3, n0, _GDCI, 0, [_dCI], [0]];
|
|
616
|
+
var GetDbClusterOutput$ = [
|
|
610
617
|
3,
|
|
611
618
|
n0,
|
|
612
619
|
_GDCO,
|
|
613
620
|
0,
|
|
614
621
|
[_i, _n, _a, _s, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _iAPSA, _vSI, _vSGI, _fM],
|
|
615
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => LogDeliveryConfiguration
|
|
622
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => LogDeliveryConfiguration$, 0, 64 | 0, 64 | 0, 0],
|
|
616
623
|
];
|
|
617
|
-
var GetDbInstanceInput = [3, n0, _GDII, 0, [_id], [0]];
|
|
618
|
-
var GetDbInstanceOutput = [
|
|
624
|
+
var GetDbInstanceInput$ = [3, n0, _GDII, 0, [_id], [0]];
|
|
625
|
+
var GetDbInstanceOutput$ = [
|
|
619
626
|
3,
|
|
620
627
|
n0,
|
|
621
628
|
_GDIO,
|
|
@@ -644,18 +651,18 @@ var GetDbInstanceOutput = [
|
|
|
644
651
|
_iM,
|
|
645
652
|
_iMn,
|
|
646
653
|
],
|
|
647
|
-
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration
|
|
654
|
+
[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],
|
|
648
655
|
];
|
|
649
|
-
var GetDbParameterGroupInput = [3, n0, _GDPGI, 0, [_id], [0]];
|
|
650
|
-
var GetDbParameterGroupOutput = [
|
|
656
|
+
var GetDbParameterGroupInput$ = [3, n0, _GDPGI, 0, [_id], [0]];
|
|
657
|
+
var GetDbParameterGroupOutput$ = [
|
|
651
658
|
3,
|
|
652
659
|
n0,
|
|
653
660
|
_GDPGO,
|
|
654
661
|
0,
|
|
655
662
|
[_i, _n, _a, _d, _pa],
|
|
656
|
-
[0, 0, 0, 0, () => _Parameters],
|
|
663
|
+
[0, 0, 0, 0, () => _Parameters$],
|
|
657
664
|
];
|
|
658
|
-
var InfluxDBv2Parameters = [
|
|
665
|
+
var InfluxDBv2Parameters$ = [
|
|
659
666
|
3,
|
|
660
667
|
n0,
|
|
661
668
|
_IDBP,
|
|
@@ -704,10 +711,10 @@ var InfluxDBv2Parameters = [
|
|
|
704
711
|
1,
|
|
705
712
|
0,
|
|
706
713
|
2,
|
|
707
|
-
() => Duration
|
|
708
|
-
() => Duration
|
|
709
|
-
() => Duration
|
|
710
|
-
() => Duration
|
|
714
|
+
() => Duration$,
|
|
715
|
+
() => Duration$,
|
|
716
|
+
() => Duration$,
|
|
717
|
+
() => Duration$,
|
|
711
718
|
1,
|
|
712
719
|
1,
|
|
713
720
|
1,
|
|
@@ -719,21 +726,21 @@ var InfluxDBv2Parameters = [
|
|
|
719
726
|
2,
|
|
720
727
|
1,
|
|
721
728
|
1,
|
|
722
|
-
() => Duration
|
|
723
|
-
() => Duration
|
|
729
|
+
() => Duration$,
|
|
730
|
+
() => Duration$,
|
|
724
731
|
1,
|
|
725
732
|
1,
|
|
726
733
|
1,
|
|
727
734
|
2,
|
|
728
|
-
() => Duration
|
|
735
|
+
() => Duration$,
|
|
729
736
|
1,
|
|
730
737
|
1,
|
|
731
738
|
1,
|
|
732
|
-
() => Duration
|
|
739
|
+
() => Duration$,
|
|
733
740
|
2,
|
|
734
741
|
],
|
|
735
742
|
];
|
|
736
|
-
var InfluxDBv3CoreParameters = [
|
|
743
|
+
var InfluxDBv3CoreParameters$ = [
|
|
737
744
|
3,
|
|
738
745
|
n0,
|
|
739
746
|
_IDBCP,
|
|
@@ -791,37 +798,37 @@ var InfluxDBv3CoreParameters = [
|
|
|
791
798
|
1,
|
|
792
799
|
1,
|
|
793
800
|
1,
|
|
794
|
-
() => Duration
|
|
801
|
+
() => Duration$,
|
|
795
802
|
1,
|
|
796
803
|
1,
|
|
797
804
|
2,
|
|
798
805
|
0,
|
|
799
806
|
1,
|
|
800
|
-
() => PercentOrAbsoluteLong
|
|
807
|
+
() => PercentOrAbsoluteLong$,
|
|
801
808
|
1,
|
|
802
809
|
1,
|
|
803
810
|
1,
|
|
804
|
-
() => Duration
|
|
811
|
+
() => Duration$,
|
|
805
812
|
1,
|
|
806
|
-
() => Duration
|
|
813
|
+
() => Duration$,
|
|
807
814
|
2,
|
|
808
|
-
() => Duration
|
|
809
|
-
() => Duration
|
|
810
|
-
() => Duration
|
|
811
|
-
() => Duration
|
|
812
|
-
() => PercentOrAbsoluteLong
|
|
813
|
-
() => PercentOrAbsoluteLong
|
|
815
|
+
() => Duration$,
|
|
816
|
+
() => Duration$,
|
|
817
|
+
() => Duration$,
|
|
818
|
+
() => Duration$,
|
|
819
|
+
() => PercentOrAbsoluteLong$,
|
|
820
|
+
() => PercentOrAbsoluteLong$,
|
|
814
821
|
2,
|
|
815
822
|
1,
|
|
816
823
|
1,
|
|
817
824
|
1,
|
|
818
|
-
() => Duration
|
|
819
|
-
() => Duration
|
|
820
|
-
() => Duration
|
|
821
|
-
() => Duration
|
|
825
|
+
() => Duration$,
|
|
826
|
+
() => Duration$,
|
|
827
|
+
() => Duration$,
|
|
828
|
+
() => Duration$,
|
|
822
829
|
],
|
|
823
830
|
];
|
|
824
|
-
var InfluxDBv3EnterpriseParameters = [
|
|
831
|
+
var InfluxDBv3EnterpriseParameters$ = [
|
|
825
832
|
3,
|
|
826
833
|
n0,
|
|
827
834
|
_IDBEP,
|
|
@@ -892,53 +899,53 @@ var InfluxDBv3EnterpriseParameters = [
|
|
|
892
899
|
1,
|
|
893
900
|
1,
|
|
894
901
|
1,
|
|
895
|
-
() => Duration
|
|
902
|
+
() => Duration$,
|
|
896
903
|
1,
|
|
897
904
|
1,
|
|
898
905
|
2,
|
|
899
906
|
0,
|
|
900
907
|
1,
|
|
901
|
-
() => PercentOrAbsoluteLong
|
|
908
|
+
() => PercentOrAbsoluteLong$,
|
|
902
909
|
1,
|
|
903
910
|
1,
|
|
904
911
|
1,
|
|
905
|
-
() => Duration
|
|
912
|
+
() => Duration$,
|
|
906
913
|
1,
|
|
907
|
-
() => Duration
|
|
914
|
+
() => Duration$,
|
|
908
915
|
2,
|
|
909
|
-
() => Duration
|
|
910
|
-
() => Duration
|
|
911
|
-
() => Duration
|
|
912
|
-
() => Duration
|
|
913
|
-
() => PercentOrAbsoluteLong
|
|
914
|
-
() => PercentOrAbsoluteLong
|
|
916
|
+
() => Duration$,
|
|
917
|
+
() => Duration$,
|
|
918
|
+
() => Duration$,
|
|
919
|
+
() => Duration$,
|
|
920
|
+
() => PercentOrAbsoluteLong$,
|
|
921
|
+
() => PercentOrAbsoluteLong$,
|
|
915
922
|
2,
|
|
916
923
|
1,
|
|
917
924
|
1,
|
|
918
925
|
1,
|
|
919
|
-
() => Duration
|
|
920
|
-
() => Duration
|
|
921
|
-
() => Duration
|
|
922
|
-
() => Duration
|
|
926
|
+
() => Duration$,
|
|
927
|
+
() => Duration$,
|
|
928
|
+
() => Duration$,
|
|
929
|
+
() => Duration$,
|
|
923
930
|
1,
|
|
924
931
|
1,
|
|
925
932
|
2,
|
|
926
933
|
1,
|
|
927
934
|
1,
|
|
928
|
-
() => Duration
|
|
935
|
+
() => Duration$,
|
|
929
936
|
0,
|
|
930
|
-
() => Duration
|
|
931
|
-
() => Duration
|
|
937
|
+
() => Duration$,
|
|
938
|
+
() => Duration$,
|
|
932
939
|
2,
|
|
933
940
|
2,
|
|
934
|
-
() => Duration
|
|
935
|
-
() => Duration
|
|
941
|
+
() => Duration$,
|
|
942
|
+
() => Duration$,
|
|
936
943
|
],
|
|
937
944
|
];
|
|
938
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
939
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
940
|
-
var ListDbClustersInput = [3, n0, _LDCI, 0, [_nTe, _mR], [0, 1]];
|
|
941
|
-
var ListDbClustersOutput = [
|
|
945
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
946
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
947
|
+
var ListDbClustersInput$ = [3, n0, _LDCI, 0, [_nTe, _mR], [0, 1]];
|
|
948
|
+
var ListDbClustersOutput$ = [
|
|
942
949
|
3,
|
|
943
950
|
n0,
|
|
944
951
|
_LDCO,
|
|
@@ -946,8 +953,8 @@ var ListDbClustersOutput = [
|
|
|
946
953
|
[_it, _nTe],
|
|
947
954
|
[() => DbClusterSummaryList, 0],
|
|
948
955
|
];
|
|
949
|
-
var ListDbInstancesForClusterInput = [3, n0, _LDIFCI, 0, [_dCI, _nTe, _mR], [0, 0, 1]];
|
|
950
|
-
var ListDbInstancesForClusterOutput = [
|
|
956
|
+
var ListDbInstancesForClusterInput$ = [3, n0, _LDIFCI, 0, [_dCI, _nTe, _mR], [0, 0, 1]];
|
|
957
|
+
var ListDbInstancesForClusterOutput$ = [
|
|
951
958
|
3,
|
|
952
959
|
n0,
|
|
953
960
|
_LDIFCO,
|
|
@@ -955,8 +962,8 @@ var ListDbInstancesForClusterOutput = [
|
|
|
955
962
|
[_it, _nTe],
|
|
956
963
|
[() => DbInstanceForClusterSummaryList, 0],
|
|
957
964
|
];
|
|
958
|
-
var ListDbInstancesInput = [3, n0, _LDII, 0, [_nTe, _mR], [0, 1]];
|
|
959
|
-
var ListDbInstancesOutput = [
|
|
965
|
+
var ListDbInstancesInput$ = [3, n0, _LDII, 0, [_nTe, _mR], [0, 1]];
|
|
966
|
+
var ListDbInstancesOutput$ = [
|
|
960
967
|
3,
|
|
961
968
|
n0,
|
|
962
969
|
_LDIO,
|
|
@@ -964,8 +971,8 @@ var ListDbInstancesOutput = [
|
|
|
964
971
|
[_it, _nTe],
|
|
965
972
|
[() => DbInstanceSummaryList, 0],
|
|
966
973
|
];
|
|
967
|
-
var ListDbParameterGroupsInput = [3, n0, _LDPGI, 0, [_nTe, _mR], [0, 1]];
|
|
968
|
-
var ListDbParameterGroupsOutput = [
|
|
974
|
+
var ListDbParameterGroupsInput$ = [3, n0, _LDPGI, 0, [_nTe, _mR], [0, 1]];
|
|
975
|
+
var ListDbParameterGroupsOutput$ = [
|
|
969
976
|
3,
|
|
970
977
|
n0,
|
|
971
978
|
_LDPGO,
|
|
@@ -973,10 +980,44 @@ var ListDbParameterGroupsOutput = [
|
|
|
973
980
|
[_it, _nTe],
|
|
974
981
|
[() => DbParameterGroupSummaryList, 0],
|
|
975
982
|
];
|
|
976
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
977
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
978
|
-
var LogDeliveryConfiguration = [3, n0, _LDC, 0, [_sC], [() => S3Configuration]];
|
|
979
|
-
var
|
|
983
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
984
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
985
|
+
var LogDeliveryConfiguration$ = [3, n0, _LDC, 0, [_sC], [() => S3Configuration$]];
|
|
986
|
+
var RebootDbClusterInput$ = [3, n0, _RDCI, 0, [_dCI, _iI], [0, 64 | 0]];
|
|
987
|
+
var RebootDbClusterOutput$ = [3, n0, _RDCO, 0, [_dCS], [0]];
|
|
988
|
+
var RebootDbInstanceInput$ = [3, n0, _RDII, 0, [_id], [0]];
|
|
989
|
+
var RebootDbInstanceOutput$ = [
|
|
990
|
+
3,
|
|
991
|
+
n0,
|
|
992
|
+
_RDIO,
|
|
993
|
+
0,
|
|
994
|
+
[
|
|
995
|
+
_i,
|
|
996
|
+
_n,
|
|
997
|
+
_a,
|
|
998
|
+
_s,
|
|
999
|
+
_en,
|
|
1000
|
+
_po,
|
|
1001
|
+
_nT,
|
|
1002
|
+
_dIT,
|
|
1003
|
+
_dST,
|
|
1004
|
+
_aS,
|
|
1005
|
+
_dT,
|
|
1006
|
+
_vSI,
|
|
1007
|
+
_pA,
|
|
1008
|
+
_vSGI,
|
|
1009
|
+
_dPGI,
|
|
1010
|
+
_aZ,
|
|
1011
|
+
_sAZ,
|
|
1012
|
+
_lDC,
|
|
1013
|
+
_iAPSA,
|
|
1014
|
+
_dCI,
|
|
1015
|
+
_iM,
|
|
1016
|
+
_iMn,
|
|
1017
|
+
],
|
|
1018
|
+
[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],
|
|
1019
|
+
];
|
|
1020
|
+
var ResourceNotFoundException$ = [
|
|
980
1021
|
-3,
|
|
981
1022
|
n0,
|
|
982
1023
|
_RNFE,
|
|
@@ -984,12 +1025,12 @@ var ResourceNotFoundException = [
|
|
|
984
1025
|
[_m, _rI, _rT],
|
|
985
1026
|
[0, 0, 0],
|
|
986
1027
|
];
|
|
987
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
988
|
-
var S3Configuration = [3, n0, _SC, 0, [_bN, _ena], [0, 2]];
|
|
989
|
-
var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
|
|
990
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
991
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
|
|
992
|
-
var ThrottlingException = [
|
|
1028
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1029
|
+
var S3Configuration$ = [3, n0, _SC, 0, [_bN, _ena], [0, 2]];
|
|
1030
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
|
|
1031
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1032
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
|
|
1033
|
+
var ThrottlingException$ = [
|
|
993
1034
|
-3,
|
|
994
1035
|
n0,
|
|
995
1036
|
_TE,
|
|
@@ -997,26 +1038,26 @@ var ThrottlingException = [
|
|
|
997
1038
|
[_m, _rAS],
|
|
998
1039
|
[0, [1, { [_hH]: _RA }]],
|
|
999
1040
|
];
|
|
1000
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1001
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
|
|
1002
|
-
var UpdateDbClusterInput = [
|
|
1041
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1042
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
|
|
1043
|
+
var UpdateDbClusterInput$ = [
|
|
1003
1044
|
3,
|
|
1004
1045
|
n0,
|
|
1005
1046
|
_UDCI,
|
|
1006
1047
|
0,
|
|
1007
1048
|
[_dCI, _lDC, _dPGI, _po, _dIT, _fM],
|
|
1008
|
-
[0, () => LogDeliveryConfiguration
|
|
1049
|
+
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0],
|
|
1009
1050
|
];
|
|
1010
|
-
var UpdateDbClusterOutput = [3, n0, _UDCO, 0, [_dCS], [0]];
|
|
1011
|
-
var UpdateDbInstanceInput = [
|
|
1051
|
+
var UpdateDbClusterOutput$ = [3, n0, _UDCO, 0, [_dCS], [0]];
|
|
1052
|
+
var UpdateDbInstanceInput$ = [
|
|
1012
1053
|
3,
|
|
1013
1054
|
n0,
|
|
1014
1055
|
_UDII,
|
|
1015
1056
|
0,
|
|
1016
1057
|
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS],
|
|
1017
|
-
[0, () => LogDeliveryConfiguration
|
|
1058
|
+
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1],
|
|
1018
1059
|
];
|
|
1019
|
-
var UpdateDbInstanceOutput = [
|
|
1060
|
+
var UpdateDbInstanceOutput$ = [
|
|
1020
1061
|
3,
|
|
1021
1062
|
n0,
|
|
1022
1063
|
_UDIO,
|
|
@@ -1045,12 +1086,12 @@ var UpdateDbInstanceOutput = [
|
|
|
1045
1086
|
_iM,
|
|
1046
1087
|
_iMn,
|
|
1047
1088
|
],
|
|
1048
|
-
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 64 | 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration
|
|
1089
|
+
[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],
|
|
1049
1090
|
];
|
|
1050
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _r], [0, 0]];
|
|
1051
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1091
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _r], [0, 0]];
|
|
1092
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1052
1093
|
var __Unit = "unit";
|
|
1053
|
-
var TimestreamInfluxDBServiceException = [
|
|
1094
|
+
var TimestreamInfluxDBServiceException$ = [
|
|
1054
1095
|
-3,
|
|
1055
1096
|
_sm,
|
|
1056
1097
|
"TimestreamInfluxDBServiceException",
|
|
@@ -1058,127 +1099,150 @@ var TimestreamInfluxDBServiceException = [
|
|
|
1058
1099
|
[],
|
|
1059
1100
|
[],
|
|
1060
1101
|
];
|
|
1061
|
-
schema.TypeRegistry.for(_sm).registerError(TimestreamInfluxDBServiceException
|
|
1062
|
-
var DbClusterSummaryList = [1, n0, _DCSL, 0, () => DbClusterSummary];
|
|
1063
|
-
var DbInstanceForClusterSummaryList = [1, n0, _DIFCSL, 0, () => DbInstanceForClusterSummary];
|
|
1064
|
-
var DbInstanceSummaryList = [1, n0, _DISL, 0, () => DbInstanceSummary];
|
|
1065
|
-
var DbParameterGroupSummaryList = [1, n0, _DPGSL, 0, () => DbParameterGroupSummary];
|
|
1066
|
-
var _Parameters = [
|
|
1102
|
+
schema.TypeRegistry.for(_sm).registerError(TimestreamInfluxDBServiceException$, TimestreamInfluxDBServiceException);
|
|
1103
|
+
var DbClusterSummaryList = [1, n0, _DCSL, 0, () => DbClusterSummary$];
|
|
1104
|
+
var DbInstanceForClusterSummaryList = [1, n0, _DIFCSL, 0, () => DbInstanceForClusterSummary$];
|
|
1105
|
+
var DbInstanceSummaryList = [1, n0, _DISL, 0, () => DbInstanceSummary$];
|
|
1106
|
+
var DbParameterGroupSummaryList = [1, n0, _DPGSL, 0, () => DbParameterGroupSummary$];
|
|
1107
|
+
var _Parameters$ = [
|
|
1067
1108
|
3,
|
|
1068
1109
|
n0,
|
|
1069
1110
|
_Pa,
|
|
1070
1111
|
0,
|
|
1071
1112
|
[_IDB, _IDBC, _IDBE],
|
|
1072
|
-
[() => InfluxDBv2Parameters
|
|
1113
|
+
[() => InfluxDBv2Parameters$, () => InfluxDBv3CoreParameters$, () => InfluxDBv3EnterpriseParameters$],
|
|
1073
1114
|
];
|
|
1074
|
-
var PercentOrAbsoluteLong = [3, n0, _POAL, 0, [_pe, _ab], [0, 1]];
|
|
1075
|
-
var CreateDbCluster = [
|
|
1115
|
+
var PercentOrAbsoluteLong$ = [3, n0, _POAL, 0, [_pe, _ab], [0, 1]];
|
|
1116
|
+
var CreateDbCluster$ = [
|
|
1076
1117
|
9,
|
|
1077
1118
|
n0,
|
|
1078
1119
|
_CDC,
|
|
1079
1120
|
2,
|
|
1080
|
-
() => CreateDbClusterInput
|
|
1081
|
-
() => CreateDbClusterOutput
|
|
1121
|
+
() => CreateDbClusterInput$,
|
|
1122
|
+
() => CreateDbClusterOutput$,
|
|
1082
1123
|
];
|
|
1083
|
-
var CreateDbInstance = [
|
|
1124
|
+
var CreateDbInstance$ = [
|
|
1084
1125
|
9,
|
|
1085
1126
|
n0,
|
|
1086
1127
|
_CDI,
|
|
1087
1128
|
2,
|
|
1088
|
-
() => CreateDbInstanceInput
|
|
1089
|
-
() => CreateDbInstanceOutput
|
|
1129
|
+
() => CreateDbInstanceInput$,
|
|
1130
|
+
() => CreateDbInstanceOutput$,
|
|
1090
1131
|
];
|
|
1091
|
-
var CreateDbParameterGroup = [
|
|
1132
|
+
var CreateDbParameterGroup$ = [
|
|
1092
1133
|
9,
|
|
1093
1134
|
n0,
|
|
1094
1135
|
_CDPG,
|
|
1095
1136
|
2,
|
|
1096
|
-
() => CreateDbParameterGroupInput
|
|
1097
|
-
() => CreateDbParameterGroupOutput
|
|
1137
|
+
() => CreateDbParameterGroupInput$,
|
|
1138
|
+
() => CreateDbParameterGroupOutput$,
|
|
1098
1139
|
];
|
|
1099
|
-
var DeleteDbCluster = [
|
|
1140
|
+
var DeleteDbCluster$ = [
|
|
1100
1141
|
9,
|
|
1101
1142
|
n0,
|
|
1102
1143
|
_DDC,
|
|
1103
1144
|
2,
|
|
1104
|
-
() => DeleteDbClusterInput
|
|
1105
|
-
() => DeleteDbClusterOutput
|
|
1145
|
+
() => DeleteDbClusterInput$,
|
|
1146
|
+
() => DeleteDbClusterOutput$,
|
|
1106
1147
|
];
|
|
1107
|
-
var DeleteDbInstance = [
|
|
1148
|
+
var DeleteDbInstance$ = [
|
|
1108
1149
|
9,
|
|
1109
1150
|
n0,
|
|
1110
1151
|
_DDI,
|
|
1111
1152
|
2,
|
|
1112
|
-
() => DeleteDbInstanceInput
|
|
1113
|
-
() => DeleteDbInstanceOutput
|
|
1153
|
+
() => DeleteDbInstanceInput$,
|
|
1154
|
+
() => DeleteDbInstanceOutput$,
|
|
1155
|
+
];
|
|
1156
|
+
var GetDbCluster$ = [9, n0, _GDC, 0, () => GetDbClusterInput$, () => GetDbClusterOutput$];
|
|
1157
|
+
var GetDbInstance$ = [
|
|
1158
|
+
9,
|
|
1159
|
+
n0,
|
|
1160
|
+
_GDI,
|
|
1161
|
+
0,
|
|
1162
|
+
() => GetDbInstanceInput$,
|
|
1163
|
+
() => GetDbInstanceOutput$,
|
|
1114
1164
|
];
|
|
1115
|
-
var
|
|
1116
|
-
var GetDbInstance = [9, n0, _GDI, 0, () => GetDbInstanceInput, () => GetDbInstanceOutput];
|
|
1117
|
-
var GetDbParameterGroup = [
|
|
1165
|
+
var GetDbParameterGroup$ = [
|
|
1118
1166
|
9,
|
|
1119
1167
|
n0,
|
|
1120
1168
|
_GDPG,
|
|
1121
1169
|
0,
|
|
1122
|
-
() => GetDbParameterGroupInput
|
|
1123
|
-
() => GetDbParameterGroupOutput
|
|
1170
|
+
() => GetDbParameterGroupInput$,
|
|
1171
|
+
() => GetDbParameterGroupOutput$,
|
|
1124
1172
|
];
|
|
1125
|
-
var ListDbClusters = [
|
|
1173
|
+
var ListDbClusters$ = [
|
|
1126
1174
|
9,
|
|
1127
1175
|
n0,
|
|
1128
1176
|
_LDCi,
|
|
1129
1177
|
0,
|
|
1130
|
-
() => ListDbClustersInput
|
|
1131
|
-
() => ListDbClustersOutput
|
|
1178
|
+
() => ListDbClustersInput$,
|
|
1179
|
+
() => ListDbClustersOutput$,
|
|
1132
1180
|
];
|
|
1133
|
-
var ListDbInstances = [
|
|
1181
|
+
var ListDbInstances$ = [
|
|
1134
1182
|
9,
|
|
1135
1183
|
n0,
|
|
1136
1184
|
_LDI,
|
|
1137
1185
|
0,
|
|
1138
|
-
() => ListDbInstancesInput
|
|
1139
|
-
() => ListDbInstancesOutput
|
|
1186
|
+
() => ListDbInstancesInput$,
|
|
1187
|
+
() => ListDbInstancesOutput$,
|
|
1140
1188
|
];
|
|
1141
|
-
var ListDbInstancesForCluster = [
|
|
1189
|
+
var ListDbInstancesForCluster$ = [
|
|
1142
1190
|
9,
|
|
1143
1191
|
n0,
|
|
1144
1192
|
_LDIFC,
|
|
1145
1193
|
0,
|
|
1146
|
-
() => ListDbInstancesForClusterInput
|
|
1147
|
-
() => ListDbInstancesForClusterOutput
|
|
1194
|
+
() => ListDbInstancesForClusterInput$,
|
|
1195
|
+
() => ListDbInstancesForClusterOutput$,
|
|
1148
1196
|
];
|
|
1149
|
-
var ListDbParameterGroups = [
|
|
1197
|
+
var ListDbParameterGroups$ = [
|
|
1150
1198
|
9,
|
|
1151
1199
|
n0,
|
|
1152
1200
|
_LDPG,
|
|
1153
1201
|
0,
|
|
1154
|
-
() => ListDbParameterGroupsInput
|
|
1155
|
-
() => ListDbParameterGroupsOutput
|
|
1202
|
+
() => ListDbParameterGroupsInput$,
|
|
1203
|
+
() => ListDbParameterGroupsOutput$,
|
|
1156
1204
|
];
|
|
1157
|
-
var ListTagsForResource = [
|
|
1205
|
+
var ListTagsForResource$ = [
|
|
1158
1206
|
9,
|
|
1159
1207
|
n0,
|
|
1160
1208
|
_LTFR,
|
|
1161
1209
|
0,
|
|
1162
|
-
() => ListTagsForResourceRequest
|
|
1163
|
-
() => ListTagsForResourceResponse
|
|
1210
|
+
() => ListTagsForResourceRequest$,
|
|
1211
|
+
() => ListTagsForResourceResponse$,
|
|
1212
|
+
];
|
|
1213
|
+
var RebootDbCluster$ = [
|
|
1214
|
+
9,
|
|
1215
|
+
n0,
|
|
1216
|
+
_RDC,
|
|
1217
|
+
2,
|
|
1218
|
+
() => RebootDbClusterInput$,
|
|
1219
|
+
() => RebootDbClusterOutput$,
|
|
1220
|
+
];
|
|
1221
|
+
var RebootDbInstance$ = [
|
|
1222
|
+
9,
|
|
1223
|
+
n0,
|
|
1224
|
+
_RDI,
|
|
1225
|
+
2,
|
|
1226
|
+
() => RebootDbInstanceInput$,
|
|
1227
|
+
() => RebootDbInstanceOutput$,
|
|
1164
1228
|
];
|
|
1165
|
-
var TagResource = [9, n0, _TR, 2, () => TagResourceRequest
|
|
1166
|
-
var UntagResource = [9, n0, _UR, 2, () => UntagResourceRequest
|
|
1167
|
-
var UpdateDbCluster = [
|
|
1229
|
+
var TagResource$ = [9, n0, _TR, 2, () => TagResourceRequest$, () => __Unit];
|
|
1230
|
+
var UntagResource$ = [9, n0, _UR, 2, () => UntagResourceRequest$, () => __Unit];
|
|
1231
|
+
var UpdateDbCluster$ = [
|
|
1168
1232
|
9,
|
|
1169
1233
|
n0,
|
|
1170
1234
|
_UDC,
|
|
1171
1235
|
2,
|
|
1172
|
-
() => UpdateDbClusterInput
|
|
1173
|
-
() => UpdateDbClusterOutput
|
|
1236
|
+
() => UpdateDbClusterInput$,
|
|
1237
|
+
() => UpdateDbClusterOutput$,
|
|
1174
1238
|
];
|
|
1175
|
-
var UpdateDbInstance = [
|
|
1239
|
+
var UpdateDbInstance$ = [
|
|
1176
1240
|
9,
|
|
1177
1241
|
n0,
|
|
1178
1242
|
_UDI,
|
|
1179
1243
|
2,
|
|
1180
|
-
() => UpdateDbInstanceInput
|
|
1181
|
-
() => UpdateDbInstanceOutput
|
|
1244
|
+
() => UpdateDbInstanceInput$,
|
|
1245
|
+
() => UpdateDbInstanceOutput$,
|
|
1182
1246
|
];
|
|
1183
1247
|
|
|
1184
1248
|
class CreateDbClusterCommand extends smithyClient.Command
|
|
@@ -1189,7 +1253,7 @@ class CreateDbClusterCommand extends smithyClient.Command
|
|
|
1189
1253
|
})
|
|
1190
1254
|
.s("AmazonTimestreamInfluxDB", "CreateDbCluster", {})
|
|
1191
1255
|
.n("TimestreamInfluxDBClient", "CreateDbClusterCommand")
|
|
1192
|
-
.sc(CreateDbCluster)
|
|
1256
|
+
.sc(CreateDbCluster$)
|
|
1193
1257
|
.build() {
|
|
1194
1258
|
}
|
|
1195
1259
|
|
|
@@ -1201,7 +1265,7 @@ class CreateDbInstanceCommand extends smithyClient.Command
|
|
|
1201
1265
|
})
|
|
1202
1266
|
.s("AmazonTimestreamInfluxDB", "CreateDbInstance", {})
|
|
1203
1267
|
.n("TimestreamInfluxDBClient", "CreateDbInstanceCommand")
|
|
1204
|
-
.sc(CreateDbInstance)
|
|
1268
|
+
.sc(CreateDbInstance$)
|
|
1205
1269
|
.build() {
|
|
1206
1270
|
}
|
|
1207
1271
|
|
|
@@ -1213,7 +1277,7 @@ class CreateDbParameterGroupCommand extends smithyClient.Command
|
|
|
1213
1277
|
})
|
|
1214
1278
|
.s("AmazonTimestreamInfluxDB", "CreateDbParameterGroup", {})
|
|
1215
1279
|
.n("TimestreamInfluxDBClient", "CreateDbParameterGroupCommand")
|
|
1216
|
-
.sc(CreateDbParameterGroup)
|
|
1280
|
+
.sc(CreateDbParameterGroup$)
|
|
1217
1281
|
.build() {
|
|
1218
1282
|
}
|
|
1219
1283
|
|
|
@@ -1225,7 +1289,7 @@ class DeleteDbClusterCommand extends smithyClient.Command
|
|
|
1225
1289
|
})
|
|
1226
1290
|
.s("AmazonTimestreamInfluxDB", "DeleteDbCluster", {})
|
|
1227
1291
|
.n("TimestreamInfluxDBClient", "DeleteDbClusterCommand")
|
|
1228
|
-
.sc(DeleteDbCluster)
|
|
1292
|
+
.sc(DeleteDbCluster$)
|
|
1229
1293
|
.build() {
|
|
1230
1294
|
}
|
|
1231
1295
|
|
|
@@ -1237,7 +1301,7 @@ class DeleteDbInstanceCommand extends smithyClient.Command
|
|
|
1237
1301
|
})
|
|
1238
1302
|
.s("AmazonTimestreamInfluxDB", "DeleteDbInstance", {})
|
|
1239
1303
|
.n("TimestreamInfluxDBClient", "DeleteDbInstanceCommand")
|
|
1240
|
-
.sc(DeleteDbInstance)
|
|
1304
|
+
.sc(DeleteDbInstance$)
|
|
1241
1305
|
.build() {
|
|
1242
1306
|
}
|
|
1243
1307
|
|
|
@@ -1249,7 +1313,7 @@ class GetDbClusterCommand extends smithyClient.Command
|
|
|
1249
1313
|
})
|
|
1250
1314
|
.s("AmazonTimestreamInfluxDB", "GetDbCluster", {})
|
|
1251
1315
|
.n("TimestreamInfluxDBClient", "GetDbClusterCommand")
|
|
1252
|
-
.sc(GetDbCluster)
|
|
1316
|
+
.sc(GetDbCluster$)
|
|
1253
1317
|
.build() {
|
|
1254
1318
|
}
|
|
1255
1319
|
|
|
@@ -1261,7 +1325,7 @@ class GetDbInstanceCommand extends smithyClient.Command
|
|
|
1261
1325
|
})
|
|
1262
1326
|
.s("AmazonTimestreamInfluxDB", "GetDbInstance", {})
|
|
1263
1327
|
.n("TimestreamInfluxDBClient", "GetDbInstanceCommand")
|
|
1264
|
-
.sc(GetDbInstance)
|
|
1328
|
+
.sc(GetDbInstance$)
|
|
1265
1329
|
.build() {
|
|
1266
1330
|
}
|
|
1267
1331
|
|
|
@@ -1273,7 +1337,7 @@ class GetDbParameterGroupCommand extends smithyClient.Command
|
|
|
1273
1337
|
})
|
|
1274
1338
|
.s("AmazonTimestreamInfluxDB", "GetDbParameterGroup", {})
|
|
1275
1339
|
.n("TimestreamInfluxDBClient", "GetDbParameterGroupCommand")
|
|
1276
|
-
.sc(GetDbParameterGroup)
|
|
1340
|
+
.sc(GetDbParameterGroup$)
|
|
1277
1341
|
.build() {
|
|
1278
1342
|
}
|
|
1279
1343
|
|
|
@@ -1285,7 +1349,7 @@ class ListDbClustersCommand extends smithyClient.Command
|
|
|
1285
1349
|
})
|
|
1286
1350
|
.s("AmazonTimestreamInfluxDB", "ListDbClusters", {})
|
|
1287
1351
|
.n("TimestreamInfluxDBClient", "ListDbClustersCommand")
|
|
1288
|
-
.sc(ListDbClusters)
|
|
1352
|
+
.sc(ListDbClusters$)
|
|
1289
1353
|
.build() {
|
|
1290
1354
|
}
|
|
1291
1355
|
|
|
@@ -1297,7 +1361,7 @@ class ListDbInstancesCommand extends smithyClient.Command
|
|
|
1297
1361
|
})
|
|
1298
1362
|
.s("AmazonTimestreamInfluxDB", "ListDbInstances", {})
|
|
1299
1363
|
.n("TimestreamInfluxDBClient", "ListDbInstancesCommand")
|
|
1300
|
-
.sc(ListDbInstances)
|
|
1364
|
+
.sc(ListDbInstances$)
|
|
1301
1365
|
.build() {
|
|
1302
1366
|
}
|
|
1303
1367
|
|
|
@@ -1309,7 +1373,7 @@ class ListDbInstancesForClusterCommand extends smithyClient.Command
|
|
|
1309
1373
|
})
|
|
1310
1374
|
.s("AmazonTimestreamInfluxDB", "ListDbInstancesForCluster", {})
|
|
1311
1375
|
.n("TimestreamInfluxDBClient", "ListDbInstancesForClusterCommand")
|
|
1312
|
-
.sc(ListDbInstancesForCluster)
|
|
1376
|
+
.sc(ListDbInstancesForCluster$)
|
|
1313
1377
|
.build() {
|
|
1314
1378
|
}
|
|
1315
1379
|
|
|
@@ -1321,7 +1385,7 @@ class ListDbParameterGroupsCommand extends smithyClient.Command
|
|
|
1321
1385
|
})
|
|
1322
1386
|
.s("AmazonTimestreamInfluxDB", "ListDbParameterGroups", {})
|
|
1323
1387
|
.n("TimestreamInfluxDBClient", "ListDbParameterGroupsCommand")
|
|
1324
|
-
.sc(ListDbParameterGroups)
|
|
1388
|
+
.sc(ListDbParameterGroups$)
|
|
1325
1389
|
.build() {
|
|
1326
1390
|
}
|
|
1327
1391
|
|
|
@@ -1333,7 +1397,31 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1333
1397
|
})
|
|
1334
1398
|
.s("AmazonTimestreamInfluxDB", "ListTagsForResource", {})
|
|
1335
1399
|
.n("TimestreamInfluxDBClient", "ListTagsForResourceCommand")
|
|
1336
|
-
.sc(ListTagsForResource)
|
|
1400
|
+
.sc(ListTagsForResource$)
|
|
1401
|
+
.build() {
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
class RebootDbClusterCommand extends smithyClient.Command
|
|
1405
|
+
.classBuilder()
|
|
1406
|
+
.ep(commonParams)
|
|
1407
|
+
.m(function (Command, cs, config, o) {
|
|
1408
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1409
|
+
})
|
|
1410
|
+
.s("AmazonTimestreamInfluxDB", "RebootDbCluster", {})
|
|
1411
|
+
.n("TimestreamInfluxDBClient", "RebootDbClusterCommand")
|
|
1412
|
+
.sc(RebootDbCluster$)
|
|
1413
|
+
.build() {
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
class RebootDbInstanceCommand extends smithyClient.Command
|
|
1417
|
+
.classBuilder()
|
|
1418
|
+
.ep(commonParams)
|
|
1419
|
+
.m(function (Command, cs, config, o) {
|
|
1420
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1421
|
+
})
|
|
1422
|
+
.s("AmazonTimestreamInfluxDB", "RebootDbInstance", {})
|
|
1423
|
+
.n("TimestreamInfluxDBClient", "RebootDbInstanceCommand")
|
|
1424
|
+
.sc(RebootDbInstance$)
|
|
1337
1425
|
.build() {
|
|
1338
1426
|
}
|
|
1339
1427
|
|
|
@@ -1345,7 +1433,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1345
1433
|
})
|
|
1346
1434
|
.s("AmazonTimestreamInfluxDB", "TagResource", {})
|
|
1347
1435
|
.n("TimestreamInfluxDBClient", "TagResourceCommand")
|
|
1348
|
-
.sc(TagResource)
|
|
1436
|
+
.sc(TagResource$)
|
|
1349
1437
|
.build() {
|
|
1350
1438
|
}
|
|
1351
1439
|
|
|
@@ -1357,7 +1445,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1357
1445
|
})
|
|
1358
1446
|
.s("AmazonTimestreamInfluxDB", "UntagResource", {})
|
|
1359
1447
|
.n("TimestreamInfluxDBClient", "UntagResourceCommand")
|
|
1360
|
-
.sc(UntagResource)
|
|
1448
|
+
.sc(UntagResource$)
|
|
1361
1449
|
.build() {
|
|
1362
1450
|
}
|
|
1363
1451
|
|
|
@@ -1369,7 +1457,7 @@ class UpdateDbClusterCommand extends smithyClient.Command
|
|
|
1369
1457
|
})
|
|
1370
1458
|
.s("AmazonTimestreamInfluxDB", "UpdateDbCluster", {})
|
|
1371
1459
|
.n("TimestreamInfluxDBClient", "UpdateDbClusterCommand")
|
|
1372
|
-
.sc(UpdateDbCluster)
|
|
1460
|
+
.sc(UpdateDbCluster$)
|
|
1373
1461
|
.build() {
|
|
1374
1462
|
}
|
|
1375
1463
|
|
|
@@ -1381,7 +1469,7 @@ class UpdateDbInstanceCommand extends smithyClient.Command
|
|
|
1381
1469
|
})
|
|
1382
1470
|
.s("AmazonTimestreamInfluxDB", "UpdateDbInstance", {})
|
|
1383
1471
|
.n("TimestreamInfluxDBClient", "UpdateDbInstanceCommand")
|
|
1384
|
-
.sc(UpdateDbInstance)
|
|
1472
|
+
.sc(UpdateDbInstance$)
|
|
1385
1473
|
.build() {
|
|
1386
1474
|
}
|
|
1387
1475
|
|
|
@@ -1399,6 +1487,8 @@ const commands = {
|
|
|
1399
1487
|
ListDbInstancesForClusterCommand,
|
|
1400
1488
|
ListDbParameterGroupsCommand,
|
|
1401
1489
|
ListTagsForResourceCommand,
|
|
1490
|
+
RebootDbClusterCommand,
|
|
1491
|
+
RebootDbInstanceCommand,
|
|
1402
1492
|
TagResourceCommand,
|
|
1403
1493
|
UntagResourceCommand,
|
|
1404
1494
|
UpdateDbClusterCommand,
|
|
@@ -1450,7 +1540,11 @@ const ClusterStatus = {
|
|
|
1450
1540
|
DELETING: "DELETING",
|
|
1451
1541
|
FAILED: "FAILED",
|
|
1452
1542
|
MAINTENANCE: "MAINTENANCE",
|
|
1543
|
+
PARTIALLY_AVAILABLE: "PARTIALLY_AVAILABLE",
|
|
1544
|
+
REBOOTING: "REBOOTING",
|
|
1545
|
+
REBOOT_FAILED: "REBOOT_FAILED",
|
|
1453
1546
|
UPDATING: "UPDATING",
|
|
1547
|
+
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
1454
1548
|
};
|
|
1455
1549
|
const ValidationExceptionReason = {
|
|
1456
1550
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
@@ -1482,6 +1576,8 @@ const Status = {
|
|
|
1482
1576
|
FAILED: "FAILED",
|
|
1483
1577
|
MAINTENANCE: "MAINTENANCE",
|
|
1484
1578
|
MODIFYING: "MODIFYING",
|
|
1579
|
+
REBOOTING: "REBOOTING",
|
|
1580
|
+
REBOOT_FAILED: "REBOOT_FAILED",
|
|
1485
1581
|
UPDATING: "UPDATING",
|
|
1486
1582
|
UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE",
|
|
1487
1583
|
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
@@ -1519,49 +1615,126 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1519
1615
|
enumerable: true,
|
|
1520
1616
|
get: function () { return smithyClient.Client; }
|
|
1521
1617
|
});
|
|
1522
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1618
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1619
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1523
1620
|
exports.ClusterDeploymentType = ClusterDeploymentType;
|
|
1524
1621
|
exports.ClusterStatus = ClusterStatus;
|
|
1525
|
-
exports.ConflictException = ConflictException
|
|
1622
|
+
exports.ConflictException = ConflictException;
|
|
1623
|
+
exports.ConflictException$ = ConflictException$;
|
|
1624
|
+
exports.CreateDbCluster$ = CreateDbCluster$;
|
|
1526
1625
|
exports.CreateDbClusterCommand = CreateDbClusterCommand;
|
|
1626
|
+
exports.CreateDbClusterInput$ = CreateDbClusterInput$;
|
|
1627
|
+
exports.CreateDbClusterOutput$ = CreateDbClusterOutput$;
|
|
1628
|
+
exports.CreateDbInstance$ = CreateDbInstance$;
|
|
1527
1629
|
exports.CreateDbInstanceCommand = CreateDbInstanceCommand;
|
|
1630
|
+
exports.CreateDbInstanceInput$ = CreateDbInstanceInput$;
|
|
1631
|
+
exports.CreateDbInstanceOutput$ = CreateDbInstanceOutput$;
|
|
1632
|
+
exports.CreateDbParameterGroup$ = CreateDbParameterGroup$;
|
|
1528
1633
|
exports.CreateDbParameterGroupCommand = CreateDbParameterGroupCommand;
|
|
1634
|
+
exports.CreateDbParameterGroupInput$ = CreateDbParameterGroupInput$;
|
|
1635
|
+
exports.CreateDbParameterGroupOutput$ = CreateDbParameterGroupOutput$;
|
|
1529
1636
|
exports.DataFusionRuntimeType = DataFusionRuntimeType;
|
|
1637
|
+
exports.DbClusterSummary$ = DbClusterSummary$;
|
|
1638
|
+
exports.DbInstanceForClusterSummary$ = DbInstanceForClusterSummary$;
|
|
1639
|
+
exports.DbInstanceSummary$ = DbInstanceSummary$;
|
|
1530
1640
|
exports.DbInstanceType = DbInstanceType;
|
|
1641
|
+
exports.DbParameterGroupSummary$ = DbParameterGroupSummary$;
|
|
1531
1642
|
exports.DbStorageType = DbStorageType;
|
|
1643
|
+
exports.DeleteDbCluster$ = DeleteDbCluster$;
|
|
1532
1644
|
exports.DeleteDbClusterCommand = DeleteDbClusterCommand;
|
|
1645
|
+
exports.DeleteDbClusterInput$ = DeleteDbClusterInput$;
|
|
1646
|
+
exports.DeleteDbClusterOutput$ = DeleteDbClusterOutput$;
|
|
1647
|
+
exports.DeleteDbInstance$ = DeleteDbInstance$;
|
|
1533
1648
|
exports.DeleteDbInstanceCommand = DeleteDbInstanceCommand;
|
|
1649
|
+
exports.DeleteDbInstanceInput$ = DeleteDbInstanceInput$;
|
|
1650
|
+
exports.DeleteDbInstanceOutput$ = DeleteDbInstanceOutput$;
|
|
1534
1651
|
exports.DeploymentType = DeploymentType;
|
|
1652
|
+
exports.Duration$ = Duration$;
|
|
1535
1653
|
exports.DurationType = DurationType;
|
|
1536
1654
|
exports.EngineType = EngineType;
|
|
1537
1655
|
exports.FailoverMode = FailoverMode;
|
|
1656
|
+
exports.GetDbCluster$ = GetDbCluster$;
|
|
1538
1657
|
exports.GetDbClusterCommand = GetDbClusterCommand;
|
|
1658
|
+
exports.GetDbClusterInput$ = GetDbClusterInput$;
|
|
1659
|
+
exports.GetDbClusterOutput$ = GetDbClusterOutput$;
|
|
1660
|
+
exports.GetDbInstance$ = GetDbInstance$;
|
|
1539
1661
|
exports.GetDbInstanceCommand = GetDbInstanceCommand;
|
|
1662
|
+
exports.GetDbInstanceInput$ = GetDbInstanceInput$;
|
|
1663
|
+
exports.GetDbInstanceOutput$ = GetDbInstanceOutput$;
|
|
1664
|
+
exports.GetDbParameterGroup$ = GetDbParameterGroup$;
|
|
1540
1665
|
exports.GetDbParameterGroupCommand = GetDbParameterGroupCommand;
|
|
1666
|
+
exports.GetDbParameterGroupInput$ = GetDbParameterGroupInput$;
|
|
1667
|
+
exports.GetDbParameterGroupOutput$ = GetDbParameterGroupOutput$;
|
|
1668
|
+
exports.InfluxDBv2Parameters$ = InfluxDBv2Parameters$;
|
|
1669
|
+
exports.InfluxDBv3CoreParameters$ = InfluxDBv3CoreParameters$;
|
|
1670
|
+
exports.InfluxDBv3EnterpriseParameters$ = InfluxDBv3EnterpriseParameters$;
|
|
1541
1671
|
exports.InstanceMode = InstanceMode;
|
|
1542
|
-
exports.InternalServerException = InternalServerException
|
|
1672
|
+
exports.InternalServerException = InternalServerException;
|
|
1673
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1674
|
+
exports.ListDbClusters$ = ListDbClusters$;
|
|
1543
1675
|
exports.ListDbClustersCommand = ListDbClustersCommand;
|
|
1676
|
+
exports.ListDbClustersInput$ = ListDbClustersInput$;
|
|
1677
|
+
exports.ListDbClustersOutput$ = ListDbClustersOutput$;
|
|
1678
|
+
exports.ListDbInstances$ = ListDbInstances$;
|
|
1544
1679
|
exports.ListDbInstancesCommand = ListDbInstancesCommand;
|
|
1680
|
+
exports.ListDbInstancesForCluster$ = ListDbInstancesForCluster$;
|
|
1545
1681
|
exports.ListDbInstancesForClusterCommand = ListDbInstancesForClusterCommand;
|
|
1682
|
+
exports.ListDbInstancesForClusterInput$ = ListDbInstancesForClusterInput$;
|
|
1683
|
+
exports.ListDbInstancesForClusterOutput$ = ListDbInstancesForClusterOutput$;
|
|
1684
|
+
exports.ListDbInstancesInput$ = ListDbInstancesInput$;
|
|
1685
|
+
exports.ListDbInstancesOutput$ = ListDbInstancesOutput$;
|
|
1686
|
+
exports.ListDbParameterGroups$ = ListDbParameterGroups$;
|
|
1546
1687
|
exports.ListDbParameterGroupsCommand = ListDbParameterGroupsCommand;
|
|
1688
|
+
exports.ListDbParameterGroupsInput$ = ListDbParameterGroupsInput$;
|
|
1689
|
+
exports.ListDbParameterGroupsOutput$ = ListDbParameterGroupsOutput$;
|
|
1690
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1547
1691
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1692
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1693
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1694
|
+
exports.LogDeliveryConfiguration$ = LogDeliveryConfiguration$;
|
|
1548
1695
|
exports.LogFormats = LogFormats;
|
|
1549
1696
|
exports.LogLevel = LogLevel;
|
|
1550
1697
|
exports.NetworkType = NetworkType;
|
|
1551
|
-
exports.
|
|
1552
|
-
exports.
|
|
1698
|
+
exports.PercentOrAbsoluteLong$ = PercentOrAbsoluteLong$;
|
|
1699
|
+
exports.RebootDbCluster$ = RebootDbCluster$;
|
|
1700
|
+
exports.RebootDbClusterCommand = RebootDbClusterCommand;
|
|
1701
|
+
exports.RebootDbClusterInput$ = RebootDbClusterInput$;
|
|
1702
|
+
exports.RebootDbClusterOutput$ = RebootDbClusterOutput$;
|
|
1703
|
+
exports.RebootDbInstance$ = RebootDbInstance$;
|
|
1704
|
+
exports.RebootDbInstanceCommand = RebootDbInstanceCommand;
|
|
1705
|
+
exports.RebootDbInstanceInput$ = RebootDbInstanceInput$;
|
|
1706
|
+
exports.RebootDbInstanceOutput$ = RebootDbInstanceOutput$;
|
|
1707
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1708
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1709
|
+
exports.S3Configuration$ = S3Configuration$;
|
|
1710
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1711
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1553
1712
|
exports.Status = Status;
|
|
1713
|
+
exports.TagResource$ = TagResource$;
|
|
1554
1714
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1555
|
-
exports.
|
|
1715
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1716
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1717
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1556
1718
|
exports.TimestreamInfluxDB = TimestreamInfluxDB;
|
|
1557
1719
|
exports.TimestreamInfluxDBClient = TimestreamInfluxDBClient;
|
|
1558
|
-
exports.TimestreamInfluxDBServiceException = TimestreamInfluxDBServiceException
|
|
1720
|
+
exports.TimestreamInfluxDBServiceException = TimestreamInfluxDBServiceException;
|
|
1721
|
+
exports.TimestreamInfluxDBServiceException$ = TimestreamInfluxDBServiceException$;
|
|
1559
1722
|
exports.TracingType = TracingType;
|
|
1723
|
+
exports.UntagResource$ = UntagResource$;
|
|
1560
1724
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1725
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1726
|
+
exports.UpdateDbCluster$ = UpdateDbCluster$;
|
|
1561
1727
|
exports.UpdateDbClusterCommand = UpdateDbClusterCommand;
|
|
1728
|
+
exports.UpdateDbClusterInput$ = UpdateDbClusterInput$;
|
|
1729
|
+
exports.UpdateDbClusterOutput$ = UpdateDbClusterOutput$;
|
|
1730
|
+
exports.UpdateDbInstance$ = UpdateDbInstance$;
|
|
1562
1731
|
exports.UpdateDbInstanceCommand = UpdateDbInstanceCommand;
|
|
1563
|
-
exports.
|
|
1732
|
+
exports.UpdateDbInstanceInput$ = UpdateDbInstanceInput$;
|
|
1733
|
+
exports.UpdateDbInstanceOutput$ = UpdateDbInstanceOutput$;
|
|
1734
|
+
exports.ValidationException = ValidationException;
|
|
1735
|
+
exports.ValidationException$ = ValidationException$;
|
|
1564
1736
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1737
|
+
exports._Parameters$ = _Parameters$;
|
|
1565
1738
|
exports.paginateListDbClusters = paginateListDbClusters;
|
|
1566
1739
|
exports.paginateListDbInstances = paginateListDbInstances;
|
|
1567
1740
|
exports.paginateListDbInstancesForCluster = paginateListDbInstancesForCluster;
|