@aws-sdk/client-timestream-influxdb 3.1017.0 → 3.1019.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/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +40 -22
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/schemas/schemas_0.js +38 -20
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateDbClusterCommand.d.ts +4 -0
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +6 -0
- package/dist-types/commands/GetDbClusterCommand.d.ts +11 -0
- package/dist-types/commands/GetDbInstanceCommand.d.ts +6 -0
- package/dist-types/commands/RebootDbInstanceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDbClusterCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +152 -0
- 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/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +32 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +7 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultTimestreamInfluxDBHttpAuthSchemeProvider = exports.defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultTimestreamInfluxDBHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultTimestreamInfluxDBHttpAuthSchemeProvider = defaultTimestreamInfluxDBHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateDbInstance$ = exports.UpdateDbCluster$ = exports.UntagResource$ = exports.TagResource$ = exports.RebootDbInstance$ = exports.RebootDbCluster$ = exports.ListTagsForResource$ = exports.ListDbParameterGroups$ = exports.ListDbInstancesForCluster$ = exports.ListDbInstances$ = exports.ListDbClusters$ = exports.GetDbParameterGroup$ = exports.GetDbInstance$ = exports.GetDbCluster$ = exports.DeleteDbInstance$ = exports.DeleteDbCluster$ = exports.CreateDbParameterGroup$ = exports.CreateDbInstance$ = exports.CreateDbCluster$ = exports.PercentOrAbsoluteLong$ = exports._Parameters$ = exports.UpdateDbInstanceOutput$ = exports.UpdateDbInstanceInput$ = exports.UpdateDbClusterOutput$ = exports.UpdateDbClusterInput$ = exports.UntagResourceRequest$ = void 0;
|
|
3
|
+
exports.RebootDbInstanceOutput$ = exports.RebootDbInstanceInput$ = exports.RebootDbClusterOutput$ = exports.RebootDbClusterInput$ = exports.MaintenanceSchedule$ = exports.LogDeliveryConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListDbParameterGroupsOutput$ = exports.ListDbParameterGroupsInput$ = exports.ListDbInstancesOutput$ = exports.ListDbInstancesInput$ = exports.ListDbInstancesForClusterOutput$ = exports.ListDbInstancesForClusterInput$ = exports.ListDbClustersOutput$ = exports.ListDbClustersInput$ = exports.InfluxDBv3EnterpriseParameters$ = exports.InfluxDBv3CoreParameters$ = exports.InfluxDBv2Parameters$ = exports.GetDbParameterGroupOutput$ = exports.GetDbParameterGroupInput$ = exports.GetDbInstanceOutput$ = exports.GetDbInstanceInput$ = exports.GetDbClusterOutput$ = exports.GetDbClusterInput$ = exports.Duration$ = exports.DeleteDbInstanceOutput$ = exports.DeleteDbInstanceInput$ = exports.DeleteDbClusterOutput$ = exports.DeleteDbClusterInput$ = exports.DbParameterGroupSummary$ = exports.DbInstanceSummary$ = exports.DbInstanceForClusterSummary$ = exports.DbClusterSummary$ = exports.CreateDbParameterGroupOutput$ = exports.CreateDbParameterGroupInput$ = exports.CreateDbInstanceOutput$ = exports.CreateDbInstanceInput$ = exports.CreateDbClusterOutput$ = exports.CreateDbClusterInput$ = exports.ClusterConfiguration$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.TimestreamInfluxDBServiceException$ = void 0;
|
|
4
|
+
exports.UpdateDbInstance$ = exports.UpdateDbCluster$ = exports.UntagResource$ = exports.TagResource$ = exports.RebootDbInstance$ = exports.RebootDbCluster$ = exports.ListTagsForResource$ = exports.ListDbParameterGroups$ = exports.ListDbInstancesForCluster$ = exports.ListDbInstances$ = exports.ListDbClusters$ = exports.GetDbParameterGroup$ = exports.GetDbInstance$ = exports.GetDbCluster$ = exports.DeleteDbInstance$ = exports.DeleteDbCluster$ = exports.CreateDbParameterGroup$ = exports.CreateDbInstance$ = exports.CreateDbCluster$ = exports.PercentOrAbsoluteLong$ = exports._Parameters$ = exports.UpdateDbInstanceOutput$ = exports.UpdateDbInstanceInput$ = exports.UpdateDbClusterOutput$ = exports.UpdateDbClusterInput$ = exports.UntagResourceRequest$ = exports.TagResourceRequest$ = exports.S3Configuration$ = void 0;
|
|
5
5
|
const _ADE = "AccessDeniedException";
|
|
6
|
+
const _CC = "ClusterConfiguration";
|
|
6
7
|
const _CDC = "CreateDbCluster";
|
|
7
8
|
const _CDCI = "CreateDbClusterInput";
|
|
8
9
|
const _CDCO = "CreateDbClusterOutput";
|
|
@@ -60,6 +61,7 @@ const _LDPGO = "ListDbParameterGroupsOutput";
|
|
|
60
61
|
const _LTFR = "ListTagsForResource";
|
|
61
62
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
62
63
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
64
|
+
const _MS = "MaintenanceSchedule";
|
|
63
65
|
const _P = "Password";
|
|
64
66
|
const _POAL = "PercentOrAbsoluteLong";
|
|
65
67
|
const _Pa = "Parameters";
|
|
@@ -93,6 +95,7 @@ const _ab = "absolute";
|
|
|
93
95
|
const _b = "bucket";
|
|
94
96
|
const _bN = "bucketName";
|
|
95
97
|
const _c = "client";
|
|
98
|
+
const _cC = "clusterConfiguration";
|
|
96
99
|
const _cCI = "compactionCheckInterval";
|
|
97
100
|
const _cCW = "compactionCleanupWait";
|
|
98
101
|
const _cGD = "compactionGen2Duration";
|
|
@@ -158,12 +161,15 @@ const _lDC = "logDeliveryConfiguration";
|
|
|
158
161
|
const _lF = "logFilter";
|
|
159
162
|
const _lFo = "logFormat";
|
|
160
163
|
const _lL = "logLevel";
|
|
164
|
+
const _lMT = "lastMaintenanceTime";
|
|
161
165
|
const _lVCDFH = "lastValueCacheDisableFromHistory";
|
|
162
166
|
const _m = "message";
|
|
163
167
|
const _mD = "metricsDisabled";
|
|
164
168
|
const _mHRS = "maxHttpRequestSize";
|
|
165
169
|
const _mR = "maxResults";
|
|
170
|
+
const _mS = "maintenanceSchedule";
|
|
166
171
|
const _n = "name";
|
|
172
|
+
const _nMT = "nextMaintenanceTime";
|
|
167
173
|
const _nT = "networkType";
|
|
168
174
|
const _nTe = "nextToken";
|
|
169
175
|
const _nTo = "noTasks";
|
|
@@ -176,6 +182,7 @@ const _pMCPI = "parquetMemCachePruneInterval";
|
|
|
176
182
|
const _pMCPP = "parquetMemCachePrunePercentage";
|
|
177
183
|
const _pMCQPD = "parquetMemCacheQueryPathDuration";
|
|
178
184
|
const _pMCS = "parquetMemCacheSize";
|
|
185
|
+
const _pMW = "preferredMaintenanceWindow";
|
|
179
186
|
const _pa = "parameters";
|
|
180
187
|
const _pe = "percent";
|
|
181
188
|
const _po = "port";
|
|
@@ -221,6 +228,7 @@ const _tICCL = "tableIndexCacheConcurrencyLimit";
|
|
|
221
228
|
const _tICME = "tableIndexCacheMaxEntries";
|
|
222
229
|
const _tK = "tagKeys";
|
|
223
230
|
const _tT = "tracingType";
|
|
231
|
+
const _ti = "timezone";
|
|
224
232
|
const _u = "username";
|
|
225
233
|
const _uD = "uiDisabled";
|
|
226
234
|
const _v = "value";
|
|
@@ -286,10 +294,15 @@ exports.errorTypeRegistries = [
|
|
|
286
294
|
];
|
|
287
295
|
var Password = [0, n0, _P, 8, 0];
|
|
288
296
|
var Username = [0, n0, _U, 8, 0];
|
|
297
|
+
exports.ClusterConfiguration$ = [3, n0, _CC,
|
|
298
|
+
0,
|
|
299
|
+
[_iQI, _qOI, _dC],
|
|
300
|
+
[1, 1, 2]
|
|
301
|
+
];
|
|
289
302
|
exports.CreateDbClusterInput$ = [3, n0, _CDCI,
|
|
290
303
|
0,
|
|
291
|
-
[_n, _dIT, _vSI, _vSGI, _u, _p, _o, _b, _po, _dPGI, _dST, _aS, _nT, _pA, _dT, _fM, _lDC, _t],
|
|
292
|
-
[0, 0, 64 | 0, 64 | 0, [() => Username, 0], [() => Password, 0], 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, () => exports.LogDeliveryConfiguration$, 128 | 0], 4
|
|
304
|
+
[_n, _dIT, _vSI, _vSGI, _u, _p, _o, _b, _po, _dPGI, _dST, _aS, _nT, _pA, _dT, _fM, _lDC, _mS, _t],
|
|
305
|
+
[0, 0, 64 | 0, 64 | 0, [() => Username, 0], [() => Password, 0], 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, () => exports.LogDeliveryConfiguration$, () => exports.MaintenanceSchedule$, 128 | 0], 4
|
|
293
306
|
];
|
|
294
307
|
exports.CreateDbClusterOutput$ = [3, n0, _CDCO,
|
|
295
308
|
0,
|
|
@@ -298,13 +311,13 @@ exports.CreateDbClusterOutput$ = [3, n0, _CDCO,
|
|
|
298
311
|
];
|
|
299
312
|
exports.CreateDbInstanceInput$ = [3, n0, _CDII,
|
|
300
313
|
0,
|
|
301
|
-
[_n, _p, _dIT, _vSI, _vSGI, _aS, _u, _o, _b, _pA, _dST, _dPGI, _dT, _lDC, _t, _po, _nT],
|
|
302
|
-
[0, [() => Password, 0], 0, 64 | 0, 64 | 0, 1, [() => Username, 0], 0, 0, 2, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 128 | 0, 1, 0], 6
|
|
314
|
+
[_n, _p, _dIT, _vSI, _vSGI, _aS, _u, _o, _b, _pA, _dST, _dPGI, _dT, _lDC, _mS, _t, _po, _nT],
|
|
315
|
+
[0, [() => Password, 0], 0, 64 | 0, 64 | 0, 1, [() => Username, 0], 0, 0, 2, 0, 0, 0, () => exports.LogDeliveryConfiguration$, () => exports.MaintenanceSchedule$, 128 | 0, 1, 0], 6
|
|
303
316
|
];
|
|
304
317
|
exports.CreateDbInstanceOutput$ = [3, n0, _CDIO,
|
|
305
318
|
0,
|
|
306
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
307
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
319
|
+
[_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],
|
|
320
|
+
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0, () => exports.MaintenanceSchedule$, 5, 5], 4
|
|
308
321
|
];
|
|
309
322
|
exports.CreateDbParameterGroupInput$ = [3, n0, _CDPGI,
|
|
310
323
|
0,
|
|
@@ -353,8 +366,8 @@ exports.DeleteDbInstanceInput$ = [3, n0, _DDII,
|
|
|
353
366
|
];
|
|
354
367
|
exports.DeleteDbInstanceOutput$ = [3, n0, _DDIO,
|
|
355
368
|
0,
|
|
356
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
357
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
369
|
+
[_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],
|
|
370
|
+
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0, () => exports.MaintenanceSchedule$, 5, 5], 4
|
|
358
371
|
];
|
|
359
372
|
exports.Duration$ = [3, n0, _D,
|
|
360
373
|
0,
|
|
@@ -368,8 +381,8 @@ exports.GetDbClusterInput$ = [3, n0, _GDCI,
|
|
|
368
381
|
];
|
|
369
382
|
exports.GetDbClusterOutput$ = [3, n0, _GDCO,
|
|
370
383
|
0,
|
|
371
|
-
[_i, _n, _a, _st, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _iAPSA, _vSI, _vSGI, _fM],
|
|
372
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => exports.LogDeliveryConfiguration$, 0, 64 | 0, 64 | 0, 0], 3
|
|
384
|
+
[_i, _n, _a, _st, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _mS, _lMT, _nMT, _iAPSA, _vSI, _vSGI, _fM, _cC],
|
|
385
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => exports.LogDeliveryConfiguration$, () => exports.MaintenanceSchedule$, 5, 5, 0, 64 | 0, 64 | 0, 0, () => exports.ClusterConfiguration$], 3
|
|
373
386
|
];
|
|
374
387
|
exports.GetDbInstanceInput$ = [3, n0, _GDII,
|
|
375
388
|
0,
|
|
@@ -378,8 +391,8 @@ exports.GetDbInstanceInput$ = [3, n0, _GDII,
|
|
|
378
391
|
];
|
|
379
392
|
exports.GetDbInstanceOutput$ = [3, n0, _GDIO,
|
|
380
393
|
0,
|
|
381
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
382
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
394
|
+
[_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],
|
|
395
|
+
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0, () => exports.MaintenanceSchedule$, 5, 5], 4
|
|
383
396
|
];
|
|
384
397
|
exports.GetDbParameterGroupInput$ = [3, n0, _GDPGI,
|
|
385
398
|
0,
|
|
@@ -461,6 +474,11 @@ exports.LogDeliveryConfiguration$ = [3, n0, _LDC,
|
|
|
461
474
|
[_sC],
|
|
462
475
|
[() => exports.S3Configuration$], 1
|
|
463
476
|
];
|
|
477
|
+
exports.MaintenanceSchedule$ = [3, n0, _MS,
|
|
478
|
+
0,
|
|
479
|
+
[_ti, _pMW],
|
|
480
|
+
[0, 0], 2
|
|
481
|
+
];
|
|
464
482
|
exports.RebootDbClusterInput$ = [3, n0, _RDCI,
|
|
465
483
|
0,
|
|
466
484
|
[_dCI, _iI],
|
|
@@ -478,8 +496,8 @@ exports.RebootDbInstanceInput$ = [3, n0, _RDII,
|
|
|
478
496
|
];
|
|
479
497
|
exports.RebootDbInstanceOutput$ = [3, n0, _RDIO,
|
|
480
498
|
0,
|
|
481
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
482
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
499
|
+
[_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],
|
|
500
|
+
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0, () => exports.MaintenanceSchedule$, 5, 5], 4
|
|
483
501
|
];
|
|
484
502
|
exports.S3Configuration$ = [3, n0, _SC,
|
|
485
503
|
0,
|
|
@@ -498,8 +516,8 @@ exports.UntagResourceRequest$ = [3, n0, _URR,
|
|
|
498
516
|
];
|
|
499
517
|
exports.UpdateDbClusterInput$ = [3, n0, _UDCI,
|
|
500
518
|
0,
|
|
501
|
-
[_dCI, _lDC, _dPGI, _po, _dIT, _fM],
|
|
502
|
-
[0, () => exports.LogDeliveryConfiguration$, 0, 1, 0, 0], 1
|
|
519
|
+
[_dCI, _lDC, _dPGI, _po, _dIT, _fM, _mS],
|
|
520
|
+
[0, () => exports.LogDeliveryConfiguration$, 0, 1, 0, 0, () => exports.MaintenanceSchedule$], 1
|
|
503
521
|
];
|
|
504
522
|
exports.UpdateDbClusterOutput$ = [3, n0, _UDCO,
|
|
505
523
|
0,
|
|
@@ -508,13 +526,13 @@ exports.UpdateDbClusterOutput$ = [3, n0, _UDCO,
|
|
|
508
526
|
];
|
|
509
527
|
exports.UpdateDbInstanceInput$ = [3, n0, _UDII,
|
|
510
528
|
0,
|
|
511
|
-
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS],
|
|
512
|
-
[0, () => exports.LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1], 1
|
|
529
|
+
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS, _mS],
|
|
530
|
+
[0, () => exports.LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1, () => exports.MaintenanceSchedule$], 1
|
|
513
531
|
];
|
|
514
532
|
exports.UpdateDbInstanceOutput$ = [3, n0, _UDIO,
|
|
515
533
|
0,
|
|
516
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
517
|
-
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0], 4
|
|
534
|
+
[_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],
|
|
535
|
+
[0, 0, 0, 64 | 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 64 | 0, 0, 0, 0, () => exports.LogDeliveryConfiguration$, 0, 0, 0, 64 | 0, () => exports.MaintenanceSchedule$, 5, 5], 4
|
|
518
536
|
];
|
|
519
537
|
var __Unit = "unit";
|
|
520
538
|
var DbClusterSummaryList = [1, n0, _DCSL,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const _ADE = "AccessDeniedException";
|
|
2
|
+
const _CC = "ClusterConfiguration";
|
|
2
3
|
const _CDC = "CreateDbCluster";
|
|
3
4
|
const _CDCI = "CreateDbClusterInput";
|
|
4
5
|
const _CDCO = "CreateDbClusterOutput";
|
|
@@ -56,6 +57,7 @@ const _LDPGO = "ListDbParameterGroupsOutput";
|
|
|
56
57
|
const _LTFR = "ListTagsForResource";
|
|
57
58
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
58
59
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
60
|
+
const _MS = "MaintenanceSchedule";
|
|
59
61
|
const _P = "Password";
|
|
60
62
|
const _POAL = "PercentOrAbsoluteLong";
|
|
61
63
|
const _Pa = "Parameters";
|
|
@@ -89,6 +91,7 @@ const _ab = "absolute";
|
|
|
89
91
|
const _b = "bucket";
|
|
90
92
|
const _bN = "bucketName";
|
|
91
93
|
const _c = "client";
|
|
94
|
+
const _cC = "clusterConfiguration";
|
|
92
95
|
const _cCI = "compactionCheckInterval";
|
|
93
96
|
const _cCW = "compactionCleanupWait";
|
|
94
97
|
const _cGD = "compactionGen2Duration";
|
|
@@ -154,12 +157,15 @@ const _lDC = "logDeliveryConfiguration";
|
|
|
154
157
|
const _lF = "logFilter";
|
|
155
158
|
const _lFo = "logFormat";
|
|
156
159
|
const _lL = "logLevel";
|
|
160
|
+
const _lMT = "lastMaintenanceTime";
|
|
157
161
|
const _lVCDFH = "lastValueCacheDisableFromHistory";
|
|
158
162
|
const _m = "message";
|
|
159
163
|
const _mD = "metricsDisabled";
|
|
160
164
|
const _mHRS = "maxHttpRequestSize";
|
|
161
165
|
const _mR = "maxResults";
|
|
166
|
+
const _mS = "maintenanceSchedule";
|
|
162
167
|
const _n = "name";
|
|
168
|
+
const _nMT = "nextMaintenanceTime";
|
|
163
169
|
const _nT = "networkType";
|
|
164
170
|
const _nTe = "nextToken";
|
|
165
171
|
const _nTo = "noTasks";
|
|
@@ -172,6 +178,7 @@ const _pMCPI = "parquetMemCachePruneInterval";
|
|
|
172
178
|
const _pMCPP = "parquetMemCachePrunePercentage";
|
|
173
179
|
const _pMCQPD = "parquetMemCacheQueryPathDuration";
|
|
174
180
|
const _pMCS = "parquetMemCacheSize";
|
|
181
|
+
const _pMW = "preferredMaintenanceWindow";
|
|
175
182
|
const _pa = "parameters";
|
|
176
183
|
const _pe = "percent";
|
|
177
184
|
const _po = "port";
|
|
@@ -217,6 +224,7 @@ const _tICCL = "tableIndexCacheConcurrencyLimit";
|
|
|
217
224
|
const _tICME = "tableIndexCacheMaxEntries";
|
|
218
225
|
const _tK = "tagKeys";
|
|
219
226
|
const _tT = "tracingType";
|
|
227
|
+
const _ti = "timezone";
|
|
220
228
|
const _u = "username";
|
|
221
229
|
const _uD = "uiDisabled";
|
|
222
230
|
const _v = "value";
|
|
@@ -282,10 +290,15 @@ export const errorTypeRegistries = [
|
|
|
282
290
|
];
|
|
283
291
|
var Password = [0, n0, _P, 8, 0];
|
|
284
292
|
var Username = [0, n0, _U, 8, 0];
|
|
293
|
+
export var ClusterConfiguration$ = [3, n0, _CC,
|
|
294
|
+
0,
|
|
295
|
+
[_iQI, _qOI, _dC],
|
|
296
|
+
[1, 1, 2]
|
|
297
|
+
];
|
|
285
298
|
export var CreateDbClusterInput$ = [3, n0, _CDCI,
|
|
286
299
|
0,
|
|
287
|
-
[_n, _dIT, _vSI, _vSGI, _u, _p, _o, _b, _po, _dPGI, _dST, _aS, _nT, _pA, _dT, _fM, _lDC, _t],
|
|
288
|
-
[0, 0, 64 | 0, 64 | 0, [() => Username, 0], [() => Password, 0], 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, () => LogDeliveryConfiguration$, 128 | 0], 4
|
|
300
|
+
[_n, _dIT, _vSI, _vSGI, _u, _p, _o, _b, _po, _dPGI, _dST, _aS, _nT, _pA, _dT, _fM, _lDC, _mS, _t],
|
|
301
|
+
[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
|
|
289
302
|
];
|
|
290
303
|
export var CreateDbClusterOutput$ = [3, n0, _CDCO,
|
|
291
304
|
0,
|
|
@@ -294,13 +307,13 @@ export var CreateDbClusterOutput$ = [3, n0, _CDCO,
|
|
|
294
307
|
];
|
|
295
308
|
export var CreateDbInstanceInput$ = [3, n0, _CDII,
|
|
296
309
|
0,
|
|
297
|
-
[_n, _p, _dIT, _vSI, _vSGI, _aS, _u, _o, _b, _pA, _dST, _dPGI, _dT, _lDC, _t, _po, _nT],
|
|
298
|
-
[0, [() => Password, 0], 0, 64 | 0, 64 | 0, 1, [() => Username, 0], 0, 0, 2, 0, 0, 0, () => LogDeliveryConfiguration$, 128 | 0, 1, 0], 6
|
|
310
|
+
[_n, _p, _dIT, _vSI, _vSGI, _aS, _u, _o, _b, _pA, _dST, _dPGI, _dT, _lDC, _mS, _t, _po, _nT],
|
|
311
|
+
[0, [() => Password, 0], 0, 64 | 0, 64 | 0, 1, [() => Username, 0], 0, 0, 2, 0, 0, 0, () => LogDeliveryConfiguration$, () => MaintenanceSchedule$, 128 | 0, 1, 0], 6
|
|
299
312
|
];
|
|
300
313
|
export var CreateDbInstanceOutput$ = [3, n0, _CDIO,
|
|
301
314
|
0,
|
|
302
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
303
|
-
[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
|
|
315
|
+
[_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],
|
|
316
|
+
[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
|
|
304
317
|
];
|
|
305
318
|
export var CreateDbParameterGroupInput$ = [3, n0, _CDPGI,
|
|
306
319
|
0,
|
|
@@ -349,8 +362,8 @@ export var DeleteDbInstanceInput$ = [3, n0, _DDII,
|
|
|
349
362
|
];
|
|
350
363
|
export var DeleteDbInstanceOutput$ = [3, n0, _DDIO,
|
|
351
364
|
0,
|
|
352
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
353
|
-
[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
|
|
365
|
+
[_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],
|
|
366
|
+
[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
|
|
354
367
|
];
|
|
355
368
|
export var Duration$ = [3, n0, _D,
|
|
356
369
|
0,
|
|
@@ -364,8 +377,8 @@ export var GetDbClusterInput$ = [3, n0, _GDCI,
|
|
|
364
377
|
];
|
|
365
378
|
export var GetDbClusterOutput$ = [3, n0, _GDCO,
|
|
366
379
|
0,
|
|
367
|
-
[_i, _n, _a, _st, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _iAPSA, _vSI, _vSGI, _fM],
|
|
368
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 0, () => LogDeliveryConfiguration$, 0, 64 | 0, 64 | 0, 0], 3
|
|
380
|
+
[_i, _n, _a, _st, _en, _rE, _po, _dT, _dIT, _nT, _dST, _aS, _eT, _pA, _dPGI, _lDC, _mS, _lMT, _nMT, _iAPSA, _vSI, _vSGI, _fM, _cC],
|
|
381
|
+
[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
|
|
369
382
|
];
|
|
370
383
|
export var GetDbInstanceInput$ = [3, n0, _GDII,
|
|
371
384
|
0,
|
|
@@ -374,8 +387,8 @@ export var GetDbInstanceInput$ = [3, n0, _GDII,
|
|
|
374
387
|
];
|
|
375
388
|
export var GetDbInstanceOutput$ = [3, n0, _GDIO,
|
|
376
389
|
0,
|
|
377
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
378
|
-
[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
|
|
390
|
+
[_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],
|
|
391
|
+
[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
|
|
379
392
|
];
|
|
380
393
|
export var GetDbParameterGroupInput$ = [3, n0, _GDPGI,
|
|
381
394
|
0,
|
|
@@ -457,6 +470,11 @@ export var LogDeliveryConfiguration$ = [3, n0, _LDC,
|
|
|
457
470
|
[_sC],
|
|
458
471
|
[() => S3Configuration$], 1
|
|
459
472
|
];
|
|
473
|
+
export var MaintenanceSchedule$ = [3, n0, _MS,
|
|
474
|
+
0,
|
|
475
|
+
[_ti, _pMW],
|
|
476
|
+
[0, 0], 2
|
|
477
|
+
];
|
|
460
478
|
export var RebootDbClusterInput$ = [3, n0, _RDCI,
|
|
461
479
|
0,
|
|
462
480
|
[_dCI, _iI],
|
|
@@ -474,8 +492,8 @@ export var RebootDbInstanceInput$ = [3, n0, _RDII,
|
|
|
474
492
|
];
|
|
475
493
|
export var RebootDbInstanceOutput$ = [3, n0, _RDIO,
|
|
476
494
|
0,
|
|
477
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
478
|
-
[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
|
|
495
|
+
[_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],
|
|
496
|
+
[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
|
|
479
497
|
];
|
|
480
498
|
export var S3Configuration$ = [3, n0, _SC,
|
|
481
499
|
0,
|
|
@@ -494,8 +512,8 @@ export var UntagResourceRequest$ = [3, n0, _URR,
|
|
|
494
512
|
];
|
|
495
513
|
export var UpdateDbClusterInput$ = [3, n0, _UDCI,
|
|
496
514
|
0,
|
|
497
|
-
[_dCI, _lDC, _dPGI, _po, _dIT, _fM],
|
|
498
|
-
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0], 1
|
|
515
|
+
[_dCI, _lDC, _dPGI, _po, _dIT, _fM, _mS],
|
|
516
|
+
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, () => MaintenanceSchedule$], 1
|
|
499
517
|
];
|
|
500
518
|
export var UpdateDbClusterOutput$ = [3, n0, _UDCO,
|
|
501
519
|
0,
|
|
@@ -504,13 +522,13 @@ export var UpdateDbClusterOutput$ = [3, n0, _UDCO,
|
|
|
504
522
|
];
|
|
505
523
|
export var UpdateDbInstanceInput$ = [3, n0, _UDII,
|
|
506
524
|
0,
|
|
507
|
-
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS],
|
|
508
|
-
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1], 1
|
|
525
|
+
[_id, _lDC, _dPGI, _po, _dIT, _dT, _dST, _aS, _mS],
|
|
526
|
+
[0, () => LogDeliveryConfiguration$, 0, 1, 0, 0, 0, 1, () => MaintenanceSchedule$], 1
|
|
509
527
|
];
|
|
510
528
|
export var UpdateDbInstanceOutput$ = [3, n0, _UDIO,
|
|
511
529
|
0,
|
|
512
|
-
[_i, _n, _a, _vSI, _st, _en, _po, _nT, _dIT, _dST, _aS, _dT, _pA, _vSGI, _dPGI, _aZ, _sAZ, _lDC, _iAPSA, _dCI, _iM, _iMn],
|
|
513
|
-
[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
|
|
530
|
+
[_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],
|
|
531
|
+
[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
|
|
514
532
|
];
|
|
515
533
|
var __Unit = "unit";
|
|
516
534
|
var DbClusterSummaryList = [1, n0, _DCSL,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
4
4
|
/**
|
|
@@ -63,6 +63,10 @@ declare const CreateDbClusterCommand_base: {
|
|
|
63
63
|
* enabled: true || false, // required
|
|
64
64
|
* },
|
|
65
65
|
* },
|
|
66
|
+
* maintenanceSchedule: { // MaintenanceSchedule
|
|
67
|
+
* timezone: "STRING_VALUE", // required
|
|
68
|
+
* preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
69
|
+
* },
|
|
66
70
|
* tags: { // RequestTagMap
|
|
67
71
|
* "<keys>": "STRING_VALUE",
|
|
68
72
|
* },
|
|
@@ -60,6 +60,10 @@ declare const CreateDbInstanceCommand_base: {
|
|
|
60
60
|
* enabled: true || false, // required
|
|
61
61
|
* },
|
|
62
62
|
* },
|
|
63
|
+
* maintenanceSchedule: { // MaintenanceSchedule
|
|
64
|
+
* timezone: "STRING_VALUE", // required
|
|
65
|
+
* preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
66
|
+
* },
|
|
63
67
|
* tags: { // RequestTagMap
|
|
64
68
|
* "<keys>": "STRING_VALUE",
|
|
65
69
|
* },
|
|
@@ -102,6 +106,12 @@ declare const CreateDbInstanceCommand_base: {
|
|
|
102
106
|
* // instanceModes: [ // InstanceModeList
|
|
103
107
|
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
104
108
|
* // ],
|
|
109
|
+
* // maintenanceSchedule: { // MaintenanceSchedule
|
|
110
|
+
* // timezone: "STRING_VALUE", // required
|
|
111
|
+
* // preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
112
|
+
* // },
|
|
113
|
+
* // lastMaintenanceTime: new Date("TIMESTAMP"),
|
|
114
|
+
* // nextMaintenanceTime: new Date("TIMESTAMP"),
|
|
105
115
|
* // };
|
|
106
116
|
*
|
|
107
117
|
* ```
|
|
@@ -75,6 +75,12 @@ declare const DeleteDbInstanceCommand_base: {
|
|
|
75
75
|
* // instanceModes: [ // InstanceModeList
|
|
76
76
|
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
77
77
|
* // ],
|
|
78
|
+
* // maintenanceSchedule: { // MaintenanceSchedule
|
|
79
|
+
* // timezone: "STRING_VALUE", // required
|
|
80
|
+
* // preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
81
|
+
* // },
|
|
82
|
+
* // lastMaintenanceTime: new Date("TIMESTAMP"),
|
|
83
|
+
* // nextMaintenanceTime: new Date("TIMESTAMP"),
|
|
78
84
|
* // };
|
|
79
85
|
*
|
|
80
86
|
* ```
|
|
@@ -63,6 +63,12 @@ declare const GetDbClusterCommand_base: {
|
|
|
63
63
|
* // enabled: true || false, // required
|
|
64
64
|
* // },
|
|
65
65
|
* // },
|
|
66
|
+
* // maintenanceSchedule: { // MaintenanceSchedule
|
|
67
|
+
* // timezone: "STRING_VALUE", // required
|
|
68
|
+
* // preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
69
|
+
* // },
|
|
70
|
+
* // lastMaintenanceTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // nextMaintenanceTime: new Date("TIMESTAMP"),
|
|
66
72
|
* // influxAuthParametersSecretArn: "STRING_VALUE",
|
|
67
73
|
* // vpcSubnetIds: [ // VpcSubnetIdList
|
|
68
74
|
* // "STRING_VALUE",
|
|
@@ -71,6 +77,11 @@ declare const GetDbClusterCommand_base: {
|
|
|
71
77
|
* // "STRING_VALUE",
|
|
72
78
|
* // ],
|
|
73
79
|
* // failoverMode: "AUTOMATIC" || "NO_FAILOVER",
|
|
80
|
+
* // clusterConfiguration: { // ClusterConfiguration
|
|
81
|
+
* // ingestQueryInstances: Number("int"),
|
|
82
|
+
* // queryOnlyInstances: Number("int"),
|
|
83
|
+
* // dedicatedCompactor: true || false,
|
|
84
|
+
* // },
|
|
74
85
|
* // };
|
|
75
86
|
*
|
|
76
87
|
* ```
|
|
@@ -75,6 +75,12 @@ declare const GetDbInstanceCommand_base: {
|
|
|
75
75
|
* // instanceModes: [ // InstanceModeList
|
|
76
76
|
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
77
77
|
* // ],
|
|
78
|
+
* // maintenanceSchedule: { // MaintenanceSchedule
|
|
79
|
+
* // timezone: "STRING_VALUE", // required
|
|
80
|
+
* // preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
81
|
+
* // },
|
|
82
|
+
* // lastMaintenanceTime: new Date("TIMESTAMP"),
|
|
83
|
+
* // nextMaintenanceTime: new Date("TIMESTAMP"),
|
|
78
84
|
* // };
|
|
79
85
|
*
|
|
80
86
|
* ```
|
|
@@ -75,6 +75,12 @@ declare const RebootDbInstanceCommand_base: {
|
|
|
75
75
|
* // instanceModes: [ // InstanceModeList
|
|
76
76
|
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
77
77
|
* // ],
|
|
78
|
+
* // maintenanceSchedule: { // MaintenanceSchedule
|
|
79
|
+
* // timezone: "STRING_VALUE", // required
|
|
80
|
+
* // preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
81
|
+
* // },
|
|
82
|
+
* // lastMaintenanceTime: new Date("TIMESTAMP"),
|
|
83
|
+
* // nextMaintenanceTime: new Date("TIMESTAMP"),
|
|
78
84
|
* // };
|
|
79
85
|
*
|
|
80
86
|
* ```
|
|
@@ -48,6 +48,10 @@ declare const UpdateDbClusterCommand_base: {
|
|
|
48
48
|
* port: Number("int"),
|
|
49
49
|
* dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge" || "db.influx.24xlarge",
|
|
50
50
|
* failoverMode: "AUTOMATIC" || "NO_FAILOVER",
|
|
51
|
+
* maintenanceSchedule: { // MaintenanceSchedule
|
|
52
|
+
* timezone: "STRING_VALUE", // required
|
|
53
|
+
* preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
51
55
|
* };
|
|
52
56
|
* const command = new UpdateDbClusterCommand(input);
|
|
53
57
|
* const response = await client.send(command);
|
|
@@ -50,6 +50,10 @@ declare const UpdateDbInstanceCommand_base: {
|
|
|
50
50
|
* deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
51
51
|
* dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
52
52
|
* allocatedStorage: Number("int"),
|
|
53
|
+
* maintenanceSchedule: { // MaintenanceSchedule
|
|
54
|
+
* timezone: "STRING_VALUE", // required
|
|
55
|
+
* preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
56
|
+
* },
|
|
53
57
|
* };
|
|
54
58
|
* const command = new UpdateDbInstanceCommand(input);
|
|
55
59
|
* const response = await client.send(command);
|
|
@@ -87,6 +91,12 @@ declare const UpdateDbInstanceCommand_base: {
|
|
|
87
91
|
* // instanceModes: [ // InstanceModeList
|
|
88
92
|
* // "PRIMARY" || "STANDBY" || "REPLICA" || "INGEST" || "QUERY" || "COMPACT" || "PROCESS",
|
|
89
93
|
* // ],
|
|
94
|
+
* // maintenanceSchedule: { // MaintenanceSchedule
|
|
95
|
+
* // timezone: "STRING_VALUE", // required
|
|
96
|
+
* // preferredMaintenanceWindow: "STRING_VALUE", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // lastMaintenanceTime: new Date("TIMESTAMP"),
|
|
99
|
+
* // nextMaintenanceTime: new Date("TIMESTAMP"),
|
|
90
100
|
* // };
|
|
91
101
|
*
|
|
92
102
|
* ```
|
|
@@ -26,6 +26,22 @@ export interface LogDeliveryConfiguration {
|
|
|
26
26
|
*/
|
|
27
27
|
s3Configuration: S3Configuration | undefined;
|
|
28
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Specifies the maintenance schedule for a DB instance or cluster, defining when maintenance operations such as patching can be performed.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export interface MaintenanceSchedule {
|
|
34
|
+
/**
|
|
35
|
+
* <p>The IANA timezone identifier for the maintenance window. Format: Region/City or UTC. For example, America/New_York or UTC.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
timezone: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM (UTC). Day must be one of: Mon, Tue, Wed, Thu, Fri, Sat, Sun. For example, Sun:02:00-Sun:06:00. Provide an empty string to let the system choose a window.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
preferredMaintenanceWindow: string | undefined;
|
|
44
|
+
}
|
|
29
45
|
/**
|
|
30
46
|
* @public
|
|
31
47
|
*/
|
|
@@ -132,6 +148,11 @@ export interface CreateDbClusterInput {
|
|
|
132
148
|
* @public
|
|
133
149
|
*/
|
|
134
150
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>Specifies the maintenance schedule for the DB cluster, including the preferred maintenance window and timezone.</p>
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
135
156
|
/**
|
|
136
157
|
* <p>A list of key-value pairs to associate with the DB instance.</p>
|
|
137
158
|
* @public
|
|
@@ -183,6 +204,27 @@ export interface GetDbClusterInput {
|
|
|
183
204
|
*/
|
|
184
205
|
dbClusterId: string | undefined;
|
|
185
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* <p>Configuration for node modes in the DbCluster.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
export interface ClusterConfiguration {
|
|
212
|
+
/**
|
|
213
|
+
* <p>The number of instances in the DbCluster which can both ingest and query.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
ingestQueryInstances?: number | undefined;
|
|
217
|
+
/**
|
|
218
|
+
* <p>The number of instances in the DbCluster which can only query.</p>
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
queryOnlyInstances?: number | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* <p>Indicates if the compactor instance is a standalone instance or not.</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
dedicatedCompactor?: boolean | undefined;
|
|
227
|
+
}
|
|
186
228
|
/**
|
|
187
229
|
* @public
|
|
188
230
|
*/
|
|
@@ -267,6 +309,21 @@ export interface GetDbClusterOutput {
|
|
|
267
309
|
* @public
|
|
268
310
|
*/
|
|
269
311
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
312
|
+
/**
|
|
313
|
+
* <p>The maintenance schedule for the DB cluster.</p>
|
|
314
|
+
* @public
|
|
315
|
+
*/
|
|
316
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
317
|
+
/**
|
|
318
|
+
* <p>The timestamp of the last completed maintenance operation on the DB cluster.</p>
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
321
|
+
lastMaintenanceTime?: Date | undefined;
|
|
322
|
+
/**
|
|
323
|
+
* <p>The timestamp of the next scheduled maintenance operation on the DB cluster.</p>
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
326
|
+
nextMaintenanceTime?: Date | undefined;
|
|
270
327
|
/**
|
|
271
328
|
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
272
329
|
* @public
|
|
@@ -287,6 +344,11 @@ export interface GetDbClusterOutput {
|
|
|
287
344
|
* @public
|
|
288
345
|
*/
|
|
289
346
|
failoverMode?: FailoverMode | undefined;
|
|
347
|
+
/**
|
|
348
|
+
* <p>Configuration for node modes in the DbCluster.</p>
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
351
|
+
clusterConfiguration?: ClusterConfiguration | undefined;
|
|
290
352
|
}
|
|
291
353
|
/**
|
|
292
354
|
* @public
|
|
@@ -556,6 +618,11 @@ export interface UpdateDbClusterInput {
|
|
|
556
618
|
* @public
|
|
557
619
|
*/
|
|
558
620
|
failoverMode?: FailoverMode | undefined;
|
|
621
|
+
/**
|
|
622
|
+
* <p>Specifies the maintenance schedule for the DB cluster, including the preferred maintenance window and timezone.</p>
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
625
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
559
626
|
}
|
|
560
627
|
/**
|
|
561
628
|
* @public
|
|
@@ -656,6 +723,11 @@ export interface CreateDbInstanceInput {
|
|
|
656
723
|
* @public
|
|
657
724
|
*/
|
|
658
725
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
726
|
+
/**
|
|
727
|
+
* <p>Specifies the maintenance schedule for the DB instance, including the preferred maintenance window and timezone.</p>
|
|
728
|
+
* @public
|
|
729
|
+
*/
|
|
730
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
659
731
|
/**
|
|
660
732
|
* <p>A list of key-value pairs to associate with the DB instance.</p>
|
|
661
733
|
* @public
|
|
@@ -789,6 +861,21 @@ export interface CreateDbInstanceOutput {
|
|
|
789
861
|
* @public
|
|
790
862
|
*/
|
|
791
863
|
instanceModes?: InstanceMode[] | undefined;
|
|
864
|
+
/**
|
|
865
|
+
* <p>The maintenance schedule for the DB instance.</p>
|
|
866
|
+
* @public
|
|
867
|
+
*/
|
|
868
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
869
|
+
/**
|
|
870
|
+
* <p>The timestamp of the last completed maintenance operation on the DB instance.</p>
|
|
871
|
+
* @public
|
|
872
|
+
*/
|
|
873
|
+
lastMaintenanceTime?: Date | undefined;
|
|
874
|
+
/**
|
|
875
|
+
* <p>The timestamp of the next scheduled maintenance operation on the DB instance.</p>
|
|
876
|
+
* @public
|
|
877
|
+
*/
|
|
878
|
+
nextMaintenanceTime?: Date | undefined;
|
|
792
879
|
}
|
|
793
880
|
/**
|
|
794
881
|
* @public
|
|
@@ -914,6 +1001,21 @@ export interface DeleteDbInstanceOutput {
|
|
|
914
1001
|
* @public
|
|
915
1002
|
*/
|
|
916
1003
|
instanceModes?: InstanceMode[] | undefined;
|
|
1004
|
+
/**
|
|
1005
|
+
* <p>The maintenance schedule for the DB instance.</p>
|
|
1006
|
+
* @public
|
|
1007
|
+
*/
|
|
1008
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
1009
|
+
/**
|
|
1010
|
+
* <p>The timestamp of the last completed maintenance operation on the DB instance.</p>
|
|
1011
|
+
* @public
|
|
1012
|
+
*/
|
|
1013
|
+
lastMaintenanceTime?: Date | undefined;
|
|
1014
|
+
/**
|
|
1015
|
+
* <p>The timestamp of the next scheduled maintenance operation on the DB instance.</p>
|
|
1016
|
+
* @public
|
|
1017
|
+
*/
|
|
1018
|
+
nextMaintenanceTime?: Date | undefined;
|
|
917
1019
|
}
|
|
918
1020
|
/**
|
|
919
1021
|
* @public
|
|
@@ -1039,6 +1141,21 @@ export interface GetDbInstanceOutput {
|
|
|
1039
1141
|
* @public
|
|
1040
1142
|
*/
|
|
1041
1143
|
instanceModes?: InstanceMode[] | undefined;
|
|
1144
|
+
/**
|
|
1145
|
+
* <p>The maintenance schedule for the DB instance.</p>
|
|
1146
|
+
* @public
|
|
1147
|
+
*/
|
|
1148
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>The timestamp of the last completed maintenance operation on the DB instance.</p>
|
|
1151
|
+
* @public
|
|
1152
|
+
*/
|
|
1153
|
+
lastMaintenanceTime?: Date | undefined;
|
|
1154
|
+
/**
|
|
1155
|
+
* <p>The timestamp of the next scheduled maintenance operation on the DB instance.</p>
|
|
1156
|
+
* @public
|
|
1157
|
+
*/
|
|
1158
|
+
nextMaintenanceTime?: Date | undefined;
|
|
1042
1159
|
}
|
|
1043
1160
|
/**
|
|
1044
1161
|
* @public
|
|
@@ -1257,6 +1374,21 @@ export interface RebootDbInstanceOutput {
|
|
|
1257
1374
|
* @public
|
|
1258
1375
|
*/
|
|
1259
1376
|
instanceModes?: InstanceMode[] | undefined;
|
|
1377
|
+
/**
|
|
1378
|
+
* <p>The maintenance schedule for the DB instance.</p>
|
|
1379
|
+
* @public
|
|
1380
|
+
*/
|
|
1381
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
1382
|
+
/**
|
|
1383
|
+
* <p>The timestamp of the last completed maintenance operation on the DB instance.</p>
|
|
1384
|
+
* @public
|
|
1385
|
+
*/
|
|
1386
|
+
lastMaintenanceTime?: Date | undefined;
|
|
1387
|
+
/**
|
|
1388
|
+
* <p>The timestamp of the next scheduled maintenance operation on the DB instance.</p>
|
|
1389
|
+
* @public
|
|
1390
|
+
*/
|
|
1391
|
+
nextMaintenanceTime?: Date | undefined;
|
|
1260
1392
|
}
|
|
1261
1393
|
/**
|
|
1262
1394
|
* @public
|
|
@@ -1306,6 +1438,11 @@ export interface UpdateDbInstanceInput {
|
|
|
1306
1438
|
* @public
|
|
1307
1439
|
*/
|
|
1308
1440
|
allocatedStorage?: number | undefined;
|
|
1441
|
+
/**
|
|
1442
|
+
* <p>Specifies the maintenance schedule for the DB instance, including the preferred maintenance window and timezone.</p>
|
|
1443
|
+
* @public
|
|
1444
|
+
*/
|
|
1445
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
1309
1446
|
}
|
|
1310
1447
|
/**
|
|
1311
1448
|
* @public
|
|
@@ -1422,6 +1559,21 @@ export interface UpdateDbInstanceOutput {
|
|
|
1422
1559
|
* @public
|
|
1423
1560
|
*/
|
|
1424
1561
|
instanceModes?: InstanceMode[] | undefined;
|
|
1562
|
+
/**
|
|
1563
|
+
* <p>The maintenance schedule for the DB instance.</p>
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* <p>The timestamp of the last completed maintenance operation on the DB instance.</p>
|
|
1569
|
+
* @public
|
|
1570
|
+
*/
|
|
1571
|
+
lastMaintenanceTime?: Date | undefined;
|
|
1572
|
+
/**
|
|
1573
|
+
* <p>The timestamp of the next scheduled maintenance operation on the DB instance.</p>
|
|
1574
|
+
* @public
|
|
1575
|
+
*/
|
|
1576
|
+
nextMaintenanceTime?: Date | undefined;
|
|
1425
1577
|
}
|
|
1426
1578
|
/**
|
|
1427
1579
|
* <p>Duration for InfluxDB parameters in Timestream for InfluxDB.</p>
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -14,6 +14,7 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
16
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
|
+
export declare var ClusterConfiguration$: StaticStructureSchema;
|
|
17
18
|
export declare var CreateDbClusterInput$: StaticStructureSchema;
|
|
18
19
|
export declare var CreateDbClusterOutput$: StaticStructureSchema;
|
|
19
20
|
export declare var CreateDbInstanceInput$: StaticStructureSchema;
|
|
@@ -49,6 +50,7 @@ export declare var ListDbParameterGroupsOutput$: StaticStructureSchema;
|
|
|
49
50
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
50
51
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
51
52
|
export declare var LogDeliveryConfiguration$: StaticStructureSchema;
|
|
53
|
+
export declare var MaintenanceSchedule$: StaticStructureSchema;
|
|
52
54
|
export declare var RebootDbClusterInput$: StaticStructureSchema;
|
|
53
55
|
export declare var RebootDbClusterOutput$: StaticStructureSchema;
|
|
54
56
|
export declare var RebootDbInstanceInput$: StaticStructureSchema;
|
|
@@ -22,6 +22,10 @@ export interface S3Configuration {
|
|
|
22
22
|
export interface LogDeliveryConfiguration {
|
|
23
23
|
s3Configuration: S3Configuration | undefined;
|
|
24
24
|
}
|
|
25
|
+
export interface MaintenanceSchedule {
|
|
26
|
+
timezone: string | undefined;
|
|
27
|
+
preferredMaintenanceWindow: string | undefined;
|
|
28
|
+
}
|
|
25
29
|
export interface CreateDbClusterInput {
|
|
26
30
|
name: string | undefined;
|
|
27
31
|
username?: string | undefined;
|
|
@@ -40,6 +44,7 @@ export interface CreateDbClusterInput {
|
|
|
40
44
|
deploymentType?: ClusterDeploymentType | undefined;
|
|
41
45
|
failoverMode?: FailoverMode | undefined;
|
|
42
46
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
47
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
43
48
|
tags?: Record<string, string> | undefined;
|
|
44
49
|
}
|
|
45
50
|
export interface CreateDbClusterOutput {
|
|
@@ -55,6 +60,11 @@ export interface DeleteDbClusterOutput {
|
|
|
55
60
|
export interface GetDbClusterInput {
|
|
56
61
|
dbClusterId: string | undefined;
|
|
57
62
|
}
|
|
63
|
+
export interface ClusterConfiguration {
|
|
64
|
+
ingestQueryInstances?: number | undefined;
|
|
65
|
+
queryOnlyInstances?: number | undefined;
|
|
66
|
+
dedicatedCompactor?: boolean | undefined;
|
|
67
|
+
}
|
|
58
68
|
export interface GetDbClusterOutput {
|
|
59
69
|
id: string | undefined;
|
|
60
70
|
name: string | undefined;
|
|
@@ -72,10 +82,14 @@ export interface GetDbClusterOutput {
|
|
|
72
82
|
publiclyAccessible?: boolean | undefined;
|
|
73
83
|
dbParameterGroupIdentifier?: string | undefined;
|
|
74
84
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
85
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
86
|
+
lastMaintenanceTime?: Date | undefined;
|
|
87
|
+
nextMaintenanceTime?: Date | undefined;
|
|
75
88
|
influxAuthParametersSecretArn?: string | undefined;
|
|
76
89
|
vpcSubnetIds?: string[] | undefined;
|
|
77
90
|
vpcSecurityGroupIds?: string[] | undefined;
|
|
78
91
|
failoverMode?: FailoverMode | undefined;
|
|
92
|
+
clusterConfiguration?: ClusterConfiguration | undefined;
|
|
79
93
|
}
|
|
80
94
|
export interface ListDbClustersInput {
|
|
81
95
|
nextToken?: string | undefined;
|
|
@@ -138,6 +152,7 @@ export interface UpdateDbClusterInput {
|
|
|
138
152
|
port?: number | undefined;
|
|
139
153
|
dbInstanceType?: DbInstanceType | undefined;
|
|
140
154
|
failoverMode?: FailoverMode | undefined;
|
|
155
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
141
156
|
}
|
|
142
157
|
export interface UpdateDbClusterOutput {
|
|
143
158
|
dbClusterStatus?: ClusterStatus | undefined;
|
|
@@ -157,6 +172,7 @@ export interface CreateDbInstanceInput {
|
|
|
157
172
|
dbParameterGroupIdentifier?: string | undefined;
|
|
158
173
|
deploymentType?: DeploymentType | undefined;
|
|
159
174
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
175
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
160
176
|
tags?: Record<string, string> | undefined;
|
|
161
177
|
port?: number | undefined;
|
|
162
178
|
networkType?: NetworkType | undefined;
|
|
@@ -184,6 +200,9 @@ export interface CreateDbInstanceOutput {
|
|
|
184
200
|
dbClusterId?: string | undefined;
|
|
185
201
|
instanceMode?: InstanceMode | undefined;
|
|
186
202
|
instanceModes?: InstanceMode[] | undefined;
|
|
203
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
204
|
+
lastMaintenanceTime?: Date | undefined;
|
|
205
|
+
nextMaintenanceTime?: Date | undefined;
|
|
187
206
|
}
|
|
188
207
|
export interface DeleteDbInstanceInput {
|
|
189
208
|
identifier: string | undefined;
|
|
@@ -211,6 +230,9 @@ export interface DeleteDbInstanceOutput {
|
|
|
211
230
|
dbClusterId?: string | undefined;
|
|
212
231
|
instanceMode?: InstanceMode | undefined;
|
|
213
232
|
instanceModes?: InstanceMode[] | undefined;
|
|
233
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
234
|
+
lastMaintenanceTime?: Date | undefined;
|
|
235
|
+
nextMaintenanceTime?: Date | undefined;
|
|
214
236
|
}
|
|
215
237
|
export interface GetDbInstanceInput {
|
|
216
238
|
identifier: string | undefined;
|
|
@@ -238,6 +260,9 @@ export interface GetDbInstanceOutput {
|
|
|
238
260
|
dbClusterId?: string | undefined;
|
|
239
261
|
instanceMode?: InstanceMode | undefined;
|
|
240
262
|
instanceModes?: InstanceMode[] | undefined;
|
|
263
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
264
|
+
lastMaintenanceTime?: Date | undefined;
|
|
265
|
+
nextMaintenanceTime?: Date | undefined;
|
|
241
266
|
}
|
|
242
267
|
export interface ListDbInstancesInput {
|
|
243
268
|
nextToken?: string | undefined;
|
|
@@ -286,6 +311,9 @@ export interface RebootDbInstanceOutput {
|
|
|
286
311
|
dbClusterId?: string | undefined;
|
|
287
312
|
instanceMode?: InstanceMode | undefined;
|
|
288
313
|
instanceModes?: InstanceMode[] | undefined;
|
|
314
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
315
|
+
lastMaintenanceTime?: Date | undefined;
|
|
316
|
+
nextMaintenanceTime?: Date | undefined;
|
|
289
317
|
}
|
|
290
318
|
export interface UpdateDbInstanceInput {
|
|
291
319
|
identifier: string | undefined;
|
|
@@ -296,6 +324,7 @@ export interface UpdateDbInstanceInput {
|
|
|
296
324
|
deploymentType?: DeploymentType | undefined;
|
|
297
325
|
dbStorageType?: DbStorageType | undefined;
|
|
298
326
|
allocatedStorage?: number | undefined;
|
|
327
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
299
328
|
}
|
|
300
329
|
export interface UpdateDbInstanceOutput {
|
|
301
330
|
id: string | undefined;
|
|
@@ -320,6 +349,9 @@ export interface UpdateDbInstanceOutput {
|
|
|
320
349
|
dbClusterId?: string | undefined;
|
|
321
350
|
instanceMode?: InstanceMode | undefined;
|
|
322
351
|
instanceModes?: InstanceMode[] | undefined;
|
|
352
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
353
|
+
lastMaintenanceTime?: Date | undefined;
|
|
354
|
+
nextMaintenanceTime?: Date | undefined;
|
|
323
355
|
}
|
|
324
356
|
export interface Duration {
|
|
325
357
|
durationType: DurationType | undefined;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (
|
|
|
32
32
|
protocol:
|
|
33
33
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
34
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
-
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
35
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
36
36
|
protocolSettings: {
|
|
37
37
|
defaultNamespace?: string;
|
|
38
38
|
[setting: string]: unknown;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (
|
|
|
32
32
|
protocol:
|
|
33
33
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
34
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
-
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
35
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
36
36
|
protocolSettings: {
|
|
37
37
|
defaultNamespace?: string;
|
|
38
38
|
[setting: string]: unknown;
|
|
@@ -14,7 +14,7 @@ export declare const getRuntimeConfig: (
|
|
|
14
14
|
protocol:
|
|
15
15
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
16
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
-
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
17
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_0Protocol;
|
|
18
18
|
protocolSettings: {
|
|
19
19
|
defaultNamespace?: string;
|
|
20
20
|
[setting: string]: unknown;
|
|
@@ -14,6 +14,7 @@ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
|
14
14
|
export declare var ThrottlingException$: StaticErrorSchema;
|
|
15
15
|
export declare var ValidationException$: StaticErrorSchema;
|
|
16
16
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
|
+
export declare var ClusterConfiguration$: StaticStructureSchema;
|
|
17
18
|
export declare var CreateDbClusterInput$: StaticStructureSchema;
|
|
18
19
|
export declare var CreateDbClusterOutput$: StaticStructureSchema;
|
|
19
20
|
export declare var CreateDbInstanceInput$: StaticStructureSchema;
|
|
@@ -49,6 +50,7 @@ export declare var ListDbParameterGroupsOutput$: StaticStructureSchema;
|
|
|
49
50
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
50
51
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
51
52
|
export declare var LogDeliveryConfiguration$: StaticStructureSchema;
|
|
53
|
+
export declare var MaintenanceSchedule$: StaticStructureSchema;
|
|
52
54
|
export declare var RebootDbClusterInput$: StaticStructureSchema;
|
|
53
55
|
export declare var RebootDbClusterOutput$: StaticStructureSchema;
|
|
54
56
|
export declare var RebootDbInstanceInput$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-influxdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Influxdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1019.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-timestream-influxdb",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.25",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
36
|
"@smithy/core": "^3.23.12",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|