@aws-sdk/client-backup-gateway 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +25 -75
- package/dist-es/commands/AssociateGatewayToServerCommand.js +1 -3
- package/dist-es/commands/CreateGatewayCommand.js +1 -3
- package/dist-es/commands/DeleteGatewayCommand.js +1 -3
- package/dist-es/commands/DeleteHypervisorCommand.js +1 -3
- package/dist-es/commands/DisassociateGatewayFromServerCommand.js +1 -3
- package/dist-es/commands/GetBandwidthRateLimitScheduleCommand.js +1 -3
- package/dist-es/commands/GetGatewayCommand.js +1 -3
- package/dist-es/commands/GetHypervisorCommand.js +1 -3
- package/dist-es/commands/GetHypervisorPropertyMappingsCommand.js +1 -3
- package/dist-es/commands/GetVirtualMachineCommand.js +1 -3
- package/dist-es/commands/ImportHypervisorConfigurationCommand.js +1 -3
- package/dist-es/commands/ListGatewaysCommand.js +1 -3
- package/dist-es/commands/ListHypervisorsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ListVirtualMachinesCommand.js +1 -3
- package/dist-es/commands/PutBandwidthRateLimitScheduleCommand.js +1 -3
- package/dist-es/commands/PutHypervisorPropertyMappingsCommand.js +1 -3
- package/dist-es/commands/PutMaintenanceStartTimeCommand.js +1 -3
- package/dist-es/commands/StartVirtualMachinesMetadataSyncCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/TestHypervisorConfigurationCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateGatewayInformationCommand.js +1 -3
- package/dist-es/commands/UpdateGatewaySoftwareNowCommand.js +1 -3
- package/dist-es/commands/UpdateHypervisorCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1072,9 +1072,7 @@ function sharedHeaders(operation) {
|
|
|
1072
1072
|
__name(sharedHeaders, "sharedHeaders");
|
|
1073
1073
|
|
|
1074
1074
|
// src/commands/AssociateGatewayToServerCommand.ts
|
|
1075
|
-
var _AssociateGatewayToServerCommand = class _AssociateGatewayToServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1076
|
-
...commonParams
|
|
1077
|
-
}).m(function(Command, cs, config, o) {
|
|
1075
|
+
var _AssociateGatewayToServerCommand = class _AssociateGatewayToServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1078
1076
|
return [
|
|
1079
1077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1080
1078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1088,9 +1086,7 @@ var AssociateGatewayToServerCommand = _AssociateGatewayToServerCommand;
|
|
|
1088
1086
|
|
|
1089
1087
|
|
|
1090
1088
|
|
|
1091
|
-
var _CreateGatewayCommand = class _CreateGatewayCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1092
|
-
...commonParams
|
|
1093
|
-
}).m(function(Command, cs, config, o) {
|
|
1089
|
+
var _CreateGatewayCommand = class _CreateGatewayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1094
1090
|
return [
|
|
1095
1091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1096
1092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1104,9 +1100,7 @@ var CreateGatewayCommand = _CreateGatewayCommand;
|
|
|
1104
1100
|
|
|
1105
1101
|
|
|
1106
1102
|
|
|
1107
|
-
var _DeleteGatewayCommand = class _DeleteGatewayCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1108
|
-
...commonParams
|
|
1109
|
-
}).m(function(Command, cs, config, o) {
|
|
1103
|
+
var _DeleteGatewayCommand = class _DeleteGatewayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1110
1104
|
return [
|
|
1111
1105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1112
1106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1120,9 +1114,7 @@ var DeleteGatewayCommand = _DeleteGatewayCommand;
|
|
|
1120
1114
|
|
|
1121
1115
|
|
|
1122
1116
|
|
|
1123
|
-
var _DeleteHypervisorCommand = class _DeleteHypervisorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1124
|
-
...commonParams
|
|
1125
|
-
}).m(function(Command, cs, config, o) {
|
|
1117
|
+
var _DeleteHypervisorCommand = class _DeleteHypervisorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1126
1118
|
return [
|
|
1127
1119
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1128
1120
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1136,9 +1128,7 @@ var DeleteHypervisorCommand = _DeleteHypervisorCommand;
|
|
|
1136
1128
|
|
|
1137
1129
|
|
|
1138
1130
|
|
|
1139
|
-
var _DisassociateGatewayFromServerCommand = class _DisassociateGatewayFromServerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1140
|
-
...commonParams
|
|
1141
|
-
}).m(function(Command, cs, config, o) {
|
|
1131
|
+
var _DisassociateGatewayFromServerCommand = class _DisassociateGatewayFromServerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1142
1132
|
return [
|
|
1143
1133
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1144
1134
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1152,9 +1142,7 @@ var DisassociateGatewayFromServerCommand = _DisassociateGatewayFromServerCommand
|
|
|
1152
1142
|
|
|
1153
1143
|
|
|
1154
1144
|
|
|
1155
|
-
var _GetBandwidthRateLimitScheduleCommand = class _GetBandwidthRateLimitScheduleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1156
|
-
...commonParams
|
|
1157
|
-
}).m(function(Command, cs, config, o) {
|
|
1145
|
+
var _GetBandwidthRateLimitScheduleCommand = class _GetBandwidthRateLimitScheduleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1158
1146
|
return [
|
|
1159
1147
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1160
1148
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1168,9 +1156,7 @@ var GetBandwidthRateLimitScheduleCommand = _GetBandwidthRateLimitScheduleCommand
|
|
|
1168
1156
|
|
|
1169
1157
|
|
|
1170
1158
|
|
|
1171
|
-
var _GetGatewayCommand = class _GetGatewayCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1172
|
-
...commonParams
|
|
1173
|
-
}).m(function(Command, cs, config, o) {
|
|
1159
|
+
var _GetGatewayCommand = class _GetGatewayCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1174
1160
|
return [
|
|
1175
1161
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1176
1162
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1184,9 +1170,7 @@ var GetGatewayCommand = _GetGatewayCommand;
|
|
|
1184
1170
|
|
|
1185
1171
|
|
|
1186
1172
|
|
|
1187
|
-
var _GetHypervisorCommand = class _GetHypervisorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1188
|
-
...commonParams
|
|
1189
|
-
}).m(function(Command, cs, config, o) {
|
|
1173
|
+
var _GetHypervisorCommand = class _GetHypervisorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1190
1174
|
return [
|
|
1191
1175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1192
1176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1200,9 +1184,7 @@ var GetHypervisorCommand = _GetHypervisorCommand;
|
|
|
1200
1184
|
|
|
1201
1185
|
|
|
1202
1186
|
|
|
1203
|
-
var _GetHypervisorPropertyMappingsCommand = class _GetHypervisorPropertyMappingsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1204
|
-
...commonParams
|
|
1205
|
-
}).m(function(Command, cs, config, o) {
|
|
1187
|
+
var _GetHypervisorPropertyMappingsCommand = class _GetHypervisorPropertyMappingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1206
1188
|
return [
|
|
1207
1189
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1208
1190
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1216,9 +1198,7 @@ var GetHypervisorPropertyMappingsCommand = _GetHypervisorPropertyMappingsCommand
|
|
|
1216
1198
|
|
|
1217
1199
|
|
|
1218
1200
|
|
|
1219
|
-
var _GetVirtualMachineCommand = class _GetVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1220
|
-
...commonParams
|
|
1221
|
-
}).m(function(Command, cs, config, o) {
|
|
1201
|
+
var _GetVirtualMachineCommand = class _GetVirtualMachineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1222
1202
|
return [
|
|
1223
1203
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1224
1204
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1232,9 +1212,7 @@ var GetVirtualMachineCommand = _GetVirtualMachineCommand;
|
|
|
1232
1212
|
|
|
1233
1213
|
|
|
1234
1214
|
|
|
1235
|
-
var _ImportHypervisorConfigurationCommand = class _ImportHypervisorConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1236
|
-
...commonParams
|
|
1237
|
-
}).m(function(Command, cs, config, o) {
|
|
1215
|
+
var _ImportHypervisorConfigurationCommand = class _ImportHypervisorConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1238
1216
|
return [
|
|
1239
1217
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1240
1218
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1248,9 +1226,7 @@ var ImportHypervisorConfigurationCommand = _ImportHypervisorConfigurationCommand
|
|
|
1248
1226
|
|
|
1249
1227
|
|
|
1250
1228
|
|
|
1251
|
-
var _ListGatewaysCommand = class _ListGatewaysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1252
|
-
...commonParams
|
|
1253
|
-
}).m(function(Command, cs, config, o) {
|
|
1229
|
+
var _ListGatewaysCommand = class _ListGatewaysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1254
1230
|
return [
|
|
1255
1231
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1256
1232
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1264,9 +1240,7 @@ var ListGatewaysCommand = _ListGatewaysCommand;
|
|
|
1264
1240
|
|
|
1265
1241
|
|
|
1266
1242
|
|
|
1267
|
-
var _ListHypervisorsCommand = class _ListHypervisorsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1268
|
-
...commonParams
|
|
1269
|
-
}).m(function(Command, cs, config, o) {
|
|
1243
|
+
var _ListHypervisorsCommand = class _ListHypervisorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1270
1244
|
return [
|
|
1271
1245
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1272
1246
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1280,9 +1254,7 @@ var ListHypervisorsCommand = _ListHypervisorsCommand;
|
|
|
1280
1254
|
|
|
1281
1255
|
|
|
1282
1256
|
|
|
1283
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1284
|
-
...commonParams
|
|
1285
|
-
}).m(function(Command, cs, config, o) {
|
|
1257
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1286
1258
|
return [
|
|
1287
1259
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1288
1260
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1296,9 +1268,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
1296
1268
|
|
|
1297
1269
|
|
|
1298
1270
|
|
|
1299
|
-
var _ListVirtualMachinesCommand = class _ListVirtualMachinesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1300
|
-
...commonParams
|
|
1301
|
-
}).m(function(Command, cs, config, o) {
|
|
1271
|
+
var _ListVirtualMachinesCommand = class _ListVirtualMachinesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1302
1272
|
return [
|
|
1303
1273
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1304
1274
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1312,9 +1282,7 @@ var ListVirtualMachinesCommand = _ListVirtualMachinesCommand;
|
|
|
1312
1282
|
|
|
1313
1283
|
|
|
1314
1284
|
|
|
1315
|
-
var _PutBandwidthRateLimitScheduleCommand = class _PutBandwidthRateLimitScheduleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1316
|
-
...commonParams
|
|
1317
|
-
}).m(function(Command, cs, config, o) {
|
|
1285
|
+
var _PutBandwidthRateLimitScheduleCommand = class _PutBandwidthRateLimitScheduleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1318
1286
|
return [
|
|
1319
1287
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1320
1288
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1328,9 +1296,7 @@ var PutBandwidthRateLimitScheduleCommand = _PutBandwidthRateLimitScheduleCommand
|
|
|
1328
1296
|
|
|
1329
1297
|
|
|
1330
1298
|
|
|
1331
|
-
var _PutHypervisorPropertyMappingsCommand = class _PutHypervisorPropertyMappingsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1332
|
-
...commonParams
|
|
1333
|
-
}).m(function(Command, cs, config, o) {
|
|
1299
|
+
var _PutHypervisorPropertyMappingsCommand = class _PutHypervisorPropertyMappingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1334
1300
|
return [
|
|
1335
1301
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1336
1302
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1344,9 +1310,7 @@ var PutHypervisorPropertyMappingsCommand = _PutHypervisorPropertyMappingsCommand
|
|
|
1344
1310
|
|
|
1345
1311
|
|
|
1346
1312
|
|
|
1347
|
-
var _PutMaintenanceStartTimeCommand = class _PutMaintenanceStartTimeCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1348
|
-
...commonParams
|
|
1349
|
-
}).m(function(Command, cs, config, o) {
|
|
1313
|
+
var _PutMaintenanceStartTimeCommand = class _PutMaintenanceStartTimeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1350
1314
|
return [
|
|
1351
1315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1352
1316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1360,9 +1324,7 @@ var PutMaintenanceStartTimeCommand = _PutMaintenanceStartTimeCommand;
|
|
|
1360
1324
|
|
|
1361
1325
|
|
|
1362
1326
|
|
|
1363
|
-
var _StartVirtualMachinesMetadataSyncCommand = class _StartVirtualMachinesMetadataSyncCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1364
|
-
...commonParams
|
|
1365
|
-
}).m(function(Command, cs, config, o) {
|
|
1327
|
+
var _StartVirtualMachinesMetadataSyncCommand = class _StartVirtualMachinesMetadataSyncCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1366
1328
|
return [
|
|
1367
1329
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1368
1330
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1376,9 +1338,7 @@ var StartVirtualMachinesMetadataSyncCommand = _StartVirtualMachinesMetadataSyncC
|
|
|
1376
1338
|
|
|
1377
1339
|
|
|
1378
1340
|
|
|
1379
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1380
|
-
...commonParams
|
|
1381
|
-
}).m(function(Command, cs, config, o) {
|
|
1341
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1382
1342
|
return [
|
|
1383
1343
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1384
1344
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1392,9 +1352,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
1392
1352
|
|
|
1393
1353
|
|
|
1394
1354
|
|
|
1395
|
-
var _TestHypervisorConfigurationCommand = class _TestHypervisorConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1396
|
-
...commonParams
|
|
1397
|
-
}).m(function(Command, cs, config, o) {
|
|
1355
|
+
var _TestHypervisorConfigurationCommand = class _TestHypervisorConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1398
1356
|
return [
|
|
1399
1357
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1400
1358
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1408,9 +1366,7 @@ var TestHypervisorConfigurationCommand = _TestHypervisorConfigurationCommand;
|
|
|
1408
1366
|
|
|
1409
1367
|
|
|
1410
1368
|
|
|
1411
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1412
|
-
...commonParams
|
|
1413
|
-
}).m(function(Command, cs, config, o) {
|
|
1369
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1414
1370
|
return [
|
|
1415
1371
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1416
1372
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1424,9 +1380,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
1424
1380
|
|
|
1425
1381
|
|
|
1426
1382
|
|
|
1427
|
-
var _UpdateGatewayInformationCommand = class _UpdateGatewayInformationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1428
|
-
...commonParams
|
|
1429
|
-
}).m(function(Command, cs, config, o) {
|
|
1383
|
+
var _UpdateGatewayInformationCommand = class _UpdateGatewayInformationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1430
1384
|
return [
|
|
1431
1385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1432
1386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1440,9 +1394,7 @@ var UpdateGatewayInformationCommand = _UpdateGatewayInformationCommand;
|
|
|
1440
1394
|
|
|
1441
1395
|
|
|
1442
1396
|
|
|
1443
|
-
var _UpdateGatewaySoftwareNowCommand = class _UpdateGatewaySoftwareNowCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1444
|
-
...commonParams
|
|
1445
|
-
}).m(function(Command, cs, config, o) {
|
|
1397
|
+
var _UpdateGatewaySoftwareNowCommand = class _UpdateGatewaySoftwareNowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1446
1398
|
return [
|
|
1447
1399
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1448
1400
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1456,9 +1408,7 @@ var UpdateGatewaySoftwareNowCommand = _UpdateGatewaySoftwareNowCommand;
|
|
|
1456
1408
|
|
|
1457
1409
|
|
|
1458
1410
|
|
|
1459
|
-
var _UpdateHypervisorCommand = class _UpdateHypervisorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1460
|
-
...commonParams
|
|
1461
|
-
}).m(function(Command, cs, config, o) {
|
|
1411
|
+
var _UpdateHypervisorCommand = class _UpdateHypervisorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1462
1412
|
return [
|
|
1463
1413
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1464
1414
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_AssociateGatewayToServerCommand, se_AssociateGatewayToServerCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AssociateGatewayToServerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateGatewayCommand, se_CreateGatewayCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateGatewayCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteGatewayCommand, se_DeleteGatewayCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteGatewayCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteHypervisorCommand, se_DeleteHypervisorCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteHypervisorCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DisassociateGatewayFromServerCommand, se_DisassociateGatewayFromServ
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DisassociateGatewayFromServerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetBandwidthRateLimitScheduleCommand, se_GetBandwidthRateLimitSchedu
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetBandwidthRateLimitScheduleCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetGatewayCommand, se_GetGatewayCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetGatewayCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetHypervisorCommand, se_GetHypervisorCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetHypervisorCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetHypervisorPropertyMappingsCommand, se_GetHypervisorPropertyMappin
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetHypervisorPropertyMappingsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetVirtualMachineCommand, se_GetVirtualMachineCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetVirtualMachineCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_ImportHypervisorConfigurationCommand, se_ImportHypervisorConfigurati
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ImportHypervisorConfigurationCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListGatewaysCommand, se_ListGatewaysCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListGatewaysCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListHypervisorsCommand, se_ListHypervisorsCommand } from "../protoco
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListHypervisorsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListTagsForResourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListVirtualMachinesCommand, se_ListVirtualMachinesCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListVirtualMachinesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_PutBandwidthRateLimitScheduleCommand, se_PutBandwidthRateLimitSchedu
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class PutBandwidthRateLimitScheduleCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_PutHypervisorPropertyMappingsCommand, se_PutHypervisorPropertyMappin
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class PutHypervisorPropertyMappingsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_PutMaintenanceStartTimeCommand, se_PutMaintenanceStartTimeCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class PutMaintenanceStartTimeCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_StartVirtualMachinesMetadataSyncCommand, se_StartVirtualMachinesMeta
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class StartVirtualMachinesMetadataSyncCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class TagResourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_TestHypervisorConfigurationCommand, se_TestHypervisorConfigurationCo
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class TestHypervisorConfigurationCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UntagResourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateGatewayInformationCommand, se_UpdateGatewayInformationCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateGatewayInformationCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateGatewaySoftwareNowCommand, se_UpdateGatewaySoftwareNowCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateGatewaySoftwareNowCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdateHypervisorCommand, se_UpdateHypervisorCommand } from "../proto
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateHypervisorCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
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
|
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
10
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -33,6 +34,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
33
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
35
|
}) => import("@smithy/types").EndpointV2;
|
|
35
36
|
tls?: boolean | undefined;
|
|
37
|
+
serviceConfiguredEndpoint?: undefined;
|
|
36
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
apiVersion: string;
|
|
26
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
29
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -61,6 +62,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
61
62
|
}
|
|
62
63
|
) => import("@smithy/types").EndpointV2;
|
|
63
64
|
tls?: boolean | undefined;
|
|
65
|
+
serviceConfiguredEndpoint?: undefined;
|
|
64
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
|
|
66
68
|
credentials?:
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
27
27
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
31
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
32
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
33
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -65,6 +66,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
65
66
|
}
|
|
66
67
|
) => import("@smithy/types").EndpointV2;
|
|
67
68
|
tls?: boolean | undefined;
|
|
69
|
+
serviceConfiguredEndpoint?: undefined;
|
|
68
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
|
|
70
72
|
credentials?:
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
12
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -55,6 +56,7 @@ export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
|
55
56
|
}
|
|
56
57
|
) => import("@smithy/types").EndpointV2;
|
|
57
58
|
tls?: boolean | undefined;
|
|
59
|
+
serviceConfiguredEndpoint?: undefined;
|
|
58
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupGatewayHttpAuthSchemeProvider;
|
|
60
62
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.650.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-backup-gateway",
|
|
@@ -20,43 +20,43 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.650.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.650.0",
|
|
25
|
+
"@aws-sdk/core": "3.649.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.650.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
32
|
+
"@aws-sdk/types": "3.649.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
37
|
+
"@smithy/core": "^2.4.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
39
|
+
"@smithy/hash-node": "^3.0.4",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
50
|
+
"@smithy/types": "^3.4.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.4",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
59
|
+
"@smithy/util-retry": "^3.0.4",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|