@aws-sdk/client-timestream-influxdb 3.1074.0 → 3.1076.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 +981 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/TimestreamInfluxDBServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -99
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -677
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "timestream-influxdb",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultTimestreamInfluxDBHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,850 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://timestream-influxdb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://timestream-influxdb-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://timestream-influxdb.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://timestream-influxdb.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class TimestreamInfluxDBServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, TimestreamInfluxDBServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends TimestreamInfluxDBServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ConflictException extends TimestreamInfluxDBServiceException {
|
|
152
|
+
name = "ConflictException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
resourceId;
|
|
155
|
+
resourceType;
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ConflictException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
163
|
+
this.resourceId = opts.resourceId;
|
|
164
|
+
this.resourceType = opts.resourceType;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InternalServerException extends TimestreamInfluxDBServiceException {
|
|
168
|
+
name = "InternalServerException";
|
|
169
|
+
$fault = "server";
|
|
170
|
+
$retryable = {};
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InternalServerException",
|
|
174
|
+
$fault: "server",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
class ResourceNotFoundException extends TimestreamInfluxDBServiceException {
|
|
181
|
+
name = "ResourceNotFoundException";
|
|
182
|
+
$fault = "client";
|
|
183
|
+
resourceId;
|
|
184
|
+
resourceType;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ResourceNotFoundException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
192
|
+
this.resourceId = opts.resourceId;
|
|
193
|
+
this.resourceType = opts.resourceType;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
class ServiceQuotaExceededException extends TimestreamInfluxDBServiceException {
|
|
197
|
+
name = "ServiceQuotaExceededException";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ServiceQuotaExceededException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
class ThrottlingException extends TimestreamInfluxDBServiceException {
|
|
209
|
+
name = "ThrottlingException";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
$retryable = {};
|
|
212
|
+
retryAfterSeconds;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "ThrottlingException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
220
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class ValidationException extends TimestreamInfluxDBServiceException {
|
|
224
|
+
name = "ValidationException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
reason;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "ValidationException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
234
|
+
this.reason = opts.reason;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
const _ADE = "AccessDeniedException";
|
|
239
|
+
const _CC = "ClusterConfiguration";
|
|
240
|
+
const _CDC = "CreateDbCluster";
|
|
241
|
+
const _CDCI = "CreateDbClusterInput";
|
|
242
|
+
const _CDCO = "CreateDbClusterOutput";
|
|
243
|
+
const _CDI = "CreateDbInstance";
|
|
244
|
+
const _CDII = "CreateDbInstanceInput";
|
|
245
|
+
const _CDIO = "CreateDbInstanceOutput";
|
|
246
|
+
const _CDPG = "CreateDbParameterGroup";
|
|
247
|
+
const _CDPGI = "CreateDbParameterGroupInput";
|
|
248
|
+
const _CDPGO = "CreateDbParameterGroupOutput";
|
|
249
|
+
const _CE = "ConflictException";
|
|
250
|
+
const _D = "Duration";
|
|
251
|
+
const _DCS = "DbClusterSummary";
|
|
252
|
+
const _DCSL = "DbClusterSummaryList";
|
|
253
|
+
const _DDC = "DeleteDbCluster";
|
|
254
|
+
const _DDCI = "DeleteDbClusterInput";
|
|
255
|
+
const _DDCO = "DeleteDbClusterOutput";
|
|
256
|
+
const _DDI = "DeleteDbInstance";
|
|
257
|
+
const _DDII = "DeleteDbInstanceInput";
|
|
258
|
+
const _DDIO = "DeleteDbInstanceOutput";
|
|
259
|
+
const _DIFCS = "DbInstanceForClusterSummary";
|
|
260
|
+
const _DIFCSL = "DbInstanceForClusterSummaryList";
|
|
261
|
+
const _DIS = "DbInstanceSummary";
|
|
262
|
+
const _DISL = "DbInstanceSummaryList";
|
|
263
|
+
const _DPGS = "DbParameterGroupSummary";
|
|
264
|
+
const _DPGSL = "DbParameterGroupSummaryList";
|
|
265
|
+
const _GDC = "GetDbCluster";
|
|
266
|
+
const _GDCI = "GetDbClusterInput";
|
|
267
|
+
const _GDCO = "GetDbClusterOutput";
|
|
268
|
+
const _GDI = "GetDbInstance";
|
|
269
|
+
const _GDII = "GetDbInstanceInput";
|
|
270
|
+
const _GDIO = "GetDbInstanceOutput";
|
|
271
|
+
const _GDPG = "GetDbParameterGroup";
|
|
272
|
+
const _GDPGI = "GetDbParameterGroupInput";
|
|
273
|
+
const _GDPGO = "GetDbParameterGroupOutput";
|
|
274
|
+
const _IDB = "InfluxDBv2";
|
|
275
|
+
const _IDBC = "InfluxDBv3Core";
|
|
276
|
+
const _IDBCP = "InfluxDBv3CoreParameters";
|
|
277
|
+
const _IDBE = "InfluxDBv3Enterprise";
|
|
278
|
+
const _IDBEP = "InfluxDBv3EnterpriseParameters";
|
|
279
|
+
const _IDBP = "InfluxDBv2Parameters";
|
|
280
|
+
const _ISE = "InternalServerException";
|
|
281
|
+
const _LDC = "LogDeliveryConfiguration";
|
|
282
|
+
const _LDCI = "ListDbClustersInput";
|
|
283
|
+
const _LDCO = "ListDbClustersOutput";
|
|
284
|
+
const _LDCi = "ListDbClusters";
|
|
285
|
+
const _LDI = "ListDbInstances";
|
|
286
|
+
const _LDIFC = "ListDbInstancesForCluster";
|
|
287
|
+
const _LDIFCI = "ListDbInstancesForClusterInput";
|
|
288
|
+
const _LDIFCO = "ListDbInstancesForClusterOutput";
|
|
289
|
+
const _LDII = "ListDbInstancesInput";
|
|
290
|
+
const _LDIO = "ListDbInstancesOutput";
|
|
291
|
+
const _LDPG = "ListDbParameterGroups";
|
|
292
|
+
const _LDPGI = "ListDbParameterGroupsInput";
|
|
293
|
+
const _LDPGO = "ListDbParameterGroupsOutput";
|
|
294
|
+
const _LTFR = "ListTagsForResource";
|
|
295
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
296
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
297
|
+
const _MS = "MaintenanceSchedule";
|
|
298
|
+
const _P = "Password";
|
|
299
|
+
const _POAL = "PercentOrAbsoluteLong";
|
|
300
|
+
const _Pa = "Parameters";
|
|
301
|
+
const _RA = "Retry-After";
|
|
302
|
+
const _RDC = "RebootDbCluster";
|
|
303
|
+
const _RDCI = "RebootDbClusterInput";
|
|
304
|
+
const _RDCO = "RebootDbClusterOutput";
|
|
305
|
+
const _RDI = "RebootDbInstance";
|
|
306
|
+
const _RDII = "RebootDbInstanceInput";
|
|
307
|
+
const _RDIO = "RebootDbInstanceOutput";
|
|
308
|
+
const _RNFE = "ResourceNotFoundException";
|
|
309
|
+
const _SC = "S3Configuration";
|
|
310
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
311
|
+
const _TE = "ThrottlingException";
|
|
312
|
+
const _TR = "TagResource";
|
|
313
|
+
const _TRR = "TagResourceRequest";
|
|
314
|
+
const _U = "Username";
|
|
315
|
+
const _UDC = "UpdateDbCluster";
|
|
316
|
+
const _UDCI = "UpdateDbClusterInput";
|
|
317
|
+
const _UDCO = "UpdateDbClusterOutput";
|
|
318
|
+
const _UDI = "UpdateDbInstance";
|
|
319
|
+
const _UDII = "UpdateDbInstanceInput";
|
|
320
|
+
const _UDIO = "UpdateDbInstanceOutput";
|
|
321
|
+
const _UR = "UntagResource";
|
|
322
|
+
const _URR = "UntagResourceRequest";
|
|
323
|
+
const _VE = "ValidationException";
|
|
324
|
+
const _a = "arn";
|
|
325
|
+
const _aS = "allocatedStorage";
|
|
326
|
+
const _aZ = "availabilityZone";
|
|
327
|
+
const _ab = "absolute";
|
|
328
|
+
const _b = "bucket";
|
|
329
|
+
const _bN = "bucketName";
|
|
330
|
+
const _c = "client";
|
|
331
|
+
const _cC = "clusterConfiguration";
|
|
332
|
+
const _cCI = "compactionCheckInterval";
|
|
333
|
+
const _cCW = "compactionCleanupWait";
|
|
334
|
+
const _cGD = "compactionGen2Duration";
|
|
335
|
+
const _cM = "compactionMultipliers";
|
|
336
|
+
const _cMNFPP = "compactionMaxNumFilesPerPlan";
|
|
337
|
+
const _cRL = "compactionRowLimit";
|
|
338
|
+
const _cSI = "catalogSyncInterval";
|
|
339
|
+
const _d = "description";
|
|
340
|
+
const _dC = "dedicatedCompactor";
|
|
341
|
+
const _dCEI = "distinctCacheEvictionInterval";
|
|
342
|
+
const _dCI = "dbClusterId";
|
|
343
|
+
const _dCS = "dbClusterStatus";
|
|
344
|
+
const _dFC = "dataFusionConfig";
|
|
345
|
+
const _dFMPF = "dataFusionMaxParquetFanout";
|
|
346
|
+
const _dFNT = "dataFusionNumThreads";
|
|
347
|
+
const _dFRDLS = "dataFusionRuntimeDisableLifoSlot";
|
|
348
|
+
const _dFREI = "dataFusionRuntimeEventInterval";
|
|
349
|
+
const _dFRGQI = "dataFusionRuntimeGlobalQueueInterval";
|
|
350
|
+
const _dFRMBT = "dataFusionRuntimeMaxBlockingThreads";
|
|
351
|
+
const _dFRMIEPT = "dataFusionRuntimeMaxIoEventsPerTick";
|
|
352
|
+
const _dFRT = "dataFusionRuntimeType";
|
|
353
|
+
const _dFRTKA = "dataFusionRuntimeThreadKeepAlive";
|
|
354
|
+
const _dFRTP = "dataFusionRuntimeThreadPriority";
|
|
355
|
+
const _dFUCPL = "dataFusionUseCachedParquetLoader";
|
|
356
|
+
const _dGP = "deleteGracePeriod";
|
|
357
|
+
const _dIT = "dbInstanceType";
|
|
358
|
+
const _dPGI = "dbParameterGroupIdentifier";
|
|
359
|
+
const _dPMC = "disableParquetMemCache";
|
|
360
|
+
const _dST = "dbStorageType";
|
|
361
|
+
const _dT = "deploymentType";
|
|
362
|
+
const _dTu = "durationType";
|
|
363
|
+
const _dVCDFH = "distinctValueCacheDisableFromHistory";
|
|
364
|
+
const _e = "error";
|
|
365
|
+
const _eMPB = "execMemPoolBytes";
|
|
366
|
+
const _eT = "engineType";
|
|
367
|
+
const _en = "endpoint";
|
|
368
|
+
const _ena = "enabled";
|
|
369
|
+
const _fLE = "fluxLogEnabled";
|
|
370
|
+
const _fM = "failoverMode";
|
|
371
|
+
const _fSMT = "forceSnapshotMemThreshold";
|
|
372
|
+
const _gD = "gen1Duration";
|
|
373
|
+
const _gLD = "gen1LookbackDuration";
|
|
374
|
+
const _hDDD = "hardDeleteDefaultDuration";
|
|
375
|
+
const _hE = "httpError";
|
|
376
|
+
const _hH = "httpHeader";
|
|
377
|
+
const _hIT = "httpIdleTimeout";
|
|
378
|
+
const _hRHT = "httpReadHeaderTimeout";
|
|
379
|
+
const _hRT = "httpReadTimeout";
|
|
380
|
+
const _hWT = "httpWriteTimeout";
|
|
381
|
+
const _i = "id";
|
|
382
|
+
const _iAPSA = "influxAuthParametersSecretArn";
|
|
383
|
+
const _iI = "instanceIds";
|
|
384
|
+
const _iM = "instanceMode";
|
|
385
|
+
const _iMSB = "influxqlMaxSelectBuckets";
|
|
386
|
+
const _iMSP = "influxqlMaxSelectPoint";
|
|
387
|
+
const _iMSS = "influxqlMaxSelectSeries";
|
|
388
|
+
const _iMn = "instanceModes";
|
|
389
|
+
const _iQI = "ingestQueryInstances";
|
|
390
|
+
const _id = "identifier";
|
|
391
|
+
const _it = "items";
|
|
392
|
+
const _lCEI = "lastCacheEvictionInterval";
|
|
393
|
+
const _lDC = "logDeliveryConfiguration";
|
|
394
|
+
const _lF = "logFilter";
|
|
395
|
+
const _lFo = "logFormat";
|
|
396
|
+
const _lL = "logLevel";
|
|
397
|
+
const _lMT = "lastMaintenanceTime";
|
|
398
|
+
const _lVCDFH = "lastValueCacheDisableFromHistory";
|
|
399
|
+
const _m = "message";
|
|
400
|
+
const _mD = "metricsDisabled";
|
|
401
|
+
const _mHRS = "maxHttpRequestSize";
|
|
402
|
+
const _mR = "maxResults";
|
|
403
|
+
const _mS = "maintenanceSchedule";
|
|
404
|
+
const _n = "name";
|
|
405
|
+
const _nMT = "nextMaintenanceTime";
|
|
406
|
+
const _nT = "networkType";
|
|
407
|
+
const _nTe = "nextToken";
|
|
408
|
+
const _nTo = "noTasks";
|
|
409
|
+
const _o = "organization";
|
|
410
|
+
const _p = "password";
|
|
411
|
+
const _pA = "publiclyAccessible";
|
|
412
|
+
const _pCA = "preemptiveCacheAge";
|
|
413
|
+
const _pD = "pprofDisabled";
|
|
414
|
+
const _pMCPI = "parquetMemCachePruneInterval";
|
|
415
|
+
const _pMCPP = "parquetMemCachePrunePercentage";
|
|
416
|
+
const _pMCQPD = "parquetMemCacheQueryPathDuration";
|
|
417
|
+
const _pMCS = "parquetMemCacheSize";
|
|
418
|
+
const _pMW = "preferredMaintenanceWindow";
|
|
419
|
+
const _pa = "parameters";
|
|
420
|
+
const _pe = "percent";
|
|
421
|
+
const _po = "port";
|
|
422
|
+
const _qC = "queryConcurrency";
|
|
423
|
+
const _qFL = "queryFileLimit";
|
|
424
|
+
const _qIMB = "queryInitialMemoryBytes";
|
|
425
|
+
const _qLS = "queryLogSize";
|
|
426
|
+
const _qMB = "queryMemoryBytes";
|
|
427
|
+
const _qMMB = "queryMaxMemoryBytes";
|
|
428
|
+
const _qOI = "queryOnlyInstances";
|
|
429
|
+
const _qQS = "queryQueueSize";
|
|
430
|
+
const _r = "reason";
|
|
431
|
+
const _rA = "resourceArn";
|
|
432
|
+
const _rAS = "retryAfterSeconds";
|
|
433
|
+
const _rCI = "retentionCheckInterval";
|
|
434
|
+
const _rE = "readerEndpoint";
|
|
435
|
+
const _rI = "resourceId";
|
|
436
|
+
const _rIe = "replicationInterval";
|
|
437
|
+
const _rT = "resourceType";
|
|
438
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.timestreaminfluxdb";
|
|
439
|
+
const _sAZ = "secondaryAvailabilityZone";
|
|
440
|
+
const _sC = "s3Configuration";
|
|
441
|
+
const _sCFWCD = "storageCompactFullWriteColdDuration";
|
|
442
|
+
const _sCMMS = "storageCacheMaxMemorySize";
|
|
443
|
+
const _sCSMS = "storageCacheSnapshotMemorySize";
|
|
444
|
+
const _sCSWCD = "storageCacheSnapshotWriteColdDuration";
|
|
445
|
+
const _sCTB = "storageCompactThroughputBurst";
|
|
446
|
+
const _sL = "sessionLength";
|
|
447
|
+
const _sMCC = "storageMaxConcurrentCompactions";
|
|
448
|
+
const _sMILFS = "storageMaxIndexLogFileSize";
|
|
449
|
+
const _sNVFS = "storageNoValidateFieldSize";
|
|
450
|
+
const _sRCI = "storageRetentionCheckInterval";
|
|
451
|
+
const _sRD = "sessionRenewDisabled";
|
|
452
|
+
const _sSFMCSC = "storageSeriesFileMaxConcurrentSnapshotCompactions";
|
|
453
|
+
const _sSISCS = "storageSeriesIdSetCacheSize";
|
|
454
|
+
const _sWFTK = "snapshottedWalFilesToKeep";
|
|
455
|
+
const _sWMCW = "storageWalMaxConcurrentWrites";
|
|
456
|
+
const _sWMWD = "storageWalMaxWriteDelay";
|
|
457
|
+
const _se = "server";
|
|
458
|
+
const _st = "status";
|
|
459
|
+
const _t = "tags";
|
|
460
|
+
const _tICCL = "tableIndexCacheConcurrencyLimit";
|
|
461
|
+
const _tICME = "tableIndexCacheMaxEntries";
|
|
462
|
+
const _tK = "tagKeys";
|
|
463
|
+
const _tT = "tracingType";
|
|
464
|
+
const _ti = "timezone";
|
|
465
|
+
const _u = "username";
|
|
466
|
+
const _uD = "uiDisabled";
|
|
467
|
+
const _v = "value";
|
|
468
|
+
const _vSGI = "vpcSecurityGroupIds";
|
|
469
|
+
const _vSI = "vpcSubnetIds";
|
|
470
|
+
const _wMWBS = "walMaxWriteBufferSize";
|
|
471
|
+
const _wRCL = "walReplayConcurrencyLimit";
|
|
472
|
+
const _wRFOE = "walReplayFailOnError";
|
|
473
|
+
const _wSS = "walSnapshotSize";
|
|
474
|
+
const n0 = "com.amazonaws.timestreaminfluxdb";
|
|
475
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
476
|
+
var TimestreamInfluxDBServiceException$ = [-3, _s, "TimestreamInfluxDBServiceException", 0, [], []];
|
|
477
|
+
_s_registry.registerError(TimestreamInfluxDBServiceException$, TimestreamInfluxDBServiceException);
|
|
478
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
479
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
480
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
481
|
+
[_m],
|
|
482
|
+
[0], 1
|
|
483
|
+
];
|
|
484
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
485
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
486
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
487
|
+
[_m, _rI, _rT],
|
|
488
|
+
[0, 0, 0], 3
|
|
489
|
+
];
|
|
490
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
491
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
492
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
493
|
+
[_m],
|
|
494
|
+
[0], 1
|
|
495
|
+
];
|
|
496
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
497
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
498
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
499
|
+
[_m, _rI, _rT],
|
|
500
|
+
[0, 0, 0], 3
|
|
501
|
+
];
|
|
502
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
503
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
504
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
505
|
+
[_m],
|
|
506
|
+
[0], 1
|
|
507
|
+
];
|
|
508
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
509
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
510
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
511
|
+
[_m, _rAS],
|
|
512
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
513
|
+
];
|
|
514
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
515
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
516
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
517
|
+
[_m, _r],
|
|
518
|
+
[0, 0], 2
|
|
519
|
+
];
|
|
520
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
521
|
+
const errorTypeRegistries = [
|
|
522
|
+
_s_registry,
|
|
523
|
+
n0_registry,
|
|
524
|
+
];
|
|
525
|
+
var Password = [0, n0, _P, 8, 0];
|
|
526
|
+
var Username = [0, n0, _U, 8, 0];
|
|
527
|
+
var ClusterConfiguration$ = [3, n0, _CC,
|
|
528
|
+
0,
|
|
529
|
+
[_iQI, _qOI, _dC],
|
|
530
|
+
[1, 1, 2]
|
|
531
|
+
];
|
|
532
|
+
var CreateDbClusterInput$ = [3, n0, _CDCI,
|
|
533
|
+
0,
|
|
534
|
+
[_n, _dIT, _vSI, _vSGI, _u, _p, _o, _b, _po, _dPGI, _dST, _aS, _nT, _pA, _dT, _fM, _lDC, _mS, _t],
|
|
535
|
+
[0, 0, 64 | 0, 64 | 0, [() => Username, 0], [() => Password, 0], 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, () => LogDeliveryConfiguration$, () => MaintenanceSchedule$, 128 | 0], 4
|
|
536
|
+
];
|
|
537
|
+
var CreateDbClusterOutput$ = [3, n0, _CDCO,
|
|
538
|
+
0,
|
|
539
|
+
[_dCI, _dCS],
|
|
540
|
+
[0, 0]
|
|
541
|
+
];
|
|
542
|
+
var CreateDbInstanceInput$ = [3, n0, _CDII,
|
|
543
|
+
0,
|
|
544
|
+
[_n, _p, _dIT, _vSI, _vSGI, _aS, _u, _o, _b, _pA, _dST, _dPGI, _dT, _lDC, _mS, _t, _po, _nT],
|
|
545
|
+
[0, [() => Password, 0], 0, 64 | 0, 64 | 0, 1, [() => Username, 0], 0, 0, 2, 0, 0, 0, () => LogDeliveryConfiguration$, () => MaintenanceSchedule$, 128 | 0, 1, 0], 6
|
|
546
|
+
];
|
|
547
|
+
var CreateDbInstanceOutput$ = [3, n0, _CDIO,
|
|
548
|
+
0,
|
|
549
|
+
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn, _mS, _lMT, _nMT],
|
|
550
|
+
[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, () => MaintenanceSchedule$, 5, 5], 4
|
|
551
|
+
];
|
|
552
|
+
var CreateDbParameterGroupInput$ = [3, n0, _CDPGI,
|
|
553
|
+
0,
|
|
554
|
+
[_n, _d, _pa, _t],
|
|
555
|
+
[0, 0, () => _Parameters$, 128 | 0], 1
|
|
556
|
+
];
|
|
557
|
+
var CreateDbParameterGroupOutput$ = [3, n0, _CDPGO,
|
|
558
|
+
0,
|
|
559
|
+
[_i, _n, _a, _d, _pa],
|
|
560
|
+
[0, 0, 0, 0, () => _Parameters$], 3
|
|
561
|
+
];
|
|
562
|
+
var DbClusterSummary$ = [3, n0, _DCS,
|
|
563
|
+
0,
|
|
564
|
+
[_i, _n, _a, _st, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT],
|
|
565
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], 3
|
|
566
|
+
];
|
|
567
|
+
var DbInstanceForClusterSummary$ = [3, n0, _DIFCS,
|
|
568
|
+
0,
|
|
569
|
+
[_i, _n, _a, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _iM, _iMn],
|
|
570
|
+
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 64 | 0], 3
|
|
571
|
+
];
|
|
572
|
+
var DbInstanceSummary$ = [3, n0, _DIS,
|
|
573
|
+
0,
|
|
574
|
+
[_i, _n, _a, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT],
|
|
575
|
+
[0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], 3
|
|
576
|
+
];
|
|
577
|
+
var DbParameterGroupSummary$ = [3, n0, _DPGS,
|
|
578
|
+
0,
|
|
579
|
+
[_i, _n, _a, _d],
|
|
580
|
+
[0, 0, 0, 0], 3
|
|
581
|
+
];
|
|
582
|
+
var DeleteDbClusterInput$ = [3, n0, _DDCI,
|
|
583
|
+
0,
|
|
584
|
+
[_dCI],
|
|
585
|
+
[0], 1
|
|
586
|
+
];
|
|
587
|
+
var DeleteDbClusterOutput$ = [3, n0, _DDCO,
|
|
588
|
+
0,
|
|
589
|
+
[_dCS],
|
|
590
|
+
[0]
|
|
591
|
+
];
|
|
592
|
+
var DeleteDbInstanceInput$ = [3, n0, _DDII,
|
|
593
|
+
0,
|
|
594
|
+
[_id],
|
|
595
|
+
[0], 1
|
|
596
|
+
];
|
|
597
|
+
var DeleteDbInstanceOutput$ = [3, n0, _DDIO,
|
|
598
|
+
0,
|
|
599
|
+
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn, _mS, _lMT, _nMT],
|
|
600
|
+
[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, () => MaintenanceSchedule$, 5, 5], 4
|
|
601
|
+
];
|
|
602
|
+
var Duration$ = [3, n0, _D,
|
|
603
|
+
0,
|
|
604
|
+
[_dTu, _v],
|
|
605
|
+
[0, 1], 2
|
|
606
|
+
];
|
|
607
|
+
var GetDbClusterInput$ = [3, n0, _GDCI,
|
|
608
|
+
0,
|
|
609
|
+
[_dCI],
|
|
610
|
+
[0], 1
|
|
611
|
+
];
|
|
612
|
+
var GetDbClusterOutput$ = [3, n0, _GDCO,
|
|
613
|
+
0,
|
|
614
|
+
[_i, _n, _a, _st, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _mS, _lMT, _nMT, _iAPSA, _vSI, _vSGI, _fM, _cC],
|
|
615
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => LogDeliveryConfiguration$, () => MaintenanceSchedule$, 5, 5, 0, 64 | 0, 64 | 0, 0, () => ClusterConfiguration$], 3
|
|
616
|
+
];
|
|
617
|
+
var GetDbInstanceInput$ = [3, n0, _GDII,
|
|
618
|
+
0,
|
|
619
|
+
[_id],
|
|
620
|
+
[0], 1
|
|
621
|
+
];
|
|
622
|
+
var GetDbInstanceOutput$ = [3, n0, _GDIO,
|
|
623
|
+
0,
|
|
624
|
+
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn, _mS, _lMT, _nMT],
|
|
625
|
+
[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, () => MaintenanceSchedule$, 5, 5], 4
|
|
626
|
+
];
|
|
627
|
+
var GetDbParameterGroupInput$ = [3, n0, _GDPGI,
|
|
628
|
+
0,
|
|
629
|
+
[_id],
|
|
630
|
+
[0], 1
|
|
631
|
+
];
|
|
632
|
+
var GetDbParameterGroupOutput$ = [3, n0, _GDPGO,
|
|
633
|
+
0,
|
|
634
|
+
[_i, _n, _a, _d, _pa],
|
|
635
|
+
[0, 0, 0, 0, () => _Parameters$], 3
|
|
636
|
+
];
|
|
637
|
+
var InfluxDBv2Parameters$ = [3, n0, _IDBP,
|
|
638
|
+
0,
|
|
639
|
+
[_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],
|
|
640
|
+
[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]
|
|
641
|
+
];
|
|
642
|
+
var InfluxDBv3CoreParameters$ = [3, n0, _IDBCP,
|
|
643
|
+
0,
|
|
644
|
+
[_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],
|
|
645
|
+
[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$]
|
|
646
|
+
];
|
|
647
|
+
var InfluxDBv3EnterpriseParameters$ = [3, n0, _IDBEP,
|
|
648
|
+
0,
|
|
649
|
+
[_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],
|
|
650
|
+
[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
|
|
651
|
+
];
|
|
652
|
+
var ListDbClustersInput$ = [3, n0, _LDCI,
|
|
653
|
+
0,
|
|
654
|
+
[_nTe, _mR],
|
|
655
|
+
[0, 1]
|
|
656
|
+
];
|
|
657
|
+
var ListDbClustersOutput$ = [3, n0, _LDCO,
|
|
658
|
+
0,
|
|
659
|
+
[_it, _nTe],
|
|
660
|
+
[() => DbClusterSummaryList, 0], 1
|
|
661
|
+
];
|
|
662
|
+
var ListDbInstancesForClusterInput$ = [3, n0, _LDIFCI,
|
|
663
|
+
0,
|
|
664
|
+
[_dCI, _nTe, _mR],
|
|
665
|
+
[0, 0, 1], 1
|
|
666
|
+
];
|
|
667
|
+
var ListDbInstancesForClusterOutput$ = [3, n0, _LDIFCO,
|
|
668
|
+
0,
|
|
669
|
+
[_it, _nTe],
|
|
670
|
+
[() => DbInstanceForClusterSummaryList, 0], 1
|
|
671
|
+
];
|
|
672
|
+
var ListDbInstancesInput$ = [3, n0, _LDII,
|
|
673
|
+
0,
|
|
674
|
+
[_nTe, _mR],
|
|
675
|
+
[0, 1]
|
|
676
|
+
];
|
|
677
|
+
var ListDbInstancesOutput$ = [3, n0, _LDIO,
|
|
678
|
+
0,
|
|
679
|
+
[_it, _nTe],
|
|
680
|
+
[() => DbInstanceSummaryList, 0], 1
|
|
681
|
+
];
|
|
682
|
+
var ListDbParameterGroupsInput$ = [3, n0, _LDPGI,
|
|
683
|
+
0,
|
|
684
|
+
[_nTe, _mR],
|
|
685
|
+
[0, 1]
|
|
686
|
+
];
|
|
687
|
+
var ListDbParameterGroupsOutput$ = [3, n0, _LDPGO,
|
|
688
|
+
0,
|
|
689
|
+
[_it, _nTe],
|
|
690
|
+
[() => DbParameterGroupSummaryList, 0], 1
|
|
691
|
+
];
|
|
692
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
693
|
+
0,
|
|
694
|
+
[_rA],
|
|
695
|
+
[0], 1
|
|
696
|
+
];
|
|
697
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
698
|
+
0,
|
|
699
|
+
[_t],
|
|
700
|
+
[128 | 0]
|
|
701
|
+
];
|
|
702
|
+
var LogDeliveryConfiguration$ = [3, n0, _LDC,
|
|
703
|
+
0,
|
|
704
|
+
[_sC],
|
|
705
|
+
[() => S3Configuration$], 1
|
|
706
|
+
];
|
|
707
|
+
var MaintenanceSchedule$ = [3, n0, _MS,
|
|
708
|
+
0,
|
|
709
|
+
[_ti, _pMW],
|
|
710
|
+
[0, 0], 2
|
|
711
|
+
];
|
|
712
|
+
var RebootDbClusterInput$ = [3, n0, _RDCI,
|
|
713
|
+
0,
|
|
714
|
+
[_dCI, _iI],
|
|
715
|
+
[0, 64 | 0], 1
|
|
716
|
+
];
|
|
717
|
+
var RebootDbClusterOutput$ = [3, n0, _RDCO,
|
|
718
|
+
0,
|
|
719
|
+
[_dCS],
|
|
720
|
+
[0]
|
|
721
|
+
];
|
|
722
|
+
var RebootDbInstanceInput$ = [3, n0, _RDII,
|
|
723
|
+
0,
|
|
724
|
+
[_id],
|
|
725
|
+
[0], 1
|
|
726
|
+
];
|
|
727
|
+
var RebootDbInstanceOutput$ = [3, n0, _RDIO,
|
|
728
|
+
0,
|
|
729
|
+
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn, _mS, _lMT, _nMT],
|
|
730
|
+
[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, () => MaintenanceSchedule$, 5, 5], 4
|
|
731
|
+
];
|
|
732
|
+
var S3Configuration$ = [3, n0, _SC,
|
|
733
|
+
0,
|
|
734
|
+
[_bN, _ena],
|
|
735
|
+
[0, 2], 2
|
|
736
|
+
];
|
|
737
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
738
|
+
0,
|
|
739
|
+
[_rA, _t],
|
|
740
|
+
[0, 128 | 0], 2
|
|
741
|
+
];
|
|
742
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
743
|
+
0,
|
|
744
|
+
[_rA, _tK],
|
|
745
|
+
[[0, 1], 64 | 0], 2
|
|
746
|
+
];
|
|
747
|
+
var UpdateDbClusterInput$ = [3, n0, _UDCI,
|
|
748
|
+
0,
|
|
749
|
+
[_dCI, _lDC, _dPGI, _po, _dIT, _fM, _mS],
|
|
750
|
+
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, () => MaintenanceSchedule$], 1
|
|
751
|
+
];
|
|
752
|
+
var UpdateDbClusterOutput$ = [3, n0, _UDCO,
|
|
753
|
+
0,
|
|
754
|
+
[_dCS],
|
|
755
|
+
[0]
|
|
756
|
+
];
|
|
757
|
+
var UpdateDbInstanceInput$ = [3, n0, _UDII,
|
|
758
|
+
0,
|
|
759
|
+
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS, _mS],
|
|
760
|
+
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1, () => MaintenanceSchedule$], 1
|
|
761
|
+
];
|
|
762
|
+
var UpdateDbInstanceOutput$ = [3, n0, _UDIO,
|
|
763
|
+
0,
|
|
764
|
+
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn, _mS, _lMT, _nMT],
|
|
765
|
+
[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, () => MaintenanceSchedule$, 5, 5], 4
|
|
766
|
+
];
|
|
767
|
+
var __Unit = "unit";
|
|
768
|
+
var DbClusterSummaryList = [1, n0, _DCSL,
|
|
769
|
+
0, () => DbClusterSummary$
|
|
770
|
+
];
|
|
771
|
+
var DbInstanceForClusterSummaryList = [1, n0, _DIFCSL,
|
|
772
|
+
0, () => DbInstanceForClusterSummary$
|
|
773
|
+
];
|
|
774
|
+
var DbInstanceSummaryList = [1, n0, _DISL,
|
|
775
|
+
0, () => DbInstanceSummary$
|
|
776
|
+
];
|
|
777
|
+
var DbParameterGroupSummaryList = [1, n0, _DPGSL,
|
|
778
|
+
0, () => DbParameterGroupSummary$
|
|
779
|
+
];
|
|
780
|
+
var _Parameters$ = [4, n0, _Pa,
|
|
781
|
+
0,
|
|
782
|
+
[_IDB, _IDBC, _IDBE],
|
|
783
|
+
[() => InfluxDBv2Parameters$, () => InfluxDBv3CoreParameters$, () => InfluxDBv3EnterpriseParameters$]
|
|
784
|
+
];
|
|
785
|
+
var PercentOrAbsoluteLong$ = [4, n0, _POAL,
|
|
786
|
+
0,
|
|
787
|
+
[_pe, _ab],
|
|
788
|
+
[0, 1]
|
|
789
|
+
];
|
|
790
|
+
var CreateDbCluster$ = [9, n0, _CDC,
|
|
791
|
+
2, () => CreateDbClusterInput$, () => CreateDbClusterOutput$
|
|
792
|
+
];
|
|
793
|
+
var CreateDbInstance$ = [9, n0, _CDI,
|
|
794
|
+
2, () => CreateDbInstanceInput$, () => CreateDbInstanceOutput$
|
|
795
|
+
];
|
|
796
|
+
var CreateDbParameterGroup$ = [9, n0, _CDPG,
|
|
797
|
+
2, () => CreateDbParameterGroupInput$, () => CreateDbParameterGroupOutput$
|
|
798
|
+
];
|
|
799
|
+
var DeleteDbCluster$ = [9, n0, _DDC,
|
|
800
|
+
2, () => DeleteDbClusterInput$, () => DeleteDbClusterOutput$
|
|
801
|
+
];
|
|
802
|
+
var DeleteDbInstance$ = [9, n0, _DDI,
|
|
803
|
+
2, () => DeleteDbInstanceInput$, () => DeleteDbInstanceOutput$
|
|
804
|
+
];
|
|
805
|
+
var GetDbCluster$ = [9, n0, _GDC,
|
|
806
|
+
0, () => GetDbClusterInput$, () => GetDbClusterOutput$
|
|
807
|
+
];
|
|
808
|
+
var GetDbInstance$ = [9, n0, _GDI,
|
|
809
|
+
0, () => GetDbInstanceInput$, () => GetDbInstanceOutput$
|
|
810
|
+
];
|
|
811
|
+
var GetDbParameterGroup$ = [9, n0, _GDPG,
|
|
812
|
+
0, () => GetDbParameterGroupInput$, () => GetDbParameterGroupOutput$
|
|
813
|
+
];
|
|
814
|
+
var ListDbClusters$ = [9, n0, _LDCi,
|
|
815
|
+
0, () => ListDbClustersInput$, () => ListDbClustersOutput$
|
|
816
|
+
];
|
|
817
|
+
var ListDbInstances$ = [9, n0, _LDI,
|
|
818
|
+
0, () => ListDbInstancesInput$, () => ListDbInstancesOutput$
|
|
819
|
+
];
|
|
820
|
+
var ListDbInstancesForCluster$ = [9, n0, _LDIFC,
|
|
821
|
+
0, () => ListDbInstancesForClusterInput$, () => ListDbInstancesForClusterOutput$
|
|
822
|
+
];
|
|
823
|
+
var ListDbParameterGroups$ = [9, n0, _LDPG,
|
|
824
|
+
0, () => ListDbParameterGroupsInput$, () => ListDbParameterGroupsOutput$
|
|
825
|
+
];
|
|
826
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
827
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
828
|
+
];
|
|
829
|
+
var RebootDbCluster$ = [9, n0, _RDC,
|
|
830
|
+
2, () => RebootDbClusterInput$, () => RebootDbClusterOutput$
|
|
831
|
+
];
|
|
832
|
+
var RebootDbInstance$ = [9, n0, _RDI,
|
|
833
|
+
2, () => RebootDbInstanceInput$, () => RebootDbInstanceOutput$
|
|
834
|
+
];
|
|
835
|
+
var TagResource$ = [9, n0, _TR,
|
|
836
|
+
2, () => TagResourceRequest$, () => __Unit
|
|
837
|
+
];
|
|
838
|
+
var UntagResource$ = [9, n0, _UR,
|
|
839
|
+
2, () => UntagResourceRequest$, () => __Unit
|
|
840
|
+
];
|
|
841
|
+
var UpdateDbCluster$ = [9, n0, _UDC,
|
|
842
|
+
2, () => UpdateDbClusterInput$, () => UpdateDbClusterOutput$
|
|
843
|
+
];
|
|
844
|
+
var UpdateDbInstance$ = [9, n0, _UDI,
|
|
845
|
+
2, () => UpdateDbInstanceInput$, () => UpdateDbInstanceOutput$
|
|
846
|
+
];
|
|
847
|
+
|
|
848
|
+
const getRuntimeConfig$1 = (config) => {
|
|
849
|
+
return {
|
|
850
|
+
apiVersion: "2023-01-27",
|
|
851
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
852
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
853
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
854
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
855
|
+
extensions: config?.extensions ?? [],
|
|
856
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultTimestreamInfluxDBHttpAuthSchemeProvider,
|
|
857
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
858
|
+
{
|
|
859
|
+
schemeId: "aws.auth#sigv4",
|
|
860
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
861
|
+
signer: new AwsSdkSigV4Signer(),
|
|
862
|
+
},
|
|
863
|
+
],
|
|
864
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
865
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
866
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
867
|
+
defaultNamespace: "com.amazonaws.timestreaminfluxdb",
|
|
868
|
+
errorTypeRegistries,
|
|
869
|
+
version: "2023-01-27",
|
|
870
|
+
serviceTarget: "AmazonTimestreamInfluxDB",
|
|
871
|
+
},
|
|
872
|
+
serviceId: config?.serviceId ?? "Timestream InfluxDB",
|
|
873
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
874
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
875
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
876
|
+
};
|
|
877
|
+
};
|
|
878
|
+
|
|
879
|
+
const getRuntimeConfig = (config) => {
|
|
880
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
881
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
882
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
883
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
884
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
885
|
+
const loaderConfig = {
|
|
886
|
+
profile: config?.profile,
|
|
887
|
+
logger: clientSharedValues.logger,
|
|
888
|
+
};
|
|
889
|
+
return {
|
|
890
|
+
...clientSharedValues,
|
|
891
|
+
...config,
|
|
892
|
+
runtime: "node",
|
|
893
|
+
defaultsMode,
|
|
894
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
895
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
896
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
897
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
898
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
899
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
900
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
901
|
+
retryMode: config?.retryMode ??
|
|
902
|
+
loadConfig({
|
|
903
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
904
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
905
|
+
}, config),
|
|
906
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
907
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
908
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
909
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
910
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
911
|
+
};
|
|
912
|
+
};
|
|
913
|
+
|
|
34
914
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
915
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
916
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -479,43 +1359,129 @@ const LogFormats = {
|
|
|
479
1359
|
FULL: "full",
|
|
480
1360
|
};
|
|
481
1361
|
|
|
1362
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1363
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1364
|
+
exports.ClusterConfiguration$ = ClusterConfiguration$;
|
|
482
1365
|
exports.ClusterDeploymentType = ClusterDeploymentType;
|
|
483
1366
|
exports.ClusterStatus = ClusterStatus;
|
|
1367
|
+
exports.ConflictException = ConflictException;
|
|
1368
|
+
exports.ConflictException$ = ConflictException$;
|
|
1369
|
+
exports.CreateDbCluster$ = CreateDbCluster$;
|
|
484
1370
|
exports.CreateDbClusterCommand = CreateDbClusterCommand;
|
|
1371
|
+
exports.CreateDbClusterInput$ = CreateDbClusterInput$;
|
|
1372
|
+
exports.CreateDbClusterOutput$ = CreateDbClusterOutput$;
|
|
1373
|
+
exports.CreateDbInstance$ = CreateDbInstance$;
|
|
485
1374
|
exports.CreateDbInstanceCommand = CreateDbInstanceCommand;
|
|
1375
|
+
exports.CreateDbInstanceInput$ = CreateDbInstanceInput$;
|
|
1376
|
+
exports.CreateDbInstanceOutput$ = CreateDbInstanceOutput$;
|
|
1377
|
+
exports.CreateDbParameterGroup$ = CreateDbParameterGroup$;
|
|
486
1378
|
exports.CreateDbParameterGroupCommand = CreateDbParameterGroupCommand;
|
|
1379
|
+
exports.CreateDbParameterGroupInput$ = CreateDbParameterGroupInput$;
|
|
1380
|
+
exports.CreateDbParameterGroupOutput$ = CreateDbParameterGroupOutput$;
|
|
487
1381
|
exports.DataFusionRuntimeType = DataFusionRuntimeType;
|
|
1382
|
+
exports.DbClusterSummary$ = DbClusterSummary$;
|
|
1383
|
+
exports.DbInstanceForClusterSummary$ = DbInstanceForClusterSummary$;
|
|
1384
|
+
exports.DbInstanceSummary$ = DbInstanceSummary$;
|
|
488
1385
|
exports.DbInstanceType = DbInstanceType;
|
|
1386
|
+
exports.DbParameterGroupSummary$ = DbParameterGroupSummary$;
|
|
489
1387
|
exports.DbStorageType = DbStorageType;
|
|
1388
|
+
exports.DeleteDbCluster$ = DeleteDbCluster$;
|
|
490
1389
|
exports.DeleteDbClusterCommand = DeleteDbClusterCommand;
|
|
1390
|
+
exports.DeleteDbClusterInput$ = DeleteDbClusterInput$;
|
|
1391
|
+
exports.DeleteDbClusterOutput$ = DeleteDbClusterOutput$;
|
|
1392
|
+
exports.DeleteDbInstance$ = DeleteDbInstance$;
|
|
491
1393
|
exports.DeleteDbInstanceCommand = DeleteDbInstanceCommand;
|
|
1394
|
+
exports.DeleteDbInstanceInput$ = DeleteDbInstanceInput$;
|
|
1395
|
+
exports.DeleteDbInstanceOutput$ = DeleteDbInstanceOutput$;
|
|
492
1396
|
exports.DeploymentType = DeploymentType;
|
|
1397
|
+
exports.Duration$ = Duration$;
|
|
493
1398
|
exports.DurationType = DurationType;
|
|
494
1399
|
exports.EngineType = EngineType;
|
|
495
1400
|
exports.FailoverMode = FailoverMode;
|
|
1401
|
+
exports.GetDbCluster$ = GetDbCluster$;
|
|
496
1402
|
exports.GetDbClusterCommand = GetDbClusterCommand;
|
|
1403
|
+
exports.GetDbClusterInput$ = GetDbClusterInput$;
|
|
1404
|
+
exports.GetDbClusterOutput$ = GetDbClusterOutput$;
|
|
1405
|
+
exports.GetDbInstance$ = GetDbInstance$;
|
|
497
1406
|
exports.GetDbInstanceCommand = GetDbInstanceCommand;
|
|
1407
|
+
exports.GetDbInstanceInput$ = GetDbInstanceInput$;
|
|
1408
|
+
exports.GetDbInstanceOutput$ = GetDbInstanceOutput$;
|
|
1409
|
+
exports.GetDbParameterGroup$ = GetDbParameterGroup$;
|
|
498
1410
|
exports.GetDbParameterGroupCommand = GetDbParameterGroupCommand;
|
|
1411
|
+
exports.GetDbParameterGroupInput$ = GetDbParameterGroupInput$;
|
|
1412
|
+
exports.GetDbParameterGroupOutput$ = GetDbParameterGroupOutput$;
|
|
1413
|
+
exports.InfluxDBv2Parameters$ = InfluxDBv2Parameters$;
|
|
1414
|
+
exports.InfluxDBv3CoreParameters$ = InfluxDBv3CoreParameters$;
|
|
1415
|
+
exports.InfluxDBv3EnterpriseParameters$ = InfluxDBv3EnterpriseParameters$;
|
|
499
1416
|
exports.InstanceMode = InstanceMode;
|
|
1417
|
+
exports.InternalServerException = InternalServerException;
|
|
1418
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1419
|
+
exports.ListDbClusters$ = ListDbClusters$;
|
|
500
1420
|
exports.ListDbClustersCommand = ListDbClustersCommand;
|
|
1421
|
+
exports.ListDbClustersInput$ = ListDbClustersInput$;
|
|
1422
|
+
exports.ListDbClustersOutput$ = ListDbClustersOutput$;
|
|
1423
|
+
exports.ListDbInstances$ = ListDbInstances$;
|
|
501
1424
|
exports.ListDbInstancesCommand = ListDbInstancesCommand;
|
|
1425
|
+
exports.ListDbInstancesForCluster$ = ListDbInstancesForCluster$;
|
|
502
1426
|
exports.ListDbInstancesForClusterCommand = ListDbInstancesForClusterCommand;
|
|
1427
|
+
exports.ListDbInstancesForClusterInput$ = ListDbInstancesForClusterInput$;
|
|
1428
|
+
exports.ListDbInstancesForClusterOutput$ = ListDbInstancesForClusterOutput$;
|
|
1429
|
+
exports.ListDbInstancesInput$ = ListDbInstancesInput$;
|
|
1430
|
+
exports.ListDbInstancesOutput$ = ListDbInstancesOutput$;
|
|
1431
|
+
exports.ListDbParameterGroups$ = ListDbParameterGroups$;
|
|
503
1432
|
exports.ListDbParameterGroupsCommand = ListDbParameterGroupsCommand;
|
|
1433
|
+
exports.ListDbParameterGroupsInput$ = ListDbParameterGroupsInput$;
|
|
1434
|
+
exports.ListDbParameterGroupsOutput$ = ListDbParameterGroupsOutput$;
|
|
1435
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
504
1436
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1437
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1438
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1439
|
+
exports.LogDeliveryConfiguration$ = LogDeliveryConfiguration$;
|
|
505
1440
|
exports.LogFormats = LogFormats;
|
|
506
1441
|
exports.LogLevel = LogLevel;
|
|
1442
|
+
exports.MaintenanceSchedule$ = MaintenanceSchedule$;
|
|
507
1443
|
exports.NetworkType = NetworkType;
|
|
1444
|
+
exports.PercentOrAbsoluteLong$ = PercentOrAbsoluteLong$;
|
|
1445
|
+
exports.RebootDbCluster$ = RebootDbCluster$;
|
|
508
1446
|
exports.RebootDbClusterCommand = RebootDbClusterCommand;
|
|
1447
|
+
exports.RebootDbClusterInput$ = RebootDbClusterInput$;
|
|
1448
|
+
exports.RebootDbClusterOutput$ = RebootDbClusterOutput$;
|
|
1449
|
+
exports.RebootDbInstance$ = RebootDbInstance$;
|
|
509
1450
|
exports.RebootDbInstanceCommand = RebootDbInstanceCommand;
|
|
1451
|
+
exports.RebootDbInstanceInput$ = RebootDbInstanceInput$;
|
|
1452
|
+
exports.RebootDbInstanceOutput$ = RebootDbInstanceOutput$;
|
|
1453
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1454
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1455
|
+
exports.S3Configuration$ = S3Configuration$;
|
|
1456
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1457
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
510
1458
|
exports.Status = Status;
|
|
1459
|
+
exports.TagResource$ = TagResource$;
|
|
511
1460
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1461
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1462
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1463
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
512
1464
|
exports.TimestreamInfluxDB = TimestreamInfluxDB;
|
|
513
1465
|
exports.TimestreamInfluxDBClient = TimestreamInfluxDBClient;
|
|
1466
|
+
exports.TimestreamInfluxDBServiceException = TimestreamInfluxDBServiceException;
|
|
1467
|
+
exports.TimestreamInfluxDBServiceException$ = TimestreamInfluxDBServiceException$;
|
|
514
1468
|
exports.TracingType = TracingType;
|
|
1469
|
+
exports.UntagResource$ = UntagResource$;
|
|
515
1470
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1471
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1472
|
+
exports.UpdateDbCluster$ = UpdateDbCluster$;
|
|
516
1473
|
exports.UpdateDbClusterCommand = UpdateDbClusterCommand;
|
|
1474
|
+
exports.UpdateDbClusterInput$ = UpdateDbClusterInput$;
|
|
1475
|
+
exports.UpdateDbClusterOutput$ = UpdateDbClusterOutput$;
|
|
1476
|
+
exports.UpdateDbInstance$ = UpdateDbInstance$;
|
|
517
1477
|
exports.UpdateDbInstanceCommand = UpdateDbInstanceCommand;
|
|
1478
|
+
exports.UpdateDbInstanceInput$ = UpdateDbInstanceInput$;
|
|
1479
|
+
exports.UpdateDbInstanceOutput$ = UpdateDbInstanceOutput$;
|
|
1480
|
+
exports.ValidationException = ValidationException;
|
|
1481
|
+
exports.ValidationException$ = ValidationException$;
|
|
518
1482
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1483
|
+
exports._Parameters$ = _Parameters$;
|
|
1484
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
519
1485
|
exports.paginateListDbClusters = paginateListDbClusters;
|
|
520
1486
|
exports.paginateListDbInstances = paginateListDbInstances;
|
|
521
1487
|
exports.paginateListDbInstancesForCluster = paginateListDbInstancesForCluster;
|