@aws-sdk/client-timestream-influxdb 3.987.0 → 3.989.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 +38 -794
- package/dist-cjs/models/TimestreamInfluxDBServiceException.js +12 -0
- package/dist-cjs/models/errors.js +109 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +605 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +53 -47
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var TimestreamInfluxDBServiceException = require('./models/TimestreamInfluxDBServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,698 +113,6 @@ class TimestreamInfluxDBClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class TimestreamInfluxDBServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, TimestreamInfluxDBServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends TimestreamInfluxDBServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends TimestreamInfluxDBServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
resourceId;
|
|
136
|
-
resourceType;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
this.resourceId = opts.resourceId;
|
|
145
|
-
this.resourceType = opts.resourceType;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends TimestreamInfluxDBServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InternalServerException",
|
|
155
|
-
$fault: "server",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ResourceNotFoundException extends TimestreamInfluxDBServiceException {
|
|
162
|
-
name = "ResourceNotFoundException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
resourceId;
|
|
165
|
-
resourceType;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.resourceId = opts.resourceId;
|
|
174
|
-
this.resourceType = opts.resourceType;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ServiceQuotaExceededException extends TimestreamInfluxDBServiceException {
|
|
178
|
-
name = "ServiceQuotaExceededException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ServiceQuotaExceededException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
class ThrottlingException extends TimestreamInfluxDBServiceException {
|
|
190
|
-
name = "ThrottlingException";
|
|
191
|
-
$fault = "client";
|
|
192
|
-
$retryable = {};
|
|
193
|
-
retryAfterSeconds;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ThrottlingException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
201
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ValidationException extends TimestreamInfluxDBServiceException {
|
|
205
|
-
name = "ValidationException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
reason;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "ValidationException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
215
|
-
this.reason = opts.reason;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
const _ADE = "AccessDeniedException";
|
|
220
|
-
const _CDC = "CreateDbCluster";
|
|
221
|
-
const _CDCI = "CreateDbClusterInput";
|
|
222
|
-
const _CDCO = "CreateDbClusterOutput";
|
|
223
|
-
const _CDI = "CreateDbInstance";
|
|
224
|
-
const _CDII = "CreateDbInstanceInput";
|
|
225
|
-
const _CDIO = "CreateDbInstanceOutput";
|
|
226
|
-
const _CDPG = "CreateDbParameterGroup";
|
|
227
|
-
const _CDPGI = "CreateDbParameterGroupInput";
|
|
228
|
-
const _CDPGO = "CreateDbParameterGroupOutput";
|
|
229
|
-
const _CE = "ConflictException";
|
|
230
|
-
const _D = "Duration";
|
|
231
|
-
const _DCS = "DbClusterSummary";
|
|
232
|
-
const _DCSL = "DbClusterSummaryList";
|
|
233
|
-
const _DDC = "DeleteDbCluster";
|
|
234
|
-
const _DDCI = "DeleteDbClusterInput";
|
|
235
|
-
const _DDCO = "DeleteDbClusterOutput";
|
|
236
|
-
const _DDI = "DeleteDbInstance";
|
|
237
|
-
const _DDII = "DeleteDbInstanceInput";
|
|
238
|
-
const _DDIO = "DeleteDbInstanceOutput";
|
|
239
|
-
const _DIFCS = "DbInstanceForClusterSummary";
|
|
240
|
-
const _DIFCSL = "DbInstanceForClusterSummaryList";
|
|
241
|
-
const _DIS = "DbInstanceSummary";
|
|
242
|
-
const _DISL = "DbInstanceSummaryList";
|
|
243
|
-
const _DPGS = "DbParameterGroupSummary";
|
|
244
|
-
const _DPGSL = "DbParameterGroupSummaryList";
|
|
245
|
-
const _GDC = "GetDbCluster";
|
|
246
|
-
const _GDCI = "GetDbClusterInput";
|
|
247
|
-
const _GDCO = "GetDbClusterOutput";
|
|
248
|
-
const _GDI = "GetDbInstance";
|
|
249
|
-
const _GDII = "GetDbInstanceInput";
|
|
250
|
-
const _GDIO = "GetDbInstanceOutput";
|
|
251
|
-
const _GDPG = "GetDbParameterGroup";
|
|
252
|
-
const _GDPGI = "GetDbParameterGroupInput";
|
|
253
|
-
const _GDPGO = "GetDbParameterGroupOutput";
|
|
254
|
-
const _IDB = "InfluxDBv2";
|
|
255
|
-
const _IDBC = "InfluxDBv3Core";
|
|
256
|
-
const _IDBCP = "InfluxDBv3CoreParameters";
|
|
257
|
-
const _IDBE = "InfluxDBv3Enterprise";
|
|
258
|
-
const _IDBEP = "InfluxDBv3EnterpriseParameters";
|
|
259
|
-
const _IDBP = "InfluxDBv2Parameters";
|
|
260
|
-
const _ISE = "InternalServerException";
|
|
261
|
-
const _LDC = "LogDeliveryConfiguration";
|
|
262
|
-
const _LDCI = "ListDbClustersInput";
|
|
263
|
-
const _LDCO = "ListDbClustersOutput";
|
|
264
|
-
const _LDCi = "ListDbClusters";
|
|
265
|
-
const _LDI = "ListDbInstances";
|
|
266
|
-
const _LDIFC = "ListDbInstancesForCluster";
|
|
267
|
-
const _LDIFCI = "ListDbInstancesForClusterInput";
|
|
268
|
-
const _LDIFCO = "ListDbInstancesForClusterOutput";
|
|
269
|
-
const _LDII = "ListDbInstancesInput";
|
|
270
|
-
const _LDIO = "ListDbInstancesOutput";
|
|
271
|
-
const _LDPG = "ListDbParameterGroups";
|
|
272
|
-
const _LDPGI = "ListDbParameterGroupsInput";
|
|
273
|
-
const _LDPGO = "ListDbParameterGroupsOutput";
|
|
274
|
-
const _LTFR = "ListTagsForResource";
|
|
275
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
276
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
277
|
-
const _P = "Password";
|
|
278
|
-
const _POAL = "PercentOrAbsoluteLong";
|
|
279
|
-
const _Pa = "Parameters";
|
|
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";
|
|
287
|
-
const _RNFE = "ResourceNotFoundException";
|
|
288
|
-
const _SC = "S3Configuration";
|
|
289
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
290
|
-
const _TE = "ThrottlingException";
|
|
291
|
-
const _TR = "TagResource";
|
|
292
|
-
const _TRR = "TagResourceRequest";
|
|
293
|
-
const _U = "Username";
|
|
294
|
-
const _UDC = "UpdateDbCluster";
|
|
295
|
-
const _UDCI = "UpdateDbClusterInput";
|
|
296
|
-
const _UDCO = "UpdateDbClusterOutput";
|
|
297
|
-
const _UDI = "UpdateDbInstance";
|
|
298
|
-
const _UDII = "UpdateDbInstanceInput";
|
|
299
|
-
const _UDIO = "UpdateDbInstanceOutput";
|
|
300
|
-
const _UR = "UntagResource";
|
|
301
|
-
const _URR = "UntagResourceRequest";
|
|
302
|
-
const _VE = "ValidationException";
|
|
303
|
-
const _a = "arn";
|
|
304
|
-
const _aS = "allocatedStorage";
|
|
305
|
-
const _aZ = "availabilityZone";
|
|
306
|
-
const _ab = "absolute";
|
|
307
|
-
const _b = "bucket";
|
|
308
|
-
const _bN = "bucketName";
|
|
309
|
-
const _c = "client";
|
|
310
|
-
const _cCI = "compactionCheckInterval";
|
|
311
|
-
const _cCW = "compactionCleanupWait";
|
|
312
|
-
const _cGD = "compactionGen2Duration";
|
|
313
|
-
const _cM = "compactionMultipliers";
|
|
314
|
-
const _cMNFPP = "compactionMaxNumFilesPerPlan";
|
|
315
|
-
const _cRL = "compactionRowLimit";
|
|
316
|
-
const _cSI = "catalogSyncInterval";
|
|
317
|
-
const _d = "description";
|
|
318
|
-
const _dC = "dedicatedCompactor";
|
|
319
|
-
const _dCEI = "distinctCacheEvictionInterval";
|
|
320
|
-
const _dCI = "dbClusterId";
|
|
321
|
-
const _dCS = "dbClusterStatus";
|
|
322
|
-
const _dFC = "dataFusionConfig";
|
|
323
|
-
const _dFMPF = "dataFusionMaxParquetFanout";
|
|
324
|
-
const _dFNT = "dataFusionNumThreads";
|
|
325
|
-
const _dFRDLS = "dataFusionRuntimeDisableLifoSlot";
|
|
326
|
-
const _dFREI = "dataFusionRuntimeEventInterval";
|
|
327
|
-
const _dFRGQI = "dataFusionRuntimeGlobalQueueInterval";
|
|
328
|
-
const _dFRMBT = "dataFusionRuntimeMaxBlockingThreads";
|
|
329
|
-
const _dFRMIEPT = "dataFusionRuntimeMaxIoEventsPerTick";
|
|
330
|
-
const _dFRT = "dataFusionRuntimeType";
|
|
331
|
-
const _dFRTKA = "dataFusionRuntimeThreadKeepAlive";
|
|
332
|
-
const _dFRTP = "dataFusionRuntimeThreadPriority";
|
|
333
|
-
const _dFUCPL = "dataFusionUseCachedParquetLoader";
|
|
334
|
-
const _dGP = "deleteGracePeriod";
|
|
335
|
-
const _dIT = "dbInstanceType";
|
|
336
|
-
const _dPGI = "dbParameterGroupIdentifier";
|
|
337
|
-
const _dPMC = "disableParquetMemCache";
|
|
338
|
-
const _dST = "dbStorageType";
|
|
339
|
-
const _dT = "deploymentType";
|
|
340
|
-
const _dTu = "durationType";
|
|
341
|
-
const _dVCDFH = "distinctValueCacheDisableFromHistory";
|
|
342
|
-
const _e = "error";
|
|
343
|
-
const _eMPB = "execMemPoolBytes";
|
|
344
|
-
const _eT = "engineType";
|
|
345
|
-
const _en = "endpoint";
|
|
346
|
-
const _ena = "enabled";
|
|
347
|
-
const _fLE = "fluxLogEnabled";
|
|
348
|
-
const _fM = "failoverMode";
|
|
349
|
-
const _fSMT = "forceSnapshotMemThreshold";
|
|
350
|
-
const _gD = "gen1Duration";
|
|
351
|
-
const _gLD = "gen1LookbackDuration";
|
|
352
|
-
const _hDDD = "hardDeleteDefaultDuration";
|
|
353
|
-
const _hE = "httpError";
|
|
354
|
-
const _hH = "httpHeader";
|
|
355
|
-
const _hIT = "httpIdleTimeout";
|
|
356
|
-
const _hRHT = "httpReadHeaderTimeout";
|
|
357
|
-
const _hRT = "httpReadTimeout";
|
|
358
|
-
const _hWT = "httpWriteTimeout";
|
|
359
|
-
const _i = "id";
|
|
360
|
-
const _iAPSA = "influxAuthParametersSecretArn";
|
|
361
|
-
const _iI = "instanceIds";
|
|
362
|
-
const _iM = "instanceMode";
|
|
363
|
-
const _iMSB = "influxqlMaxSelectBuckets";
|
|
364
|
-
const _iMSP = "influxqlMaxSelectPoint";
|
|
365
|
-
const _iMSS = "influxqlMaxSelectSeries";
|
|
366
|
-
const _iMn = "instanceModes";
|
|
367
|
-
const _iQI = "ingestQueryInstances";
|
|
368
|
-
const _id = "identifier";
|
|
369
|
-
const _it = "items";
|
|
370
|
-
const _lCEI = "lastCacheEvictionInterval";
|
|
371
|
-
const _lDC = "logDeliveryConfiguration";
|
|
372
|
-
const _lF = "logFilter";
|
|
373
|
-
const _lFo = "logFormat";
|
|
374
|
-
const _lL = "logLevel";
|
|
375
|
-
const _lVCDFH = "lastValueCacheDisableFromHistory";
|
|
376
|
-
const _m = "message";
|
|
377
|
-
const _mD = "metricsDisabled";
|
|
378
|
-
const _mHRS = "maxHttpRequestSize";
|
|
379
|
-
const _mR = "maxResults";
|
|
380
|
-
const _n = "name";
|
|
381
|
-
const _nT = "networkType";
|
|
382
|
-
const _nTe = "nextToken";
|
|
383
|
-
const _nTo = "noTasks";
|
|
384
|
-
const _o = "organization";
|
|
385
|
-
const _p = "password";
|
|
386
|
-
const _pA = "publiclyAccessible";
|
|
387
|
-
const _pCA = "preemptiveCacheAge";
|
|
388
|
-
const _pD = "pprofDisabled";
|
|
389
|
-
const _pMCPI = "parquetMemCachePruneInterval";
|
|
390
|
-
const _pMCPP = "parquetMemCachePrunePercentage";
|
|
391
|
-
const _pMCQPD = "parquetMemCacheQueryPathDuration";
|
|
392
|
-
const _pMCS = "parquetMemCacheSize";
|
|
393
|
-
const _pa = "parameters";
|
|
394
|
-
const _pe = "percent";
|
|
395
|
-
const _po = "port";
|
|
396
|
-
const _qC = "queryConcurrency";
|
|
397
|
-
const _qFL = "queryFileLimit";
|
|
398
|
-
const _qIMB = "queryInitialMemoryBytes";
|
|
399
|
-
const _qLS = "queryLogSize";
|
|
400
|
-
const _qMB = "queryMemoryBytes";
|
|
401
|
-
const _qMMB = "queryMaxMemoryBytes";
|
|
402
|
-
const _qOI = "queryOnlyInstances";
|
|
403
|
-
const _qQS = "queryQueueSize";
|
|
404
|
-
const _r = "reason";
|
|
405
|
-
const _rA = "resourceArn";
|
|
406
|
-
const _rAS = "retryAfterSeconds";
|
|
407
|
-
const _rCI = "retentionCheckInterval";
|
|
408
|
-
const _rE = "readerEndpoint";
|
|
409
|
-
const _rI = "resourceId";
|
|
410
|
-
const _rIe = "replicationInterval";
|
|
411
|
-
const _rT = "resourceType";
|
|
412
|
-
const _s = "status";
|
|
413
|
-
const _sAZ = "secondaryAvailabilityZone";
|
|
414
|
-
const _sC = "s3Configuration";
|
|
415
|
-
const _sCFWCD = "storageCompactFullWriteColdDuration";
|
|
416
|
-
const _sCMMS = "storageCacheMaxMemorySize";
|
|
417
|
-
const _sCSMS = "storageCacheSnapshotMemorySize";
|
|
418
|
-
const _sCSWCD = "storageCacheSnapshotWriteColdDuration";
|
|
419
|
-
const _sCTB = "storageCompactThroughputBurst";
|
|
420
|
-
const _sL = "sessionLength";
|
|
421
|
-
const _sMCC = "storageMaxConcurrentCompactions";
|
|
422
|
-
const _sMILFS = "storageMaxIndexLogFileSize";
|
|
423
|
-
const _sNVFS = "storageNoValidateFieldSize";
|
|
424
|
-
const _sRCI = "storageRetentionCheckInterval";
|
|
425
|
-
const _sRD = "sessionRenewDisabled";
|
|
426
|
-
const _sSFMCSC = "storageSeriesFileMaxConcurrentSnapshotCompactions";
|
|
427
|
-
const _sSISCS = "storageSeriesIdSetCacheSize";
|
|
428
|
-
const _sWFTK = "snapshottedWalFilesToKeep";
|
|
429
|
-
const _sWMCW = "storageWalMaxConcurrentWrites";
|
|
430
|
-
const _sWMWD = "storageWalMaxWriteDelay";
|
|
431
|
-
const _se = "server";
|
|
432
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.timestreaminfluxdb";
|
|
433
|
-
const _t = "tags";
|
|
434
|
-
const _tICCL = "tableIndexCacheConcurrencyLimit";
|
|
435
|
-
const _tICME = "tableIndexCacheMaxEntries";
|
|
436
|
-
const _tK = "tagKeys";
|
|
437
|
-
const _tT = "tracingType";
|
|
438
|
-
const _u = "username";
|
|
439
|
-
const _uD = "uiDisabled";
|
|
440
|
-
const _v = "value";
|
|
441
|
-
const _vSGI = "vpcSecurityGroupIds";
|
|
442
|
-
const _vSI = "vpcSubnetIds";
|
|
443
|
-
const _wMWBS = "walMaxWriteBufferSize";
|
|
444
|
-
const _wRCL = "walReplayConcurrencyLimit";
|
|
445
|
-
const _wRFOE = "walReplayFailOnError";
|
|
446
|
-
const _wSS = "walSnapshotSize";
|
|
447
|
-
const n0 = "com.amazonaws.timestreaminfluxdb";
|
|
448
|
-
var Password = [0, n0, _P, 8, 0];
|
|
449
|
-
var Username = [0, n0, _U, 8, 0];
|
|
450
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
451
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
452
|
-
[_m],
|
|
453
|
-
[0], 1
|
|
454
|
-
];
|
|
455
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
456
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
457
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
458
|
-
[_m, _rI, _rT],
|
|
459
|
-
[0, 0, 0], 3
|
|
460
|
-
];
|
|
461
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
462
|
-
var CreateDbClusterInput$ = [3, n0, _CDCI,
|
|
463
|
-
0,
|
|
464
|
-
[_n, _dIT, _vSI, _vSGI, _u, _p, _o, _b, _po, _dPGI, _dST, _aS, _nT, _pA, _dT, _fM, _lDC, _t],
|
|
465
|
-
[0, 0, 64 | 0, 64 | 0, [() => Username, 0], [() => Password, 0], 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, () => LogDeliveryConfiguration$, 128 | 0], 4
|
|
466
|
-
];
|
|
467
|
-
var CreateDbClusterOutput$ = [3, n0, _CDCO,
|
|
468
|
-
0,
|
|
469
|
-
[_dCI, _dCS],
|
|
470
|
-
[0, 0]
|
|
471
|
-
];
|
|
472
|
-
var CreateDbInstanceInput$ = [3, n0, _CDII,
|
|
473
|
-
0,
|
|
474
|
-
[_n, _p, _dIT, _vSI, _vSGI, _aS, _u, _o, _b, _pA, _dST, _dPGI, _dT, _lDC, _t, _po, _nT],
|
|
475
|
-
[0, [() => Password, 0], 0, 64 | 0, 64 | 0, 1, [() => Username, 0], 0, 0, 2, 0, 0, 0, () => LogDeliveryConfiguration$, 128 | 0, 1, 0], 6
|
|
476
|
-
];
|
|
477
|
-
var CreateDbInstanceOutput$ = [3, n0, _CDIO,
|
|
478
|
-
0,
|
|
479
|
-
[_i, _n, _a, _vSI, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
480
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
481
|
-
];
|
|
482
|
-
var CreateDbParameterGroupInput$ = [3, n0, _CDPGI,
|
|
483
|
-
0,
|
|
484
|
-
[_n, _d, _pa, _t],
|
|
485
|
-
[0, 0, () => _Parameters$, 128 | 0], 1
|
|
486
|
-
];
|
|
487
|
-
var CreateDbParameterGroupOutput$ = [3, n0, _CDPGO,
|
|
488
|
-
0,
|
|
489
|
-
[_i, _n, _a, _d, _pa],
|
|
490
|
-
[0, 0, 0, 0, () => _Parameters$], 3
|
|
491
|
-
];
|
|
492
|
-
var DbClusterSummary$ = [3, n0, _DCS,
|
|
493
|
-
0,
|
|
494
|
-
[_i, _n, _a, _s, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT],
|
|
495
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], 3
|
|
496
|
-
];
|
|
497
|
-
var DbInstanceForClusterSummary$ = [3, n0, _DIFCS,
|
|
498
|
-
0,
|
|
499
|
-
[_i, _n, _a, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _iM, _iMn],
|
|
500
|
-
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 64 | 0], 3
|
|
501
|
-
];
|
|
502
|
-
var DbInstanceSummary$ = [3, n0, _DIS,
|
|
503
|
-
0,
|
|
504
|
-
[_i, _n, _a, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT],
|
|
505
|
-
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], 3
|
|
506
|
-
];
|
|
507
|
-
var DbParameterGroupSummary$ = [3, n0, _DPGS,
|
|
508
|
-
0,
|
|
509
|
-
[_i, _n, _a, _d],
|
|
510
|
-
[0, 0, 0, 0], 3
|
|
511
|
-
];
|
|
512
|
-
var DeleteDbClusterInput$ = [3, n0, _DDCI,
|
|
513
|
-
0,
|
|
514
|
-
[_dCI],
|
|
515
|
-
[0], 1
|
|
516
|
-
];
|
|
517
|
-
var DeleteDbClusterOutput$ = [3, n0, _DDCO,
|
|
518
|
-
0,
|
|
519
|
-
[_dCS],
|
|
520
|
-
[0]
|
|
521
|
-
];
|
|
522
|
-
var DeleteDbInstanceInput$ = [3, n0, _DDII,
|
|
523
|
-
0,
|
|
524
|
-
[_id],
|
|
525
|
-
[0], 1
|
|
526
|
-
];
|
|
527
|
-
var DeleteDbInstanceOutput$ = [3, n0, _DDIO,
|
|
528
|
-
0,
|
|
529
|
-
[_i, _n, _a, _vSI, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
530
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
531
|
-
];
|
|
532
|
-
var Duration$ = [3, n0, _D,
|
|
533
|
-
0,
|
|
534
|
-
[_dTu, _v],
|
|
535
|
-
[0, 1], 2
|
|
536
|
-
];
|
|
537
|
-
var GetDbClusterInput$ = [3, n0, _GDCI,
|
|
538
|
-
0,
|
|
539
|
-
[_dCI],
|
|
540
|
-
[0], 1
|
|
541
|
-
];
|
|
542
|
-
var GetDbClusterOutput$ = [3, n0, _GDCO,
|
|
543
|
-
0,
|
|
544
|
-
[_i, _n, _a, _s, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _iAPSA, _vSI, _vSGI, _fM],
|
|
545
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => LogDeliveryConfiguration$, 0, 64 | 0, 64 | 0, 0], 3
|
|
546
|
-
];
|
|
547
|
-
var GetDbInstanceInput$ = [3, n0, _GDII,
|
|
548
|
-
0,
|
|
549
|
-
[_id],
|
|
550
|
-
[0], 1
|
|
551
|
-
];
|
|
552
|
-
var GetDbInstanceOutput$ = [3, n0, _GDIO,
|
|
553
|
-
0,
|
|
554
|
-
[_i, _n, _a, _vSI, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
555
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
556
|
-
];
|
|
557
|
-
var GetDbParameterGroupInput$ = [3, n0, _GDPGI,
|
|
558
|
-
0,
|
|
559
|
-
[_id],
|
|
560
|
-
[0], 1
|
|
561
|
-
];
|
|
562
|
-
var GetDbParameterGroupOutput$ = [3, n0, _GDPGO,
|
|
563
|
-
0,
|
|
564
|
-
[_i, _n, _a, _d, _pa],
|
|
565
|
-
[0, 0, 0, 0, () => _Parameters$], 3
|
|
566
|
-
];
|
|
567
|
-
var InfluxDBv2Parameters$ = [3, n0, _IDBP,
|
|
568
|
-
0,
|
|
569
|
-
[_fLE, _lL, _nTo, _qC, _qQS, _tT, _mD, _hIT, _hRHT, _hRT, _hWT, _iMSB, _iMSP, _iMSS, _pD, _qIMB, _qMMB, _qMB, _sL, _sRD, _sCMMS, _sCSMS, _sCSWCD, _sCFWCD, _sCTB, _sMCC, _sMILFS, _sNVFS, _sRCI, _sSFMCSC, _sSISCS, _sWMCW, _sWMWD, _uD],
|
|
570
|
-
[2, 0, 2, 1, 1, 0, 2, () => Duration$, () => Duration$, () => Duration$, () => Duration$, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, () => Duration$, () => Duration$, 1, 1, 1, 2, () => Duration$, 1, 1, 1, () => Duration$, 2]
|
|
571
|
-
];
|
|
572
|
-
var InfluxDBv3CoreParameters$ = [3, n0, _IDBCP,
|
|
573
|
-
0,
|
|
574
|
-
[_qFL, _qLS, _lF, _lFo, _dFNT, _dFRT, _dFRDLS, _dFREI, _dFRGQI, _dFRMBT, _dFRMIEPT, _dFRTKA, _dFRTP, _dFMPF, _dFUCPL, _dFC, _mHRS, _fSMT, _wSS, _wMWBS, _sWFTK, _pCA, _pMCPP, _pMCPI, _dPMC, _pMCQPD, _lCEI, _dCEI, _gD, _eMPB, _pMCS, _wRFOE, _wRCL, _tICME, _tICCL, _gLD, _rCI, _dGP, _hDDD],
|
|
575
|
-
[1, 1, 0, 0, 1, 0, 2, 1, 1, 1, 1, () => Duration$, 1, 1, 2, 0, 1, () => PercentOrAbsoluteLong$, 1, 1, 1, () => Duration$, 1, () => Duration$, 2, () => Duration$, () => Duration$, () => Duration$, () => Duration$, () => PercentOrAbsoluteLong$, () => PercentOrAbsoluteLong$, 2, 1, 1, 1, () => Duration$, () => Duration$, () => Duration$, () => Duration$]
|
|
576
|
-
];
|
|
577
|
-
var InfluxDBv3EnterpriseParameters$ = [3, n0, _IDBEP,
|
|
578
|
-
0,
|
|
579
|
-
[_iQI, _qOI, _dC, _qFL, _qLS, _lF, _lFo, _dFNT, _dFRT, _dFRDLS, _dFREI, _dFRGQI, _dFRMBT, _dFRMIEPT, _dFRTKA, _dFRTP, _dFMPF, _dFUCPL, _dFC, _mHRS, _fSMT, _wSS, _wMWBS, _sWFTK, _pCA, _pMCPP, _pMCPI, _dPMC, _pMCQPD, _lCEI, _dCEI, _gD, _eMPB, _pMCS, _wRFOE, _wRCL, _tICME, _tICCL, _gLD, _rCI, _dGP, _hDDD, _cRL, _cMNFPP, _cGD, _cM, _cCW, _cCI, _lVCDFH, _dVCDFH, _rIe, _cSI],
|
|
580
|
-
[1, 1, 2, 1, 1, 0, 0, 1, 0, 2, 1, 1, 1, 1, () => Duration$, 1, 1, 2, 0, 1, () => PercentOrAbsoluteLong$, 1, 1, 1, () => Duration$, 1, () => Duration$, 2, () => Duration$, () => Duration$, () => Duration$, () => Duration$, () => PercentOrAbsoluteLong$, () => PercentOrAbsoluteLong$, 2, 1, 1, 1, () => Duration$, () => Duration$, () => Duration$, () => Duration$, 1, 1, () => Duration$, 0, () => Duration$, () => Duration$, 2, 2, () => Duration$, () => Duration$], 3
|
|
581
|
-
];
|
|
582
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
583
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
584
|
-
[_m],
|
|
585
|
-
[0], 1
|
|
586
|
-
];
|
|
587
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
588
|
-
var ListDbClustersInput$ = [3, n0, _LDCI,
|
|
589
|
-
0,
|
|
590
|
-
[_nTe, _mR],
|
|
591
|
-
[0, 1]
|
|
592
|
-
];
|
|
593
|
-
var ListDbClustersOutput$ = [3, n0, _LDCO,
|
|
594
|
-
0,
|
|
595
|
-
[_it, _nTe],
|
|
596
|
-
[() => DbClusterSummaryList, 0], 1
|
|
597
|
-
];
|
|
598
|
-
var ListDbInstancesForClusterInput$ = [3, n0, _LDIFCI,
|
|
599
|
-
0,
|
|
600
|
-
[_dCI, _nTe, _mR],
|
|
601
|
-
[0, 0, 1], 1
|
|
602
|
-
];
|
|
603
|
-
var ListDbInstancesForClusterOutput$ = [3, n0, _LDIFCO,
|
|
604
|
-
0,
|
|
605
|
-
[_it, _nTe],
|
|
606
|
-
[() => DbInstanceForClusterSummaryList, 0], 1
|
|
607
|
-
];
|
|
608
|
-
var ListDbInstancesInput$ = [3, n0, _LDII,
|
|
609
|
-
0,
|
|
610
|
-
[_nTe, _mR],
|
|
611
|
-
[0, 1]
|
|
612
|
-
];
|
|
613
|
-
var ListDbInstancesOutput$ = [3, n0, _LDIO,
|
|
614
|
-
0,
|
|
615
|
-
[_it, _nTe],
|
|
616
|
-
[() => DbInstanceSummaryList, 0], 1
|
|
617
|
-
];
|
|
618
|
-
var ListDbParameterGroupsInput$ = [3, n0, _LDPGI,
|
|
619
|
-
0,
|
|
620
|
-
[_nTe, _mR],
|
|
621
|
-
[0, 1]
|
|
622
|
-
];
|
|
623
|
-
var ListDbParameterGroupsOutput$ = [3, n0, _LDPGO,
|
|
624
|
-
0,
|
|
625
|
-
[_it, _nTe],
|
|
626
|
-
[() => DbParameterGroupSummaryList, 0], 1
|
|
627
|
-
];
|
|
628
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
629
|
-
0,
|
|
630
|
-
[_rA],
|
|
631
|
-
[0], 1
|
|
632
|
-
];
|
|
633
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
634
|
-
0,
|
|
635
|
-
[_t],
|
|
636
|
-
[128 | 0]
|
|
637
|
-
];
|
|
638
|
-
var LogDeliveryConfiguration$ = [3, n0, _LDC,
|
|
639
|
-
0,
|
|
640
|
-
[_sC],
|
|
641
|
-
[() => S3Configuration$], 1
|
|
642
|
-
];
|
|
643
|
-
var RebootDbClusterInput$ = [3, n0, _RDCI,
|
|
644
|
-
0,
|
|
645
|
-
[_dCI, _iI],
|
|
646
|
-
[0, 64 | 0], 1
|
|
647
|
-
];
|
|
648
|
-
var RebootDbClusterOutput$ = [3, n0, _RDCO,
|
|
649
|
-
0,
|
|
650
|
-
[_dCS],
|
|
651
|
-
[0]
|
|
652
|
-
];
|
|
653
|
-
var RebootDbInstanceInput$ = [3, n0, _RDII,
|
|
654
|
-
0,
|
|
655
|
-
[_id],
|
|
656
|
-
[0], 1
|
|
657
|
-
];
|
|
658
|
-
var RebootDbInstanceOutput$ = [3, n0, _RDIO,
|
|
659
|
-
0,
|
|
660
|
-
[_i, _n, _a, _vSI, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
661
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
662
|
-
];
|
|
663
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
664
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
665
|
-
[_m, _rI, _rT],
|
|
666
|
-
[0, 0, 0], 3
|
|
667
|
-
];
|
|
668
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
669
|
-
var S3Configuration$ = [3, n0, _SC,
|
|
670
|
-
0,
|
|
671
|
-
[_bN, _ena],
|
|
672
|
-
[0, 2], 2
|
|
673
|
-
];
|
|
674
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
675
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
676
|
-
[_m],
|
|
677
|
-
[0], 1
|
|
678
|
-
];
|
|
679
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
680
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
681
|
-
0,
|
|
682
|
-
[_rA, _t],
|
|
683
|
-
[0, 128 | 0], 2
|
|
684
|
-
];
|
|
685
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
686
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
687
|
-
[_m, _rAS],
|
|
688
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
689
|
-
];
|
|
690
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
691
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
692
|
-
0,
|
|
693
|
-
[_rA, _tK],
|
|
694
|
-
[[0, 1], 64 | 0], 2
|
|
695
|
-
];
|
|
696
|
-
var UpdateDbClusterInput$ = [3, n0, _UDCI,
|
|
697
|
-
0,
|
|
698
|
-
[_dCI, _lDC, _dPGI, _po, _dIT, _fM],
|
|
699
|
-
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0], 1
|
|
700
|
-
];
|
|
701
|
-
var UpdateDbClusterOutput$ = [3, n0, _UDCO,
|
|
702
|
-
0,
|
|
703
|
-
[_dCS],
|
|
704
|
-
[0]
|
|
705
|
-
];
|
|
706
|
-
var UpdateDbInstanceInput$ = [3, n0, _UDII,
|
|
707
|
-
0,
|
|
708
|
-
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS],
|
|
709
|
-
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1], 1
|
|
710
|
-
];
|
|
711
|
-
var UpdateDbInstanceOutput$ = [3, n0, _UDIO,
|
|
712
|
-
0,
|
|
713
|
-
[_i, _n, _a, _vSI, _s, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
714
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
715
|
-
];
|
|
716
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
717
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
718
|
-
[_m, _r],
|
|
719
|
-
[0, 0], 2
|
|
720
|
-
];
|
|
721
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
722
|
-
var __Unit = "unit";
|
|
723
|
-
var TimestreamInfluxDBServiceException$ = [-3, _sm, "TimestreamInfluxDBServiceException", 0, [], []];
|
|
724
|
-
schema.TypeRegistry.for(_sm).registerError(TimestreamInfluxDBServiceException$, TimestreamInfluxDBServiceException);
|
|
725
|
-
var DbClusterSummaryList = [1, n0, _DCSL,
|
|
726
|
-
0, () => DbClusterSummary$
|
|
727
|
-
];
|
|
728
|
-
var DbInstanceForClusterSummaryList = [1, n0, _DIFCSL,
|
|
729
|
-
0, () => DbInstanceForClusterSummary$
|
|
730
|
-
];
|
|
731
|
-
var DbInstanceSummaryList = [1, n0, _DISL,
|
|
732
|
-
0, () => DbInstanceSummary$
|
|
733
|
-
];
|
|
734
|
-
var DbParameterGroupSummaryList = [1, n0, _DPGSL,
|
|
735
|
-
0, () => DbParameterGroupSummary$
|
|
736
|
-
];
|
|
737
|
-
var _Parameters$ = [4, n0, _Pa,
|
|
738
|
-
0,
|
|
739
|
-
[_IDB, _IDBC, _IDBE],
|
|
740
|
-
[() => InfluxDBv2Parameters$, () => InfluxDBv3CoreParameters$, () => InfluxDBv3EnterpriseParameters$]
|
|
741
|
-
];
|
|
742
|
-
var PercentOrAbsoluteLong$ = [4, n0, _POAL,
|
|
743
|
-
0,
|
|
744
|
-
[_pe, _ab],
|
|
745
|
-
[0, 1]
|
|
746
|
-
];
|
|
747
|
-
var CreateDbCluster$ = [9, n0, _CDC,
|
|
748
|
-
2, () => CreateDbClusterInput$, () => CreateDbClusterOutput$
|
|
749
|
-
];
|
|
750
|
-
var CreateDbInstance$ = [9, n0, _CDI,
|
|
751
|
-
2, () => CreateDbInstanceInput$, () => CreateDbInstanceOutput$
|
|
752
|
-
];
|
|
753
|
-
var CreateDbParameterGroup$ = [9, n0, _CDPG,
|
|
754
|
-
2, () => CreateDbParameterGroupInput$, () => CreateDbParameterGroupOutput$
|
|
755
|
-
];
|
|
756
|
-
var DeleteDbCluster$ = [9, n0, _DDC,
|
|
757
|
-
2, () => DeleteDbClusterInput$, () => DeleteDbClusterOutput$
|
|
758
|
-
];
|
|
759
|
-
var DeleteDbInstance$ = [9, n0, _DDI,
|
|
760
|
-
2, () => DeleteDbInstanceInput$, () => DeleteDbInstanceOutput$
|
|
761
|
-
];
|
|
762
|
-
var GetDbCluster$ = [9, n0, _GDC,
|
|
763
|
-
0, () => GetDbClusterInput$, () => GetDbClusterOutput$
|
|
764
|
-
];
|
|
765
|
-
var GetDbInstance$ = [9, n0, _GDI,
|
|
766
|
-
0, () => GetDbInstanceInput$, () => GetDbInstanceOutput$
|
|
767
|
-
];
|
|
768
|
-
var GetDbParameterGroup$ = [9, n0, _GDPG,
|
|
769
|
-
0, () => GetDbParameterGroupInput$, () => GetDbParameterGroupOutput$
|
|
770
|
-
];
|
|
771
|
-
var ListDbClusters$ = [9, n0, _LDCi,
|
|
772
|
-
0, () => ListDbClustersInput$, () => ListDbClustersOutput$
|
|
773
|
-
];
|
|
774
|
-
var ListDbInstances$ = [9, n0, _LDI,
|
|
775
|
-
0, () => ListDbInstancesInput$, () => ListDbInstancesOutput$
|
|
776
|
-
];
|
|
777
|
-
var ListDbInstancesForCluster$ = [9, n0, _LDIFC,
|
|
778
|
-
0, () => ListDbInstancesForClusterInput$, () => ListDbInstancesForClusterOutput$
|
|
779
|
-
];
|
|
780
|
-
var ListDbParameterGroups$ = [9, n0, _LDPG,
|
|
781
|
-
0, () => ListDbParameterGroupsInput$, () => ListDbParameterGroupsOutput$
|
|
782
|
-
];
|
|
783
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
784
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
785
|
-
];
|
|
786
|
-
var RebootDbCluster$ = [9, n0, _RDC,
|
|
787
|
-
2, () => RebootDbClusterInput$, () => RebootDbClusterOutput$
|
|
788
|
-
];
|
|
789
|
-
var RebootDbInstance$ = [9, n0, _RDI,
|
|
790
|
-
2, () => RebootDbInstanceInput$, () => RebootDbInstanceOutput$
|
|
791
|
-
];
|
|
792
|
-
var TagResource$ = [9, n0, _TR,
|
|
793
|
-
2, () => TagResourceRequest$, () => __Unit
|
|
794
|
-
];
|
|
795
|
-
var UntagResource$ = [9, n0, _UR,
|
|
796
|
-
2, () => UntagResourceRequest$, () => __Unit
|
|
797
|
-
];
|
|
798
|
-
var UpdateDbCluster$ = [9, n0, _UDC,
|
|
799
|
-
2, () => UpdateDbClusterInput$, () => UpdateDbClusterOutput$
|
|
800
|
-
];
|
|
801
|
-
var UpdateDbInstance$ = [9, n0, _UDI,
|
|
802
|
-
2, () => UpdateDbInstanceInput$, () => UpdateDbInstanceOutput$
|
|
803
|
-
];
|
|
804
|
-
|
|
805
116
|
class CreateDbClusterCommand extends smithyClient.Command
|
|
806
117
|
.classBuilder()
|
|
807
118
|
.ep(commonParams)
|
|
@@ -810,7 +121,7 @@ class CreateDbClusterCommand extends smithyClient.Command
|
|
|
810
121
|
})
|
|
811
122
|
.s("AmazonTimestreamInfluxDB", "CreateDbCluster", {})
|
|
812
123
|
.n("TimestreamInfluxDBClient", "CreateDbClusterCommand")
|
|
813
|
-
.sc(CreateDbCluster$)
|
|
124
|
+
.sc(schemas_0.CreateDbCluster$)
|
|
814
125
|
.build() {
|
|
815
126
|
}
|
|
816
127
|
|
|
@@ -822,7 +133,7 @@ class CreateDbInstanceCommand extends smithyClient.Command
|
|
|
822
133
|
})
|
|
823
134
|
.s("AmazonTimestreamInfluxDB", "CreateDbInstance", {})
|
|
824
135
|
.n("TimestreamInfluxDBClient", "CreateDbInstanceCommand")
|
|
825
|
-
.sc(CreateDbInstance$)
|
|
136
|
+
.sc(schemas_0.CreateDbInstance$)
|
|
826
137
|
.build() {
|
|
827
138
|
}
|
|
828
139
|
|
|
@@ -834,7 +145,7 @@ class CreateDbParameterGroupCommand extends smithyClient.Command
|
|
|
834
145
|
})
|
|
835
146
|
.s("AmazonTimestreamInfluxDB", "CreateDbParameterGroup", {})
|
|
836
147
|
.n("TimestreamInfluxDBClient", "CreateDbParameterGroupCommand")
|
|
837
|
-
.sc(CreateDbParameterGroup$)
|
|
148
|
+
.sc(schemas_0.CreateDbParameterGroup$)
|
|
838
149
|
.build() {
|
|
839
150
|
}
|
|
840
151
|
|
|
@@ -846,7 +157,7 @@ class DeleteDbClusterCommand extends smithyClient.Command
|
|
|
846
157
|
})
|
|
847
158
|
.s("AmazonTimestreamInfluxDB", "DeleteDbCluster", {})
|
|
848
159
|
.n("TimestreamInfluxDBClient", "DeleteDbClusterCommand")
|
|
849
|
-
.sc(DeleteDbCluster$)
|
|
160
|
+
.sc(schemas_0.DeleteDbCluster$)
|
|
850
161
|
.build() {
|
|
851
162
|
}
|
|
852
163
|
|
|
@@ -858,7 +169,7 @@ class DeleteDbInstanceCommand extends smithyClient.Command
|
|
|
858
169
|
})
|
|
859
170
|
.s("AmazonTimestreamInfluxDB", "DeleteDbInstance", {})
|
|
860
171
|
.n("TimestreamInfluxDBClient", "DeleteDbInstanceCommand")
|
|
861
|
-
.sc(DeleteDbInstance$)
|
|
172
|
+
.sc(schemas_0.DeleteDbInstance$)
|
|
862
173
|
.build() {
|
|
863
174
|
}
|
|
864
175
|
|
|
@@ -870,7 +181,7 @@ class GetDbClusterCommand extends smithyClient.Command
|
|
|
870
181
|
})
|
|
871
182
|
.s("AmazonTimestreamInfluxDB", "GetDbCluster", {})
|
|
872
183
|
.n("TimestreamInfluxDBClient", "GetDbClusterCommand")
|
|
873
|
-
.sc(GetDbCluster$)
|
|
184
|
+
.sc(schemas_0.GetDbCluster$)
|
|
874
185
|
.build() {
|
|
875
186
|
}
|
|
876
187
|
|
|
@@ -882,7 +193,7 @@ class GetDbInstanceCommand extends smithyClient.Command
|
|
|
882
193
|
})
|
|
883
194
|
.s("AmazonTimestreamInfluxDB", "GetDbInstance", {})
|
|
884
195
|
.n("TimestreamInfluxDBClient", "GetDbInstanceCommand")
|
|
885
|
-
.sc(GetDbInstance$)
|
|
196
|
+
.sc(schemas_0.GetDbInstance$)
|
|
886
197
|
.build() {
|
|
887
198
|
}
|
|
888
199
|
|
|
@@ -894,7 +205,7 @@ class GetDbParameterGroupCommand extends smithyClient.Command
|
|
|
894
205
|
})
|
|
895
206
|
.s("AmazonTimestreamInfluxDB", "GetDbParameterGroup", {})
|
|
896
207
|
.n("TimestreamInfluxDBClient", "GetDbParameterGroupCommand")
|
|
897
|
-
.sc(GetDbParameterGroup$)
|
|
208
|
+
.sc(schemas_0.GetDbParameterGroup$)
|
|
898
209
|
.build() {
|
|
899
210
|
}
|
|
900
211
|
|
|
@@ -906,7 +217,7 @@ class ListDbClustersCommand extends smithyClient.Command
|
|
|
906
217
|
})
|
|
907
218
|
.s("AmazonTimestreamInfluxDB", "ListDbClusters", {})
|
|
908
219
|
.n("TimestreamInfluxDBClient", "ListDbClustersCommand")
|
|
909
|
-
.sc(ListDbClusters$)
|
|
220
|
+
.sc(schemas_0.ListDbClusters$)
|
|
910
221
|
.build() {
|
|
911
222
|
}
|
|
912
223
|
|
|
@@ -918,7 +229,7 @@ class ListDbInstancesCommand extends smithyClient.Command
|
|
|
918
229
|
})
|
|
919
230
|
.s("AmazonTimestreamInfluxDB", "ListDbInstances", {})
|
|
920
231
|
.n("TimestreamInfluxDBClient", "ListDbInstancesCommand")
|
|
921
|
-
.sc(ListDbInstances$)
|
|
232
|
+
.sc(schemas_0.ListDbInstances$)
|
|
922
233
|
.build() {
|
|
923
234
|
}
|
|
924
235
|
|
|
@@ -930,7 +241,7 @@ class ListDbInstancesForClusterCommand extends smithyClient.Command
|
|
|
930
241
|
})
|
|
931
242
|
.s("AmazonTimestreamInfluxDB", "ListDbInstancesForCluster", {})
|
|
932
243
|
.n("TimestreamInfluxDBClient", "ListDbInstancesForClusterCommand")
|
|
933
|
-
.sc(ListDbInstancesForCluster$)
|
|
244
|
+
.sc(schemas_0.ListDbInstancesForCluster$)
|
|
934
245
|
.build() {
|
|
935
246
|
}
|
|
936
247
|
|
|
@@ -942,7 +253,7 @@ class ListDbParameterGroupsCommand extends smithyClient.Command
|
|
|
942
253
|
})
|
|
943
254
|
.s("AmazonTimestreamInfluxDB", "ListDbParameterGroups", {})
|
|
944
255
|
.n("TimestreamInfluxDBClient", "ListDbParameterGroupsCommand")
|
|
945
|
-
.sc(ListDbParameterGroups$)
|
|
256
|
+
.sc(schemas_0.ListDbParameterGroups$)
|
|
946
257
|
.build() {
|
|
947
258
|
}
|
|
948
259
|
|
|
@@ -954,7 +265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
954
265
|
})
|
|
955
266
|
.s("AmazonTimestreamInfluxDB", "ListTagsForResource", {})
|
|
956
267
|
.n("TimestreamInfluxDBClient", "ListTagsForResourceCommand")
|
|
957
|
-
.sc(ListTagsForResource$)
|
|
268
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
958
269
|
.build() {
|
|
959
270
|
}
|
|
960
271
|
|
|
@@ -966,7 +277,7 @@ class RebootDbClusterCommand extends smithyClient.Command
|
|
|
966
277
|
})
|
|
967
278
|
.s("AmazonTimestreamInfluxDB", "RebootDbCluster", {})
|
|
968
279
|
.n("TimestreamInfluxDBClient", "RebootDbClusterCommand")
|
|
969
|
-
.sc(RebootDbCluster$)
|
|
280
|
+
.sc(schemas_0.RebootDbCluster$)
|
|
970
281
|
.build() {
|
|
971
282
|
}
|
|
972
283
|
|
|
@@ -978,7 +289,7 @@ class RebootDbInstanceCommand extends smithyClient.Command
|
|
|
978
289
|
})
|
|
979
290
|
.s("AmazonTimestreamInfluxDB", "RebootDbInstance", {})
|
|
980
291
|
.n("TimestreamInfluxDBClient", "RebootDbInstanceCommand")
|
|
981
|
-
.sc(RebootDbInstance$)
|
|
292
|
+
.sc(schemas_0.RebootDbInstance$)
|
|
982
293
|
.build() {
|
|
983
294
|
}
|
|
984
295
|
|
|
@@ -990,7 +301,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
990
301
|
})
|
|
991
302
|
.s("AmazonTimestreamInfluxDB", "TagResource", {})
|
|
992
303
|
.n("TimestreamInfluxDBClient", "TagResourceCommand")
|
|
993
|
-
.sc(TagResource$)
|
|
304
|
+
.sc(schemas_0.TagResource$)
|
|
994
305
|
.build() {
|
|
995
306
|
}
|
|
996
307
|
|
|
@@ -1002,7 +313,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1002
313
|
})
|
|
1003
314
|
.s("AmazonTimestreamInfluxDB", "UntagResource", {})
|
|
1004
315
|
.n("TimestreamInfluxDBClient", "UntagResourceCommand")
|
|
1005
|
-
.sc(UntagResource$)
|
|
316
|
+
.sc(schemas_0.UntagResource$)
|
|
1006
317
|
.build() {
|
|
1007
318
|
}
|
|
1008
319
|
|
|
@@ -1014,7 +325,7 @@ class UpdateDbClusterCommand extends smithyClient.Command
|
|
|
1014
325
|
})
|
|
1015
326
|
.s("AmazonTimestreamInfluxDB", "UpdateDbCluster", {})
|
|
1016
327
|
.n("TimestreamInfluxDBClient", "UpdateDbClusterCommand")
|
|
1017
|
-
.sc(UpdateDbCluster$)
|
|
328
|
+
.sc(schemas_0.UpdateDbCluster$)
|
|
1018
329
|
.build() {
|
|
1019
330
|
}
|
|
1020
331
|
|
|
@@ -1026,7 +337,7 @@ class UpdateDbInstanceCommand extends smithyClient.Command
|
|
|
1026
337
|
})
|
|
1027
338
|
.s("AmazonTimestreamInfluxDB", "UpdateDbInstance", {})
|
|
1028
339
|
.n("TimestreamInfluxDBClient", "UpdateDbInstanceCommand")
|
|
1029
|
-
.sc(UpdateDbInstance$)
|
|
340
|
+
.sc(schemas_0.UpdateDbInstance$)
|
|
1030
341
|
.build() {
|
|
1031
342
|
}
|
|
1032
343
|
|
|
@@ -1178,127 +489,60 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1178
489
|
enumerable: true,
|
|
1179
490
|
get: function () { return smithyClient.Client; }
|
|
1180
491
|
});
|
|
1181
|
-
exports
|
|
1182
|
-
|
|
492
|
+
Object.defineProperty(exports, "TimestreamInfluxDBServiceException", {
|
|
493
|
+
enumerable: true,
|
|
494
|
+
get: function () { return TimestreamInfluxDBServiceException.TimestreamInfluxDBServiceException; }
|
|
495
|
+
});
|
|
1183
496
|
exports.ClusterDeploymentType = ClusterDeploymentType;
|
|
1184
497
|
exports.ClusterStatus = ClusterStatus;
|
|
1185
|
-
exports.ConflictException = ConflictException;
|
|
1186
|
-
exports.ConflictException$ = ConflictException$;
|
|
1187
|
-
exports.CreateDbCluster$ = CreateDbCluster$;
|
|
1188
498
|
exports.CreateDbClusterCommand = CreateDbClusterCommand;
|
|
1189
|
-
exports.CreateDbClusterInput$ = CreateDbClusterInput$;
|
|
1190
|
-
exports.CreateDbClusterOutput$ = CreateDbClusterOutput$;
|
|
1191
|
-
exports.CreateDbInstance$ = CreateDbInstance$;
|
|
1192
499
|
exports.CreateDbInstanceCommand = CreateDbInstanceCommand;
|
|
1193
|
-
exports.CreateDbInstanceInput$ = CreateDbInstanceInput$;
|
|
1194
|
-
exports.CreateDbInstanceOutput$ = CreateDbInstanceOutput$;
|
|
1195
|
-
exports.CreateDbParameterGroup$ = CreateDbParameterGroup$;
|
|
1196
500
|
exports.CreateDbParameterGroupCommand = CreateDbParameterGroupCommand;
|
|
1197
|
-
exports.CreateDbParameterGroupInput$ = CreateDbParameterGroupInput$;
|
|
1198
|
-
exports.CreateDbParameterGroupOutput$ = CreateDbParameterGroupOutput$;
|
|
1199
501
|
exports.DataFusionRuntimeType = DataFusionRuntimeType;
|
|
1200
|
-
exports.DbClusterSummary$ = DbClusterSummary$;
|
|
1201
|
-
exports.DbInstanceForClusterSummary$ = DbInstanceForClusterSummary$;
|
|
1202
|
-
exports.DbInstanceSummary$ = DbInstanceSummary$;
|
|
1203
502
|
exports.DbInstanceType = DbInstanceType;
|
|
1204
|
-
exports.DbParameterGroupSummary$ = DbParameterGroupSummary$;
|
|
1205
503
|
exports.DbStorageType = DbStorageType;
|
|
1206
|
-
exports.DeleteDbCluster$ = DeleteDbCluster$;
|
|
1207
504
|
exports.DeleteDbClusterCommand = DeleteDbClusterCommand;
|
|
1208
|
-
exports.DeleteDbClusterInput$ = DeleteDbClusterInput$;
|
|
1209
|
-
exports.DeleteDbClusterOutput$ = DeleteDbClusterOutput$;
|
|
1210
|
-
exports.DeleteDbInstance$ = DeleteDbInstance$;
|
|
1211
505
|
exports.DeleteDbInstanceCommand = DeleteDbInstanceCommand;
|
|
1212
|
-
exports.DeleteDbInstanceInput$ = DeleteDbInstanceInput$;
|
|
1213
|
-
exports.DeleteDbInstanceOutput$ = DeleteDbInstanceOutput$;
|
|
1214
506
|
exports.DeploymentType = DeploymentType;
|
|
1215
|
-
exports.Duration$ = Duration$;
|
|
1216
507
|
exports.DurationType = DurationType;
|
|
1217
508
|
exports.EngineType = EngineType;
|
|
1218
509
|
exports.FailoverMode = FailoverMode;
|
|
1219
|
-
exports.GetDbCluster$ = GetDbCluster$;
|
|
1220
510
|
exports.GetDbClusterCommand = GetDbClusterCommand;
|
|
1221
|
-
exports.GetDbClusterInput$ = GetDbClusterInput$;
|
|
1222
|
-
exports.GetDbClusterOutput$ = GetDbClusterOutput$;
|
|
1223
|
-
exports.GetDbInstance$ = GetDbInstance$;
|
|
1224
511
|
exports.GetDbInstanceCommand = GetDbInstanceCommand;
|
|
1225
|
-
exports.GetDbInstanceInput$ = GetDbInstanceInput$;
|
|
1226
|
-
exports.GetDbInstanceOutput$ = GetDbInstanceOutput$;
|
|
1227
|
-
exports.GetDbParameterGroup$ = GetDbParameterGroup$;
|
|
1228
512
|
exports.GetDbParameterGroupCommand = GetDbParameterGroupCommand;
|
|
1229
|
-
exports.GetDbParameterGroupInput$ = GetDbParameterGroupInput$;
|
|
1230
|
-
exports.GetDbParameterGroupOutput$ = GetDbParameterGroupOutput$;
|
|
1231
|
-
exports.InfluxDBv2Parameters$ = InfluxDBv2Parameters$;
|
|
1232
|
-
exports.InfluxDBv3CoreParameters$ = InfluxDBv3CoreParameters$;
|
|
1233
|
-
exports.InfluxDBv3EnterpriseParameters$ = InfluxDBv3EnterpriseParameters$;
|
|
1234
513
|
exports.InstanceMode = InstanceMode;
|
|
1235
|
-
exports.InternalServerException = InternalServerException;
|
|
1236
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1237
|
-
exports.ListDbClusters$ = ListDbClusters$;
|
|
1238
514
|
exports.ListDbClustersCommand = ListDbClustersCommand;
|
|
1239
|
-
exports.ListDbClustersInput$ = ListDbClustersInput$;
|
|
1240
|
-
exports.ListDbClustersOutput$ = ListDbClustersOutput$;
|
|
1241
|
-
exports.ListDbInstances$ = ListDbInstances$;
|
|
1242
515
|
exports.ListDbInstancesCommand = ListDbInstancesCommand;
|
|
1243
|
-
exports.ListDbInstancesForCluster$ = ListDbInstancesForCluster$;
|
|
1244
516
|
exports.ListDbInstancesForClusterCommand = ListDbInstancesForClusterCommand;
|
|
1245
|
-
exports.ListDbInstancesForClusterInput$ = ListDbInstancesForClusterInput$;
|
|
1246
|
-
exports.ListDbInstancesForClusterOutput$ = ListDbInstancesForClusterOutput$;
|
|
1247
|
-
exports.ListDbInstancesInput$ = ListDbInstancesInput$;
|
|
1248
|
-
exports.ListDbInstancesOutput$ = ListDbInstancesOutput$;
|
|
1249
|
-
exports.ListDbParameterGroups$ = ListDbParameterGroups$;
|
|
1250
517
|
exports.ListDbParameterGroupsCommand = ListDbParameterGroupsCommand;
|
|
1251
|
-
exports.ListDbParameterGroupsInput$ = ListDbParameterGroupsInput$;
|
|
1252
|
-
exports.ListDbParameterGroupsOutput$ = ListDbParameterGroupsOutput$;
|
|
1253
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1254
518
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1255
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1256
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1257
|
-
exports.LogDeliveryConfiguration$ = LogDeliveryConfiguration$;
|
|
1258
519
|
exports.LogFormats = LogFormats;
|
|
1259
520
|
exports.LogLevel = LogLevel;
|
|
1260
521
|
exports.NetworkType = NetworkType;
|
|
1261
|
-
exports.PercentOrAbsoluteLong$ = PercentOrAbsoluteLong$;
|
|
1262
|
-
exports.RebootDbCluster$ = RebootDbCluster$;
|
|
1263
522
|
exports.RebootDbClusterCommand = RebootDbClusterCommand;
|
|
1264
|
-
exports.RebootDbClusterInput$ = RebootDbClusterInput$;
|
|
1265
|
-
exports.RebootDbClusterOutput$ = RebootDbClusterOutput$;
|
|
1266
|
-
exports.RebootDbInstance$ = RebootDbInstance$;
|
|
1267
523
|
exports.RebootDbInstanceCommand = RebootDbInstanceCommand;
|
|
1268
|
-
exports.RebootDbInstanceInput$ = RebootDbInstanceInput$;
|
|
1269
|
-
exports.RebootDbInstanceOutput$ = RebootDbInstanceOutput$;
|
|
1270
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1271
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1272
|
-
exports.S3Configuration$ = S3Configuration$;
|
|
1273
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1274
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1275
524
|
exports.Status = Status;
|
|
1276
|
-
exports.TagResource$ = TagResource$;
|
|
1277
525
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1278
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1279
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1280
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1281
526
|
exports.TimestreamInfluxDB = TimestreamInfluxDB;
|
|
1282
527
|
exports.TimestreamInfluxDBClient = TimestreamInfluxDBClient;
|
|
1283
|
-
exports.TimestreamInfluxDBServiceException = TimestreamInfluxDBServiceException;
|
|
1284
|
-
exports.TimestreamInfluxDBServiceException$ = TimestreamInfluxDBServiceException$;
|
|
1285
528
|
exports.TracingType = TracingType;
|
|
1286
|
-
exports.UntagResource$ = UntagResource$;
|
|
1287
529
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1288
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1289
|
-
exports.UpdateDbCluster$ = UpdateDbCluster$;
|
|
1290
530
|
exports.UpdateDbClusterCommand = UpdateDbClusterCommand;
|
|
1291
|
-
exports.UpdateDbClusterInput$ = UpdateDbClusterInput$;
|
|
1292
|
-
exports.UpdateDbClusterOutput$ = UpdateDbClusterOutput$;
|
|
1293
|
-
exports.UpdateDbInstance$ = UpdateDbInstance$;
|
|
1294
531
|
exports.UpdateDbInstanceCommand = UpdateDbInstanceCommand;
|
|
1295
|
-
exports.UpdateDbInstanceInput$ = UpdateDbInstanceInput$;
|
|
1296
|
-
exports.UpdateDbInstanceOutput$ = UpdateDbInstanceOutput$;
|
|
1297
|
-
exports.ValidationException = ValidationException;
|
|
1298
|
-
exports.ValidationException$ = ValidationException$;
|
|
1299
532
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1300
|
-
exports._Parameters$ = _Parameters$;
|
|
1301
533
|
exports.paginateListDbClusters = paginateListDbClusters;
|
|
1302
534
|
exports.paginateListDbInstances = paginateListDbInstances;
|
|
1303
535
|
exports.paginateListDbInstancesForCluster = paginateListDbInstancesForCluster;
|
|
1304
536
|
exports.paginateListDbParameterGroups = paginateListDbParameterGroups;
|
|
537
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
538
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
539
|
+
enumerable: true,
|
|
540
|
+
get: function () { return schemas_0[k]; }
|
|
541
|
+
});
|
|
542
|
+
});
|
|
543
|
+
Object.keys(errors).forEach(function (k) {
|
|
544
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
545
|
+
enumerable: true,
|
|
546
|
+
get: function () { return errors[k]; }
|
|
547
|
+
});
|
|
548
|
+
});
|