@aws-sdk/client-application-discovery-service 3.296.0 → 3.297.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-types/ApplicationDiscoveryService.d.ts +26 -0
- package/dist-types/ApplicationDiscoveryServiceClient.d.ts +24 -4
- package/dist-types/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAgentsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExportTasksCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImportTasksCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +16 -0
- package/dist-types/commands/ExportConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServerNeighborsCommand.d.ts +16 -0
- package/dist-types/commands/StartContinuousExportCommand.d.ts +16 -0
- package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +16 -0
- package/dist-types/commands/StartExportTaskCommand.d.ts +16 -0
- package/dist-types/commands/StartImportTaskCommand.d.ts +16 -0
- package/dist-types/commands/StopContinuousExportCommand.d.ts +16 -0
- package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/ApplicationDiscoveryServiceServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +211 -4
- package/dist-types/pagination/DescribeContinuousExportsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeImportTasksPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { StartDataCollectionByAgentIdsRequest, StartDataCollectionByAgentIdsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartDataCollectionByAgentIdsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartDataCollectionByAgentIdsCommandInput extends StartDataCollectionByAgentIdsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartDataCollectionByAgentIdsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCollectionByAgentIdsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Instructs the specified agents or connectors to start collecting data.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCol
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartDataCollectionByAgentIdsCommandInput - {@link StartDataCollectionByAgentIdsCommandInput}
|
|
34
|
+
* @returns {@link StartDataCollectionByAgentIdsCommandOutput}
|
|
28
35
|
* @see {@link StartDataCollectionByAgentIdsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartDataCollectionByAgentIdsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCol
|
|
|
51
58
|
export declare class StartDataCollectionByAgentIdsCommand extends $Command<StartDataCollectionByAgentIdsCommandInput, StartDataCollectionByAgentIdsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
52
59
|
readonly input: StartDataCollectionByAgentIdsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: StartDataCollectionByAgentIdsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDataCollectionByAgentIdsCommandInput, StartDataCollectionByAgentIdsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { StartExportTaskRequest, StartExportTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartExportTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartExportTaskCommandInput extends StartExportTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartExportTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartExportTaskCommandOutput extends StartExportTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Begins the export of discovered data to an S3 bucket.</p>
|
|
18
23
|
* <p> If you specify <code>agentIds</code> in a filter, the task exports up to 72 hours of
|
|
19
24
|
* detailed data collected by the identified Application Discovery Agent, including network,
|
|
@@ -33,6 +38,8 @@ export interface StartExportTaskCommandOutput extends StartExportTaskResponse, _
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param StartExportTaskCommandInput - {@link StartExportTaskCommandInput}
|
|
42
|
+
* @returns {@link StartExportTaskCommandOutput}
|
|
36
43
|
* @see {@link StartExportTaskCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link StartExportTaskCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface StartExportTaskCommandOutput extends StartExportTaskResponse, _
|
|
|
62
69
|
export declare class StartExportTaskCommand extends $Command<StartExportTaskCommandInput, StartExportTaskCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
63
70
|
readonly input: StartExportTaskCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: StartExportTaskCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartExportTaskCommandInput, StartExportTaskCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { StartImportTaskRequest, StartImportTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartImportTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartImportTaskCommandInput extends StartImportTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartImportTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartImportTaskCommandOutput extends StartImportTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts an import task, which allows you to import details of your on-premises environment
|
|
18
23
|
* directly into Amazon Web Services Migration Hub without having to use the Application Discovery Service (ADS)
|
|
19
24
|
* tools such as the Discovery Connector or Discovery Agent. This gives you the option to perform
|
|
@@ -56,6 +61,8 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
|
|
|
56
61
|
* const response = await client.send(command);
|
|
57
62
|
* ```
|
|
58
63
|
*
|
|
64
|
+
* @param StartImportTaskCommandInput - {@link StartImportTaskCommandInput}
|
|
65
|
+
* @returns {@link StartImportTaskCommandOutput}
|
|
59
66
|
* @see {@link StartImportTaskCommandInput} for command's `input` shape.
|
|
60
67
|
* @see {@link StartImportTaskCommandOutput} for command's `response` shape.
|
|
61
68
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -89,11 +96,20 @@ export interface StartImportTaskCommandOutput extends StartImportTaskResponse, _
|
|
|
89
96
|
export declare class StartImportTaskCommand extends $Command<StartImportTaskCommandInput, StartImportTaskCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
90
97
|
readonly input: StartImportTaskCommandInput;
|
|
91
98
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
92
102
|
constructor(input: StartImportTaskCommandInput);
|
|
93
103
|
/**
|
|
94
104
|
* @internal
|
|
95
105
|
*/
|
|
96
106
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartImportTaskCommandInput, StartImportTaskCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
97
110
|
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
98
114
|
private deserialize;
|
|
99
115
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { StopContinuousExportRequest, StopContinuousExportResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopContinuousExportCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopContinuousExportCommandInput extends StopContinuousExportRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopContinuousExportCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopContinuousExportCommandOutput extends StopContinuousExportResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stop the continuous flow of agent's discovered data into Amazon Athena.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopContinuousExportCommandInput - {@link StopContinuousExportCommandInput}
|
|
34
|
+
* @returns {@link StopContinuousExportCommandOutput}
|
|
28
35
|
* @see {@link StopContinuousExportCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopContinuousExportCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface StopContinuousExportCommandOutput extends StopContinuousExportR
|
|
|
65
72
|
export declare class StopContinuousExportCommand extends $Command<StopContinuousExportCommandInput, StopContinuousExportCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
66
73
|
readonly input: StopContinuousExportCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: StopContinuousExportCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopContinuousExportCommandInput, StopContinuousExportCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { StopDataCollectionByAgentIdsRequest, StopDataCollectionByAgentIdsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopDataCollectionByAgentIdsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopDataCollectionByAgentIdsCommandInput extends StopDataCollectionByAgentIdsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopDataCollectionByAgentIdsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataCollectionByAgentIdsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Instructs the specified agents or connectors to stop collecting data.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopDataCollectionByAgentIdsCommandInput - {@link StopDataCollectionByAgentIdsCommandInput}
|
|
34
|
+
* @returns {@link StopDataCollectionByAgentIdsCommandOutput}
|
|
28
35
|
* @see {@link StopDataCollectionByAgentIdsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopDataCollectionByAgentIdsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataColle
|
|
|
51
58
|
export declare class StopDataCollectionByAgentIdsCommand extends $Command<StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
52
59
|
readonly input: StopDataCollectionByAgentIdsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: StopDataCollectionByAgentIdsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates metadata about an application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
34
|
+
* @returns {@link UpdateApplicationCommandOutput}
|
|
28
35
|
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
51
58
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
52
59
|
readonly input: UpdateApplicationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: UpdateApplicationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from ApplicationDiscoveryService service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ApplicationDiscoveryServiceServiceException extends __ServiceException {
|