@aws-sdk/client-internetmonitor 3.721.0 → 3.723.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 +155 -121
- package/dist-es/InternetMonitorClient.js +1 -0
- package/dist-es/models/models_0.js +30 -30
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -167,7 +167,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
167
167
|
}, "resolveRuntimeExtensions");
|
|
168
168
|
|
|
169
169
|
// src/InternetMonitorClient.ts
|
|
170
|
-
var
|
|
170
|
+
var InternetMonitorClient = class extends import_smithy_client.Client {
|
|
171
|
+
static {
|
|
172
|
+
__name(this, "InternetMonitorClient");
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* The resolved configuration of InternetMonitorClient class. This is resolved and normalized from the {@link InternetMonitorClientConfig | constructor configuration interface}.
|
|
176
|
+
*/
|
|
177
|
+
config;
|
|
171
178
|
constructor(...[configuration]) {
|
|
172
179
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
173
180
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -177,7 +184,7 @@ var _InternetMonitorClient = class _InternetMonitorClient extends import_smithy_
|
|
|
177
184
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
178
185
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
179
186
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
180
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
187
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
181
188
|
super(_config_8);
|
|
182
189
|
this.config = _config_8;
|
|
183
190
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -205,8 +212,6 @@ var _InternetMonitorClient = class _InternetMonitorClient extends import_smithy_
|
|
|
205
212
|
super.destroy();
|
|
206
213
|
}
|
|
207
214
|
};
|
|
208
|
-
__name(_InternetMonitorClient, "InternetMonitorClient");
|
|
209
|
-
var InternetMonitorClient = _InternetMonitorClient;
|
|
210
215
|
|
|
211
216
|
// src/InternetMonitor.ts
|
|
212
217
|
|
|
@@ -224,7 +229,10 @@ var import_uuid = require("uuid");
|
|
|
224
229
|
|
|
225
230
|
// src/models/InternetMonitorServiceException.ts
|
|
226
231
|
|
|
227
|
-
var
|
|
232
|
+
var InternetMonitorServiceException = class _InternetMonitorServiceException extends import_smithy_client.ServiceException {
|
|
233
|
+
static {
|
|
234
|
+
__name(this, "InternetMonitorServiceException");
|
|
235
|
+
}
|
|
228
236
|
/**
|
|
229
237
|
* @internal
|
|
230
238
|
*/
|
|
@@ -233,11 +241,14 @@ var _InternetMonitorServiceException = class _InternetMonitorServiceException ex
|
|
|
233
241
|
Object.setPrototypeOf(this, _InternetMonitorServiceException.prototype);
|
|
234
242
|
}
|
|
235
243
|
};
|
|
236
|
-
__name(_InternetMonitorServiceException, "InternetMonitorServiceException");
|
|
237
|
-
var InternetMonitorServiceException = _InternetMonitorServiceException;
|
|
238
244
|
|
|
239
245
|
// src/models/models_0.ts
|
|
240
|
-
var
|
|
246
|
+
var AccessDeniedException = class _AccessDeniedException extends InternetMonitorServiceException {
|
|
247
|
+
static {
|
|
248
|
+
__name(this, "AccessDeniedException");
|
|
249
|
+
}
|
|
250
|
+
name = "AccessDeniedException";
|
|
251
|
+
$fault = "client";
|
|
241
252
|
/**
|
|
242
253
|
* @internal
|
|
243
254
|
*/
|
|
@@ -247,14 +258,15 @@ var _AccessDeniedException = class _AccessDeniedException extends InternetMonito
|
|
|
247
258
|
$fault: "client",
|
|
248
259
|
...opts
|
|
249
260
|
});
|
|
250
|
-
this.name = "AccessDeniedException";
|
|
251
|
-
this.$fault = "client";
|
|
252
261
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
253
262
|
}
|
|
254
263
|
};
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
264
|
+
var BadRequestException = class _BadRequestException extends InternetMonitorServiceException {
|
|
265
|
+
static {
|
|
266
|
+
__name(this, "BadRequestException");
|
|
267
|
+
}
|
|
268
|
+
name = "BadRequestException";
|
|
269
|
+
$fault = "client";
|
|
258
270
|
/**
|
|
259
271
|
* @internal
|
|
260
272
|
*/
|
|
@@ -264,14 +276,15 @@ var _BadRequestException = class _BadRequestException extends InternetMonitorSer
|
|
|
264
276
|
$fault: "client",
|
|
265
277
|
...opts
|
|
266
278
|
});
|
|
267
|
-
this.name = "BadRequestException";
|
|
268
|
-
this.$fault = "client";
|
|
269
279
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
270
280
|
}
|
|
271
281
|
};
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
282
|
+
var ConflictException = class _ConflictException extends InternetMonitorServiceException {
|
|
283
|
+
static {
|
|
284
|
+
__name(this, "ConflictException");
|
|
285
|
+
}
|
|
286
|
+
name = "ConflictException";
|
|
287
|
+
$fault = "client";
|
|
275
288
|
/**
|
|
276
289
|
* @internal
|
|
277
290
|
*/
|
|
@@ -281,13 +294,9 @@ var _ConflictException = class _ConflictException extends InternetMonitorService
|
|
|
281
294
|
$fault: "client",
|
|
282
295
|
...opts
|
|
283
296
|
});
|
|
284
|
-
this.name = "ConflictException";
|
|
285
|
-
this.$fault = "client";
|
|
286
297
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
287
298
|
}
|
|
288
299
|
};
|
|
289
|
-
__name(_ConflictException, "ConflictException");
|
|
290
|
-
var ConflictException = _ConflictException;
|
|
291
300
|
var LocalHealthEventsConfigStatus = {
|
|
292
301
|
DISABLED: "DISABLED",
|
|
293
302
|
ENABLED: "ENABLED"
|
|
@@ -302,7 +311,13 @@ var MonitorConfigState = {
|
|
|
302
311
|
INACTIVE: "INACTIVE",
|
|
303
312
|
PENDING: "PENDING"
|
|
304
313
|
};
|
|
305
|
-
var
|
|
314
|
+
var InternalServerException = class _InternalServerException extends InternetMonitorServiceException {
|
|
315
|
+
static {
|
|
316
|
+
__name(this, "InternalServerException");
|
|
317
|
+
}
|
|
318
|
+
name = "InternalServerException";
|
|
319
|
+
$fault = "server";
|
|
320
|
+
$retryable = {};
|
|
306
321
|
/**
|
|
307
322
|
* @internal
|
|
308
323
|
*/
|
|
@@ -312,15 +327,15 @@ var _InternalServerException = class _InternalServerException extends InternetMo
|
|
|
312
327
|
$fault: "server",
|
|
313
328
|
...opts
|
|
314
329
|
});
|
|
315
|
-
this.name = "InternalServerException";
|
|
316
|
-
this.$fault = "server";
|
|
317
|
-
this.$retryable = {};
|
|
318
330
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
319
331
|
}
|
|
320
332
|
};
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
333
|
+
var LimitExceededException = class _LimitExceededException extends InternetMonitorServiceException {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "LimitExceededException");
|
|
336
|
+
}
|
|
337
|
+
name = "LimitExceededException";
|
|
338
|
+
$fault = "client";
|
|
324
339
|
/**
|
|
325
340
|
* @internal
|
|
326
341
|
*/
|
|
@@ -330,14 +345,18 @@ var _LimitExceededException = class _LimitExceededException extends InternetMoni
|
|
|
330
345
|
$fault: "client",
|
|
331
346
|
...opts
|
|
332
347
|
});
|
|
333
|
-
this.name = "LimitExceededException";
|
|
334
|
-
this.$fault = "client";
|
|
335
348
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
336
349
|
}
|
|
337
350
|
};
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
351
|
+
var ThrottlingException = class _ThrottlingException extends InternetMonitorServiceException {
|
|
352
|
+
static {
|
|
353
|
+
__name(this, "ThrottlingException");
|
|
354
|
+
}
|
|
355
|
+
name = "ThrottlingException";
|
|
356
|
+
$fault = "client";
|
|
357
|
+
$retryable = {
|
|
358
|
+
throttling: true
|
|
359
|
+
};
|
|
341
360
|
/**
|
|
342
361
|
* @internal
|
|
343
362
|
*/
|
|
@@ -347,17 +366,15 @@ var _ThrottlingException = class _ThrottlingException extends InternetMonitorSer
|
|
|
347
366
|
$fault: "client",
|
|
348
367
|
...opts
|
|
349
368
|
});
|
|
350
|
-
this.name = "ThrottlingException";
|
|
351
|
-
this.$fault = "client";
|
|
352
|
-
this.$retryable = {
|
|
353
|
-
throttling: true
|
|
354
|
-
};
|
|
355
369
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
356
370
|
}
|
|
357
371
|
};
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
372
|
+
var ValidationException = class _ValidationException extends InternetMonitorServiceException {
|
|
373
|
+
static {
|
|
374
|
+
__name(this, "ValidationException");
|
|
375
|
+
}
|
|
376
|
+
name = "ValidationException";
|
|
377
|
+
$fault = "client";
|
|
361
378
|
/**
|
|
362
379
|
* @internal
|
|
363
380
|
*/
|
|
@@ -367,13 +384,9 @@ var _ValidationException = class _ValidationException extends InternetMonitorSer
|
|
|
367
384
|
$fault: "client",
|
|
368
385
|
...opts
|
|
369
386
|
});
|
|
370
|
-
this.name = "ValidationException";
|
|
371
|
-
this.$fault = "client";
|
|
372
387
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
373
388
|
}
|
|
374
389
|
};
|
|
375
|
-
__name(_ValidationException, "ValidationException");
|
|
376
|
-
var ValidationException = _ValidationException;
|
|
377
390
|
var Operator = {
|
|
378
391
|
EQUALS: "EQUALS",
|
|
379
392
|
NOT_EQUALS: "NOT_EQUALS"
|
|
@@ -415,7 +428,13 @@ var QueryStatus = {
|
|
|
415
428
|
RUNNING: "RUNNING",
|
|
416
429
|
SUCCEEDED: "SUCCEEDED"
|
|
417
430
|
};
|
|
418
|
-
var
|
|
431
|
+
var InternalServerErrorException = class _InternalServerErrorException extends InternetMonitorServiceException {
|
|
432
|
+
static {
|
|
433
|
+
__name(this, "InternalServerErrorException");
|
|
434
|
+
}
|
|
435
|
+
name = "InternalServerErrorException";
|
|
436
|
+
$fault = "server";
|
|
437
|
+
$retryable = {};
|
|
419
438
|
/**
|
|
420
439
|
* @internal
|
|
421
440
|
*/
|
|
@@ -425,15 +444,15 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
425
444
|
$fault: "server",
|
|
426
445
|
...opts
|
|
427
446
|
});
|
|
428
|
-
this.name = "InternalServerErrorException";
|
|
429
|
-
this.$fault = "server";
|
|
430
|
-
this.$retryable = {};
|
|
431
447
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
432
448
|
}
|
|
433
449
|
};
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
450
|
+
var NotFoundException = class _NotFoundException extends InternetMonitorServiceException {
|
|
451
|
+
static {
|
|
452
|
+
__name(this, "NotFoundException");
|
|
453
|
+
}
|
|
454
|
+
name = "NotFoundException";
|
|
455
|
+
$fault = "client";
|
|
437
456
|
/**
|
|
438
457
|
* @internal
|
|
439
458
|
*/
|
|
@@ -443,14 +462,18 @@ var _NotFoundException = class _NotFoundException extends InternetMonitorService
|
|
|
443
462
|
$fault: "client",
|
|
444
463
|
...opts
|
|
445
464
|
});
|
|
446
|
-
this.name = "NotFoundException";
|
|
447
|
-
this.$fault = "client";
|
|
448
465
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
449
466
|
}
|
|
450
467
|
};
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
468
|
+
var TooManyRequestsException = class _TooManyRequestsException extends InternetMonitorServiceException {
|
|
469
|
+
static {
|
|
470
|
+
__name(this, "TooManyRequestsException");
|
|
471
|
+
}
|
|
472
|
+
name = "TooManyRequestsException";
|
|
473
|
+
$fault = "client";
|
|
474
|
+
$retryable = {
|
|
475
|
+
throttling: true
|
|
476
|
+
};
|
|
454
477
|
/**
|
|
455
478
|
* @internal
|
|
456
479
|
*/
|
|
@@ -460,16 +483,9 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Internet
|
|
|
460
483
|
$fault: "client",
|
|
461
484
|
...opts
|
|
462
485
|
});
|
|
463
|
-
this.name = "TooManyRequestsException";
|
|
464
|
-
this.$fault = "client";
|
|
465
|
-
this.$retryable = {
|
|
466
|
-
throttling: true
|
|
467
|
-
};
|
|
468
486
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
469
487
|
}
|
|
470
488
|
};
|
|
471
|
-
__name(_TooManyRequestsException, "TooManyRequestsException");
|
|
472
|
-
var TooManyRequestsException = _TooManyRequestsException;
|
|
473
489
|
var QueryType = {
|
|
474
490
|
MEASUREMENTS: "MEASUREMENTS",
|
|
475
491
|
OVERALL_TRAFFIC_SUGGESTIONS: "OVERALL_TRAFFIC_SUGGESTIONS",
|
|
@@ -478,7 +494,12 @@ var QueryType = {
|
|
|
478
494
|
TOP_LOCATIONS: "TOP_LOCATIONS",
|
|
479
495
|
TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS"
|
|
480
496
|
};
|
|
481
|
-
var
|
|
497
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends InternetMonitorServiceException {
|
|
498
|
+
static {
|
|
499
|
+
__name(this, "ResourceNotFoundException");
|
|
500
|
+
}
|
|
501
|
+
name = "ResourceNotFoundException";
|
|
502
|
+
$fault = "client";
|
|
482
503
|
/**
|
|
483
504
|
* @internal
|
|
484
505
|
*/
|
|
@@ -488,13 +509,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Intern
|
|
|
488
509
|
$fault: "client",
|
|
489
510
|
...opts
|
|
490
511
|
});
|
|
491
|
-
this.name = "ResourceNotFoundException";
|
|
492
|
-
this.$fault = "client";
|
|
493
512
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
494
513
|
}
|
|
495
514
|
};
|
|
496
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
497
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
498
515
|
|
|
499
516
|
// src/protocols/Aws_restJson1.ts
|
|
500
517
|
var se_CreateMonitorCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1312,225 +1329,241 @@ var _TK = "TagKeys";
|
|
|
1312
1329
|
var _tK = "tagKeys";
|
|
1313
1330
|
|
|
1314
1331
|
// src/commands/CreateMonitorCommand.ts
|
|
1315
|
-
var
|
|
1332
|
+
var CreateMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1316
1333
|
return [
|
|
1317
1334
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1318
1335
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1319
1336
|
];
|
|
1320
1337
|
}).s("InternetMonitor20210603", "CreateMonitor", {}).n("InternetMonitorClient", "CreateMonitorCommand").f(void 0, void 0).ser(se_CreateMonitorCommand).de(de_CreateMonitorCommand).build() {
|
|
1338
|
+
static {
|
|
1339
|
+
__name(this, "CreateMonitorCommand");
|
|
1340
|
+
}
|
|
1321
1341
|
};
|
|
1322
|
-
__name(_CreateMonitorCommand, "CreateMonitorCommand");
|
|
1323
|
-
var CreateMonitorCommand = _CreateMonitorCommand;
|
|
1324
1342
|
|
|
1325
1343
|
// src/commands/DeleteMonitorCommand.ts
|
|
1326
1344
|
|
|
1327
1345
|
|
|
1328
1346
|
|
|
1329
|
-
var
|
|
1347
|
+
var DeleteMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1330
1348
|
return [
|
|
1331
1349
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1332
1350
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1333
1351
|
];
|
|
1334
1352
|
}).s("InternetMonitor20210603", "DeleteMonitor", {}).n("InternetMonitorClient", "DeleteMonitorCommand").f(void 0, void 0).ser(se_DeleteMonitorCommand).de(de_DeleteMonitorCommand).build() {
|
|
1353
|
+
static {
|
|
1354
|
+
__name(this, "DeleteMonitorCommand");
|
|
1355
|
+
}
|
|
1335
1356
|
};
|
|
1336
|
-
__name(_DeleteMonitorCommand, "DeleteMonitorCommand");
|
|
1337
|
-
var DeleteMonitorCommand = _DeleteMonitorCommand;
|
|
1338
1357
|
|
|
1339
1358
|
// src/commands/GetHealthEventCommand.ts
|
|
1340
1359
|
|
|
1341
1360
|
|
|
1342
1361
|
|
|
1343
|
-
var
|
|
1362
|
+
var GetHealthEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1344
1363
|
return [
|
|
1345
1364
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1346
1365
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1347
1366
|
];
|
|
1348
1367
|
}).s("InternetMonitor20210603", "GetHealthEvent", {}).n("InternetMonitorClient", "GetHealthEventCommand").f(void 0, void 0).ser(se_GetHealthEventCommand).de(de_GetHealthEventCommand).build() {
|
|
1368
|
+
static {
|
|
1369
|
+
__name(this, "GetHealthEventCommand");
|
|
1370
|
+
}
|
|
1349
1371
|
};
|
|
1350
|
-
__name(_GetHealthEventCommand, "GetHealthEventCommand");
|
|
1351
|
-
var GetHealthEventCommand = _GetHealthEventCommand;
|
|
1352
1372
|
|
|
1353
1373
|
// src/commands/GetInternetEventCommand.ts
|
|
1354
1374
|
|
|
1355
1375
|
|
|
1356
1376
|
|
|
1357
|
-
var
|
|
1377
|
+
var GetInternetEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1358
1378
|
return [
|
|
1359
1379
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1360
1380
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1361
1381
|
];
|
|
1362
1382
|
}).s("InternetMonitor20210603", "GetInternetEvent", {}).n("InternetMonitorClient", "GetInternetEventCommand").f(void 0, void 0).ser(se_GetInternetEventCommand).de(de_GetInternetEventCommand).build() {
|
|
1383
|
+
static {
|
|
1384
|
+
__name(this, "GetInternetEventCommand");
|
|
1385
|
+
}
|
|
1363
1386
|
};
|
|
1364
|
-
__name(_GetInternetEventCommand, "GetInternetEventCommand");
|
|
1365
|
-
var GetInternetEventCommand = _GetInternetEventCommand;
|
|
1366
1387
|
|
|
1367
1388
|
// src/commands/GetMonitorCommand.ts
|
|
1368
1389
|
|
|
1369
1390
|
|
|
1370
1391
|
|
|
1371
|
-
var
|
|
1392
|
+
var GetMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1372
1393
|
return [
|
|
1373
1394
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1374
1395
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1375
1396
|
];
|
|
1376
1397
|
}).s("InternetMonitor20210603", "GetMonitor", {}).n("InternetMonitorClient", "GetMonitorCommand").f(void 0, void 0).ser(se_GetMonitorCommand).de(de_GetMonitorCommand).build() {
|
|
1398
|
+
static {
|
|
1399
|
+
__name(this, "GetMonitorCommand");
|
|
1400
|
+
}
|
|
1377
1401
|
};
|
|
1378
|
-
__name(_GetMonitorCommand, "GetMonitorCommand");
|
|
1379
|
-
var GetMonitorCommand = _GetMonitorCommand;
|
|
1380
1402
|
|
|
1381
1403
|
// src/commands/GetQueryResultsCommand.ts
|
|
1382
1404
|
|
|
1383
1405
|
|
|
1384
1406
|
|
|
1385
|
-
var
|
|
1407
|
+
var GetQueryResultsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1386
1408
|
return [
|
|
1387
1409
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1388
1410
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1389
1411
|
];
|
|
1390
1412
|
}).s("InternetMonitor20210603", "GetQueryResults", {}).n("InternetMonitorClient", "GetQueryResultsCommand").f(void 0, void 0).ser(se_GetQueryResultsCommand).de(de_GetQueryResultsCommand).build() {
|
|
1413
|
+
static {
|
|
1414
|
+
__name(this, "GetQueryResultsCommand");
|
|
1415
|
+
}
|
|
1391
1416
|
};
|
|
1392
|
-
__name(_GetQueryResultsCommand, "GetQueryResultsCommand");
|
|
1393
|
-
var GetQueryResultsCommand = _GetQueryResultsCommand;
|
|
1394
1417
|
|
|
1395
1418
|
// src/commands/GetQueryStatusCommand.ts
|
|
1396
1419
|
|
|
1397
1420
|
|
|
1398
1421
|
|
|
1399
|
-
var
|
|
1422
|
+
var GetQueryStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1400
1423
|
return [
|
|
1401
1424
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1402
1425
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1403
1426
|
];
|
|
1404
1427
|
}).s("InternetMonitor20210603", "GetQueryStatus", {}).n("InternetMonitorClient", "GetQueryStatusCommand").f(void 0, void 0).ser(se_GetQueryStatusCommand).de(de_GetQueryStatusCommand).build() {
|
|
1428
|
+
static {
|
|
1429
|
+
__name(this, "GetQueryStatusCommand");
|
|
1430
|
+
}
|
|
1405
1431
|
};
|
|
1406
|
-
__name(_GetQueryStatusCommand, "GetQueryStatusCommand");
|
|
1407
|
-
var GetQueryStatusCommand = _GetQueryStatusCommand;
|
|
1408
1432
|
|
|
1409
1433
|
// src/commands/ListHealthEventsCommand.ts
|
|
1410
1434
|
|
|
1411
1435
|
|
|
1412
1436
|
|
|
1413
|
-
var
|
|
1437
|
+
var ListHealthEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1414
1438
|
return [
|
|
1415
1439
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1416
1440
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1417
1441
|
];
|
|
1418
1442
|
}).s("InternetMonitor20210603", "ListHealthEvents", {}).n("InternetMonitorClient", "ListHealthEventsCommand").f(void 0, void 0).ser(se_ListHealthEventsCommand).de(de_ListHealthEventsCommand).build() {
|
|
1443
|
+
static {
|
|
1444
|
+
__name(this, "ListHealthEventsCommand");
|
|
1445
|
+
}
|
|
1419
1446
|
};
|
|
1420
|
-
__name(_ListHealthEventsCommand, "ListHealthEventsCommand");
|
|
1421
|
-
var ListHealthEventsCommand = _ListHealthEventsCommand;
|
|
1422
1447
|
|
|
1423
1448
|
// src/commands/ListInternetEventsCommand.ts
|
|
1424
1449
|
|
|
1425
1450
|
|
|
1426
1451
|
|
|
1427
|
-
var
|
|
1452
|
+
var ListInternetEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1428
1453
|
return [
|
|
1429
1454
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1430
1455
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1431
1456
|
];
|
|
1432
1457
|
}).s("InternetMonitor20210603", "ListInternetEvents", {}).n("InternetMonitorClient", "ListInternetEventsCommand").f(void 0, void 0).ser(se_ListInternetEventsCommand).de(de_ListInternetEventsCommand).build() {
|
|
1458
|
+
static {
|
|
1459
|
+
__name(this, "ListInternetEventsCommand");
|
|
1460
|
+
}
|
|
1433
1461
|
};
|
|
1434
|
-
__name(_ListInternetEventsCommand, "ListInternetEventsCommand");
|
|
1435
|
-
var ListInternetEventsCommand = _ListInternetEventsCommand;
|
|
1436
1462
|
|
|
1437
1463
|
// src/commands/ListMonitorsCommand.ts
|
|
1438
1464
|
|
|
1439
1465
|
|
|
1440
1466
|
|
|
1441
|
-
var
|
|
1467
|
+
var ListMonitorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1442
1468
|
return [
|
|
1443
1469
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1444
1470
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1445
1471
|
];
|
|
1446
1472
|
}).s("InternetMonitor20210603", "ListMonitors", {}).n("InternetMonitorClient", "ListMonitorsCommand").f(void 0, void 0).ser(se_ListMonitorsCommand).de(de_ListMonitorsCommand).build() {
|
|
1473
|
+
static {
|
|
1474
|
+
__name(this, "ListMonitorsCommand");
|
|
1475
|
+
}
|
|
1447
1476
|
};
|
|
1448
|
-
__name(_ListMonitorsCommand, "ListMonitorsCommand");
|
|
1449
|
-
var ListMonitorsCommand = _ListMonitorsCommand;
|
|
1450
1477
|
|
|
1451
1478
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1452
1479
|
|
|
1453
1480
|
|
|
1454
1481
|
|
|
1455
|
-
var
|
|
1482
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1456
1483
|
return [
|
|
1457
1484
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1458
1485
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1459
1486
|
];
|
|
1460
1487
|
}).s("InternetMonitor20210603", "ListTagsForResource", {}).n("InternetMonitorClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1488
|
+
static {
|
|
1489
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1490
|
+
}
|
|
1461
1491
|
};
|
|
1462
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1463
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1464
1492
|
|
|
1465
1493
|
// src/commands/StartQueryCommand.ts
|
|
1466
1494
|
|
|
1467
1495
|
|
|
1468
1496
|
|
|
1469
|
-
var
|
|
1497
|
+
var StartQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1470
1498
|
return [
|
|
1471
1499
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1472
1500
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1473
1501
|
];
|
|
1474
1502
|
}).s("InternetMonitor20210603", "StartQuery", {}).n("InternetMonitorClient", "StartQueryCommand").f(void 0, void 0).ser(se_StartQueryCommand).de(de_StartQueryCommand).build() {
|
|
1503
|
+
static {
|
|
1504
|
+
__name(this, "StartQueryCommand");
|
|
1505
|
+
}
|
|
1475
1506
|
};
|
|
1476
|
-
__name(_StartQueryCommand, "StartQueryCommand");
|
|
1477
|
-
var StartQueryCommand = _StartQueryCommand;
|
|
1478
1507
|
|
|
1479
1508
|
// src/commands/StopQueryCommand.ts
|
|
1480
1509
|
|
|
1481
1510
|
|
|
1482
1511
|
|
|
1483
|
-
var
|
|
1512
|
+
var StopQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1484
1513
|
return [
|
|
1485
1514
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1486
1515
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1487
1516
|
];
|
|
1488
1517
|
}).s("InternetMonitor20210603", "StopQuery", {}).n("InternetMonitorClient", "StopQueryCommand").f(void 0, void 0).ser(se_StopQueryCommand).de(de_StopQueryCommand).build() {
|
|
1518
|
+
static {
|
|
1519
|
+
__name(this, "StopQueryCommand");
|
|
1520
|
+
}
|
|
1489
1521
|
};
|
|
1490
|
-
__name(_StopQueryCommand, "StopQueryCommand");
|
|
1491
|
-
var StopQueryCommand = _StopQueryCommand;
|
|
1492
1522
|
|
|
1493
1523
|
// src/commands/TagResourceCommand.ts
|
|
1494
1524
|
|
|
1495
1525
|
|
|
1496
1526
|
|
|
1497
|
-
var
|
|
1527
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1498
1528
|
return [
|
|
1499
1529
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1500
1530
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1501
1531
|
];
|
|
1502
1532
|
}).s("InternetMonitor20210603", "TagResource", {}).n("InternetMonitorClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1533
|
+
static {
|
|
1534
|
+
__name(this, "TagResourceCommand");
|
|
1535
|
+
}
|
|
1503
1536
|
};
|
|
1504
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1505
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1506
1537
|
|
|
1507
1538
|
// src/commands/UntagResourceCommand.ts
|
|
1508
1539
|
|
|
1509
1540
|
|
|
1510
1541
|
|
|
1511
|
-
var
|
|
1542
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1512
1543
|
return [
|
|
1513
1544
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1514
1545
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1515
1546
|
];
|
|
1516
1547
|
}).s("InternetMonitor20210603", "UntagResource", {}).n("InternetMonitorClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1548
|
+
static {
|
|
1549
|
+
__name(this, "UntagResourceCommand");
|
|
1550
|
+
}
|
|
1517
1551
|
};
|
|
1518
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1519
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1520
1552
|
|
|
1521
1553
|
// src/commands/UpdateMonitorCommand.ts
|
|
1522
1554
|
|
|
1523
1555
|
|
|
1524
1556
|
|
|
1525
|
-
var
|
|
1557
|
+
var UpdateMonitorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1526
1558
|
return [
|
|
1527
1559
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1528
1560
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1529
1561
|
];
|
|
1530
1562
|
}).s("InternetMonitor20210603", "UpdateMonitor", {}).n("InternetMonitorClient", "UpdateMonitorCommand").f(void 0, void 0).ser(se_UpdateMonitorCommand).de(de_UpdateMonitorCommand).build() {
|
|
1563
|
+
static {
|
|
1564
|
+
__name(this, "UpdateMonitorCommand");
|
|
1565
|
+
}
|
|
1531
1566
|
};
|
|
1532
|
-
__name(_UpdateMonitorCommand, "UpdateMonitorCommand");
|
|
1533
|
-
var UpdateMonitorCommand = _UpdateMonitorCommand;
|
|
1534
1567
|
|
|
1535
1568
|
// src/InternetMonitor.ts
|
|
1536
1569
|
var commands = {
|
|
@@ -1551,10 +1584,11 @@ var commands = {
|
|
|
1551
1584
|
UntagResourceCommand,
|
|
1552
1585
|
UpdateMonitorCommand
|
|
1553
1586
|
};
|
|
1554
|
-
var
|
|
1587
|
+
var InternetMonitor = class extends InternetMonitorClient {
|
|
1588
|
+
static {
|
|
1589
|
+
__name(this, "InternetMonitor");
|
|
1590
|
+
}
|
|
1555
1591
|
};
|
|
1556
|
-
__name(_InternetMonitor, "InternetMonitor");
|
|
1557
|
-
var InternetMonitor = _InternetMonitor;
|
|
1558
1592
|
(0, import_smithy_client.createAggregatedClient)(commands, InternetMonitor);
|
|
1559
1593
|
|
|
1560
1594
|
// src/pagination/GetQueryResultsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class InternetMonitorClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
import { InternetMonitorServiceException as __BaseException } from "./InternetMonitorServiceException";
|
|
2
2
|
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "AccessDeniedException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "AccessDeniedException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export class BadRequestException extends __BaseException {
|
|
15
|
+
name = "BadRequestException";
|
|
16
|
+
$fault = "client";
|
|
15
17
|
constructor(opts) {
|
|
16
18
|
super({
|
|
17
19
|
name: "BadRequestException",
|
|
18
20
|
$fault: "client",
|
|
19
21
|
...opts,
|
|
20
22
|
});
|
|
21
|
-
this.name = "BadRequestException";
|
|
22
|
-
this.$fault = "client";
|
|
23
23
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
export class ConflictException extends __BaseException {
|
|
27
|
+
name = "ConflictException";
|
|
28
|
+
$fault = "client";
|
|
27
29
|
constructor(opts) {
|
|
28
30
|
super({
|
|
29
31
|
name: "ConflictException",
|
|
30
32
|
$fault: "client",
|
|
31
33
|
...opts,
|
|
32
34
|
});
|
|
33
|
-
this.name = "ConflictException";
|
|
34
|
-
this.$fault = "client";
|
|
35
35
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -50,54 +50,54 @@ export const MonitorConfigState = {
|
|
|
50
50
|
PENDING: "PENDING",
|
|
51
51
|
};
|
|
52
52
|
export class InternalServerException extends __BaseException {
|
|
53
|
+
name = "InternalServerException";
|
|
54
|
+
$fault = "server";
|
|
55
|
+
$retryable = {};
|
|
53
56
|
constructor(opts) {
|
|
54
57
|
super({
|
|
55
58
|
name: "InternalServerException",
|
|
56
59
|
$fault: "server",
|
|
57
60
|
...opts,
|
|
58
61
|
});
|
|
59
|
-
this.name = "InternalServerException";
|
|
60
|
-
this.$fault = "server";
|
|
61
|
-
this.$retryable = {};
|
|
62
62
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
export class LimitExceededException extends __BaseException {
|
|
66
|
+
name = "LimitExceededException";
|
|
67
|
+
$fault = "client";
|
|
66
68
|
constructor(opts) {
|
|
67
69
|
super({
|
|
68
70
|
name: "LimitExceededException",
|
|
69
71
|
$fault: "client",
|
|
70
72
|
...opts,
|
|
71
73
|
});
|
|
72
|
-
this.name = "LimitExceededException";
|
|
73
|
-
this.$fault = "client";
|
|
74
74
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
export class ThrottlingException extends __BaseException {
|
|
78
|
+
name = "ThrottlingException";
|
|
79
|
+
$fault = "client";
|
|
80
|
+
$retryable = {
|
|
81
|
+
throttling: true,
|
|
82
|
+
};
|
|
78
83
|
constructor(opts) {
|
|
79
84
|
super({
|
|
80
85
|
name: "ThrottlingException",
|
|
81
86
|
$fault: "client",
|
|
82
87
|
...opts,
|
|
83
88
|
});
|
|
84
|
-
this.name = "ThrottlingException";
|
|
85
|
-
this.$fault = "client";
|
|
86
|
-
this.$retryable = {
|
|
87
|
-
throttling: true,
|
|
88
|
-
};
|
|
89
89
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
export class ValidationException extends __BaseException {
|
|
93
|
+
name = "ValidationException";
|
|
94
|
+
$fault = "client";
|
|
93
95
|
constructor(opts) {
|
|
94
96
|
super({
|
|
95
97
|
name: "ValidationException",
|
|
96
98
|
$fault: "client",
|
|
97
99
|
...opts,
|
|
98
100
|
});
|
|
99
|
-
this.name = "ValidationException";
|
|
100
|
-
this.$fault = "client";
|
|
101
101
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
102
102
|
}
|
|
103
103
|
}
|
|
@@ -143,42 +143,42 @@ export const QueryStatus = {
|
|
|
143
143
|
SUCCEEDED: "SUCCEEDED",
|
|
144
144
|
};
|
|
145
145
|
export class InternalServerErrorException extends __BaseException {
|
|
146
|
+
name = "InternalServerErrorException";
|
|
147
|
+
$fault = "server";
|
|
148
|
+
$retryable = {};
|
|
146
149
|
constructor(opts) {
|
|
147
150
|
super({
|
|
148
151
|
name: "InternalServerErrorException",
|
|
149
152
|
$fault: "server",
|
|
150
153
|
...opts,
|
|
151
154
|
});
|
|
152
|
-
this.name = "InternalServerErrorException";
|
|
153
|
-
this.$fault = "server";
|
|
154
|
-
this.$retryable = {};
|
|
155
155
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
export class NotFoundException extends __BaseException {
|
|
159
|
+
name = "NotFoundException";
|
|
160
|
+
$fault = "client";
|
|
159
161
|
constructor(opts) {
|
|
160
162
|
super({
|
|
161
163
|
name: "NotFoundException",
|
|
162
164
|
$fault: "client",
|
|
163
165
|
...opts,
|
|
164
166
|
});
|
|
165
|
-
this.name = "NotFoundException";
|
|
166
|
-
this.$fault = "client";
|
|
167
167
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
export class TooManyRequestsException extends __BaseException {
|
|
171
|
+
name = "TooManyRequestsException";
|
|
172
|
+
$fault = "client";
|
|
173
|
+
$retryable = {
|
|
174
|
+
throttling: true,
|
|
175
|
+
};
|
|
171
176
|
constructor(opts) {
|
|
172
177
|
super({
|
|
173
178
|
name: "TooManyRequestsException",
|
|
174
179
|
$fault: "client",
|
|
175
180
|
...opts,
|
|
176
181
|
});
|
|
177
|
-
this.name = "TooManyRequestsException";
|
|
178
|
-
this.$fault = "client";
|
|
179
|
-
this.$retryable = {
|
|
180
|
-
throttling: true,
|
|
181
|
-
};
|
|
182
182
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
183
183
|
}
|
|
184
184
|
}
|
|
@@ -191,14 +191,14 @@ export const QueryType = {
|
|
|
191
191
|
TOP_LOCATION_DETAILS: "TOP_LOCATION_DETAILS",
|
|
192
192
|
};
|
|
193
193
|
export class ResourceNotFoundException extends __BaseException {
|
|
194
|
+
name = "ResourceNotFoundException";
|
|
195
|
+
$fault = "client";
|
|
194
196
|
constructor(opts) {
|
|
195
197
|
super({
|
|
196
198
|
name: "ResourceNotFoundException",
|
|
197
199
|
$fault: "client",
|
|
198
200
|
...opts,
|
|
199
201
|
});
|
|
200
|
-
this.name = "ResourceNotFoundException";
|
|
201
|
-
this.$fault = "client";
|
|
202
202
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
203
203
|
}
|
|
204
204
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: InternetMonitorClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: InternetMonitorClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: InternetMonitorClientConfig) =>
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: InternetMonitorClientConfig) =>
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
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;
|
|
34
|
+
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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-internetmonitor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Internetmonitor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.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-internetmonitor",
|
|
@@ -20,58 +20,58 @@
|
|
|
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": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|