@aws-sdk/client-application-discovery-service 3.353.0 → 3.354.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 (40) hide show
  1. package/README.md +33 -40
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-cjs/models/models_0.js +26 -2
  4. package/dist-cjs/protocols/Aws_json1_1.js +26 -0
  5. package/dist-es/endpoint/ruleset.js +3 -3
  6. package/dist-es/models/models_0.js +25 -1
  7. package/dist-es/protocols/Aws_json1_1.js +28 -2
  8. package/dist-types/ApplicationDiscoveryService.d.ts +33 -40
  9. package/dist-types/ApplicationDiscoveryServiceClient.d.ts +33 -40
  10. package/dist-types/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +3 -3
  11. package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +3 -3
  12. package/dist-types/commands/CreateApplicationCommand.d.ts +3 -3
  13. package/dist-types/commands/CreateTagsCommand.d.ts +3 -3
  14. package/dist-types/commands/DeleteApplicationsCommand.d.ts +3 -3
  15. package/dist-types/commands/DeleteTagsCommand.d.ts +3 -3
  16. package/dist-types/commands/DescribeAgentsCommand.d.ts +5 -5
  17. package/dist-types/commands/DescribeConfigurationsCommand.d.ts +3 -3
  18. package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +4 -4
  19. package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +3 -3
  20. package/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -3
  21. package/dist-types/commands/DescribeImportTasksCommand.d.ts +3 -3
  22. package/dist-types/commands/DescribeTagsCommand.d.ts +4 -4
  23. package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +3 -3
  24. package/dist-types/commands/ExportConfigurationsCommand.d.ts +3 -3
  25. package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +3 -3
  26. package/dist-types/commands/ListConfigurationsCommand.d.ts +3 -3
  27. package/dist-types/commands/ListServerNeighborsCommand.d.ts +3 -3
  28. package/dist-types/commands/StartContinuousExportCommand.d.ts +3 -3
  29. package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +4 -4
  30. package/dist-types/commands/StartExportTaskCommand.d.ts +46 -10
  31. package/dist-types/commands/StartImportTaskCommand.d.ts +10 -9
  32. package/dist-types/commands/StopContinuousExportCommand.d.ts +3 -3
  33. package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +4 -4
  34. package/dist-types/commands/UpdateApplicationCommand.d.ts +3 -3
  35. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  36. package/dist-types/index.d.ts +33 -40
  37. package/dist-types/models/models_0.d.ts +283 -88
  38. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +61 -1
  40. package/package.json +9 -9
@@ -24,10 +24,11 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
24
24
  /**
25
25
  * @public
26
26
  * <p>Starts an import task, which allows you to import details of your on-premises environment
27
- * directly into Amazon Web Services Migration Hub without having to use the Application Discovery Service (ADS)
28
- * tools such as the Discovery Connector or Discovery Agent. This gives you the option to perform
29
- * migration assessment and planning directly from your imported data, including the ability to
30
- * group your devices as applications and track their migration status.</p>
27
+ * directly into Amazon Web Services Migration Hub without having to use the Amazon Web Services Application Discovery
28
+ * Service (Application Discovery Service) tools such as the Amazon Web Services Application Discovery Service Agentless Collector
29
+ * or Application Discovery Agent. This gives you the option to
30
+ * perform migration assessment and planning directly from your imported data, including the
31
+ * ability to group your devices as applications and track their migration status.</p>
31
32
  * <p>To start an import request, do this:</p>
32
33
  * <ol>
33
34
  * <li>
@@ -42,8 +43,8 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
42
43
  * Your import file must be in the CSV format.</p>
43
44
  * </li>
44
45
  * <li>
45
- * <p>Use the console or the <code>StartImportTask</code> command with the Amazon Web Services CLI or one of
46
- * the Amazon Web Services SDKs to import the records from your file.</p>
46
+ * <p>Use the console or the <code>StartImportTask</code> command with the Amazon Web Services CLI or one
47
+ * of the Amazon Web Services SDKs to import the records from your file.</p>
47
48
  * </li>
48
49
  * </ol>
49
50
  * <p>For more information, including step-by-step procedures, see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-import.html">Migration Hub
@@ -95,11 +96,11 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
95
96
  * @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
96
97
  *
97
98
  * @throws {@link AuthorizationErrorException} (client fault)
98
- * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
99
- * policy associated with this account.</p>
99
+ * <p>The user does not have permission to perform the action. Check the IAM
100
+ * policy associated with this user.</p>
100
101
  *
101
102
  * @throws {@link HomeRegionNotSetException} (client fault)
102
- * <p>The home region is not set. Set the home region to continue.</p>
103
+ * <p>The home Region is not set. Set the home Region to continue.</p>
103
104
  *
104
105
  * @throws {@link InvalidParameterException} (client fault)
105
106
  * <p>One or more parameters are not valid. Verify the parameters and try again.</p>
@@ -49,11 +49,11 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR
49
49
  * @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
50
50
  *
51
51
  * @throws {@link AuthorizationErrorException} (client fault)
52
- * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
53
- * policy associated with this account.</p>
52
+ * <p>The user does not have permission to perform the action. Check the IAM
53
+ * policy associated with this user.</p>
54
54
  *
55
55
  * @throws {@link HomeRegionNotSetException} (client fault)
56
- * <p>The home region is not set. Set the home region to continue.</p>
56
+ * <p>The home Region is not set. Set the home Region to continue.</p>
57
57
  *
58
58
  * @throws {@link InvalidParameterException} (client fault)
59
59
  * <p>One or more parameters are not valid. Verify the parameters and try again.</p>
@@ -23,7 +23,7 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Instructs the specified agents or connectors to stop collecting data.</p>
26
+ * <p>Instructs the specified agents to stop collecting data.</p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -56,11 +56,11 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
56
56
  * @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
57
57
  *
58
58
  * @throws {@link AuthorizationErrorException} (client fault)
59
- * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
60
- * policy associated with this account.</p>
59
+ * <p>The user does not have permission to perform the action. Check the IAM
60
+ * policy associated with this user.</p>
61
61
  *
62
62
  * @throws {@link HomeRegionNotSetException} (client fault)
63
- * <p>The home region is not set. Set the home region to continue.</p>
63
+ * <p>The home Region is not set. Set the home Region to continue.</p>
64
64
  *
65
65
  * @throws {@link InvalidParameterException} (client fault)
66
66
  * <p>One or more parameters are not valid. Verify the parameters and try again.</p>
@@ -48,11 +48,11 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
48
48
  * @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
49
49
  *
50
50
  * @throws {@link AuthorizationErrorException} (client fault)
51
- * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
52
- * policy associated with this account.</p>
51
+ * <p>The user does not have permission to perform the action. Check the IAM
52
+ * policy associated with this user.</p>
53
53
  *
54
54
  * @throws {@link HomeRegionNotSetException} (client fault)
55
- * <p>The home region is not set. Set the home region to continue.</p>
55
+ * <p>The home Region is not set. Set the home Region to continue.</p>
56
56
  *
57
57
  * @throws {@link InvalidParameterException} (client fault)
58
58
  * <p>One or more parameters are not valid. Verify the parameters and try again.</p>
@@ -13,7 +13,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
13
13
  defaultSigningName: string;
14
14
  };
15
15
  export interface EndpointParameters extends __EndpointParameters {
16
- Region: string;
16
+ Region?: string;
17
17
  UseDualStack?: boolean;
18
18
  UseFIPS?: boolean;
19
19
  Endpoint?: string;
@@ -1,25 +1,26 @@
1
1
  /**
2
2
  * <fullname>Amazon Web Services Application Discovery Service</fullname>
3
- * <p>Amazon Web Services Application Discovery Service helps you plan application migration projects. It
4
- * automatically identifies servers, virtual machines (VMs), and network dependencies in your
5
- * on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">Amazon Web Services Application Discovery Service FAQ</a>.
6
- * Application Discovery Service offers three ways of performing discovery and
7
- * collecting data about your on-premises servers:</p>
3
+ * <p>Amazon Web Services Application Discovery Service (Application Discovery Service) helps you plan application migration projects. It automatically
4
+ * identifies servers, virtual machines (VMs), and network dependencies in your on-premises data
5
+ * centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">Amazon Web Services Application Discovery Service FAQ</a>. </p>
6
+ * <p>Application Discovery Service offers three ways of performing discovery and collecting
7
+ * data about your on-premises servers:</p>
8
8
  * <ul>
9
9
  * <li>
10
10
  * <p>
11
- * <b>Agentless discovery</b> is recommended for environments
12
- * that use VMware vCenter Server. This mode doesn't require you to install an agent on each
13
- * host. It does not work in non-VMware environments.</p>
11
+ * <b>Agentless discovery</b> using
12
+ * Amazon Web Services Application Discovery Service Agentless Collector (Agentless Collector), which doesn't require you
13
+ * to install an agent on each host.</p>
14
14
  * <ul>
15
15
  * <li>
16
- * <p>Agentless discovery gathers server information regardless of the operating
17
- * systems, which minimizes the time required for initial on-premises infrastructure
18
- * assessment.</p>
16
+ * <p>Agentless Collector gathers server information regardless of the
17
+ * operating systems, which minimizes the time required for initial on-premises
18
+ * infrastructure assessment.</p>
19
19
  * </li>
20
20
  * <li>
21
- * <p>Agentless discovery doesn't collect information about network dependencies, only
22
- * agent-based discovery collects that information.</p>
21
+ * <p>Agentless Collector doesn't collect information about network
22
+ * dependencies, only agent-based discovery collects that information.
23
+ * </p>
23
24
  * </li>
24
25
  * </ul>
25
26
  * </li>
@@ -27,9 +28,9 @@
27
28
  * <ul>
28
29
  * <li>
29
30
  * <p>
30
- * <b>Agent-based discovery</b> collects a richer set of data
31
- * than agentless discovery by using the Amazon Web Services Application Discovery Agent, which you install
32
- * on one or more hosts in your data center.</p>
31
+ * <b>Agent-based discovery</b> using the Amazon Web Services Application
32
+ * Discovery Agent (Application Discovery Agent) collects a richer set of data than agentless
33
+ * discovery, which you install on one or more hosts in your data center.</p>
33
34
  * <ul>
34
35
  * <li>
35
36
  * <p> The agent captures infrastructure and application information, including an
@@ -38,7 +39,9 @@
38
39
  * </li>
39
40
  * <li>
40
41
  * <p>The information collected by agents is secured at rest and in transit to the
41
- * Application Discovery Service database in the cloud. </p>
42
+ * Application Discovery Service database in the Amazon Web Services cloud. For more information, see
43
+ * <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-agent.html">Amazon Web Services Application
44
+ * Discovery Agent</a>.</p>
42
45
  * </li>
43
46
  * </ul>
44
47
  * </li>
@@ -48,8 +51,8 @@
48
51
  * <p>
49
52
  * <b>Amazon Web Services Partner Network (APN) solutions</b> integrate with
50
53
  * Application Discovery Service, enabling you to import details of your on-premises
51
- * environment directly into Migration Hub without using the discovery connector or discovery
52
- * agent.</p>
54
+ * environment directly into Amazon Web Services Migration Hub (Migration Hub) without using
55
+ * Agentless Collector or Application Discovery Agent.</p>
53
56
  * <ul>
54
57
  * <li>
55
58
  * <p>Third-party application discovery tools can query Amazon Web Services Application Discovery
@@ -64,53 +67,43 @@
64
67
  * </li>
65
68
  * </ul>
66
69
  * <p>
67
- * <b>Recommendations</b>
68
- * </p>
69
- * <p>We recommend that you use agent-based discovery for non-VMware environments, and
70
- * whenever you want to collect information about network dependencies. You can run agent-based
71
- * and agentless discovery simultaneously. Use agentless discovery to complete the initial
72
- * infrastructure assessment quickly, and then install agents on select hosts to collect
73
- * additional information.</p>
74
- * <p>
75
70
  * <b>Working With This Guide</b>
76
71
  * </p>
77
72
  * <p>This API reference provides descriptions, syntax, and usage examples for each of the
78
73
  * actions and data types for Application Discovery Service. The topic for each action shows the
79
74
  * API request parameters and the response. Alternatively, you can use one of the Amazon Web Services SDKs to
80
75
  * access an API that is tailored to the programming language or platform that you're using. For
81
- * more information, see <a href="http://aws.amazon.com/tools/#SDKs">Amazon Web Services
82
- * SDKs</a>.</p>
76
+ * more information, see <a href="http://aws.amazon.com/tools/#SDKs">Amazon Web Services SDKs</a>.</p>
83
77
  * <note>
84
78
  * <ul>
85
79
  * <li>
86
- * <p>Remember that you must set your Migration Hub home region before you call any of
80
+ * <p>Remember that you must set your Migration Hub home Region before you call any of
87
81
  * these APIs.</p>
88
82
  * </li>
89
83
  * <li>
90
84
  * <p>You must make API calls for write actions (create, notify, associate, disassociate,
91
- * import, or put) while in your home region, or a <code>HomeRegionNotSetException</code>
85
+ * import, or put) while in your home Region, or a <code>HomeRegionNotSetException</code>
92
86
  * error is returned.</p>
93
87
  * </li>
94
88
  * <li>
95
89
  * <p>API calls for read actions (list, describe, stop, and delete) are permitted outside
96
- * of your home region.</p>
90
+ * of your home Region.</p>
97
91
  * </li>
98
92
  * <li>
99
- * <p>Although it is unlikely, the Migration Hub home region could change. If you call
100
- * APIs outside the home region, an <code>InvalidInputException</code> is returned.</p>
93
+ * <p>Although it is unlikely, the Migration Hub home Region could change. If you call
94
+ * APIs outside the home Region, an <code>InvalidInputException</code> is returned.</p>
101
95
  * </li>
102
96
  * <li>
103
97
  * <p>You must call <code>GetHomeRegion</code> to obtain the latest Migration Hub home
104
- * region.</p>
98
+ * Region.</p>
105
99
  * </li>
106
100
  * </ul>
107
101
  * </note>
108
- * <p>This guide is intended for use with the <a href="http://docs.aws.amazon.com/application-discovery/latest/userguide/">Amazon Web Services Application
109
- * Discovery Service User Guide</a>.</p>
102
+ * <p>This guide is intended for use with the <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/">Amazon Web Services Application Discovery Service User
103
+ * Guide</a>.</p>
110
104
  * <important>
111
- * <p>All data is handled according to the <a href="http://aws.amazon.com/privacy/">Amazon Web Services
112
- * Privacy Policy</a>. You can operate Application Discovery Service offline to inspect
113
- * collected data before it is shared with the service.</p>
105
+ * <p>All data is handled according to the <a href="https://aws.amazon.com/privacy/">Amazon Web Services Privacy Policy</a>. You can operate Application Discovery Service offline to
106
+ * inspect collected data before it is shared with the service.</p>
114
107
  * </important>
115
108
  *
116
109
  * @packageDocumentation