@aws-sdk/client-application-discovery-service 3.298.0 → 3.300.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.
Files changed (26) hide show
  1. package/dist-types/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +6 -0
  2. package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +5 -0
  3. package/dist-types/commands/CreateApplicationCommand.d.ts +4 -0
  4. package/dist-types/commands/CreateTagsCommand.d.ts +11 -0
  5. package/dist-types/commands/DeleteApplicationsCommand.d.ts +5 -0
  6. package/dist-types/commands/DeleteTagsCommand.d.ts +11 -0
  7. package/dist-types/commands/DescribeAgentsCommand.d.ts +16 -0
  8. package/dist-types/commands/DescribeConfigurationsCommand.d.ts +5 -0
  9. package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +7 -0
  10. package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +7 -0
  11. package/dist-types/commands/DescribeExportTasksCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeImportTasksCommand.d.ts +12 -0
  13. package/dist-types/commands/DescribeTagsCommand.d.ts +12 -0
  14. package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +6 -0
  15. package/dist-types/commands/ExportConfigurationsCommand.d.ts +1 -0
  16. package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +1 -0
  17. package/dist-types/commands/ListConfigurationsCommand.d.ts +20 -0
  18. package/dist-types/commands/ListServerNeighborsCommand.d.ts +9 -0
  19. package/dist-types/commands/StartContinuousExportCommand.d.ts +1 -0
  20. package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +5 -0
  21. package/dist-types/commands/StartExportTaskCommand.d.ts +16 -0
  22. package/dist-types/commands/StartImportTaskCommand.d.ts +5 -0
  23. package/dist-types/commands/StopContinuousExportCommand.d.ts +3 -0
  24. package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +5 -0
  25. package/dist-types/commands/UpdateApplicationCommand.d.ts +5 -0
  26. package/package.json +12 -12
@@ -26,6 +26,12 @@ export interface AssociateConfigurationItemsToApplicationCommandOutput extends A
26
26
  * import { ApplicationDiscoveryServiceClient, AssociateConfigurationItemsToApplicationCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, AssociateConfigurationItemsToApplicationCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * applicationConfigurationId: "STRING_VALUE", // required
31
+ * configurationIds: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new AssociateConfigurationItemsToApplicationCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -32,6 +32,11 @@ export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDat
32
32
  * import { ApplicationDiscoveryServiceClient, BatchDeleteImportDataCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
33
33
  * // const { ApplicationDiscoveryServiceClient, BatchDeleteImportDataCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
34
34
  * const client = new ApplicationDiscoveryServiceClient(config);
35
+ * const input = {
36
+ * importTaskIds: [ // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * };
35
40
  * const command = new BatchDeleteImportDataCommand(input);
36
41
  * const response = await client.send(command);
37
42
  * ```
@@ -26,6 +26,10 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
26
26
  * import { ApplicationDiscoveryServiceClient, CreateApplicationCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, CreateApplicationCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * name: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * };
29
33
  * const command = new CreateApplicationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -30,6 +30,17 @@ export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataB
30
30
  * import { ApplicationDiscoveryServiceClient, CreateTagsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
31
31
  * // const { ApplicationDiscoveryServiceClient, CreateTagsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
32
32
  * const client = new ApplicationDiscoveryServiceClient(config);
33
+ * const input = {
34
+ * configurationIds: [ // required
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * tags: [ // required
38
+ * {
39
+ * key: "STRING_VALUE", // required
40
+ * value: "STRING_VALUE", // required
41
+ * },
42
+ * ],
43
+ * };
33
44
  * const command = new CreateTagsCommand(input);
34
45
  * const response = await client.send(command);
35
46
  * ```
@@ -27,6 +27,11 @@ export interface DeleteApplicationsCommandOutput extends DeleteApplicationsRespo
27
27
  * import { ApplicationDiscoveryServiceClient, DeleteApplicationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
28
28
  * // const { ApplicationDiscoveryServiceClient, DeleteApplicationsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
29
29
  * const client = new ApplicationDiscoveryServiceClient(config);
30
+ * const input = {
31
+ * configurationIds: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
30
35
  * const command = new DeleteApplicationsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,17 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataB
27
27
  * import { ApplicationDiscoveryServiceClient, DeleteTagsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
28
28
  * // const { ApplicationDiscoveryServiceClient, DeleteTagsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
29
29
  * const client = new ApplicationDiscoveryServiceClient(config);
30
+ * const input = {
31
+ * configurationIds: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * tags: [
35
+ * {
36
+ * key: "STRING_VALUE", // required
37
+ * value: "STRING_VALUE", // required
38
+ * },
39
+ * ],
40
+ * };
30
41
  * const command = new DeleteTagsCommand(input);
31
42
  * const response = await client.send(command);
32
43
  * ```
@@ -28,6 +28,22 @@ export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __M
28
28
  * import { ApplicationDiscoveryServiceClient, DescribeAgentsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
29
29
  * // const { ApplicationDiscoveryServiceClient, DescribeAgentsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
30
30
  * const client = new ApplicationDiscoveryServiceClient(config);
31
+ * const input = {
32
+ * agentIds: [
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * filters: [
36
+ * {
37
+ * name: "STRING_VALUE", // required
38
+ * values: [ // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * condition: "STRING_VALUE", // required
42
+ * },
43
+ * ],
44
+ * maxResults: Number("int"),
45
+ * nextToken: "STRING_VALUE",
46
+ * };
31
47
  * const command = new DescribeAgentsCommand(input);
32
48
  * const response = await client.send(command);
33
49
  * ```
@@ -49,6 +49,11 @@ export interface DescribeConfigurationsCommandOutput extends DescribeConfigurati
49
49
  * import { ApplicationDiscoveryServiceClient, DescribeConfigurationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
50
50
  * // const { ApplicationDiscoveryServiceClient, DescribeConfigurationsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
51
51
  * const client = new ApplicationDiscoveryServiceClient(config);
52
+ * const input = {
53
+ * configurationIds: [ // required
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * };
52
57
  * const command = new DescribeConfigurationsCommand(input);
53
58
  * const response = await client.send(command);
54
59
  * ```
@@ -28,6 +28,13 @@ export interface DescribeContinuousExportsCommandOutput extends DescribeContinuo
28
28
  * import { ApplicationDiscoveryServiceClient, DescribeContinuousExportsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
29
29
  * // const { ApplicationDiscoveryServiceClient, DescribeContinuousExportsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
30
30
  * const client = new ApplicationDiscoveryServiceClient(config);
31
+ * const input = {
32
+ * exportIds: [
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * maxResults: Number("int"),
36
+ * nextToken: "STRING_VALUE",
37
+ * };
31
38
  * const command = new DescribeContinuousExportsCommand(input);
32
39
  * const response = await client.send(command);
33
40
  * ```
@@ -29,6 +29,13 @@ export interface DescribeExportConfigurationsCommandOutput extends DescribeExpor
29
29
  * import { ApplicationDiscoveryServiceClient, DescribeExportConfigurationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
30
30
  * // const { ApplicationDiscoveryServiceClient, DescribeExportConfigurationsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
31
31
  * const client = new ApplicationDiscoveryServiceClient(config);
32
+ * const input = {
33
+ * exportIds: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * maxResults: Number("int"),
37
+ * nextToken: "STRING_VALUE",
38
+ * };
32
39
  * const command = new DescribeExportConfigurationsCommand(input);
33
40
  * const response = await client.send(command);
34
41
  * ```
@@ -27,6 +27,22 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes
27
27
  * import { ApplicationDiscoveryServiceClient, DescribeExportTasksCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
28
28
  * // const { ApplicationDiscoveryServiceClient, DescribeExportTasksCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
29
29
  * const client = new ApplicationDiscoveryServiceClient(config);
30
+ * const input = {
31
+ * exportIds: [
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * filters: [
35
+ * {
36
+ * name: "STRING_VALUE", // required
37
+ * values: [ // required
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * condition: "STRING_VALUE", // required
41
+ * },
42
+ * ],
43
+ * maxResults: Number("int"),
44
+ * nextToken: "STRING_VALUE",
45
+ * };
30
46
  * const command = new DescribeExportTasksCommand(input);
31
47
  * const response = await client.send(command);
32
48
  * ```
@@ -27,6 +27,18 @@ export interface DescribeImportTasksCommandOutput extends DescribeImportTasksRes
27
27
  * import { ApplicationDiscoveryServiceClient, DescribeImportTasksCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
28
28
  * // const { ApplicationDiscoveryServiceClient, DescribeImportTasksCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
29
29
  * const client = new ApplicationDiscoveryServiceClient(config);
30
+ * const input = {
31
+ * filters: [
32
+ * {
33
+ * name: "IMPORT_TASK_ID" || "STATUS" || "NAME",
34
+ * values: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * },
38
+ * ],
39
+ * maxResults: Number("int"),
40
+ * nextToken: "STRING_VALUE",
41
+ * };
30
42
  * const command = new DescribeImportTasksCommand(input);
31
43
  * const response = await client.send(command);
32
44
  * ```
@@ -41,6 +41,18 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
41
41
  * import { ApplicationDiscoveryServiceClient, DescribeTagsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
42
42
  * // const { ApplicationDiscoveryServiceClient, DescribeTagsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
43
43
  * const client = new ApplicationDiscoveryServiceClient(config);
44
+ * const input = {
45
+ * filters: [
46
+ * {
47
+ * name: "STRING_VALUE", // required
48
+ * values: [ // required
49
+ * "STRING_VALUE",
50
+ * ],
51
+ * },
52
+ * ],
53
+ * maxResults: Number("int"),
54
+ * nextToken: "STRING_VALUE",
55
+ * };
44
56
  * const command = new DescribeTagsCommand(input);
45
57
  * const response = await client.send(command);
46
58
  * ```
@@ -26,6 +26,12 @@ export interface DisassociateConfigurationItemsFromApplicationCommandOutput exte
26
26
  * import { ApplicationDiscoveryServiceClient, DisassociateConfigurationItemsFromApplicationCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, DisassociateConfigurationItemsFromApplicationCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * applicationConfigurationId: "STRING_VALUE", // required
31
+ * configurationIds: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new DisassociateConfigurationItemsFromApplicationCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -33,6 +33,7 @@ export interface ExportConfigurationsCommandOutput extends ExportConfigurationsR
33
33
  * import { ApplicationDiscoveryServiceClient, ExportConfigurationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
34
34
  * // const { ApplicationDiscoveryServiceClient, ExportConfigurationsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
35
35
  * const client = new ApplicationDiscoveryServiceClient(config);
36
+ * const input = {};
36
37
  * const command = new ExportConfigurationsCommand(input);
37
38
  * const response = await client.send(command);
38
39
  * ```
@@ -28,6 +28,7 @@ export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryRes
28
28
  * import { ApplicationDiscoveryServiceClient, GetDiscoverySummaryCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
29
29
  * // const { ApplicationDiscoveryServiceClient, GetDiscoverySummaryCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
30
30
  * const client = new ApplicationDiscoveryServiceClient(config);
31
+ * const input = {};
31
32
  * const command = new GetDiscoverySummaryCommand(input);
32
33
  * const response = await client.send(command);
33
34
  * ```
@@ -28,6 +28,26 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
28
28
  * import { ApplicationDiscoveryServiceClient, ListConfigurationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
29
29
  * // const { ApplicationDiscoveryServiceClient, ListConfigurationsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
30
30
  * const client = new ApplicationDiscoveryServiceClient(config);
31
+ * const input = {
32
+ * configurationType: "SERVER" || "PROCESS" || "CONNECTION" || "APPLICATION", // required
33
+ * filters: [
34
+ * {
35
+ * name: "STRING_VALUE", // required
36
+ * values: [ // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * condition: "STRING_VALUE", // required
40
+ * },
41
+ * ],
42
+ * maxResults: Number("int"),
43
+ * nextToken: "STRING_VALUE",
44
+ * orderBy: [
45
+ * {
46
+ * fieldName: "STRING_VALUE", // required
47
+ * sortOrder: "ASC" || "DESC",
48
+ * },
49
+ * ],
50
+ * };
31
51
  * const command = new ListConfigurationsCommand(input);
32
52
  * const response = await client.send(command);
33
53
  * ```
@@ -27,6 +27,15 @@ export interface ListServerNeighborsCommandOutput extends ListServerNeighborsRes
27
27
  * import { ApplicationDiscoveryServiceClient, ListServerNeighborsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
28
28
  * // const { ApplicationDiscoveryServiceClient, ListServerNeighborsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
29
29
  * const client = new ApplicationDiscoveryServiceClient(config);
30
+ * const input = {
31
+ * configurationId: "STRING_VALUE", // required
32
+ * portInformationNeeded: true || false,
33
+ * neighborConfigurationIds: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * maxResults: Number("int"),
37
+ * nextToken: "STRING_VALUE",
38
+ * };
30
39
  * const command = new ListServerNeighborsCommand(input);
31
40
  * const response = await client.send(command);
32
41
  * ```
@@ -26,6 +26,7 @@ export interface StartContinuousExportCommandOutput extends StartContinuousExpor
26
26
  * import { ApplicationDiscoveryServiceClient, StartContinuousExportCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, StartContinuousExportCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {};
29
30
  * const command = new StartContinuousExportCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -26,6 +26,11 @@ export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCol
26
26
  * import { ApplicationDiscoveryServiceClient, StartDataCollectionByAgentIdsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, StartDataCollectionByAgentIdsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * agentIds: [ // required
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * };
29
34
  * const command = new StartDataCollectionByAgentIdsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -34,6 +34,22 @@ export interface StartExportTaskCommandOutput extends StartExportTaskResponse, _
34
34
  * import { ApplicationDiscoveryServiceClient, StartExportTaskCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
35
35
  * // const { ApplicationDiscoveryServiceClient, StartExportTaskCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
36
36
  * const client = new ApplicationDiscoveryServiceClient(config);
37
+ * const input = {
38
+ * exportDataFormat: [
39
+ * "CSV" || "GRAPHML",
40
+ * ],
41
+ * filters: [
42
+ * {
43
+ * name: "STRING_VALUE", // required
44
+ * values: [ // required
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * condition: "STRING_VALUE", // required
48
+ * },
49
+ * ],
50
+ * startTime: new Date("TIMESTAMP"),
51
+ * endTime: new Date("TIMESTAMP"),
52
+ * };
37
53
  * const command = new StartExportTaskCommand(input);
38
54
  * const response = await client.send(command);
39
55
  * ```
@@ -57,6 +57,11 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
57
57
  * import { ApplicationDiscoveryServiceClient, StartImportTaskCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
58
58
  * // const { ApplicationDiscoveryServiceClient, StartImportTaskCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
59
59
  * const client = new ApplicationDiscoveryServiceClient(config);
60
+ * const input = {
61
+ * clientRequestToken: "STRING_VALUE",
62
+ * name: "STRING_VALUE", // required
63
+ * importUrl: "STRING_VALUE", // required
64
+ * };
60
65
  * const command = new StartImportTaskCommand(input);
61
66
  * const response = await client.send(command);
62
67
  * ```
@@ -26,6 +26,9 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR
26
26
  * import { ApplicationDiscoveryServiceClient, StopContinuousExportCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, StopContinuousExportCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * exportId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopContinuousExportCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
26
26
  * import { ApplicationDiscoveryServiceClient, StopDataCollectionByAgentIdsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, StopDataCollectionByAgentIdsCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * agentIds: [ // required
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * };
29
34
  * const command = new StopDataCollectionByAgentIdsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
26
26
  * import { ApplicationDiscoveryServiceClient, UpdateApplicationCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import
27
27
  * // const { ApplicationDiscoveryServiceClient, UpdateApplicationCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import
28
28
  * const client = new ApplicationDiscoveryServiceClient(config);
29
+ * const input = {
30
+ * configurationId: "STRING_VALUE", // required
31
+ * name: "STRING_VALUE",
32
+ * description: "STRING_VALUE",
33
+ * };
29
34
  * const command = new UpdateApplicationCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
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.298.0",
4
+ "version": "3.300.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,23 +21,23 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"