@aws-sdk/client-timestream-query 3.621.0 → 3.623.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 +82 -32
- package/dist-es/TimestreamQueryClient.js +12 -18
- package/dist-es/commands/CancelQueryCommand.js +5 -1
- package/dist-es/commands/CreateScheduledQueryCommand.js +5 -1
- package/dist-es/commands/DeleteScheduledQueryCommand.js +5 -1
- package/dist-es/commands/DescribeAccountSettingsCommand.js +5 -1
- package/dist-es/commands/DescribeScheduledQueryCommand.js +5 -1
- package/dist-es/commands/ExecuteScheduledQueryCommand.js +5 -1
- package/dist-es/commands/ListScheduledQueriesCommand.js +5 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +5 -1
- package/dist-es/commands/PrepareQueryCommand.js +5 -1
- package/dist-es/commands/QueryCommand.js +5 -1
- package/dist-es/commands/TagResourceCommand.js +5 -1
- package/dist-es/commands/UntagResourceCommand.js +5 -1
- package/dist-es/commands/UpdateAccountSettingsCommand.js +5 -1
- package/dist-es/commands/UpdateScheduledQueryCommand.js +5 -1
- package/dist-types/TimestreamQueryClient.d.ts +2 -4
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/TimestreamQueryClient.d.ts +6 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
- package/package.json +10 -10
package/dist-cjs/index.js
CHANGED
|
@@ -1091,11 +1091,11 @@ var _TimestreamQueryClient = class _TimestreamQueryClient extends import_smithy_
|
|
|
1091
1091
|
constructor(...[configuration]) {
|
|
1092
1092
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
1093
1093
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
1094
|
-
const _config_2 = (0,
|
|
1095
|
-
const _config_3 = (0,
|
|
1096
|
-
const _config_4 = (0,
|
|
1097
|
-
const _config_5 = (0,
|
|
1098
|
-
const _config_6 = (0,
|
|
1094
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
1095
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
1096
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
1097
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
1098
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
1099
1099
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
1100
1100
|
const _config_8 = (0, import_middleware_endpoint_discovery.resolveEndpointDiscoveryConfig)(_config_7, {
|
|
1101
1101
|
endpointDiscoveryCommandCtor: DescribeEndpointsCommand
|
|
@@ -1103,16 +1103,18 @@ var _TimestreamQueryClient = class _TimestreamQueryClient extends import_smithy_
|
|
|
1103
1103
|
const _config_9 = resolveRuntimeExtensions(_config_8, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
1104
1104
|
super(_config_9);
|
|
1105
1105
|
this.config = _config_9;
|
|
1106
|
-
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
1107
|
-
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
1108
|
-
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
1109
1106
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
1110
1107
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
1111
1108
|
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
1109
|
+
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
1110
|
+
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
1111
|
+
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
1112
1112
|
this.middlewareStack.use(
|
|
1113
1113
|
(0, import_core2.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
1114
|
-
httpAuthSchemeParametersProvider:
|
|
1115
|
-
identityProviderConfigProvider:
|
|
1114
|
+
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultTimestreamQueryHttpAuthSchemeParametersProvider,
|
|
1115
|
+
identityProviderConfigProvider: async (config) => new import_core2.DefaultIdentityProviderConfig({
|
|
1116
|
+
"aws.auth#sigv4": config.credentials
|
|
1117
|
+
})
|
|
1116
1118
|
})
|
|
1117
1119
|
);
|
|
1118
1120
|
this.middlewareStack.use((0, import_core2.getHttpSigningPlugin)(this.config));
|
|
@@ -1125,14 +1127,6 @@ var _TimestreamQueryClient = class _TimestreamQueryClient extends import_smithy_
|
|
|
1125
1127
|
destroy() {
|
|
1126
1128
|
super.destroy();
|
|
1127
1129
|
}
|
|
1128
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
1129
|
-
return import_httpAuthSchemeProvider.defaultTimestreamQueryHttpAuthSchemeParametersProvider;
|
|
1130
|
-
}
|
|
1131
|
-
getIdentityProviderConfigProvider() {
|
|
1132
|
-
return async (config) => new import_core2.DefaultIdentityProviderConfig({
|
|
1133
|
-
"aws.auth#sigv4": config.credentials
|
|
1134
|
-
});
|
|
1135
|
-
}
|
|
1136
1130
|
};
|
|
1137
1131
|
__name(_TimestreamQueryClient, "TimestreamQueryClient");
|
|
1138
1132
|
var TimestreamQueryClient = _TimestreamQueryClient;
|
|
@@ -1151,7 +1145,11 @@ var _CancelQueryCommand = class _CancelQueryCommand extends import_smithy_client
|
|
|
1151
1145
|
return [
|
|
1152
1146
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1153
1147
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1154
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1148
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1149
|
+
clientStack: cs,
|
|
1150
|
+
isDiscoveredEndpointRequired: true,
|
|
1151
|
+
options: o
|
|
1152
|
+
})
|
|
1155
1153
|
];
|
|
1156
1154
|
}).s("Timestream_20181101", "CancelQuery", {}).n("TimestreamQueryClient", "CancelQueryCommand").f(void 0, void 0).ser(se_CancelQueryCommand).de(de_CancelQueryCommand).build() {
|
|
1157
1155
|
};
|
|
@@ -1169,7 +1167,11 @@ var _CreateScheduledQueryCommand = class _CreateScheduledQueryCommand extends im
|
|
|
1169
1167
|
return [
|
|
1170
1168
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1171
1169
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1172
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1170
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1171
|
+
clientStack: cs,
|
|
1172
|
+
isDiscoveredEndpointRequired: true,
|
|
1173
|
+
options: o
|
|
1174
|
+
})
|
|
1173
1175
|
];
|
|
1174
1176
|
}).s("Timestream_20181101", "CreateScheduledQuery", {}).n("TimestreamQueryClient", "CreateScheduledQueryCommand").f(CreateScheduledQueryRequestFilterSensitiveLog, void 0).ser(se_CreateScheduledQueryCommand).de(de_CreateScheduledQueryCommand).build() {
|
|
1175
1177
|
};
|
|
@@ -1187,7 +1189,11 @@ var _DeleteScheduledQueryCommand = class _DeleteScheduledQueryCommand extends im
|
|
|
1187
1189
|
return [
|
|
1188
1190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1189
1191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1190
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1192
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1193
|
+
clientStack: cs,
|
|
1194
|
+
isDiscoveredEndpointRequired: true,
|
|
1195
|
+
options: o
|
|
1196
|
+
})
|
|
1191
1197
|
];
|
|
1192
1198
|
}).s("Timestream_20181101", "DeleteScheduledQuery", {}).n("TimestreamQueryClient", "DeleteScheduledQueryCommand").f(void 0, void 0).ser(se_DeleteScheduledQueryCommand).de(de_DeleteScheduledQueryCommand).build() {
|
|
1193
1199
|
};
|
|
@@ -1205,7 +1211,11 @@ var _DescribeAccountSettingsCommand = class _DescribeAccountSettingsCommand exte
|
|
|
1205
1211
|
return [
|
|
1206
1212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1207
1213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1208
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1214
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1215
|
+
clientStack: cs,
|
|
1216
|
+
isDiscoveredEndpointRequired: true,
|
|
1217
|
+
options: o
|
|
1218
|
+
})
|
|
1209
1219
|
];
|
|
1210
1220
|
}).s("Timestream_20181101", "DescribeAccountSettings", {}).n("TimestreamQueryClient", "DescribeAccountSettingsCommand").f(void 0, void 0).ser(se_DescribeAccountSettingsCommand).de(de_DescribeAccountSettingsCommand).build() {
|
|
1211
1221
|
};
|
|
@@ -1223,7 +1233,11 @@ var _DescribeScheduledQueryCommand = class _DescribeScheduledQueryCommand extend
|
|
|
1223
1233
|
return [
|
|
1224
1234
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1225
1235
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1226
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1236
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1237
|
+
clientStack: cs,
|
|
1238
|
+
isDiscoveredEndpointRequired: true,
|
|
1239
|
+
options: o
|
|
1240
|
+
})
|
|
1227
1241
|
];
|
|
1228
1242
|
}).s("Timestream_20181101", "DescribeScheduledQuery", {}).n("TimestreamQueryClient", "DescribeScheduledQueryCommand").f(void 0, DescribeScheduledQueryResponseFilterSensitiveLog).ser(se_DescribeScheduledQueryCommand).de(de_DescribeScheduledQueryCommand).build() {
|
|
1229
1243
|
};
|
|
@@ -1241,7 +1255,11 @@ var _ExecuteScheduledQueryCommand = class _ExecuteScheduledQueryCommand extends
|
|
|
1241
1255
|
return [
|
|
1242
1256
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1243
1257
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1244
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1258
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1259
|
+
clientStack: cs,
|
|
1260
|
+
isDiscoveredEndpointRequired: true,
|
|
1261
|
+
options: o
|
|
1262
|
+
})
|
|
1245
1263
|
];
|
|
1246
1264
|
}).s("Timestream_20181101", "ExecuteScheduledQuery", {}).n("TimestreamQueryClient", "ExecuteScheduledQueryCommand").f(ExecuteScheduledQueryRequestFilterSensitiveLog, void 0).ser(se_ExecuteScheduledQueryCommand).de(de_ExecuteScheduledQueryCommand).build() {
|
|
1247
1265
|
};
|
|
@@ -1259,7 +1277,11 @@ var _ListScheduledQueriesCommand = class _ListScheduledQueriesCommand extends im
|
|
|
1259
1277
|
return [
|
|
1260
1278
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1261
1279
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1262
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1280
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1281
|
+
clientStack: cs,
|
|
1282
|
+
isDiscoveredEndpointRequired: true,
|
|
1283
|
+
options: o
|
|
1284
|
+
})
|
|
1263
1285
|
];
|
|
1264
1286
|
}).s("Timestream_20181101", "ListScheduledQueries", {}).n("TimestreamQueryClient", "ListScheduledQueriesCommand").f(void 0, void 0).ser(se_ListScheduledQueriesCommand).de(de_ListScheduledQueriesCommand).build() {
|
|
1265
1287
|
};
|
|
@@ -1277,7 +1299,11 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
|
|
|
1277
1299
|
return [
|
|
1278
1300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1279
1301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1280
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1302
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1303
|
+
clientStack: cs,
|
|
1304
|
+
isDiscoveredEndpointRequired: true,
|
|
1305
|
+
options: o
|
|
1306
|
+
})
|
|
1281
1307
|
];
|
|
1282
1308
|
}).s("Timestream_20181101", "ListTagsForResource", {}).n("TimestreamQueryClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1283
1309
|
};
|
|
@@ -1295,7 +1321,11 @@ var _PrepareQueryCommand = class _PrepareQueryCommand extends import_smithy_clie
|
|
|
1295
1321
|
return [
|
|
1296
1322
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1297
1323
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1298
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1324
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1325
|
+
clientStack: cs,
|
|
1326
|
+
isDiscoveredEndpointRequired: true,
|
|
1327
|
+
options: o
|
|
1328
|
+
})
|
|
1299
1329
|
];
|
|
1300
1330
|
}).s("Timestream_20181101", "PrepareQuery", {}).n("TimestreamQueryClient", "PrepareQueryCommand").f(PrepareQueryRequestFilterSensitiveLog, PrepareQueryResponseFilterSensitiveLog).ser(se_PrepareQueryCommand).de(de_PrepareQueryCommand).build() {
|
|
1301
1331
|
};
|
|
@@ -1313,7 +1343,11 @@ var _QueryCommand = class _QueryCommand extends import_smithy_client.Command.cla
|
|
|
1313
1343
|
return [
|
|
1314
1344
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1315
1345
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1316
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1346
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1347
|
+
clientStack: cs,
|
|
1348
|
+
isDiscoveredEndpointRequired: true,
|
|
1349
|
+
options: o
|
|
1350
|
+
})
|
|
1317
1351
|
];
|
|
1318
1352
|
}).s("Timestream_20181101", "Query", {}).n("TimestreamQueryClient", "QueryCommand").f(QueryRequestFilterSensitiveLog, void 0).ser(se_QueryCommand).de(de_QueryCommand).build() {
|
|
1319
1353
|
};
|
|
@@ -1331,7 +1365,11 @@ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client
|
|
|
1331
1365
|
return [
|
|
1332
1366
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1333
1367
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1334
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1368
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1369
|
+
clientStack: cs,
|
|
1370
|
+
isDiscoveredEndpointRequired: true,
|
|
1371
|
+
options: o
|
|
1372
|
+
})
|
|
1335
1373
|
];
|
|
1336
1374
|
}).s("Timestream_20181101", "TagResource", {}).n("TimestreamQueryClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1337
1375
|
};
|
|
@@ -1349,7 +1387,11 @@ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_cl
|
|
|
1349
1387
|
return [
|
|
1350
1388
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1351
1389
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1352
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1390
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1391
|
+
clientStack: cs,
|
|
1392
|
+
isDiscoveredEndpointRequired: true,
|
|
1393
|
+
options: o
|
|
1394
|
+
})
|
|
1353
1395
|
];
|
|
1354
1396
|
}).s("Timestream_20181101", "UntagResource", {}).n("TimestreamQueryClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1355
1397
|
};
|
|
@@ -1367,7 +1409,11 @@ var _UpdateAccountSettingsCommand = class _UpdateAccountSettingsCommand extends
|
|
|
1367
1409
|
return [
|
|
1368
1410
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1369
1411
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1370
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1412
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1413
|
+
clientStack: cs,
|
|
1414
|
+
isDiscoveredEndpointRequired: true,
|
|
1415
|
+
options: o
|
|
1416
|
+
})
|
|
1371
1417
|
];
|
|
1372
1418
|
}).s("Timestream_20181101", "UpdateAccountSettings", {}).n("TimestreamQueryClient", "UpdateAccountSettingsCommand").f(void 0, void 0).ser(se_UpdateAccountSettingsCommand).de(de_UpdateAccountSettingsCommand).build() {
|
|
1373
1419
|
};
|
|
@@ -1385,7 +1431,11 @@ var _UpdateScheduledQueryCommand = class _UpdateScheduledQueryCommand extends im
|
|
|
1385
1431
|
return [
|
|
1386
1432
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1387
1433
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
1388
|
-
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1434
|
+
(0, import_middleware_endpoint_discovery.getEndpointDiscoveryPlugin)(config, {
|
|
1435
|
+
clientStack: cs,
|
|
1436
|
+
isDiscoveredEndpointRequired: true,
|
|
1437
|
+
options: o
|
|
1438
|
+
})
|
|
1389
1439
|
];
|
|
1390
1440
|
}).s("Timestream_20181101", "UpdateScheduledQuery", {}).n("TimestreamQueryClient", "UpdateScheduledQueryCommand").f(void 0, void 0).ser(se_UpdateScheduledQueryCommand).de(de_UpdateScheduledQueryCommand).build() {
|
|
1391
1441
|
};
|
|
@@ -19,11 +19,11 @@ export class TimestreamQueryClient extends __Client {
|
|
|
19
19
|
constructor(...[configuration]) {
|
|
20
20
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
21
21
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
22
|
-
const _config_2 =
|
|
23
|
-
const _config_3 =
|
|
24
|
-
const _config_4 =
|
|
25
|
-
const _config_5 =
|
|
26
|
-
const _config_6 =
|
|
22
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
23
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
24
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
25
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
26
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
27
27
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
28
28
|
const _config_8 = resolveEndpointDiscoveryConfig(_config_7, {
|
|
29
29
|
endpointDiscoveryCommandCtor: DescribeEndpointsCommand,
|
|
@@ -31,27 +31,21 @@ export class TimestreamQueryClient extends __Client {
|
|
|
31
31
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
32
32
|
super(_config_9);
|
|
33
33
|
this.config = _config_9;
|
|
34
|
-
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
35
|
-
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
36
|
-
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
37
34
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
38
35
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
39
36
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
37
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
38
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
39
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
40
40
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
41
|
-
httpAuthSchemeParametersProvider:
|
|
42
|
-
identityProviderConfigProvider:
|
|
41
|
+
httpAuthSchemeParametersProvider: defaultTimestreamQueryHttpAuthSchemeParametersProvider,
|
|
42
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
43
|
+
"aws.auth#sigv4": config.credentials,
|
|
44
|
+
}),
|
|
43
45
|
}));
|
|
44
46
|
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
45
47
|
}
|
|
46
48
|
destroy() {
|
|
47
49
|
super.destroy();
|
|
48
50
|
}
|
|
49
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
50
|
-
return defaultTimestreamQueryHttpAuthSchemeParametersProvider;
|
|
51
|
-
}
|
|
52
|
-
getIdentityProviderConfigProvider() {
|
|
53
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
54
|
-
"aws.auth#sigv4": config.credentials,
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
51
|
}
|
|
@@ -14,7 +14,11 @@ export class CancelQueryCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "CancelQuery", {})
|
|
@@ -15,7 +15,11 @@ export class CreateScheduledQueryCommand extends $Command
|
|
|
15
15
|
return [
|
|
16
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17
17
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
18
|
-
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
getEndpointDiscoveryPlugin(config, {
|
|
19
|
+
clientStack: cs,
|
|
20
|
+
isDiscoveredEndpointRequired: true,
|
|
21
|
+
options: o,
|
|
22
|
+
}),
|
|
19
23
|
];
|
|
20
24
|
})
|
|
21
25
|
.s("Timestream_20181101", "CreateScheduledQuery", {})
|
|
@@ -14,7 +14,11 @@ export class DeleteScheduledQueryCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "DeleteScheduledQuery", {})
|
|
@@ -14,7 +14,11 @@ export class DescribeAccountSettingsCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "DescribeAccountSettings", {})
|
|
@@ -15,7 +15,11 @@ export class DescribeScheduledQueryCommand extends $Command
|
|
|
15
15
|
return [
|
|
16
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17
17
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
18
|
-
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
getEndpointDiscoveryPlugin(config, {
|
|
19
|
+
clientStack: cs,
|
|
20
|
+
isDiscoveredEndpointRequired: true,
|
|
21
|
+
options: o,
|
|
22
|
+
}),
|
|
19
23
|
];
|
|
20
24
|
})
|
|
21
25
|
.s("Timestream_20181101", "DescribeScheduledQuery", {})
|
|
@@ -15,7 +15,11 @@ export class ExecuteScheduledQueryCommand extends $Command
|
|
|
15
15
|
return [
|
|
16
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17
17
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
18
|
-
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
getEndpointDiscoveryPlugin(config, {
|
|
19
|
+
clientStack: cs,
|
|
20
|
+
isDiscoveredEndpointRequired: true,
|
|
21
|
+
options: o,
|
|
22
|
+
}),
|
|
19
23
|
];
|
|
20
24
|
})
|
|
21
25
|
.s("Timestream_20181101", "ExecuteScheduledQuery", {})
|
|
@@ -14,7 +14,11 @@ export class ListScheduledQueriesCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "ListScheduledQueries", {})
|
|
@@ -14,7 +14,11 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "ListTagsForResource", {})
|
|
@@ -15,7 +15,11 @@ export class PrepareQueryCommand extends $Command
|
|
|
15
15
|
return [
|
|
16
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17
17
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
18
|
-
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
getEndpointDiscoveryPlugin(config, {
|
|
19
|
+
clientStack: cs,
|
|
20
|
+
isDiscoveredEndpointRequired: true,
|
|
21
|
+
options: o,
|
|
22
|
+
}),
|
|
19
23
|
];
|
|
20
24
|
})
|
|
21
25
|
.s("Timestream_20181101", "PrepareQuery", {})
|
|
@@ -15,7 +15,11 @@ export class QueryCommand extends $Command
|
|
|
15
15
|
return [
|
|
16
16
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17
17
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
18
|
-
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
getEndpointDiscoveryPlugin(config, {
|
|
19
|
+
clientStack: cs,
|
|
20
|
+
isDiscoveredEndpointRequired: true,
|
|
21
|
+
options: o,
|
|
22
|
+
}),
|
|
19
23
|
];
|
|
20
24
|
})
|
|
21
25
|
.s("Timestream_20181101", "Query", {})
|
|
@@ -14,7 +14,11 @@ export class TagResourceCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "TagResource", {})
|
|
@@ -14,7 +14,11 @@ export class UntagResourceCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "UntagResource", {})
|
|
@@ -14,7 +14,11 @@ export class UpdateAccountSettingsCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "UpdateAccountSettings", {})
|
|
@@ -14,7 +14,11 @@ export class UpdateScheduledQueryCommand extends $Command
|
|
|
14
14
|
return [
|
|
15
15
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16
16
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17
|
-
getEndpointDiscoveryPlugin(config, {
|
|
17
|
+
getEndpointDiscoveryPlugin(config, {
|
|
18
|
+
clientStack: cs,
|
|
19
|
+
isDiscoveredEndpointRequired: true,
|
|
20
|
+
options: o,
|
|
21
|
+
}),
|
|
18
22
|
];
|
|
19
23
|
})
|
|
20
24
|
.s("Timestream_20181101", "UpdateScheduledQuery", {})
|
|
@@ -153,7 +153,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
153
153
|
/**
|
|
154
154
|
* @public
|
|
155
155
|
*/
|
|
156
|
-
export type TimestreamQueryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
156
|
+
export type TimestreamQueryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & EndpointDiscoveryInputConfig & ClientInputEndpointParameters;
|
|
157
157
|
/**
|
|
158
158
|
* @public
|
|
159
159
|
*
|
|
@@ -164,7 +164,7 @@ export interface TimestreamQueryClientConfig extends TimestreamQueryClientConfig
|
|
|
164
164
|
/**
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
export type TimestreamQueryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
167
|
+
export type TimestreamQueryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & EndpointDiscoveryResolvedConfig & ClientResolvedEndpointParameters;
|
|
168
168
|
/**
|
|
169
169
|
* @public
|
|
170
170
|
*
|
|
@@ -190,6 +190,4 @@ export declare class TimestreamQueryClient extends __Client<__HttpHandlerOptions
|
|
|
190
190
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
191
191
|
*/
|
|
192
192
|
destroy(): void;
|
|
193
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
194
|
-
private getIdentityProviderConfigProvider;
|
|
195
193
|
}
|
|
@@ -30,12 +30,12 @@ export declare const defaultTimestreamQueryHttpAuthSchemeProvider: TimestreamQue
|
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
34
|
* @internal
|
|
35
35
|
*/
|
|
36
36
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
41
41
|
httpAuthSchemeProvider?: TimestreamQueryHttpAuthSchemeProvider;
|
|
@@ -45,12 +45,12 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
49
|
* @internal
|
|
50
50
|
*/
|
|
51
51
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
56
|
readonly httpAuthSchemeProvider: TimestreamQueryHttpAuthSchemeProvider;
|
|
@@ -28,13 +28,13 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
28
28
|
serviceId: string;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
31
33
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
32
34
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
33
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
36
|
}) => import("@smithy/types").EndpointV2;
|
|
35
37
|
tls?: boolean | undefined;
|
|
36
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
39
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamQueryHttpAuthSchemeProvider;
|
|
40
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -28,13 +28,13 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
28
28
|
serviceId: string;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
31
33
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
32
34
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
33
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
36
|
}) => import("@smithy/types").EndpointV2;
|
|
35
37
|
tls?: boolean | undefined;
|
|
36
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
39
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamQueryHttpAuthSchemeProvider;
|
|
40
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
|
|
|
27
27
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
28
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
29
|
endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<boolean | undefined>;
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamQueryHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -175,11 +175,11 @@ export type TimestreamQueryClientConfigType = Partial<
|
|
|
175
175
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
176
176
|
> &
|
|
177
177
|
ClientDefaults &
|
|
178
|
-
RegionInputConfig &
|
|
179
|
-
EndpointInputConfig<EndpointParameters> &
|
|
180
|
-
HostHeaderInputConfig &
|
|
181
178
|
UserAgentInputConfig &
|
|
182
179
|
RetryInputConfig &
|
|
180
|
+
RegionInputConfig &
|
|
181
|
+
HostHeaderInputConfig &
|
|
182
|
+
EndpointInputConfig<EndpointParameters> &
|
|
183
183
|
HttpAuthSchemeInputConfig &
|
|
184
184
|
EndpointDiscoveryInputConfig &
|
|
185
185
|
ClientInputEndpointParameters;
|
|
@@ -189,11 +189,11 @@ export type TimestreamQueryClientResolvedConfigType =
|
|
|
189
189
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
190
190
|
Required<ClientDefaults> &
|
|
191
191
|
RuntimeExtensionsConfig &
|
|
192
|
-
RegionResolvedConfig &
|
|
193
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
194
|
-
HostHeaderResolvedConfig &
|
|
195
192
|
UserAgentResolvedConfig &
|
|
196
193
|
RetryResolvedConfig &
|
|
194
|
+
RegionResolvedConfig &
|
|
195
|
+
HostHeaderResolvedConfig &
|
|
196
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
197
197
|
HttpAuthSchemeResolvedConfig &
|
|
198
198
|
EndpointDiscoveryResolvedConfig &
|
|
199
199
|
ClientResolvedEndpointParameters;
|
|
@@ -210,6 +210,4 @@ export declare class TimestreamQueryClient extends __Client<
|
|
|
210
210
|
...[configuration]: __CheckOptionalClientConfig<TimestreamQueryClientConfig>
|
|
211
211
|
);
|
|
212
212
|
destroy(): void;
|
|
213
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
214
|
-
private getIdentityProviderConfigProvider;
|
|
215
213
|
}
|
|
@@ -37,6 +37,11 @@ export declare const getRuntimeConfig: (
|
|
|
37
37
|
serviceId: string;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
retryStrategy?:
|
|
42
|
+
| import("@smithy/types").RetryStrategy
|
|
43
|
+
| import("@smithy/types").RetryStrategyV2
|
|
44
|
+
| undefined;
|
|
40
45
|
endpoint?:
|
|
41
46
|
| ((
|
|
42
47
|
| string
|
|
@@ -61,11 +66,6 @@ export declare const getRuntimeConfig: (
|
|
|
61
66
|
}
|
|
62
67
|
) => import("@smithy/types").EndpointV2;
|
|
63
68
|
tls?: boolean | undefined;
|
|
64
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
65
|
-
retryStrategy?:
|
|
66
|
-
| import("@smithy/types").RetryStrategy
|
|
67
|
-
| import("@smithy/types").RetryStrategyV2
|
|
68
|
-
| undefined;
|
|
69
69
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
70
70
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamQueryHttpAuthSchemeProvider;
|
|
71
71
|
credentials?:
|
|
@@ -41,6 +41,11 @@ export declare const getRuntimeConfig: (
|
|
|
41
41
|
serviceId: string;
|
|
42
42
|
logger: import("@smithy/types").Logger;
|
|
43
43
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
44
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
45
|
+
retryStrategy?:
|
|
46
|
+
| import("@smithy/types").RetryStrategy
|
|
47
|
+
| import("@smithy/types").RetryStrategyV2
|
|
48
|
+
| undefined;
|
|
44
49
|
endpoint?:
|
|
45
50
|
| ((
|
|
46
51
|
| string
|
|
@@ -65,11 +70,6 @@ export declare const getRuntimeConfig: (
|
|
|
65
70
|
}
|
|
66
71
|
) => import("@smithy/types").EndpointV2;
|
|
67
72
|
tls?: boolean | undefined;
|
|
68
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
69
|
-
retryStrategy?:
|
|
70
|
-
| import("@smithy/types").RetryStrategy
|
|
71
|
-
| import("@smithy/types").RetryStrategyV2
|
|
72
|
-
| undefined;
|
|
73
73
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
74
74
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamQueryHttpAuthSchemeProvider;
|
|
75
75
|
credentials?:
|
|
@@ -41,6 +41,11 @@ export declare const getRuntimeConfig: (
|
|
|
41
41
|
endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<
|
|
42
42
|
boolean | undefined
|
|
43
43
|
>;
|
|
44
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
45
|
+
retryStrategy?:
|
|
46
|
+
| import("@smithy/types").RetryStrategy
|
|
47
|
+
| import("@smithy/types").RetryStrategyV2
|
|
48
|
+
| undefined;
|
|
44
49
|
endpoint?:
|
|
45
50
|
| string
|
|
46
51
|
| import("@smithy/types").Endpoint
|
|
@@ -55,11 +60,6 @@ export declare const getRuntimeConfig: (
|
|
|
55
60
|
}
|
|
56
61
|
) => import("@smithy/types").EndpointV2;
|
|
57
62
|
tls?: boolean | undefined;
|
|
58
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
59
|
-
retryStrategy?:
|
|
60
|
-
| import("@smithy/types").RetryStrategy
|
|
61
|
-
| import("@smithy/types").RetryStrategyV2
|
|
62
|
-
| undefined;
|
|
63
63
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
64
64
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamQueryHttpAuthSchemeProvider;
|
|
65
65
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-query",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Query Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.623.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-timestream-query",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.623.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.623.0",
|
|
25
|
+
"@aws-sdk/core": "3.623.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.623.0",
|
|
27
27
|
"@aws-sdk/middleware-endpoint-discovery": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
@@ -35,26 +35,26 @@
|
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
37
37
|
"@smithy/config-resolver": "^3.0.5",
|
|
38
|
-
"@smithy/core": "^2.3.
|
|
38
|
+
"@smithy/core": "^2.3.2",
|
|
39
39
|
"@smithy/fetch-http-handler": "^3.2.4",
|
|
40
40
|
"@smithy/hash-node": "^3.0.3",
|
|
41
41
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
42
42
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
43
43
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
44
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
45
45
|
"@smithy/middleware-serde": "^3.0.3",
|
|
46
46
|
"@smithy/middleware-stack": "^3.0.3",
|
|
47
47
|
"@smithy/node-config-provider": "^3.1.4",
|
|
48
48
|
"@smithy/node-http-handler": "^3.1.4",
|
|
49
49
|
"@smithy/protocol-http": "^4.1.0",
|
|
50
|
-
"@smithy/smithy-client": "^3.1.
|
|
50
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
51
51
|
"@smithy/types": "^3.3.0",
|
|
52
52
|
"@smithy/url-parser": "^3.0.3",
|
|
53
53
|
"@smithy/util-base64": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
58
58
|
"@smithy/util-endpoints": "^2.0.5",
|
|
59
59
|
"@smithy/util-middleware": "^3.0.3",
|
|
60
60
|
"@smithy/util-retry": "^3.0.3",
|