@aws-sdk/client-application-discovery-service 3.325.0 → 3.327.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 +4 -0
  2. package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +12 -0
  3. package/dist-types/commands/CreateApplicationCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateTagsCommand.d.ts +4 -0
  5. package/dist-types/commands/DeleteApplicationsCommand.d.ts +4 -0
  6. package/dist-types/commands/DeleteTagsCommand.d.ts +4 -0
  7. package/dist-types/commands/DescribeAgentsCommand.d.ts +25 -0
  8. package/dist-types/commands/DescribeConfigurationsCommand.d.ts +10 -0
  9. package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +20 -0
  10. package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +18 -0
  11. package/dist-types/commands/DescribeExportTasksCommand.d.ts +18 -0
  12. package/dist-types/commands/DescribeImportTasksCommand.d.ts +23 -0
  13. package/dist-types/commands/DescribeTagsCommand.d.ts +15 -0
  14. package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +4 -0
  15. package/dist-types/commands/ExportConfigurationsCommand.d.ts +6 -0
  16. package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +45 -0
  17. package/dist-types/commands/ListConfigurationsCommand.d.ts +11 -0
  18. package/dist-types/commands/ListServerNeighborsCommand.d.ts +16 -0
  19. package/dist-types/commands/StartContinuousExportCommand.d.ts +12 -0
  20. package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +12 -0
  21. package/dist-types/commands/StartExportTaskCommand.d.ts +6 -0
  22. package/dist-types/commands/StartImportTaskCommand.d.ts +20 -0
  23. package/dist-types/commands/StopContinuousExportCommand.d.ts +7 -0
  24. package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +12 -0
  25. package/dist-types/commands/UpdateApplicationCommand.d.ts +4 -0
  26. package/package.json +7 -7
@@ -34,6 +34,8 @@ export interface AssociateConfigurationItemsToApplicationCommandOutput extends A
34
34
  * };
35
35
  * const command = new AssociateConfigurationItemsToApplicationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param AssociateConfigurationItemsToApplicationCommandInput - {@link AssociateConfigurationItemsToApplicationCommandInput}
@@ -59,6 +61,8 @@ export interface AssociateConfigurationItemsToApplicationCommandOutput extends A
59
61
  * @throws {@link ServerInternalErrorException} (server fault)
60
62
  * <p>The server experienced an internal error. Try again.</p>
61
63
  *
64
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
65
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
62
66
  *
63
67
  */
64
68
  export declare class AssociateConfigurationItemsToApplicationCommand extends $Command<AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -39,6 +39,16 @@ export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDat
39
39
  * };
40
40
  * const command = new BatchDeleteImportDataCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // BatchDeleteImportDataResponse
43
+ * // errors: [ // BatchDeleteImportDataErrorList
44
+ * // { // BatchDeleteImportDataError
45
+ * // importTaskId: "STRING_VALUE",
46
+ * // errorCode: "NOT_FOUND" || "INTERNAL_SERVER_ERROR" || "OVER_LIMIT",
47
+ * // errorDescription: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // };
51
+ *
42
52
  * ```
43
53
  *
44
54
  * @param BatchDeleteImportDataCommandInput - {@link BatchDeleteImportDataCommandInput}
@@ -64,6 +74,8 @@ export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDat
64
74
  * @throws {@link ServerInternalErrorException} (server fault)
65
75
  * <p>The server experienced an internal error. Try again.</p>
66
76
  *
77
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
78
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
67
79
  *
68
80
  */
69
81
  export declare class BatchDeleteImportDataCommand extends $Command<BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
32
32
  * };
33
33
  * const command = new CreateApplicationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // CreateApplicationResponse
36
+ * // configurationId: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
@@ -57,6 +61,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
57
61
  * @throws {@link ServerInternalErrorException} (server fault)
58
62
  * <p>The server experienced an internal error. Try again.</p>
59
63
  *
64
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
65
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
60
66
  *
61
67
  */
62
68
  export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -43,6 +43,8 @@ export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataB
43
43
  * };
44
44
  * const command = new CreateTagsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // {};
47
+ *
46
48
  * ```
47
49
  *
48
50
  * @param CreateTagsCommandInput - {@link CreateTagsCommandInput}
@@ -72,6 +74,8 @@ export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataB
72
74
  * @throws {@link ServerInternalErrorException} (server fault)
73
75
  * <p>The server experienced an internal error. Try again.</p>
74
76
  *
77
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
78
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
75
79
  *
76
80
  */
77
81
  export declare class CreateTagsCommand extends $Command<CreateTagsCommandInput, CreateTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteApplicationsCommandOutput extends DeleteApplicationsRespo
34
34
  * };
35
35
  * const command = new DeleteApplicationsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteApplicationsCommandInput - {@link DeleteApplicationsCommandInput}
@@ -59,6 +61,8 @@ export interface DeleteApplicationsCommandOutput extends DeleteApplicationsRespo
59
61
  * @throws {@link ServerInternalErrorException} (server fault)
60
62
  * <p>The server experienced an internal error. Try again.</p>
61
63
  *
64
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
65
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DeleteApplicationsCommand extends $Command<DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -40,6 +40,8 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataB
40
40
  * };
41
41
  * const command = new DeleteTagsCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // {};
44
+ *
43
45
  * ```
44
46
  *
45
47
  * @param DeleteTagsCommandInput - {@link DeleteTagsCommandInput}
@@ -69,6 +71,8 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataB
69
71
  * @throws {@link ServerInternalErrorException} (server fault)
70
72
  * <p>The server experienced an internal error. Try again.</p>
71
73
  *
74
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
75
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
72
76
  *
73
77
  */
74
78
  export declare class DeleteTagsCommand extends $Command<DeleteTagsCommandInput, DeleteTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -46,6 +46,29 @@ export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __M
46
46
  * };
47
47
  * const command = new DescribeAgentsCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // DescribeAgentsResponse
50
+ * // agentsInfo: [ // AgentsInfo
51
+ * // { // AgentInfo
52
+ * // agentId: "STRING_VALUE",
53
+ * // hostName: "STRING_VALUE",
54
+ * // agentNetworkInfoList: [ // AgentNetworkInfoList
55
+ * // { // AgentNetworkInfo
56
+ * // ipAddress: "STRING_VALUE",
57
+ * // macAddress: "STRING_VALUE",
58
+ * // },
59
+ * // ],
60
+ * // connectorId: "STRING_VALUE",
61
+ * // version: "STRING_VALUE",
62
+ * // health: "HEALTHY" || "UNHEALTHY" || "RUNNING" || "UNKNOWN" || "BLACKLISTED" || "SHUTDOWN",
63
+ * // lastHealthPingTime: "STRING_VALUE",
64
+ * // collectionStatus: "STRING_VALUE",
65
+ * // agentType: "STRING_VALUE",
66
+ * // registeredTime: "STRING_VALUE",
67
+ * // },
68
+ * // ],
69
+ * // nextToken: "STRING_VALUE",
70
+ * // };
71
+ *
49
72
  * ```
50
73
  *
51
74
  * @param DescribeAgentsCommandInput - {@link DescribeAgentsCommandInput}
@@ -71,6 +94,8 @@ export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __M
71
94
  * @throws {@link ServerInternalErrorException} (server fault)
72
95
  * <p>The server experienced an internal error. Try again.</p>
73
96
  *
97
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
98
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
74
99
  *
75
100
  */
76
101
  export declare class DescribeAgentsCommand extends $Command<DescribeAgentsCommandInput, DescribeAgentsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -56,6 +56,14 @@ export interface DescribeConfigurationsCommandOutput extends DescribeConfigurati
56
56
  * };
57
57
  * const command = new DescribeConfigurationsCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // DescribeConfigurationsResponse
60
+ * // configurations: [ // DescribeConfigurationsAttributes
61
+ * // { // DescribeConfigurationsAttribute
62
+ * // "<keys>": "STRING_VALUE",
63
+ * // },
64
+ * // ],
65
+ * // };
66
+ *
59
67
  * ```
60
68
  *
61
69
  * @param DescribeConfigurationsCommandInput - {@link DescribeConfigurationsCommandInput}
@@ -81,6 +89,8 @@ export interface DescribeConfigurationsCommandOutput extends DescribeConfigurati
81
89
  * @throws {@link ServerInternalErrorException} (server fault)
82
90
  * <p>The server experienced an internal error. Try again.</p>
83
91
  *
92
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
93
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
84
94
  *
85
95
  */
86
96
  export declare class DescribeConfigurationsCommand extends $Command<DescribeConfigurationsCommandInput, DescribeConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -37,6 +37,24 @@ export interface DescribeContinuousExportsCommandOutput extends DescribeContinuo
37
37
  * };
38
38
  * const command = new DescribeContinuousExportsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DescribeContinuousExportsResponse
41
+ * // descriptions: [ // ContinuousExportDescriptions
42
+ * // { // ContinuousExportDescription
43
+ * // exportId: "STRING_VALUE",
44
+ * // status: "START_IN_PROGRESS" || "START_FAILED" || "ACTIVE" || "ERROR" || "STOP_IN_PROGRESS" || "STOP_FAILED" || "INACTIVE",
45
+ * // statusDetail: "STRING_VALUE",
46
+ * // s3Bucket: "STRING_VALUE",
47
+ * // startTime: new Date("TIMESTAMP"),
48
+ * // stopTime: new Date("TIMESTAMP"),
49
+ * // dataSource: "AGENT",
50
+ * // schemaStorageConfig: { // SchemaStorageConfig
51
+ * // "<keys>": "STRING_VALUE",
52
+ * // },
53
+ * // },
54
+ * // ],
55
+ * // nextToken: "STRING_VALUE",
56
+ * // };
57
+ *
40
58
  * ```
41
59
  *
42
60
  * @param DescribeContinuousExportsCommandInput - {@link DescribeContinuousExportsCommandInput}
@@ -69,6 +87,8 @@ export interface DescribeContinuousExportsCommandOutput extends DescribeContinuo
69
87
  * @throws {@link ServerInternalErrorException} (server fault)
70
88
  * <p>The server experienced an internal error. Try again.</p>
71
89
  *
90
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
91
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
72
92
  *
73
93
  */
74
94
  export declare class DescribeContinuousExportsCommand extends $Command<DescribeContinuousExportsCommandInput, DescribeContinuousExportsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -38,6 +38,22 @@ export interface DescribeExportConfigurationsCommandOutput extends DescribeExpor
38
38
  * };
39
39
  * const command = new DescribeExportConfigurationsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeExportConfigurationsResponse
42
+ * // exportsInfo: [ // ExportsInfo
43
+ * // { // ExportInfo
44
+ * // exportId: "STRING_VALUE", // required
45
+ * // exportStatus: "FAILED" || "SUCCEEDED" || "IN_PROGRESS", // required
46
+ * // statusMessage: "STRING_VALUE", // required
47
+ * // configurationsDownloadUrl: "STRING_VALUE",
48
+ * // exportRequestTime: new Date("TIMESTAMP"), // required
49
+ * // isTruncated: true || false,
50
+ * // requestedStartTime: new Date("TIMESTAMP"),
51
+ * // requestedEndTime: new Date("TIMESTAMP"),
52
+ * // },
53
+ * // ],
54
+ * // nextToken: "STRING_VALUE",
55
+ * // };
56
+ *
41
57
  * ```
42
58
  *
43
59
  * @param DescribeExportConfigurationsCommandInput - {@link DescribeExportConfigurationsCommandInput}
@@ -67,6 +83,8 @@ export interface DescribeExportConfigurationsCommandOutput extends DescribeExpor
67
83
  * @throws {@link ServerInternalErrorException} (server fault)
68
84
  * <p>The server experienced an internal error. Try again.</p>
69
85
  *
86
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
87
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
70
88
  *
71
89
  */
72
90
  export declare class DescribeExportConfigurationsCommand extends $Command<DescribeExportConfigurationsCommandInput, DescribeExportConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -45,6 +45,22 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes
45
45
  * };
46
46
  * const command = new DescribeExportTasksCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // DescribeExportTasksResponse
49
+ * // exportsInfo: [ // ExportsInfo
50
+ * // { // ExportInfo
51
+ * // exportId: "STRING_VALUE", // required
52
+ * // exportStatus: "FAILED" || "SUCCEEDED" || "IN_PROGRESS", // required
53
+ * // statusMessage: "STRING_VALUE", // required
54
+ * // configurationsDownloadUrl: "STRING_VALUE",
55
+ * // exportRequestTime: new Date("TIMESTAMP"), // required
56
+ * // isTruncated: true || false,
57
+ * // requestedStartTime: new Date("TIMESTAMP"),
58
+ * // requestedEndTime: new Date("TIMESTAMP"),
59
+ * // },
60
+ * // ],
61
+ * // nextToken: "STRING_VALUE",
62
+ * // };
63
+ *
48
64
  * ```
49
65
  *
50
66
  * @param DescribeExportTasksCommandInput - {@link DescribeExportTasksCommandInput}
@@ -70,6 +86,8 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes
70
86
  * @throws {@link ServerInternalErrorException} (server fault)
71
87
  * <p>The server experienced an internal error. Try again.</p>
72
88
  *
89
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
90
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
73
91
  *
74
92
  */
75
93
  export declare class DescribeExportTasksCommand extends $Command<DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -41,6 +41,27 @@ export interface DescribeImportTasksCommandOutput extends DescribeImportTasksRes
41
41
  * };
42
42
  * const command = new DescribeImportTasksCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // DescribeImportTasksResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // tasks: [ // ImportTaskList
47
+ * // { // ImportTask
48
+ * // importTaskId: "STRING_VALUE",
49
+ * // clientRequestToken: "STRING_VALUE",
50
+ * // name: "STRING_VALUE",
51
+ * // importUrl: "STRING_VALUE",
52
+ * // status: "IMPORT_IN_PROGRESS" || "IMPORT_COMPLETE" || "IMPORT_COMPLETE_WITH_ERRORS" || "IMPORT_FAILED" || "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED" || "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED" || "DELETE_IN_PROGRESS" || "DELETE_COMPLETE" || "DELETE_FAILED" || "DELETE_FAILED_LIMIT_EXCEEDED" || "INTERNAL_ERROR",
53
+ * // importRequestTime: new Date("TIMESTAMP"),
54
+ * // importCompletionTime: new Date("TIMESTAMP"),
55
+ * // importDeletedTime: new Date("TIMESTAMP"),
56
+ * // serverImportSuccess: Number("int"),
57
+ * // serverImportFailure: Number("int"),
58
+ * // applicationImportSuccess: Number("int"),
59
+ * // applicationImportFailure: Number("int"),
60
+ * // errorsAndFailedEntriesZip: "STRING_VALUE",
61
+ * // },
62
+ * // ],
63
+ * // };
64
+ *
44
65
  * ```
45
66
  *
46
67
  * @param DescribeImportTasksCommandInput - {@link DescribeImportTasksCommandInput}
@@ -66,6 +87,8 @@ export interface DescribeImportTasksCommandOutput extends DescribeImportTasksRes
66
87
  * @throws {@link ServerInternalErrorException} (server fault)
67
88
  * <p>The server experienced an internal error. Try again.</p>
68
89
  *
90
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
91
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
69
92
  *
70
93
  */
71
94
  export declare class DescribeImportTasksCommand extends $Command<DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -55,6 +55,19 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
55
55
  * };
56
56
  * const command = new DescribeTagsCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // DescribeTagsResponse
59
+ * // tags: [ // ConfigurationTagSet
60
+ * // { // ConfigurationTag
61
+ * // configurationType: "SERVER" || "PROCESS" || "CONNECTION" || "APPLICATION",
62
+ * // configurationId: "STRING_VALUE",
63
+ * // key: "STRING_VALUE",
64
+ * // value: "STRING_VALUE",
65
+ * // timeOfCreation: new Date("TIMESTAMP"),
66
+ * // },
67
+ * // ],
68
+ * // nextToken: "STRING_VALUE",
69
+ * // };
70
+ *
58
71
  * ```
59
72
  *
60
73
  * @param DescribeTagsCommandInput - {@link DescribeTagsCommandInput}
@@ -84,6 +97,8 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
84
97
  * @throws {@link ServerInternalErrorException} (server fault)
85
98
  * <p>The server experienced an internal error. Try again.</p>
86
99
  *
100
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
101
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
87
102
  *
88
103
  */
89
104
  export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DisassociateConfigurationItemsFromApplicationCommandOutput exte
34
34
  * };
35
35
  * const command = new DisassociateConfigurationItemsFromApplicationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DisassociateConfigurationItemsFromApplicationCommandInput - {@link DisassociateConfigurationItemsFromApplicationCommandInput}
@@ -59,6 +61,8 @@ export interface DisassociateConfigurationItemsFromApplicationCommandOutput exte
59
61
  * @throws {@link ServerInternalErrorException} (server fault)
60
62
  * <p>The server experienced an internal error. Try again.</p>
61
63
  *
64
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
65
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DisassociateConfigurationItemsFromApplicationCommand extends $Command<DisassociateConfigurationItemsFromApplicationCommandInput, DisassociateConfigurationItemsFromApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -36,6 +36,10 @@ export interface ExportConfigurationsCommandOutput extends ExportConfigurationsR
36
36
  * const input = {};
37
37
  * const command = new ExportConfigurationsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ExportConfigurationsResponse
40
+ * // exportId: "STRING_VALUE",
41
+ * // };
42
+ *
39
43
  * ```
40
44
  *
41
45
  * @param ExportConfigurationsCommandInput - {@link ExportConfigurationsCommandInput}
@@ -64,6 +68,8 @@ export interface ExportConfigurationsCommandOutput extends ExportConfigurationsR
64
68
  * @throws {@link ServerInternalErrorException} (server fault)
65
69
  * <p>The server experienced an internal error. Try again.</p>
66
70
  *
71
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
72
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
67
73
  *
68
74
  */
69
75
  export declare class ExportConfigurationsCommand extends $Command<ExportConfigurationsCommandInput, ExportConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -31,6 +31,49 @@ export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryRes
31
31
  * const input = {};
32
32
  * const command = new GetDiscoverySummaryCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetDiscoverySummaryResponse
35
+ * // servers: Number("long"),
36
+ * // applications: Number("long"),
37
+ * // serversMappedToApplications: Number("long"),
38
+ * // serversMappedtoTags: Number("long"),
39
+ * // agentSummary: { // CustomerAgentInfo
40
+ * // activeAgents: Number("int"), // required
41
+ * // healthyAgents: Number("int"), // required
42
+ * // blackListedAgents: Number("int"), // required
43
+ * // shutdownAgents: Number("int"), // required
44
+ * // unhealthyAgents: Number("int"), // required
45
+ * // totalAgents: Number("int"), // required
46
+ * // unknownAgents: Number("int"), // required
47
+ * // },
48
+ * // connectorSummary: { // CustomerConnectorInfo
49
+ * // activeConnectors: Number("int"), // required
50
+ * // healthyConnectors: Number("int"), // required
51
+ * // blackListedConnectors: Number("int"), // required
52
+ * // shutdownConnectors: Number("int"), // required
53
+ * // unhealthyConnectors: Number("int"), // required
54
+ * // totalConnectors: Number("int"), // required
55
+ * // unknownConnectors: Number("int"), // required
56
+ * // },
57
+ * // meCollectorSummary: { // CustomerMeCollectorInfo
58
+ * // activeMeCollectors: Number("int"), // required
59
+ * // healthyMeCollectors: Number("int"), // required
60
+ * // denyListedMeCollectors: Number("int"), // required
61
+ * // shutdownMeCollectors: Number("int"), // required
62
+ * // unhealthyMeCollectors: Number("int"), // required
63
+ * // totalMeCollectors: Number("int"), // required
64
+ * // unknownMeCollectors: Number("int"), // required
65
+ * // },
66
+ * // agentlessCollectorSummary: { // CustomerAgentlessCollectorInfo
67
+ * // activeAgentlessCollectors: Number("int"), // required
68
+ * // healthyAgentlessCollectors: Number("int"), // required
69
+ * // denyListedAgentlessCollectors: Number("int"), // required
70
+ * // shutdownAgentlessCollectors: Number("int"), // required
71
+ * // unhealthyAgentlessCollectors: Number("int"), // required
72
+ * // totalAgentlessCollectors: Number("int"), // required
73
+ * // unknownAgentlessCollectors: Number("int"), // required
74
+ * // },
75
+ * // };
76
+ *
34
77
  * ```
35
78
  *
36
79
  * @param GetDiscoverySummaryCommandInput - {@link GetDiscoverySummaryCommandInput}
@@ -56,6 +99,8 @@ export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryRes
56
99
  * @throws {@link ServerInternalErrorException} (server fault)
57
100
  * <p>The server experienced an internal error. Try again.</p>
58
101
  *
102
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
103
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
59
104
  *
60
105
  */
61
106
  export declare class GetDiscoverySummaryCommand extends $Command<GetDiscoverySummaryCommandInput, GetDiscoverySummaryCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -50,6 +50,15 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
50
50
  * };
51
51
  * const command = new ListConfigurationsCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // ListConfigurationsResponse
54
+ * // configurations: [ // Configurations
55
+ * // { // Configuration
56
+ * // "<keys>": "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // nextToken: "STRING_VALUE",
60
+ * // };
61
+ *
53
62
  * ```
54
63
  *
55
64
  * @param ListConfigurationsCommandInput - {@link ListConfigurationsCommandInput}
@@ -79,6 +88,8 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
79
88
  * @throws {@link ServerInternalErrorException} (server fault)
80
89
  * <p>The server experienced an internal error. Try again.</p>
81
90
  *
91
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
92
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
82
93
  *
83
94
  */
84
95
  export declare class ListConfigurationsCommand extends $Command<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -38,6 +38,20 @@ export interface ListServerNeighborsCommandOutput extends ListServerNeighborsRes
38
38
  * };
39
39
  * const command = new ListServerNeighborsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ListServerNeighborsResponse
42
+ * // neighbors: [ // NeighborDetailsList // required
43
+ * // { // NeighborConnectionDetail
44
+ * // sourceServerId: "STRING_VALUE", // required
45
+ * // destinationServerId: "STRING_VALUE", // required
46
+ * // destinationPort: Number("int"),
47
+ * // transportProtocol: "STRING_VALUE",
48
+ * // connectionsCount: Number("long"), // required
49
+ * // },
50
+ * // ],
51
+ * // nextToken: "STRING_VALUE",
52
+ * // knownDependencyCount: Number("long"),
53
+ * // };
54
+ *
41
55
  * ```
42
56
  *
43
57
  * @param ListServerNeighborsCommandInput - {@link ListServerNeighborsCommandInput}
@@ -63,6 +77,8 @@ export interface ListServerNeighborsCommandOutput extends ListServerNeighborsRes
63
77
  * @throws {@link ServerInternalErrorException} (server fault)
64
78
  * <p>The server experienced an internal error. Try again.</p>
65
79
  *
80
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
81
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
66
82
  *
67
83
  */
68
84
  export declare class ListServerNeighborsCommand extends $Command<ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -29,6 +29,16 @@ export interface StartContinuousExportCommandOutput extends StartContinuousExpor
29
29
  * const input = {};
30
30
  * const command = new StartContinuousExportCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // { // StartContinuousExportResponse
33
+ * // exportId: "STRING_VALUE",
34
+ * // s3Bucket: "STRING_VALUE",
35
+ * // startTime: new Date("TIMESTAMP"),
36
+ * // dataSource: "AGENT",
37
+ * // schemaStorageConfig: { // SchemaStorageConfig
38
+ * // "<keys>": "STRING_VALUE",
39
+ * // },
40
+ * // };
41
+ *
32
42
  * ```
33
43
  *
34
44
  * @param StartContinuousExportCommandInput - {@link StartContinuousExportCommandInput}
@@ -67,6 +77,8 @@ export interface StartContinuousExportCommandOutput extends StartContinuousExpor
67
77
  * @throws {@link ServerInternalErrorException} (server fault)
68
78
  * <p>The server experienced an internal error. Try again.</p>
69
79
  *
80
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
81
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
70
82
  *
71
83
  */
72
84
  export declare class StartContinuousExportCommand extends $Command<StartContinuousExportCommandInput, StartContinuousExportCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCol
33
33
  * };
34
34
  * const command = new StartDataCollectionByAgentIdsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // StartDataCollectionByAgentIdsResponse
37
+ * // agentsConfigurationStatus: [ // AgentConfigurationStatusList
38
+ * // { // AgentConfigurationStatus
39
+ * // agentId: "STRING_VALUE",
40
+ * // operationSucceeded: true || false,
41
+ * // description: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param StartDataCollectionByAgentIdsCommandInput - {@link StartDataCollectionByAgentIdsCommandInput}
@@ -58,6 +68,8 @@ export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCol
58
68
  * @throws {@link ServerInternalErrorException} (server fault)
59
69
  * <p>The server experienced an internal error. Try again.</p>
60
70
  *
71
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
72
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
61
73
  *
62
74
  */
63
75
  export declare class StartDataCollectionByAgentIdsCommand extends $Command<StartDataCollectionByAgentIdsCommandInput, StartDataCollectionByAgentIdsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -52,6 +52,10 @@ export interface StartExportTaskCommandOutput extends StartExportTaskResponse, _
52
52
  * };
53
53
  * const command = new StartExportTaskCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // StartExportTaskResponse
56
+ * // exportId: "STRING_VALUE",
57
+ * // };
58
+ *
55
59
  * ```
56
60
  *
57
61
  * @param StartExportTaskCommandInput - {@link StartExportTaskCommandInput}
@@ -80,6 +84,8 @@ export interface StartExportTaskCommandOutput extends StartExportTaskResponse, _
80
84
  * @throws {@link ServerInternalErrorException} (server fault)
81
85
  * <p>The server experienced an internal error. Try again.</p>
82
86
  *
87
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
88
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
83
89
  *
84
90
  */
85
91
  export declare class StartExportTaskCommand extends $Command<StartExportTaskCommandInput, StartExportTaskCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -64,6 +64,24 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
64
64
  * };
65
65
  * const command = new StartImportTaskCommand(input);
66
66
  * const response = await client.send(command);
67
+ * // { // StartImportTaskResponse
68
+ * // task: { // ImportTask
69
+ * // importTaskId: "STRING_VALUE",
70
+ * // clientRequestToken: "STRING_VALUE",
71
+ * // name: "STRING_VALUE",
72
+ * // importUrl: "STRING_VALUE",
73
+ * // status: "IMPORT_IN_PROGRESS" || "IMPORT_COMPLETE" || "IMPORT_COMPLETE_WITH_ERRORS" || "IMPORT_FAILED" || "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED" || "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED" || "DELETE_IN_PROGRESS" || "DELETE_COMPLETE" || "DELETE_FAILED" || "DELETE_FAILED_LIMIT_EXCEEDED" || "INTERNAL_ERROR",
74
+ * // importRequestTime: new Date("TIMESTAMP"),
75
+ * // importCompletionTime: new Date("TIMESTAMP"),
76
+ * // importDeletedTime: new Date("TIMESTAMP"),
77
+ * // serverImportSuccess: Number("int"),
78
+ * // serverImportFailure: Number("int"),
79
+ * // applicationImportSuccess: Number("int"),
80
+ * // applicationImportFailure: Number("int"),
81
+ * // errorsAndFailedEntriesZip: "STRING_VALUE",
82
+ * // },
83
+ * // };
84
+ *
67
85
  * ```
68
86
  *
69
87
  * @param StartImportTaskCommandInput - {@link StartImportTaskCommandInput}
@@ -96,6 +114,8 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
96
114
  * @throws {@link ServerInternalErrorException} (server fault)
97
115
  * <p>The server experienced an internal error. Try again.</p>
98
116
  *
117
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
118
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
99
119
  *
100
120
  */
101
121
  export declare class StartImportTaskCommand extends $Command<StartImportTaskCommandInput, StartImportTaskCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR
31
31
  * };
32
32
  * const command = new StopContinuousExportCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StopContinuousExportResponse
35
+ * // startTime: new Date("TIMESTAMP"),
36
+ * // stopTime: new Date("TIMESTAMP"),
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param StopContinuousExportCommandInput - {@link StopContinuousExportCommandInput}
@@ -70,6 +75,8 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR
70
75
  * @throws {@link ServerInternalErrorException} (server fault)
71
76
  * <p>The server experienced an internal error. Try again.</p>
72
77
  *
78
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
79
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
73
80
  *
74
81
  */
75
82
  export declare class StopContinuousExportCommand extends $Command<StopContinuousExportCommandInput, StopContinuousExportCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
33
33
  * };
34
34
  * const command = new StopDataCollectionByAgentIdsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // StopDataCollectionByAgentIdsResponse
37
+ * // agentsConfigurationStatus: [ // AgentConfigurationStatusList
38
+ * // { // AgentConfigurationStatus
39
+ * // agentId: "STRING_VALUE",
40
+ * // operationSucceeded: true || false,
41
+ * // description: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param StopDataCollectionByAgentIdsCommandInput - {@link StopDataCollectionByAgentIdsCommandInput}
@@ -58,6 +68,8 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
58
68
  * @throws {@link ServerInternalErrorException} (server fault)
59
69
  * <p>The server experienced an internal error. Try again.</p>
60
70
  *
71
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
72
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
61
73
  *
62
74
  */
63
75
  export declare class StopDataCollectionByAgentIdsCommand extends $Command<StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
33
33
  * };
34
34
  * const command = new UpdateApplicationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
@@ -58,6 +60,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
58
60
  * @throws {@link ServerInternalErrorException} (server fault)
59
61
  * <p>The server experienced an internal error. Try again.</p>
60
62
  *
63
+ * @throws {@link ApplicationDiscoveryServiceServiceException}
64
+ * <p>Base exception class for all service exceptions from ApplicationDiscoveryService service.</p>
61
65
  *
62
66
  */
63
67
  export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
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.325.0",
4
+ "version": "3.327.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,9 +21,9 @@
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.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",