@aws-sdk/client-application-discovery-service 3.758.0 → 3.772.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 +34 -34
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
AgentInfoFilterSensitiveLog: () => AgentInfoFilterSensitiveLog,
|
|
25
25
|
AgentNetworkInfoFilterSensitiveLog: () => AgentNetworkInfoFilterSensitiveLog,
|
|
26
26
|
AgentStatus: () => AgentStatus,
|
|
@@ -93,7 +93,7 @@ __export(src_exports, {
|
|
|
93
93
|
paginateDescribeTags: () => paginateDescribeTags,
|
|
94
94
|
paginateListConfigurations: () => paginateListConfigurations
|
|
95
95
|
});
|
|
96
|
-
module.exports = __toCommonJS(
|
|
96
|
+
module.exports = __toCommonJS(index_exports);
|
|
97
97
|
|
|
98
98
|
// src/ApplicationDiscoveryServiceClient.ts
|
|
99
99
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
@@ -220,9 +220,9 @@ var ApplicationDiscoveryServiceClient = class extends import_smithy_client.Clien
|
|
|
220
220
|
this.middlewareStack.use(
|
|
221
221
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
222
222
|
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultApplicationDiscoveryServiceHttpAuthSchemeParametersProvider,
|
|
223
|
-
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
223
|
+
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
224
224
|
"aws.auth#sigv4": config.credentials
|
|
225
|
-
})
|
|
225
|
+
}), "identityProviderConfigProvider")
|
|
226
226
|
})
|
|
227
227
|
);
|
|
228
228
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -1239,30 +1239,30 @@ var de_ServerInternalErrorExceptionRes = /* @__PURE__ */ __name(async (parsedOut
|
|
|
1239
1239
|
}, "de_ServerInternalErrorExceptionRes");
|
|
1240
1240
|
var se_Ec2RecommendationsExportPreferences = /* @__PURE__ */ __name((input, context) => {
|
|
1241
1241
|
return (0, import_smithy_client.take)(input, {
|
|
1242
|
-
cpuPerformanceMetricBasis: (_) => se_UsageMetricBasis(_, context),
|
|
1242
|
+
cpuPerformanceMetricBasis: /* @__PURE__ */ __name((_) => se_UsageMetricBasis(_, context), "cpuPerformanceMetricBasis"),
|
|
1243
1243
|
enabled: [],
|
|
1244
1244
|
excludedInstanceTypes: import_smithy_client._json,
|
|
1245
1245
|
preferredRegion: [],
|
|
1246
|
-
ramPerformanceMetricBasis: (_) => se_UsageMetricBasis(_, context),
|
|
1246
|
+
ramPerformanceMetricBasis: /* @__PURE__ */ __name((_) => se_UsageMetricBasis(_, context), "ramPerformanceMetricBasis"),
|
|
1247
1247
|
reservedInstanceOptions: import_smithy_client._json,
|
|
1248
1248
|
tenancy: []
|
|
1249
1249
|
});
|
|
1250
1250
|
}, "se_Ec2RecommendationsExportPreferences");
|
|
1251
1251
|
var se_ExportPreferences = /* @__PURE__ */ __name((input, context) => {
|
|
1252
1252
|
return ExportPreferences.visit(input, {
|
|
1253
|
-
ec2RecommendationsPreferences: (value) => ({
|
|
1253
|
+
ec2RecommendationsPreferences: /* @__PURE__ */ __name((value) => ({
|
|
1254
1254
|
ec2RecommendationsPreferences: se_Ec2RecommendationsExportPreferences(value, context)
|
|
1255
|
-
}),
|
|
1256
|
-
_: (name, value) => ({ [name]: value })
|
|
1255
|
+
}), "ec2RecommendationsPreferences"),
|
|
1256
|
+
_: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
|
|
1257
1257
|
});
|
|
1258
1258
|
}, "se_ExportPreferences");
|
|
1259
1259
|
var se_StartExportTaskRequest = /* @__PURE__ */ __name((input, context) => {
|
|
1260
1260
|
return (0, import_smithy_client.take)(input, {
|
|
1261
|
-
endTime: (_) => _.getTime() / 1e3,
|
|
1261
|
+
endTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "endTime"),
|
|
1262
1262
|
exportDataFormat: import_smithy_client._json,
|
|
1263
1263
|
filters: import_smithy_client._json,
|
|
1264
|
-
preferences: (_) => se_ExportPreferences(_, context),
|
|
1265
|
-
startTime: (_) => _.getTime() / 1e3
|
|
1264
|
+
preferences: /* @__PURE__ */ __name((_) => se_ExportPreferences(_, context), "preferences"),
|
|
1265
|
+
startTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "startTime")
|
|
1266
1266
|
});
|
|
1267
1267
|
}, "se_StartExportTaskRequest");
|
|
1268
1268
|
var se_StartImportTaskRequest = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -1283,10 +1283,10 @@ var de_BatchDeleteConfigurationTask = /* @__PURE__ */ __name((output, context) =
|
|
|
1283
1283
|
configurationType: import_smithy_client.expectString,
|
|
1284
1284
|
deletedConfigurations: import_smithy_client._json,
|
|
1285
1285
|
deletionWarnings: import_smithy_client._json,
|
|
1286
|
-
endTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1286
|
+
endTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "endTime"),
|
|
1287
1287
|
failedConfigurations: import_smithy_client._json,
|
|
1288
1288
|
requestedConfigurations: import_smithy_client._json,
|
|
1289
|
-
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1289
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
1290
1290
|
status: import_smithy_client.expectString,
|
|
1291
1291
|
taskId: import_smithy_client.expectString
|
|
1292
1292
|
});
|
|
@@ -1296,7 +1296,7 @@ var de_ConfigurationTag = /* @__PURE__ */ __name((output, context) => {
|
|
|
1296
1296
|
configurationId: import_smithy_client.expectString,
|
|
1297
1297
|
configurationType: import_smithy_client.expectString,
|
|
1298
1298
|
key: import_smithy_client.expectString,
|
|
1299
|
-
timeOfCreation: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1299
|
+
timeOfCreation: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "timeOfCreation"),
|
|
1300
1300
|
value: import_smithy_client.expectString
|
|
1301
1301
|
});
|
|
1302
1302
|
}, "de_ConfigurationTag");
|
|
@@ -1312,10 +1312,10 @@ var de_ContinuousExportDescription = /* @__PURE__ */ __name((output, context) =>
|
|
|
1312
1312
|
exportId: import_smithy_client.expectString,
|
|
1313
1313
|
s3Bucket: import_smithy_client.expectString,
|
|
1314
1314
|
schemaStorageConfig: import_smithy_client._json,
|
|
1315
|
-
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1315
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
1316
1316
|
status: import_smithy_client.expectString,
|
|
1317
1317
|
statusDetail: import_smithy_client.expectString,
|
|
1318
|
-
stopTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1318
|
+
stopTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "stopTime")
|
|
1319
1319
|
});
|
|
1320
1320
|
}, "de_ContinuousExportDescription");
|
|
1321
1321
|
var de_ContinuousExportDescriptions = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -1326,48 +1326,48 @@ var de_ContinuousExportDescriptions = /* @__PURE__ */ __name((output, context) =
|
|
|
1326
1326
|
}, "de_ContinuousExportDescriptions");
|
|
1327
1327
|
var de_DescribeBatchDeleteConfigurationTaskResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1328
1328
|
return (0, import_smithy_client.take)(output, {
|
|
1329
|
-
task: (_) => de_BatchDeleteConfigurationTask(_, context)
|
|
1329
|
+
task: /* @__PURE__ */ __name((_) => de_BatchDeleteConfigurationTask(_, context), "task")
|
|
1330
1330
|
});
|
|
1331
1331
|
}, "de_DescribeBatchDeleteConfigurationTaskResponse");
|
|
1332
1332
|
var de_DescribeContinuousExportsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1333
1333
|
return (0, import_smithy_client.take)(output, {
|
|
1334
|
-
descriptions: (_) => de_ContinuousExportDescriptions(_, context),
|
|
1334
|
+
descriptions: /* @__PURE__ */ __name((_) => de_ContinuousExportDescriptions(_, context), "descriptions"),
|
|
1335
1335
|
nextToken: import_smithy_client.expectString
|
|
1336
1336
|
});
|
|
1337
1337
|
}, "de_DescribeContinuousExportsResponse");
|
|
1338
1338
|
var de_DescribeExportConfigurationsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1339
1339
|
return (0, import_smithy_client.take)(output, {
|
|
1340
|
-
exportsInfo: (_) => de_ExportsInfo(_, context),
|
|
1340
|
+
exportsInfo: /* @__PURE__ */ __name((_) => de_ExportsInfo(_, context), "exportsInfo"),
|
|
1341
1341
|
nextToken: import_smithy_client.expectString
|
|
1342
1342
|
});
|
|
1343
1343
|
}, "de_DescribeExportConfigurationsResponse");
|
|
1344
1344
|
var de_DescribeExportTasksResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1345
1345
|
return (0, import_smithy_client.take)(output, {
|
|
1346
|
-
exportsInfo: (_) => de_ExportsInfo(_, context),
|
|
1346
|
+
exportsInfo: /* @__PURE__ */ __name((_) => de_ExportsInfo(_, context), "exportsInfo"),
|
|
1347
1347
|
nextToken: import_smithy_client.expectString
|
|
1348
1348
|
});
|
|
1349
1349
|
}, "de_DescribeExportTasksResponse");
|
|
1350
1350
|
var de_DescribeImportTasksResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1351
1351
|
return (0, import_smithy_client.take)(output, {
|
|
1352
1352
|
nextToken: import_smithy_client.expectString,
|
|
1353
|
-
tasks: (_) => de_ImportTaskList(_, context)
|
|
1353
|
+
tasks: /* @__PURE__ */ __name((_) => de_ImportTaskList(_, context), "tasks")
|
|
1354
1354
|
});
|
|
1355
1355
|
}, "de_DescribeImportTasksResponse");
|
|
1356
1356
|
var de_DescribeTagsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1357
1357
|
return (0, import_smithy_client.take)(output, {
|
|
1358
1358
|
nextToken: import_smithy_client.expectString,
|
|
1359
|
-
tags: (_) => de_ConfigurationTagSet(_, context)
|
|
1359
|
+
tags: /* @__PURE__ */ __name((_) => de_ConfigurationTagSet(_, context), "tags")
|
|
1360
1360
|
});
|
|
1361
1361
|
}, "de_DescribeTagsResponse");
|
|
1362
1362
|
var de_ExportInfo = /* @__PURE__ */ __name((output, context) => {
|
|
1363
1363
|
return (0, import_smithy_client.take)(output, {
|
|
1364
1364
|
configurationsDownloadUrl: import_smithy_client.expectString,
|
|
1365
1365
|
exportId: import_smithy_client.expectString,
|
|
1366
|
-
exportRequestTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1366
|
+
exportRequestTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "exportRequestTime"),
|
|
1367
1367
|
exportStatus: import_smithy_client.expectString,
|
|
1368
1368
|
isTruncated: import_smithy_client.expectBoolean,
|
|
1369
|
-
requestedEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1370
|
-
requestedStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1369
|
+
requestedEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "requestedEndTime"),
|
|
1370
|
+
requestedStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "requestedStartTime"),
|
|
1371
1371
|
statusMessage: import_smithy_client.expectString
|
|
1372
1372
|
});
|
|
1373
1373
|
}, "de_ExportInfo");
|
|
@@ -1384,9 +1384,9 @@ var de_ImportTask = /* @__PURE__ */ __name((output, context) => {
|
|
|
1384
1384
|
clientRequestToken: import_smithy_client.expectString,
|
|
1385
1385
|
errorsAndFailedEntriesZip: import_smithy_client.expectString,
|
|
1386
1386
|
fileClassification: import_smithy_client.expectString,
|
|
1387
|
-
importCompletionTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1388
|
-
importDeletedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1389
|
-
importRequestTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1387
|
+
importCompletionTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "importCompletionTime"),
|
|
1388
|
+
importDeletedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "importDeletedTime"),
|
|
1389
|
+
importRequestTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "importRequestTime"),
|
|
1390
1390
|
importTaskId: import_smithy_client.expectString,
|
|
1391
1391
|
importUrl: import_smithy_client.expectString,
|
|
1392
1392
|
name: import_smithy_client.expectString,
|
|
@@ -1407,18 +1407,18 @@ var de_StartContinuousExportResponse = /* @__PURE__ */ __name((output, context)
|
|
|
1407
1407
|
exportId: import_smithy_client.expectString,
|
|
1408
1408
|
s3Bucket: import_smithy_client.expectString,
|
|
1409
1409
|
schemaStorageConfig: import_smithy_client._json,
|
|
1410
|
-
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1410
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime")
|
|
1411
1411
|
});
|
|
1412
1412
|
}, "de_StartContinuousExportResponse");
|
|
1413
1413
|
var de_StartImportTaskResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1414
1414
|
return (0, import_smithy_client.take)(output, {
|
|
1415
|
-
task: (_) => de_ImportTask(_, context)
|
|
1415
|
+
task: /* @__PURE__ */ __name((_) => de_ImportTask(_, context), "task")
|
|
1416
1416
|
});
|
|
1417
1417
|
}, "de_StartImportTaskResponse");
|
|
1418
1418
|
var de_StopContinuousExportResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1419
1419
|
return (0, import_smithy_client.take)(output, {
|
|
1420
|
-
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1421
|
-
stopTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1420
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
1421
|
+
stopTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "stopTime")
|
|
1422
1422
|
});
|
|
1423
1423
|
}, "de_StopContinuousExportResponse");
|
|
1424
1424
|
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
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.772.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",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.758.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.772.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.772.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|