@aws-sdk/client-application-discovery-service 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 +189 -144
- package/dist-es/ApplicationDiscoveryServiceClient.js +1 -0
- package/dist-es/models/models_0.js +20 -20
- 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
|
@@ -191,7 +191,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
191
191
|
}, "resolveRuntimeExtensions");
|
|
192
192
|
|
|
193
193
|
// src/ApplicationDiscoveryServiceClient.ts
|
|
194
|
-
var
|
|
194
|
+
var ApplicationDiscoveryServiceClient = class extends import_smithy_client.Client {
|
|
195
|
+
static {
|
|
196
|
+
__name(this, "ApplicationDiscoveryServiceClient");
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* The resolved configuration of ApplicationDiscoveryServiceClient class. This is resolved and normalized from the {@link ApplicationDiscoveryServiceClientConfig | constructor configuration interface}.
|
|
200
|
+
*/
|
|
201
|
+
config;
|
|
195
202
|
constructor(...[configuration]) {
|
|
196
203
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
197
204
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -201,7 +208,7 @@ var _ApplicationDiscoveryServiceClient = class _ApplicationDiscoveryServiceClien
|
|
|
201
208
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
202
209
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
203
210
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
204
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
211
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
205
212
|
super(_config_8);
|
|
206
213
|
this.config = _config_8;
|
|
207
214
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -229,8 +236,6 @@ var _ApplicationDiscoveryServiceClient = class _ApplicationDiscoveryServiceClien
|
|
|
229
236
|
super.destroy();
|
|
230
237
|
}
|
|
231
238
|
};
|
|
232
|
-
__name(_ApplicationDiscoveryServiceClient, "ApplicationDiscoveryServiceClient");
|
|
233
|
-
var ApplicationDiscoveryServiceClient = _ApplicationDiscoveryServiceClient;
|
|
234
239
|
|
|
235
240
|
// src/ApplicationDiscoveryService.ts
|
|
236
241
|
|
|
@@ -248,7 +253,10 @@ var import_uuid = require("uuid");
|
|
|
248
253
|
|
|
249
254
|
// src/models/ApplicationDiscoveryServiceServiceException.ts
|
|
250
255
|
|
|
251
|
-
var
|
|
256
|
+
var ApplicationDiscoveryServiceServiceException = class _ApplicationDiscoveryServiceServiceException extends import_smithy_client.ServiceException {
|
|
257
|
+
static {
|
|
258
|
+
__name(this, "ApplicationDiscoveryServiceServiceException");
|
|
259
|
+
}
|
|
252
260
|
/**
|
|
253
261
|
* @internal
|
|
254
262
|
*/
|
|
@@ -257,8 +265,6 @@ var _ApplicationDiscoveryServiceServiceException = class _ApplicationDiscoverySe
|
|
|
257
265
|
Object.setPrototypeOf(this, _ApplicationDiscoveryServiceServiceException.prototype);
|
|
258
266
|
}
|
|
259
267
|
};
|
|
260
|
-
__name(_ApplicationDiscoveryServiceServiceException, "ApplicationDiscoveryServiceServiceException");
|
|
261
|
-
var ApplicationDiscoveryServiceServiceException = _ApplicationDiscoveryServiceServiceException;
|
|
262
268
|
|
|
263
269
|
// src/models/models_0.ts
|
|
264
270
|
|
|
@@ -270,7 +276,12 @@ var AgentStatus = {
|
|
|
270
276
|
UNHEALTHY: "UNHEALTHY",
|
|
271
277
|
UNKNOWN: "UNKNOWN"
|
|
272
278
|
};
|
|
273
|
-
var
|
|
279
|
+
var AuthorizationErrorException = class _AuthorizationErrorException extends ApplicationDiscoveryServiceServiceException {
|
|
280
|
+
static {
|
|
281
|
+
__name(this, "AuthorizationErrorException");
|
|
282
|
+
}
|
|
283
|
+
name = "AuthorizationErrorException";
|
|
284
|
+
$fault = "client";
|
|
274
285
|
/**
|
|
275
286
|
* @internal
|
|
276
287
|
*/
|
|
@@ -280,14 +291,15 @@ var _AuthorizationErrorException = class _AuthorizationErrorException extends Ap
|
|
|
280
291
|
$fault: "client",
|
|
281
292
|
...opts
|
|
282
293
|
});
|
|
283
|
-
this.name = "AuthorizationErrorException";
|
|
284
|
-
this.$fault = "client";
|
|
285
294
|
Object.setPrototypeOf(this, _AuthorizationErrorException.prototype);
|
|
286
295
|
}
|
|
287
296
|
};
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
297
|
+
var HomeRegionNotSetException = class _HomeRegionNotSetException extends ApplicationDiscoveryServiceServiceException {
|
|
298
|
+
static {
|
|
299
|
+
__name(this, "HomeRegionNotSetException");
|
|
300
|
+
}
|
|
301
|
+
name = "HomeRegionNotSetException";
|
|
302
|
+
$fault = "client";
|
|
291
303
|
/**
|
|
292
304
|
* @internal
|
|
293
305
|
*/
|
|
@@ -297,14 +309,15 @@ var _HomeRegionNotSetException = class _HomeRegionNotSetException extends Applic
|
|
|
297
309
|
$fault: "client",
|
|
298
310
|
...opts
|
|
299
311
|
});
|
|
300
|
-
this.name = "HomeRegionNotSetException";
|
|
301
|
-
this.$fault = "client";
|
|
302
312
|
Object.setPrototypeOf(this, _HomeRegionNotSetException.prototype);
|
|
303
313
|
}
|
|
304
314
|
};
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
315
|
+
var InvalidParameterException = class _InvalidParameterException extends ApplicationDiscoveryServiceServiceException {
|
|
316
|
+
static {
|
|
317
|
+
__name(this, "InvalidParameterException");
|
|
318
|
+
}
|
|
319
|
+
name = "InvalidParameterException";
|
|
320
|
+
$fault = "client";
|
|
308
321
|
/**
|
|
309
322
|
* @internal
|
|
310
323
|
*/
|
|
@@ -314,14 +327,15 @@ var _InvalidParameterException = class _InvalidParameterException extends Applic
|
|
|
314
327
|
$fault: "client",
|
|
315
328
|
...opts
|
|
316
329
|
});
|
|
317
|
-
this.name = "InvalidParameterException";
|
|
318
|
-
this.$fault = "client";
|
|
319
330
|
Object.setPrototypeOf(this, _InvalidParameterException.prototype);
|
|
320
331
|
}
|
|
321
332
|
};
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
333
|
+
var InvalidParameterValueException = class _InvalidParameterValueException extends ApplicationDiscoveryServiceServiceException {
|
|
334
|
+
static {
|
|
335
|
+
__name(this, "InvalidParameterValueException");
|
|
336
|
+
}
|
|
337
|
+
name = "InvalidParameterValueException";
|
|
338
|
+
$fault = "client";
|
|
325
339
|
/**
|
|
326
340
|
* @internal
|
|
327
341
|
*/
|
|
@@ -331,14 +345,15 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
331
345
|
$fault: "client",
|
|
332
346
|
...opts
|
|
333
347
|
});
|
|
334
|
-
this.name = "InvalidParameterValueException";
|
|
335
|
-
this.$fault = "client";
|
|
336
348
|
Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
|
|
337
349
|
}
|
|
338
350
|
};
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
351
|
+
var ServerInternalErrorException = class _ServerInternalErrorException extends ApplicationDiscoveryServiceServiceException {
|
|
352
|
+
static {
|
|
353
|
+
__name(this, "ServerInternalErrorException");
|
|
354
|
+
}
|
|
355
|
+
name = "ServerInternalErrorException";
|
|
356
|
+
$fault = "server";
|
|
342
357
|
/**
|
|
343
358
|
* @internal
|
|
344
359
|
*/
|
|
@@ -348,13 +363,9 @@ var _ServerInternalErrorException = class _ServerInternalErrorException extends
|
|
|
348
363
|
$fault: "server",
|
|
349
364
|
...opts
|
|
350
365
|
});
|
|
351
|
-
this.name = "ServerInternalErrorException";
|
|
352
|
-
this.$fault = "server";
|
|
353
366
|
Object.setPrototypeOf(this, _ServerInternalErrorException.prototype);
|
|
354
367
|
}
|
|
355
368
|
};
|
|
356
|
-
__name(_ServerInternalErrorException, "ServerInternalErrorException");
|
|
357
|
-
var ServerInternalErrorException = _ServerInternalErrorException;
|
|
358
369
|
var DeleteAgentErrorCode = {
|
|
359
370
|
AGENT_IN_USE: "AGENT_IN_USE",
|
|
360
371
|
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
@@ -365,7 +376,12 @@ var BatchDeleteImportDataErrorCode = {
|
|
|
365
376
|
NOT_FOUND: "NOT_FOUND",
|
|
366
377
|
OVER_LIMIT: "OVER_LIMIT"
|
|
367
378
|
};
|
|
368
|
-
var
|
|
379
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ApplicationDiscoveryServiceServiceException {
|
|
380
|
+
static {
|
|
381
|
+
__name(this, "ResourceNotFoundException");
|
|
382
|
+
}
|
|
383
|
+
name = "ResourceNotFoundException";
|
|
384
|
+
$fault = "client";
|
|
369
385
|
/**
|
|
370
386
|
* @internal
|
|
371
387
|
*/
|
|
@@ -375,13 +391,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Applic
|
|
|
375
391
|
$fault: "client",
|
|
376
392
|
...opts
|
|
377
393
|
});
|
|
378
|
-
this.name = "ResourceNotFoundException";
|
|
379
|
-
this.$fault = "client";
|
|
380
394
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
381
395
|
}
|
|
382
396
|
};
|
|
383
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
384
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
385
397
|
var DeletionConfigurationItemType = {
|
|
386
398
|
SERVER: "SERVER"
|
|
387
399
|
};
|
|
@@ -404,7 +416,12 @@ var ContinuousExportStatus = {
|
|
|
404
416
|
STOP_FAILED: "STOP_FAILED",
|
|
405
417
|
STOP_IN_PROGRESS: "STOP_IN_PROGRESS"
|
|
406
418
|
};
|
|
407
|
-
var
|
|
419
|
+
var OperationNotPermittedException = class _OperationNotPermittedException extends ApplicationDiscoveryServiceServiceException {
|
|
420
|
+
static {
|
|
421
|
+
__name(this, "OperationNotPermittedException");
|
|
422
|
+
}
|
|
423
|
+
name = "OperationNotPermittedException";
|
|
424
|
+
$fault = "client";
|
|
408
425
|
/**
|
|
409
426
|
* @internal
|
|
410
427
|
*/
|
|
@@ -414,13 +431,9 @@ var _OperationNotPermittedException = class _OperationNotPermittedException exte
|
|
|
414
431
|
$fault: "client",
|
|
415
432
|
...opts
|
|
416
433
|
});
|
|
417
|
-
this.name = "OperationNotPermittedException";
|
|
418
|
-
this.$fault = "client";
|
|
419
434
|
Object.setPrototypeOf(this, _OperationNotPermittedException.prototype);
|
|
420
435
|
}
|
|
421
436
|
};
|
|
422
|
-
__name(_OperationNotPermittedException, "OperationNotPermittedException");
|
|
423
|
-
var OperationNotPermittedException = _OperationNotPermittedException;
|
|
424
437
|
var ExportStatus = {
|
|
425
438
|
FAILED: "FAILED",
|
|
426
439
|
IN_PROGRESS: "IN_PROGRESS",
|
|
@@ -462,7 +475,12 @@ var OrderString = {
|
|
|
462
475
|
ASC: "ASC",
|
|
463
476
|
DESC: "DESC"
|
|
464
477
|
};
|
|
465
|
-
var
|
|
478
|
+
var LimitExceededException = class _LimitExceededException extends ApplicationDiscoveryServiceServiceException {
|
|
479
|
+
static {
|
|
480
|
+
__name(this, "LimitExceededException");
|
|
481
|
+
}
|
|
482
|
+
name = "LimitExceededException";
|
|
483
|
+
$fault = "client";
|
|
466
484
|
/**
|
|
467
485
|
* @internal
|
|
468
486
|
*/
|
|
@@ -472,14 +490,15 @@ var _LimitExceededException = class _LimitExceededException extends ApplicationD
|
|
|
472
490
|
$fault: "client",
|
|
473
491
|
...opts
|
|
474
492
|
});
|
|
475
|
-
this.name = "LimitExceededException";
|
|
476
|
-
this.$fault = "client";
|
|
477
493
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
478
494
|
}
|
|
479
495
|
};
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
496
|
+
var ConflictErrorException = class _ConflictErrorException extends ApplicationDiscoveryServiceServiceException {
|
|
497
|
+
static {
|
|
498
|
+
__name(this, "ConflictErrorException");
|
|
499
|
+
}
|
|
500
|
+
name = "ConflictErrorException";
|
|
501
|
+
$fault = "client";
|
|
483
502
|
/**
|
|
484
503
|
* @internal
|
|
485
504
|
*/
|
|
@@ -489,14 +508,15 @@ var _ConflictErrorException = class _ConflictErrorException extends ApplicationD
|
|
|
489
508
|
$fault: "client",
|
|
490
509
|
...opts
|
|
491
510
|
});
|
|
492
|
-
this.name = "ConflictErrorException";
|
|
493
|
-
this.$fault = "client";
|
|
494
511
|
Object.setPrototypeOf(this, _ConflictErrorException.prototype);
|
|
495
512
|
}
|
|
496
513
|
};
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
514
|
+
var ResourceInUseException = class _ResourceInUseException extends ApplicationDiscoveryServiceServiceException {
|
|
515
|
+
static {
|
|
516
|
+
__name(this, "ResourceInUseException");
|
|
517
|
+
}
|
|
518
|
+
name = "ResourceInUseException";
|
|
519
|
+
$fault = "client";
|
|
500
520
|
/**
|
|
501
521
|
* @internal
|
|
502
522
|
*/
|
|
@@ -506,13 +526,9 @@ var _ResourceInUseException = class _ResourceInUseException extends ApplicationD
|
|
|
506
526
|
$fault: "client",
|
|
507
527
|
...opts
|
|
508
528
|
});
|
|
509
|
-
this.name = "ResourceInUseException";
|
|
510
|
-
this.$fault = "client";
|
|
511
529
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
512
530
|
}
|
|
513
531
|
};
|
|
514
|
-
__name(_ResourceInUseException, "ResourceInUseException");
|
|
515
|
-
var ResourceInUseException = _ResourceInUseException;
|
|
516
532
|
var ExportDataFormat = {
|
|
517
533
|
CSV: "CSV"
|
|
518
534
|
};
|
|
@@ -1439,393 +1455,421 @@ function sharedHeaders(operation) {
|
|
|
1439
1455
|
__name(sharedHeaders, "sharedHeaders");
|
|
1440
1456
|
|
|
1441
1457
|
// src/commands/AssociateConfigurationItemsToApplicationCommand.ts
|
|
1442
|
-
var
|
|
1458
|
+
var AssociateConfigurationItemsToApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1443
1459
|
return [
|
|
1444
1460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1445
1461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1446
1462
|
];
|
|
1447
1463
|
}).s("AWSPoseidonService_V2015_11_01", "AssociateConfigurationItemsToApplication", {}).n("ApplicationDiscoveryServiceClient", "AssociateConfigurationItemsToApplicationCommand").f(void 0, void 0).ser(se_AssociateConfigurationItemsToApplicationCommand).de(de_AssociateConfigurationItemsToApplicationCommand).build() {
|
|
1464
|
+
static {
|
|
1465
|
+
__name(this, "AssociateConfigurationItemsToApplicationCommand");
|
|
1466
|
+
}
|
|
1448
1467
|
};
|
|
1449
|
-
__name(_AssociateConfigurationItemsToApplicationCommand, "AssociateConfigurationItemsToApplicationCommand");
|
|
1450
|
-
var AssociateConfigurationItemsToApplicationCommand = _AssociateConfigurationItemsToApplicationCommand;
|
|
1451
1468
|
|
|
1452
1469
|
// src/commands/BatchDeleteAgentsCommand.ts
|
|
1453
1470
|
|
|
1454
1471
|
|
|
1455
1472
|
|
|
1456
|
-
var
|
|
1473
|
+
var BatchDeleteAgentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1457
1474
|
return [
|
|
1458
1475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1459
1476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1460
1477
|
];
|
|
1461
1478
|
}).s("AWSPoseidonService_V2015_11_01", "BatchDeleteAgents", {}).n("ApplicationDiscoveryServiceClient", "BatchDeleteAgentsCommand").f(void 0, void 0).ser(se_BatchDeleteAgentsCommand).de(de_BatchDeleteAgentsCommand).build() {
|
|
1479
|
+
static {
|
|
1480
|
+
__name(this, "BatchDeleteAgentsCommand");
|
|
1481
|
+
}
|
|
1462
1482
|
};
|
|
1463
|
-
__name(_BatchDeleteAgentsCommand, "BatchDeleteAgentsCommand");
|
|
1464
|
-
var BatchDeleteAgentsCommand = _BatchDeleteAgentsCommand;
|
|
1465
1483
|
|
|
1466
1484
|
// src/commands/BatchDeleteImportDataCommand.ts
|
|
1467
1485
|
|
|
1468
1486
|
|
|
1469
1487
|
|
|
1470
|
-
var
|
|
1488
|
+
var BatchDeleteImportDataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1471
1489
|
return [
|
|
1472
1490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1473
1491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1474
1492
|
];
|
|
1475
1493
|
}).s("AWSPoseidonService_V2015_11_01", "BatchDeleteImportData", {}).n("ApplicationDiscoveryServiceClient", "BatchDeleteImportDataCommand").f(void 0, void 0).ser(se_BatchDeleteImportDataCommand).de(de_BatchDeleteImportDataCommand).build() {
|
|
1494
|
+
static {
|
|
1495
|
+
__name(this, "BatchDeleteImportDataCommand");
|
|
1496
|
+
}
|
|
1476
1497
|
};
|
|
1477
|
-
__name(_BatchDeleteImportDataCommand, "BatchDeleteImportDataCommand");
|
|
1478
|
-
var BatchDeleteImportDataCommand = _BatchDeleteImportDataCommand;
|
|
1479
1498
|
|
|
1480
1499
|
// src/commands/CreateApplicationCommand.ts
|
|
1481
1500
|
|
|
1482
1501
|
|
|
1483
1502
|
|
|
1484
|
-
var
|
|
1503
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1485
1504
|
return [
|
|
1486
1505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1487
1506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1488
1507
|
];
|
|
1489
1508
|
}).s("AWSPoseidonService_V2015_11_01", "CreateApplication", {}).n("ApplicationDiscoveryServiceClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
1509
|
+
static {
|
|
1510
|
+
__name(this, "CreateApplicationCommand");
|
|
1511
|
+
}
|
|
1490
1512
|
};
|
|
1491
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
1492
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
1493
1513
|
|
|
1494
1514
|
// src/commands/CreateTagsCommand.ts
|
|
1495
1515
|
|
|
1496
1516
|
|
|
1497
1517
|
|
|
1498
|
-
var
|
|
1518
|
+
var CreateTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1499
1519
|
return [
|
|
1500
1520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1501
1521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1502
1522
|
];
|
|
1503
1523
|
}).s("AWSPoseidonService_V2015_11_01", "CreateTags", {}).n("ApplicationDiscoveryServiceClient", "CreateTagsCommand").f(void 0, void 0).ser(se_CreateTagsCommand).de(de_CreateTagsCommand).build() {
|
|
1524
|
+
static {
|
|
1525
|
+
__name(this, "CreateTagsCommand");
|
|
1526
|
+
}
|
|
1504
1527
|
};
|
|
1505
|
-
__name(_CreateTagsCommand, "CreateTagsCommand");
|
|
1506
|
-
var CreateTagsCommand = _CreateTagsCommand;
|
|
1507
1528
|
|
|
1508
1529
|
// src/commands/DeleteApplicationsCommand.ts
|
|
1509
1530
|
|
|
1510
1531
|
|
|
1511
1532
|
|
|
1512
|
-
var
|
|
1533
|
+
var DeleteApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1513
1534
|
return [
|
|
1514
1535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1515
1536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1516
1537
|
];
|
|
1517
1538
|
}).s("AWSPoseidonService_V2015_11_01", "DeleteApplications", {}).n("ApplicationDiscoveryServiceClient", "DeleteApplicationsCommand").f(void 0, void 0).ser(se_DeleteApplicationsCommand).de(de_DeleteApplicationsCommand).build() {
|
|
1539
|
+
static {
|
|
1540
|
+
__name(this, "DeleteApplicationsCommand");
|
|
1541
|
+
}
|
|
1518
1542
|
};
|
|
1519
|
-
__name(_DeleteApplicationsCommand, "DeleteApplicationsCommand");
|
|
1520
|
-
var DeleteApplicationsCommand = _DeleteApplicationsCommand;
|
|
1521
1543
|
|
|
1522
1544
|
// src/commands/DeleteTagsCommand.ts
|
|
1523
1545
|
|
|
1524
1546
|
|
|
1525
1547
|
|
|
1526
|
-
var
|
|
1548
|
+
var DeleteTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1527
1549
|
return [
|
|
1528
1550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1529
1551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1530
1552
|
];
|
|
1531
1553
|
}).s("AWSPoseidonService_V2015_11_01", "DeleteTags", {}).n("ApplicationDiscoveryServiceClient", "DeleteTagsCommand").f(void 0, void 0).ser(se_DeleteTagsCommand).de(de_DeleteTagsCommand).build() {
|
|
1554
|
+
static {
|
|
1555
|
+
__name(this, "DeleteTagsCommand");
|
|
1556
|
+
}
|
|
1532
1557
|
};
|
|
1533
|
-
__name(_DeleteTagsCommand, "DeleteTagsCommand");
|
|
1534
|
-
var DeleteTagsCommand = _DeleteTagsCommand;
|
|
1535
1558
|
|
|
1536
1559
|
// src/commands/DescribeAgentsCommand.ts
|
|
1537
1560
|
|
|
1538
1561
|
|
|
1539
1562
|
|
|
1540
|
-
var
|
|
1563
|
+
var DescribeAgentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1541
1564
|
return [
|
|
1542
1565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1543
1566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1544
1567
|
];
|
|
1545
1568
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeAgents", {}).n("ApplicationDiscoveryServiceClient", "DescribeAgentsCommand").f(void 0, DescribeAgentsResponseFilterSensitiveLog).ser(se_DescribeAgentsCommand).de(de_DescribeAgentsCommand).build() {
|
|
1569
|
+
static {
|
|
1570
|
+
__name(this, "DescribeAgentsCommand");
|
|
1571
|
+
}
|
|
1546
1572
|
};
|
|
1547
|
-
__name(_DescribeAgentsCommand, "DescribeAgentsCommand");
|
|
1548
|
-
var DescribeAgentsCommand = _DescribeAgentsCommand;
|
|
1549
1573
|
|
|
1550
1574
|
// src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts
|
|
1551
1575
|
|
|
1552
1576
|
|
|
1553
1577
|
|
|
1554
|
-
var
|
|
1578
|
+
var DescribeBatchDeleteConfigurationTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1555
1579
|
return [
|
|
1556
1580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1557
1581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1558
1582
|
];
|
|
1559
1583
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeBatchDeleteConfigurationTask", {}).n("ApplicationDiscoveryServiceClient", "DescribeBatchDeleteConfigurationTaskCommand").f(void 0, void 0).ser(se_DescribeBatchDeleteConfigurationTaskCommand).de(de_DescribeBatchDeleteConfigurationTaskCommand).build() {
|
|
1584
|
+
static {
|
|
1585
|
+
__name(this, "DescribeBatchDeleteConfigurationTaskCommand");
|
|
1586
|
+
}
|
|
1560
1587
|
};
|
|
1561
|
-
__name(_DescribeBatchDeleteConfigurationTaskCommand, "DescribeBatchDeleteConfigurationTaskCommand");
|
|
1562
|
-
var DescribeBatchDeleteConfigurationTaskCommand = _DescribeBatchDeleteConfigurationTaskCommand;
|
|
1563
1588
|
|
|
1564
1589
|
// src/commands/DescribeConfigurationsCommand.ts
|
|
1565
1590
|
|
|
1566
1591
|
|
|
1567
1592
|
|
|
1568
|
-
var
|
|
1593
|
+
var DescribeConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1569
1594
|
return [
|
|
1570
1595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1571
1596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1572
1597
|
];
|
|
1573
1598
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeConfigurations", {}).n("ApplicationDiscoveryServiceClient", "DescribeConfigurationsCommand").f(void 0, void 0).ser(se_DescribeConfigurationsCommand).de(de_DescribeConfigurationsCommand).build() {
|
|
1599
|
+
static {
|
|
1600
|
+
__name(this, "DescribeConfigurationsCommand");
|
|
1601
|
+
}
|
|
1574
1602
|
};
|
|
1575
|
-
__name(_DescribeConfigurationsCommand, "DescribeConfigurationsCommand");
|
|
1576
|
-
var DescribeConfigurationsCommand = _DescribeConfigurationsCommand;
|
|
1577
1603
|
|
|
1578
1604
|
// src/commands/DescribeContinuousExportsCommand.ts
|
|
1579
1605
|
|
|
1580
1606
|
|
|
1581
1607
|
|
|
1582
|
-
var
|
|
1608
|
+
var DescribeContinuousExportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1583
1609
|
return [
|
|
1584
1610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1585
1611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1586
1612
|
];
|
|
1587
1613
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeContinuousExports", {}).n("ApplicationDiscoveryServiceClient", "DescribeContinuousExportsCommand").f(void 0, void 0).ser(se_DescribeContinuousExportsCommand).de(de_DescribeContinuousExportsCommand).build() {
|
|
1614
|
+
static {
|
|
1615
|
+
__name(this, "DescribeContinuousExportsCommand");
|
|
1616
|
+
}
|
|
1588
1617
|
};
|
|
1589
|
-
__name(_DescribeContinuousExportsCommand, "DescribeContinuousExportsCommand");
|
|
1590
|
-
var DescribeContinuousExportsCommand = _DescribeContinuousExportsCommand;
|
|
1591
1618
|
|
|
1592
1619
|
// src/commands/DescribeExportConfigurationsCommand.ts
|
|
1593
1620
|
|
|
1594
1621
|
|
|
1595
1622
|
|
|
1596
|
-
var
|
|
1623
|
+
var DescribeExportConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1597
1624
|
return [
|
|
1598
1625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1599
1626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1600
1627
|
];
|
|
1601
1628
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeExportConfigurations", {}).n("ApplicationDiscoveryServiceClient", "DescribeExportConfigurationsCommand").f(void 0, void 0).ser(se_DescribeExportConfigurationsCommand).de(de_DescribeExportConfigurationsCommand).build() {
|
|
1629
|
+
static {
|
|
1630
|
+
__name(this, "DescribeExportConfigurationsCommand");
|
|
1631
|
+
}
|
|
1602
1632
|
};
|
|
1603
|
-
__name(_DescribeExportConfigurationsCommand, "DescribeExportConfigurationsCommand");
|
|
1604
|
-
var DescribeExportConfigurationsCommand = _DescribeExportConfigurationsCommand;
|
|
1605
1633
|
|
|
1606
1634
|
// src/commands/DescribeExportTasksCommand.ts
|
|
1607
1635
|
|
|
1608
1636
|
|
|
1609
1637
|
|
|
1610
|
-
var
|
|
1638
|
+
var DescribeExportTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1611
1639
|
return [
|
|
1612
1640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1613
1641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1614
1642
|
];
|
|
1615
1643
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeExportTasks", {}).n("ApplicationDiscoveryServiceClient", "DescribeExportTasksCommand").f(void 0, void 0).ser(se_DescribeExportTasksCommand).de(de_DescribeExportTasksCommand).build() {
|
|
1644
|
+
static {
|
|
1645
|
+
__name(this, "DescribeExportTasksCommand");
|
|
1646
|
+
}
|
|
1616
1647
|
};
|
|
1617
|
-
__name(_DescribeExportTasksCommand, "DescribeExportTasksCommand");
|
|
1618
|
-
var DescribeExportTasksCommand = _DescribeExportTasksCommand;
|
|
1619
1648
|
|
|
1620
1649
|
// src/commands/DescribeImportTasksCommand.ts
|
|
1621
1650
|
|
|
1622
1651
|
|
|
1623
1652
|
|
|
1624
|
-
var
|
|
1653
|
+
var DescribeImportTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1625
1654
|
return [
|
|
1626
1655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1627
1656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1628
1657
|
];
|
|
1629
1658
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeImportTasks", {}).n("ApplicationDiscoveryServiceClient", "DescribeImportTasksCommand").f(void 0, void 0).ser(se_DescribeImportTasksCommand).de(de_DescribeImportTasksCommand).build() {
|
|
1659
|
+
static {
|
|
1660
|
+
__name(this, "DescribeImportTasksCommand");
|
|
1661
|
+
}
|
|
1630
1662
|
};
|
|
1631
|
-
__name(_DescribeImportTasksCommand, "DescribeImportTasksCommand");
|
|
1632
|
-
var DescribeImportTasksCommand = _DescribeImportTasksCommand;
|
|
1633
1663
|
|
|
1634
1664
|
// src/commands/DescribeTagsCommand.ts
|
|
1635
1665
|
|
|
1636
1666
|
|
|
1637
1667
|
|
|
1638
|
-
var
|
|
1668
|
+
var DescribeTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1639
1669
|
return [
|
|
1640
1670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1641
1671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1642
1672
|
];
|
|
1643
1673
|
}).s("AWSPoseidonService_V2015_11_01", "DescribeTags", {}).n("ApplicationDiscoveryServiceClient", "DescribeTagsCommand").f(void 0, void 0).ser(se_DescribeTagsCommand).de(de_DescribeTagsCommand).build() {
|
|
1674
|
+
static {
|
|
1675
|
+
__name(this, "DescribeTagsCommand");
|
|
1676
|
+
}
|
|
1644
1677
|
};
|
|
1645
|
-
__name(_DescribeTagsCommand, "DescribeTagsCommand");
|
|
1646
|
-
var DescribeTagsCommand = _DescribeTagsCommand;
|
|
1647
1678
|
|
|
1648
1679
|
// src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts
|
|
1649
1680
|
|
|
1650
1681
|
|
|
1651
1682
|
|
|
1652
|
-
var
|
|
1683
|
+
var DisassociateConfigurationItemsFromApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1653
1684
|
return [
|
|
1654
1685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1655
1686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1656
1687
|
];
|
|
1657
1688
|
}).s("AWSPoseidonService_V2015_11_01", "DisassociateConfigurationItemsFromApplication", {}).n("ApplicationDiscoveryServiceClient", "DisassociateConfigurationItemsFromApplicationCommand").f(void 0, void 0).ser(se_DisassociateConfigurationItemsFromApplicationCommand).de(de_DisassociateConfigurationItemsFromApplicationCommand).build() {
|
|
1689
|
+
static {
|
|
1690
|
+
__name(this, "DisassociateConfigurationItemsFromApplicationCommand");
|
|
1691
|
+
}
|
|
1658
1692
|
};
|
|
1659
|
-
__name(_DisassociateConfigurationItemsFromApplicationCommand, "DisassociateConfigurationItemsFromApplicationCommand");
|
|
1660
|
-
var DisassociateConfigurationItemsFromApplicationCommand = _DisassociateConfigurationItemsFromApplicationCommand;
|
|
1661
1693
|
|
|
1662
1694
|
// src/commands/ExportConfigurationsCommand.ts
|
|
1663
1695
|
|
|
1664
1696
|
|
|
1665
1697
|
|
|
1666
|
-
var
|
|
1698
|
+
var ExportConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1667
1699
|
return [
|
|
1668
1700
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1669
1701
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1670
1702
|
];
|
|
1671
1703
|
}).s("AWSPoseidonService_V2015_11_01", "ExportConfigurations", {}).n("ApplicationDiscoveryServiceClient", "ExportConfigurationsCommand").f(void 0, void 0).ser(se_ExportConfigurationsCommand).de(de_ExportConfigurationsCommand).build() {
|
|
1704
|
+
static {
|
|
1705
|
+
__name(this, "ExportConfigurationsCommand");
|
|
1706
|
+
}
|
|
1672
1707
|
};
|
|
1673
|
-
__name(_ExportConfigurationsCommand, "ExportConfigurationsCommand");
|
|
1674
|
-
var ExportConfigurationsCommand = _ExportConfigurationsCommand;
|
|
1675
1708
|
|
|
1676
1709
|
// src/commands/GetDiscoverySummaryCommand.ts
|
|
1677
1710
|
|
|
1678
1711
|
|
|
1679
1712
|
|
|
1680
|
-
var
|
|
1713
|
+
var GetDiscoverySummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1681
1714
|
return [
|
|
1682
1715
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1683
1716
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1684
1717
|
];
|
|
1685
1718
|
}).s("AWSPoseidonService_V2015_11_01", "GetDiscoverySummary", {}).n("ApplicationDiscoveryServiceClient", "GetDiscoverySummaryCommand").f(void 0, void 0).ser(se_GetDiscoverySummaryCommand).de(de_GetDiscoverySummaryCommand).build() {
|
|
1719
|
+
static {
|
|
1720
|
+
__name(this, "GetDiscoverySummaryCommand");
|
|
1721
|
+
}
|
|
1686
1722
|
};
|
|
1687
|
-
__name(_GetDiscoverySummaryCommand, "GetDiscoverySummaryCommand");
|
|
1688
|
-
var GetDiscoverySummaryCommand = _GetDiscoverySummaryCommand;
|
|
1689
1723
|
|
|
1690
1724
|
// src/commands/ListConfigurationsCommand.ts
|
|
1691
1725
|
|
|
1692
1726
|
|
|
1693
1727
|
|
|
1694
|
-
var
|
|
1728
|
+
var ListConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1695
1729
|
return [
|
|
1696
1730
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1697
1731
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1698
1732
|
];
|
|
1699
1733
|
}).s("AWSPoseidonService_V2015_11_01", "ListConfigurations", {}).n("ApplicationDiscoveryServiceClient", "ListConfigurationsCommand").f(void 0, void 0).ser(se_ListConfigurationsCommand).de(de_ListConfigurationsCommand).build() {
|
|
1734
|
+
static {
|
|
1735
|
+
__name(this, "ListConfigurationsCommand");
|
|
1736
|
+
}
|
|
1700
1737
|
};
|
|
1701
|
-
__name(_ListConfigurationsCommand, "ListConfigurationsCommand");
|
|
1702
|
-
var ListConfigurationsCommand = _ListConfigurationsCommand;
|
|
1703
1738
|
|
|
1704
1739
|
// src/commands/ListServerNeighborsCommand.ts
|
|
1705
1740
|
|
|
1706
1741
|
|
|
1707
1742
|
|
|
1708
|
-
var
|
|
1743
|
+
var ListServerNeighborsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1709
1744
|
return [
|
|
1710
1745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1711
1746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1712
1747
|
];
|
|
1713
1748
|
}).s("AWSPoseidonService_V2015_11_01", "ListServerNeighbors", {}).n("ApplicationDiscoveryServiceClient", "ListServerNeighborsCommand").f(void 0, void 0).ser(se_ListServerNeighborsCommand).de(de_ListServerNeighborsCommand).build() {
|
|
1749
|
+
static {
|
|
1750
|
+
__name(this, "ListServerNeighborsCommand");
|
|
1751
|
+
}
|
|
1714
1752
|
};
|
|
1715
|
-
__name(_ListServerNeighborsCommand, "ListServerNeighborsCommand");
|
|
1716
|
-
var ListServerNeighborsCommand = _ListServerNeighborsCommand;
|
|
1717
1753
|
|
|
1718
1754
|
// src/commands/StartBatchDeleteConfigurationTaskCommand.ts
|
|
1719
1755
|
|
|
1720
1756
|
|
|
1721
1757
|
|
|
1722
|
-
var
|
|
1758
|
+
var StartBatchDeleteConfigurationTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1723
1759
|
return [
|
|
1724
1760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1725
1761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1726
1762
|
];
|
|
1727
1763
|
}).s("AWSPoseidonService_V2015_11_01", "StartBatchDeleteConfigurationTask", {}).n("ApplicationDiscoveryServiceClient", "StartBatchDeleteConfigurationTaskCommand").f(void 0, void 0).ser(se_StartBatchDeleteConfigurationTaskCommand).de(de_StartBatchDeleteConfigurationTaskCommand).build() {
|
|
1764
|
+
static {
|
|
1765
|
+
__name(this, "StartBatchDeleteConfigurationTaskCommand");
|
|
1766
|
+
}
|
|
1728
1767
|
};
|
|
1729
|
-
__name(_StartBatchDeleteConfigurationTaskCommand, "StartBatchDeleteConfigurationTaskCommand");
|
|
1730
|
-
var StartBatchDeleteConfigurationTaskCommand = _StartBatchDeleteConfigurationTaskCommand;
|
|
1731
1768
|
|
|
1732
1769
|
// src/commands/StartContinuousExportCommand.ts
|
|
1733
1770
|
|
|
1734
1771
|
|
|
1735
1772
|
|
|
1736
|
-
var
|
|
1773
|
+
var StartContinuousExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1737
1774
|
return [
|
|
1738
1775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1739
1776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1740
1777
|
];
|
|
1741
1778
|
}).s("AWSPoseidonService_V2015_11_01", "StartContinuousExport", {}).n("ApplicationDiscoveryServiceClient", "StartContinuousExportCommand").f(void 0, void 0).ser(se_StartContinuousExportCommand).de(de_StartContinuousExportCommand).build() {
|
|
1779
|
+
static {
|
|
1780
|
+
__name(this, "StartContinuousExportCommand");
|
|
1781
|
+
}
|
|
1742
1782
|
};
|
|
1743
|
-
__name(_StartContinuousExportCommand, "StartContinuousExportCommand");
|
|
1744
|
-
var StartContinuousExportCommand = _StartContinuousExportCommand;
|
|
1745
1783
|
|
|
1746
1784
|
// src/commands/StartDataCollectionByAgentIdsCommand.ts
|
|
1747
1785
|
|
|
1748
1786
|
|
|
1749
1787
|
|
|
1750
|
-
var
|
|
1788
|
+
var StartDataCollectionByAgentIdsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1751
1789
|
return [
|
|
1752
1790
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1753
1791
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1754
1792
|
];
|
|
1755
1793
|
}).s("AWSPoseidonService_V2015_11_01", "StartDataCollectionByAgentIds", {}).n("ApplicationDiscoveryServiceClient", "StartDataCollectionByAgentIdsCommand").f(void 0, void 0).ser(se_StartDataCollectionByAgentIdsCommand).de(de_StartDataCollectionByAgentIdsCommand).build() {
|
|
1794
|
+
static {
|
|
1795
|
+
__name(this, "StartDataCollectionByAgentIdsCommand");
|
|
1796
|
+
}
|
|
1756
1797
|
};
|
|
1757
|
-
__name(_StartDataCollectionByAgentIdsCommand, "StartDataCollectionByAgentIdsCommand");
|
|
1758
|
-
var StartDataCollectionByAgentIdsCommand = _StartDataCollectionByAgentIdsCommand;
|
|
1759
1798
|
|
|
1760
1799
|
// src/commands/StartExportTaskCommand.ts
|
|
1761
1800
|
|
|
1762
1801
|
|
|
1763
1802
|
|
|
1764
|
-
var
|
|
1803
|
+
var StartExportTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1765
1804
|
return [
|
|
1766
1805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1767
1806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1768
1807
|
];
|
|
1769
1808
|
}).s("AWSPoseidonService_V2015_11_01", "StartExportTask", {}).n("ApplicationDiscoveryServiceClient", "StartExportTaskCommand").f(void 0, void 0).ser(se_StartExportTaskCommand).de(de_StartExportTaskCommand).build() {
|
|
1809
|
+
static {
|
|
1810
|
+
__name(this, "StartExportTaskCommand");
|
|
1811
|
+
}
|
|
1770
1812
|
};
|
|
1771
|
-
__name(_StartExportTaskCommand, "StartExportTaskCommand");
|
|
1772
|
-
var StartExportTaskCommand = _StartExportTaskCommand;
|
|
1773
1813
|
|
|
1774
1814
|
// src/commands/StartImportTaskCommand.ts
|
|
1775
1815
|
|
|
1776
1816
|
|
|
1777
1817
|
|
|
1778
|
-
var
|
|
1818
|
+
var StartImportTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1779
1819
|
return [
|
|
1780
1820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1781
1821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1782
1822
|
];
|
|
1783
1823
|
}).s("AWSPoseidonService_V2015_11_01", "StartImportTask", {}).n("ApplicationDiscoveryServiceClient", "StartImportTaskCommand").f(void 0, void 0).ser(se_StartImportTaskCommand).de(de_StartImportTaskCommand).build() {
|
|
1824
|
+
static {
|
|
1825
|
+
__name(this, "StartImportTaskCommand");
|
|
1826
|
+
}
|
|
1784
1827
|
};
|
|
1785
|
-
__name(_StartImportTaskCommand, "StartImportTaskCommand");
|
|
1786
|
-
var StartImportTaskCommand = _StartImportTaskCommand;
|
|
1787
1828
|
|
|
1788
1829
|
// src/commands/StopContinuousExportCommand.ts
|
|
1789
1830
|
|
|
1790
1831
|
|
|
1791
1832
|
|
|
1792
|
-
var
|
|
1833
|
+
var StopContinuousExportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1793
1834
|
return [
|
|
1794
1835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1795
1836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1796
1837
|
];
|
|
1797
1838
|
}).s("AWSPoseidonService_V2015_11_01", "StopContinuousExport", {}).n("ApplicationDiscoveryServiceClient", "StopContinuousExportCommand").f(void 0, void 0).ser(se_StopContinuousExportCommand).de(de_StopContinuousExportCommand).build() {
|
|
1839
|
+
static {
|
|
1840
|
+
__name(this, "StopContinuousExportCommand");
|
|
1841
|
+
}
|
|
1798
1842
|
};
|
|
1799
|
-
__name(_StopContinuousExportCommand, "StopContinuousExportCommand");
|
|
1800
|
-
var StopContinuousExportCommand = _StopContinuousExportCommand;
|
|
1801
1843
|
|
|
1802
1844
|
// src/commands/StopDataCollectionByAgentIdsCommand.ts
|
|
1803
1845
|
|
|
1804
1846
|
|
|
1805
1847
|
|
|
1806
|
-
var
|
|
1848
|
+
var StopDataCollectionByAgentIdsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1807
1849
|
return [
|
|
1808
1850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1809
1851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1810
1852
|
];
|
|
1811
1853
|
}).s("AWSPoseidonService_V2015_11_01", "StopDataCollectionByAgentIds", {}).n("ApplicationDiscoveryServiceClient", "StopDataCollectionByAgentIdsCommand").f(void 0, void 0).ser(se_StopDataCollectionByAgentIdsCommand).de(de_StopDataCollectionByAgentIdsCommand).build() {
|
|
1854
|
+
static {
|
|
1855
|
+
__name(this, "StopDataCollectionByAgentIdsCommand");
|
|
1856
|
+
}
|
|
1812
1857
|
};
|
|
1813
|
-
__name(_StopDataCollectionByAgentIdsCommand, "StopDataCollectionByAgentIdsCommand");
|
|
1814
|
-
var StopDataCollectionByAgentIdsCommand = _StopDataCollectionByAgentIdsCommand;
|
|
1815
1858
|
|
|
1816
1859
|
// src/commands/UpdateApplicationCommand.ts
|
|
1817
1860
|
|
|
1818
1861
|
|
|
1819
1862
|
|
|
1820
|
-
var
|
|
1863
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1821
1864
|
return [
|
|
1822
1865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1823
1866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1824
1867
|
];
|
|
1825
1868
|
}).s("AWSPoseidonService_V2015_11_01", "UpdateApplication", {}).n("ApplicationDiscoveryServiceClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
1869
|
+
static {
|
|
1870
|
+
__name(this, "UpdateApplicationCommand");
|
|
1871
|
+
}
|
|
1826
1872
|
};
|
|
1827
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
1828
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
1829
1873
|
|
|
1830
1874
|
// src/ApplicationDiscoveryService.ts
|
|
1831
1875
|
var commands = {
|
|
@@ -1858,10 +1902,11 @@ var commands = {
|
|
|
1858
1902
|
StopDataCollectionByAgentIdsCommand,
|
|
1859
1903
|
UpdateApplicationCommand
|
|
1860
1904
|
};
|
|
1861
|
-
var
|
|
1905
|
+
var ApplicationDiscoveryService = class extends ApplicationDiscoveryServiceClient {
|
|
1906
|
+
static {
|
|
1907
|
+
__name(this, "ApplicationDiscoveryService");
|
|
1908
|
+
}
|
|
1862
1909
|
};
|
|
1863
|
-
__name(_ApplicationDiscoveryService, "ApplicationDiscoveryService");
|
|
1864
|
-
var ApplicationDiscoveryService = _ApplicationDiscoveryService;
|
|
1865
1910
|
(0, import_smithy_client.createAggregatedClient)(commands, ApplicationDiscoveryService);
|
|
1866
1911
|
|
|
1867
1912
|
// src/pagination/DescribeAgentsPaginator.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 ApplicationDiscoveryServiceClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -9,62 +9,62 @@ export const AgentStatus = {
|
|
|
9
9
|
UNKNOWN: "UNKNOWN",
|
|
10
10
|
};
|
|
11
11
|
export class AuthorizationErrorException extends __BaseException {
|
|
12
|
+
name = "AuthorizationErrorException";
|
|
13
|
+
$fault = "client";
|
|
12
14
|
constructor(opts) {
|
|
13
15
|
super({
|
|
14
16
|
name: "AuthorizationErrorException",
|
|
15
17
|
$fault: "client",
|
|
16
18
|
...opts,
|
|
17
19
|
});
|
|
18
|
-
this.name = "AuthorizationErrorException";
|
|
19
|
-
this.$fault = "client";
|
|
20
20
|
Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
export class HomeRegionNotSetException extends __BaseException {
|
|
24
|
+
name = "HomeRegionNotSetException";
|
|
25
|
+
$fault = "client";
|
|
24
26
|
constructor(opts) {
|
|
25
27
|
super({
|
|
26
28
|
name: "HomeRegionNotSetException",
|
|
27
29
|
$fault: "client",
|
|
28
30
|
...opts,
|
|
29
31
|
});
|
|
30
|
-
this.name = "HomeRegionNotSetException";
|
|
31
|
-
this.$fault = "client";
|
|
32
32
|
Object.setPrototypeOf(this, HomeRegionNotSetException.prototype);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
export class InvalidParameterException extends __BaseException {
|
|
36
|
+
name = "InvalidParameterException";
|
|
37
|
+
$fault = "client";
|
|
36
38
|
constructor(opts) {
|
|
37
39
|
super({
|
|
38
40
|
name: "InvalidParameterException",
|
|
39
41
|
$fault: "client",
|
|
40
42
|
...opts,
|
|
41
43
|
});
|
|
42
|
-
this.name = "InvalidParameterException";
|
|
43
|
-
this.$fault = "client";
|
|
44
44
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
export class InvalidParameterValueException extends __BaseException {
|
|
48
|
+
name = "InvalidParameterValueException";
|
|
49
|
+
$fault = "client";
|
|
48
50
|
constructor(opts) {
|
|
49
51
|
super({
|
|
50
52
|
name: "InvalidParameterValueException",
|
|
51
53
|
$fault: "client",
|
|
52
54
|
...opts,
|
|
53
55
|
});
|
|
54
|
-
this.name = "InvalidParameterValueException";
|
|
55
|
-
this.$fault = "client";
|
|
56
56
|
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
export class ServerInternalErrorException extends __BaseException {
|
|
60
|
+
name = "ServerInternalErrorException";
|
|
61
|
+
$fault = "server";
|
|
60
62
|
constructor(opts) {
|
|
61
63
|
super({
|
|
62
64
|
name: "ServerInternalErrorException",
|
|
63
65
|
$fault: "server",
|
|
64
66
|
...opts,
|
|
65
67
|
});
|
|
66
|
-
this.name = "ServerInternalErrorException";
|
|
67
|
-
this.$fault = "server";
|
|
68
68
|
Object.setPrototypeOf(this, ServerInternalErrorException.prototype);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -79,14 +79,14 @@ export const BatchDeleteImportDataErrorCode = {
|
|
|
79
79
|
OVER_LIMIT: "OVER_LIMIT",
|
|
80
80
|
};
|
|
81
81
|
export class ResourceNotFoundException extends __BaseException {
|
|
82
|
+
name = "ResourceNotFoundException";
|
|
83
|
+
$fault = "client";
|
|
82
84
|
constructor(opts) {
|
|
83
85
|
super({
|
|
84
86
|
name: "ResourceNotFoundException",
|
|
85
87
|
$fault: "client",
|
|
86
88
|
...opts,
|
|
87
89
|
});
|
|
88
|
-
this.name = "ResourceNotFoundException";
|
|
89
|
-
this.$fault = "client";
|
|
90
90
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -113,14 +113,14 @@ export const ContinuousExportStatus = {
|
|
|
113
113
|
STOP_IN_PROGRESS: "STOP_IN_PROGRESS",
|
|
114
114
|
};
|
|
115
115
|
export class OperationNotPermittedException extends __BaseException {
|
|
116
|
+
name = "OperationNotPermittedException";
|
|
117
|
+
$fault = "client";
|
|
116
118
|
constructor(opts) {
|
|
117
119
|
super({
|
|
118
120
|
name: "OperationNotPermittedException",
|
|
119
121
|
$fault: "client",
|
|
120
122
|
...opts,
|
|
121
123
|
});
|
|
122
|
-
this.name = "OperationNotPermittedException";
|
|
123
|
-
this.$fault = "client";
|
|
124
124
|
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
125
125
|
}
|
|
126
126
|
}
|
|
@@ -166,38 +166,38 @@ export const OrderString = {
|
|
|
166
166
|
DESC: "DESC",
|
|
167
167
|
};
|
|
168
168
|
export class LimitExceededException extends __BaseException {
|
|
169
|
+
name = "LimitExceededException";
|
|
170
|
+
$fault = "client";
|
|
169
171
|
constructor(opts) {
|
|
170
172
|
super({
|
|
171
173
|
name: "LimitExceededException",
|
|
172
174
|
$fault: "client",
|
|
173
175
|
...opts,
|
|
174
176
|
});
|
|
175
|
-
this.name = "LimitExceededException";
|
|
176
|
-
this.$fault = "client";
|
|
177
177
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
export class ConflictErrorException extends __BaseException {
|
|
181
|
+
name = "ConflictErrorException";
|
|
182
|
+
$fault = "client";
|
|
181
183
|
constructor(opts) {
|
|
182
184
|
super({
|
|
183
185
|
name: "ConflictErrorException",
|
|
184
186
|
$fault: "client",
|
|
185
187
|
...opts,
|
|
186
188
|
});
|
|
187
|
-
this.name = "ConflictErrorException";
|
|
188
|
-
this.$fault = "client";
|
|
189
189
|
Object.setPrototypeOf(this, ConflictErrorException.prototype);
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
export class ResourceInUseException extends __BaseException {
|
|
193
|
+
name = "ResourceInUseException";
|
|
194
|
+
$fault = "client";
|
|
193
195
|
constructor(opts) {
|
|
194
196
|
super({
|
|
195
197
|
name: "ResourceInUseException",
|
|
196
198
|
$fault: "client",
|
|
197
199
|
...opts,
|
|
198
200
|
});
|
|
199
|
-
this.name = "ResourceInUseException";
|
|
200
|
-
this.$fault = "client";
|
|
201
201
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
202
202
|
}
|
|
203
203
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
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: ApplicationDiscoveryServiceClien
|
|
|
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: ApplicationDiscoveryServiceClien
|
|
|
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: ApplicationDiscoveryServiceClien
|
|
|
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-application-discovery-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Discovery Service 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-application-discovery-service",
|
|
@@ -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": {
|