@aws-sdk/client-migrationhubstrategy 3.928.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1256 -1073
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MigrationHubStrategyClient.js +2 -0
- package/dist-es/commands/GetApplicationComponentDetailsCommand.js +3 -9
- package/dist-es/commands/GetApplicationComponentStrategiesCommand.js +3 -9
- package/dist-es/commands/GetAssessmentCommand.js +3 -9
- package/dist-es/commands/GetImportFileTaskCommand.js +3 -9
- package/dist-es/commands/GetLatestAssessmentIdCommand.js +3 -9
- package/dist-es/commands/GetPortfolioPreferencesCommand.js +3 -9
- package/dist-es/commands/GetPortfolioSummaryCommand.js +3 -9
- package/dist-es/commands/GetRecommendationReportDetailsCommand.js +3 -9
- package/dist-es/commands/GetServerDetailsCommand.js +3 -9
- package/dist-es/commands/GetServerStrategiesCommand.js +3 -9
- package/dist-es/commands/ListAnalyzableServersCommand.js +3 -9
- package/dist-es/commands/ListApplicationComponentsCommand.js +3 -9
- package/dist-es/commands/ListCollectorsCommand.js +3 -9
- package/dist-es/commands/ListImportFileTaskCommand.js +3 -9
- package/dist-es/commands/ListServersCommand.js +3 -9
- package/dist-es/commands/PutPortfolioPreferencesCommand.js +3 -9
- package/dist-es/commands/StartAssessmentCommand.js +3 -9
- package/dist-es/commands/StartImportFileTaskCommand.js +3 -9
- package/dist-es/commands/StartRecommendationReportGenerationCommand.js +3 -9
- package/dist-es/commands/StopAssessmentCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationComponentConfigCommand.js +3 -10
- package/dist-es/commands/UpdateServerConfigCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -5
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1194 -0
- package/dist-types/MigrationHubStrategyClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +165 -0
- package/dist-types/ts3.4/MigrationHubStrategyClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -890
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { GetApplicationComponentDetailsCommandInput, GetApplicationComponentDetailsCommandOutput } from "../commands/GetApplicationComponentDetailsCommand";
|
|
4
|
-
import { GetApplicationComponentStrategiesCommandInput, GetApplicationComponentStrategiesCommandOutput } from "../commands/GetApplicationComponentStrategiesCommand";
|
|
5
|
-
import { GetAssessmentCommandInput, GetAssessmentCommandOutput } from "../commands/GetAssessmentCommand";
|
|
6
|
-
import { GetImportFileTaskCommandInput, GetImportFileTaskCommandOutput } from "../commands/GetImportFileTaskCommand";
|
|
7
|
-
import { GetLatestAssessmentIdCommandInput, GetLatestAssessmentIdCommandOutput } from "../commands/GetLatestAssessmentIdCommand";
|
|
8
|
-
import { GetPortfolioPreferencesCommandInput, GetPortfolioPreferencesCommandOutput } from "../commands/GetPortfolioPreferencesCommand";
|
|
9
|
-
import { GetPortfolioSummaryCommandInput, GetPortfolioSummaryCommandOutput } from "../commands/GetPortfolioSummaryCommand";
|
|
10
|
-
import { GetRecommendationReportDetailsCommandInput, GetRecommendationReportDetailsCommandOutput } from "../commands/GetRecommendationReportDetailsCommand";
|
|
11
|
-
import { GetServerDetailsCommandInput, GetServerDetailsCommandOutput } from "../commands/GetServerDetailsCommand";
|
|
12
|
-
import { GetServerStrategiesCommandInput, GetServerStrategiesCommandOutput } from "../commands/GetServerStrategiesCommand";
|
|
13
|
-
import { ListAnalyzableServersCommandInput, ListAnalyzableServersCommandOutput } from "../commands/ListAnalyzableServersCommand";
|
|
14
|
-
import { ListApplicationComponentsCommandInput, ListApplicationComponentsCommandOutput } from "../commands/ListApplicationComponentsCommand";
|
|
15
|
-
import { ListCollectorsCommandInput, ListCollectorsCommandOutput } from "../commands/ListCollectorsCommand";
|
|
16
|
-
import { ListImportFileTaskCommandInput, ListImportFileTaskCommandOutput } from "../commands/ListImportFileTaskCommand";
|
|
17
|
-
import { ListServersCommandInput, ListServersCommandOutput } from "../commands/ListServersCommand";
|
|
18
|
-
import { PutPortfolioPreferencesCommandInput, PutPortfolioPreferencesCommandOutput } from "../commands/PutPortfolioPreferencesCommand";
|
|
19
|
-
import { StartAssessmentCommandInput, StartAssessmentCommandOutput } from "../commands/StartAssessmentCommand";
|
|
20
|
-
import { StartImportFileTaskCommandInput, StartImportFileTaskCommandOutput } from "../commands/StartImportFileTaskCommand";
|
|
21
|
-
import { StartRecommendationReportGenerationCommandInput, StartRecommendationReportGenerationCommandOutput } from "../commands/StartRecommendationReportGenerationCommand";
|
|
22
|
-
import { StopAssessmentCommandInput, StopAssessmentCommandOutput } from "../commands/StopAssessmentCommand";
|
|
23
|
-
import { UpdateApplicationComponentConfigCommandInput, UpdateApplicationComponentConfigCommandOutput } from "../commands/UpdateApplicationComponentConfigCommand";
|
|
24
|
-
import { UpdateServerConfigCommandInput, UpdateServerConfigCommandOutput } from "../commands/UpdateServerConfigCommand";
|
|
25
|
-
/**
|
|
26
|
-
* serializeAws_restJson1GetApplicationComponentDetailsCommand
|
|
27
|
-
*/
|
|
28
|
-
export declare const se_GetApplicationComponentDetailsCommand: (input: GetApplicationComponentDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
-
/**
|
|
30
|
-
* serializeAws_restJson1GetApplicationComponentStrategiesCommand
|
|
31
|
-
*/
|
|
32
|
-
export declare const se_GetApplicationComponentStrategiesCommand: (input: GetApplicationComponentStrategiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_restJson1GetAssessmentCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_GetAssessmentCommand: (input: GetAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1GetImportFileTaskCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_GetImportFileTaskCommand: (input: GetImportFileTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1GetLatestAssessmentIdCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_GetLatestAssessmentIdCommand: (input: GetLatestAssessmentIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1GetPortfolioPreferencesCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_GetPortfolioPreferencesCommand: (input: GetPortfolioPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1GetPortfolioSummaryCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_GetPortfolioSummaryCommand: (input: GetPortfolioSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1GetRecommendationReportDetailsCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_GetRecommendationReportDetailsCommand: (input: GetRecommendationReportDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1GetServerDetailsCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_GetServerDetailsCommand: (input: GetServerDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1GetServerStrategiesCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_GetServerStrategiesCommand: (input: GetServerStrategiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1ListAnalyzableServersCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_ListAnalyzableServersCommand: (input: ListAnalyzableServersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1ListApplicationComponentsCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_ListApplicationComponentsCommand: (input: ListApplicationComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1ListCollectorsCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_ListCollectorsCommand: (input: ListCollectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1ListImportFileTaskCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_ListImportFileTaskCommand: (input: ListImportFileTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1ListServersCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_ListServersCommand: (input: ListServersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1PutPortfolioPreferencesCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_PutPortfolioPreferencesCommand: (input: PutPortfolioPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1StartAssessmentCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_StartAssessmentCommand: (input: StartAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1StartImportFileTaskCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_StartImportFileTaskCommand: (input: StartImportFileTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1StartRecommendationReportGenerationCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_StartRecommendationReportGenerationCommand: (input: StartRecommendationReportGenerationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1StopAssessmentCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_StopAssessmentCommand: (input: StopAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1UpdateApplicationComponentConfigCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_UpdateApplicationComponentConfigCommand: (input: UpdateApplicationComponentConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1UpdateServerConfigCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_UpdateServerConfigCommand: (input: UpdateServerConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* deserializeAws_restJson1GetApplicationComponentDetailsCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const de_GetApplicationComponentDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationComponentDetailsCommandOutput>;
|
|
117
|
-
/**
|
|
118
|
-
* deserializeAws_restJson1GetApplicationComponentStrategiesCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const de_GetApplicationComponentStrategiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationComponentStrategiesCommandOutput>;
|
|
121
|
-
/**
|
|
122
|
-
* deserializeAws_restJson1GetAssessmentCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const de_GetAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssessmentCommandOutput>;
|
|
125
|
-
/**
|
|
126
|
-
* deserializeAws_restJson1GetImportFileTaskCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const de_GetImportFileTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetImportFileTaskCommandOutput>;
|
|
129
|
-
/**
|
|
130
|
-
* deserializeAws_restJson1GetLatestAssessmentIdCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const de_GetLatestAssessmentIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLatestAssessmentIdCommandOutput>;
|
|
133
|
-
/**
|
|
134
|
-
* deserializeAws_restJson1GetPortfolioPreferencesCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const de_GetPortfolioPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPortfolioPreferencesCommandOutput>;
|
|
137
|
-
/**
|
|
138
|
-
* deserializeAws_restJson1GetPortfolioSummaryCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const de_GetPortfolioSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPortfolioSummaryCommandOutput>;
|
|
141
|
-
/**
|
|
142
|
-
* deserializeAws_restJson1GetRecommendationReportDetailsCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const de_GetRecommendationReportDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecommendationReportDetailsCommandOutput>;
|
|
145
|
-
/**
|
|
146
|
-
* deserializeAws_restJson1GetServerDetailsCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const de_GetServerDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServerDetailsCommandOutput>;
|
|
149
|
-
/**
|
|
150
|
-
* deserializeAws_restJson1GetServerStrategiesCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const de_GetServerStrategiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServerStrategiesCommandOutput>;
|
|
153
|
-
/**
|
|
154
|
-
* deserializeAws_restJson1ListAnalyzableServersCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const de_ListAnalyzableServersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnalyzableServersCommandOutput>;
|
|
157
|
-
/**
|
|
158
|
-
* deserializeAws_restJson1ListApplicationComponentsCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const de_ListApplicationComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationComponentsCommandOutput>;
|
|
161
|
-
/**
|
|
162
|
-
* deserializeAws_restJson1ListCollectorsCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const de_ListCollectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollectorsCommandOutput>;
|
|
165
|
-
/**
|
|
166
|
-
* deserializeAws_restJson1ListImportFileTaskCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const de_ListImportFileTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportFileTaskCommandOutput>;
|
|
169
|
-
/**
|
|
170
|
-
* deserializeAws_restJson1ListServersCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const de_ListServersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServersCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_restJson1PutPortfolioPreferencesCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_PutPortfolioPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPortfolioPreferencesCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_restJson1StartAssessmentCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_StartAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAssessmentCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_restJson1StartImportFileTaskCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_StartImportFileTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartImportFileTaskCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_restJson1StartRecommendationReportGenerationCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_StartRecommendationReportGenerationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartRecommendationReportGenerationCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_restJson1StopAssessmentCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_StopAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopAssessmentCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_restJson1UpdateApplicationComponentConfigCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_UpdateApplicationComponentConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationComponentConfigCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_restJson1UpdateServerConfigCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_UpdateServerConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServerConfigCommandOutput>;
|
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
GetApplicationComponentDetailsCommandInput,
|
|
8
|
-
GetApplicationComponentDetailsCommandOutput,
|
|
9
|
-
} from "../commands/GetApplicationComponentDetailsCommand";
|
|
10
|
-
import {
|
|
11
|
-
GetApplicationComponentStrategiesCommandInput,
|
|
12
|
-
GetApplicationComponentStrategiesCommandOutput,
|
|
13
|
-
} from "../commands/GetApplicationComponentStrategiesCommand";
|
|
14
|
-
import {
|
|
15
|
-
GetAssessmentCommandInput,
|
|
16
|
-
GetAssessmentCommandOutput,
|
|
17
|
-
} from "../commands/GetAssessmentCommand";
|
|
18
|
-
import {
|
|
19
|
-
GetImportFileTaskCommandInput,
|
|
20
|
-
GetImportFileTaskCommandOutput,
|
|
21
|
-
} from "../commands/GetImportFileTaskCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetLatestAssessmentIdCommandInput,
|
|
24
|
-
GetLatestAssessmentIdCommandOutput,
|
|
25
|
-
} from "../commands/GetLatestAssessmentIdCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetPortfolioPreferencesCommandInput,
|
|
28
|
-
GetPortfolioPreferencesCommandOutput,
|
|
29
|
-
} from "../commands/GetPortfolioPreferencesCommand";
|
|
30
|
-
import {
|
|
31
|
-
GetPortfolioSummaryCommandInput,
|
|
32
|
-
GetPortfolioSummaryCommandOutput,
|
|
33
|
-
} from "../commands/GetPortfolioSummaryCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetRecommendationReportDetailsCommandInput,
|
|
36
|
-
GetRecommendationReportDetailsCommandOutput,
|
|
37
|
-
} from "../commands/GetRecommendationReportDetailsCommand";
|
|
38
|
-
import {
|
|
39
|
-
GetServerDetailsCommandInput,
|
|
40
|
-
GetServerDetailsCommandOutput,
|
|
41
|
-
} from "../commands/GetServerDetailsCommand";
|
|
42
|
-
import {
|
|
43
|
-
GetServerStrategiesCommandInput,
|
|
44
|
-
GetServerStrategiesCommandOutput,
|
|
45
|
-
} from "../commands/GetServerStrategiesCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListAnalyzableServersCommandInput,
|
|
48
|
-
ListAnalyzableServersCommandOutput,
|
|
49
|
-
} from "../commands/ListAnalyzableServersCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListApplicationComponentsCommandInput,
|
|
52
|
-
ListApplicationComponentsCommandOutput,
|
|
53
|
-
} from "../commands/ListApplicationComponentsCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListCollectorsCommandInput,
|
|
56
|
-
ListCollectorsCommandOutput,
|
|
57
|
-
} from "../commands/ListCollectorsCommand";
|
|
58
|
-
import {
|
|
59
|
-
ListImportFileTaskCommandInput,
|
|
60
|
-
ListImportFileTaskCommandOutput,
|
|
61
|
-
} from "../commands/ListImportFileTaskCommand";
|
|
62
|
-
import {
|
|
63
|
-
ListServersCommandInput,
|
|
64
|
-
ListServersCommandOutput,
|
|
65
|
-
} from "../commands/ListServersCommand";
|
|
66
|
-
import {
|
|
67
|
-
PutPortfolioPreferencesCommandInput,
|
|
68
|
-
PutPortfolioPreferencesCommandOutput,
|
|
69
|
-
} from "../commands/PutPortfolioPreferencesCommand";
|
|
70
|
-
import {
|
|
71
|
-
StartAssessmentCommandInput,
|
|
72
|
-
StartAssessmentCommandOutput,
|
|
73
|
-
} from "../commands/StartAssessmentCommand";
|
|
74
|
-
import {
|
|
75
|
-
StartImportFileTaskCommandInput,
|
|
76
|
-
StartImportFileTaskCommandOutput,
|
|
77
|
-
} from "../commands/StartImportFileTaskCommand";
|
|
78
|
-
import {
|
|
79
|
-
StartRecommendationReportGenerationCommandInput,
|
|
80
|
-
StartRecommendationReportGenerationCommandOutput,
|
|
81
|
-
} from "../commands/StartRecommendationReportGenerationCommand";
|
|
82
|
-
import {
|
|
83
|
-
StopAssessmentCommandInput,
|
|
84
|
-
StopAssessmentCommandOutput,
|
|
85
|
-
} from "../commands/StopAssessmentCommand";
|
|
86
|
-
import {
|
|
87
|
-
UpdateApplicationComponentConfigCommandInput,
|
|
88
|
-
UpdateApplicationComponentConfigCommandOutput,
|
|
89
|
-
} from "../commands/UpdateApplicationComponentConfigCommand";
|
|
90
|
-
import {
|
|
91
|
-
UpdateServerConfigCommandInput,
|
|
92
|
-
UpdateServerConfigCommandOutput,
|
|
93
|
-
} from "../commands/UpdateServerConfigCommand";
|
|
94
|
-
export declare const se_GetApplicationComponentDetailsCommand: (
|
|
95
|
-
input: GetApplicationComponentDetailsCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_GetApplicationComponentStrategiesCommand: (
|
|
99
|
-
input: GetApplicationComponentStrategiesCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_GetAssessmentCommand: (
|
|
103
|
-
input: GetAssessmentCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_GetImportFileTaskCommand: (
|
|
107
|
-
input: GetImportFileTaskCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_GetLatestAssessmentIdCommand: (
|
|
111
|
-
input: GetLatestAssessmentIdCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_GetPortfolioPreferencesCommand: (
|
|
115
|
-
input: GetPortfolioPreferencesCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_GetPortfolioSummaryCommand: (
|
|
119
|
-
input: GetPortfolioSummaryCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_GetRecommendationReportDetailsCommand: (
|
|
123
|
-
input: GetRecommendationReportDetailsCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_GetServerDetailsCommand: (
|
|
127
|
-
input: GetServerDetailsCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_GetServerStrategiesCommand: (
|
|
131
|
-
input: GetServerStrategiesCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_ListAnalyzableServersCommand: (
|
|
135
|
-
input: ListAnalyzableServersCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_ListApplicationComponentsCommand: (
|
|
139
|
-
input: ListApplicationComponentsCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_ListCollectorsCommand: (
|
|
143
|
-
input: ListCollectorsCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_ListImportFileTaskCommand: (
|
|
147
|
-
input: ListImportFileTaskCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_ListServersCommand: (
|
|
151
|
-
input: ListServersCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_PutPortfolioPreferencesCommand: (
|
|
155
|
-
input: PutPortfolioPreferencesCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_StartAssessmentCommand: (
|
|
159
|
-
input: StartAssessmentCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_StartImportFileTaskCommand: (
|
|
163
|
-
input: StartImportFileTaskCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_StartRecommendationReportGenerationCommand: (
|
|
167
|
-
input: StartRecommendationReportGenerationCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_StopAssessmentCommand: (
|
|
171
|
-
input: StopAssessmentCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_UpdateApplicationComponentConfigCommand: (
|
|
175
|
-
input: UpdateApplicationComponentConfigCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_UpdateServerConfigCommand: (
|
|
179
|
-
input: UpdateServerConfigCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const de_GetApplicationComponentDetailsCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<GetApplicationComponentDetailsCommandOutput>;
|
|
186
|
-
export declare const de_GetApplicationComponentStrategiesCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<GetApplicationComponentStrategiesCommandOutput>;
|
|
190
|
-
export declare const de_GetAssessmentCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<GetAssessmentCommandOutput>;
|
|
194
|
-
export declare const de_GetImportFileTaskCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<GetImportFileTaskCommandOutput>;
|
|
198
|
-
export declare const de_GetLatestAssessmentIdCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<GetLatestAssessmentIdCommandOutput>;
|
|
202
|
-
export declare const de_GetPortfolioPreferencesCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<GetPortfolioPreferencesCommandOutput>;
|
|
206
|
-
export declare const de_GetPortfolioSummaryCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<GetPortfolioSummaryCommandOutput>;
|
|
210
|
-
export declare const de_GetRecommendationReportDetailsCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<GetRecommendationReportDetailsCommandOutput>;
|
|
214
|
-
export declare const de_GetServerDetailsCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<GetServerDetailsCommandOutput>;
|
|
218
|
-
export declare const de_GetServerStrategiesCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<GetServerStrategiesCommandOutput>;
|
|
222
|
-
export declare const de_ListAnalyzableServersCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<ListAnalyzableServersCommandOutput>;
|
|
226
|
-
export declare const de_ListApplicationComponentsCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<ListApplicationComponentsCommandOutput>;
|
|
230
|
-
export declare const de_ListCollectorsCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<ListCollectorsCommandOutput>;
|
|
234
|
-
export declare const de_ListImportFileTaskCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<ListImportFileTaskCommandOutput>;
|
|
238
|
-
export declare const de_ListServersCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<ListServersCommandOutput>;
|
|
242
|
-
export declare const de_PutPortfolioPreferencesCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<PutPortfolioPreferencesCommandOutput>;
|
|
246
|
-
export declare const de_StartAssessmentCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<StartAssessmentCommandOutput>;
|
|
250
|
-
export declare const de_StartImportFileTaskCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<StartImportFileTaskCommandOutput>;
|
|
254
|
-
export declare const de_StartRecommendationReportGenerationCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<StartRecommendationReportGenerationCommandOutput>;
|
|
258
|
-
export declare const de_StopAssessmentCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<StopAssessmentCommandOutput>;
|
|
262
|
-
export declare const de_UpdateApplicationComponentConfigCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<UpdateApplicationComponentConfigCommandOutput>;
|
|
266
|
-
export declare const de_UpdateServerConfigCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<UpdateServerConfigCommandOutput>;
|