@aws-sdk/client-migrationhubstrategy 3.533.0 → 3.540.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 (55) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/MigrationHubStrategy.d.ts +12 -1
  6. package/dist-types/MigrationHubStrategyClient.d.ts +1 -1
  7. package/dist-types/commands/GetApplicationComponentDetailsCommand.d.ts +2 -1
  8. package/dist-types/commands/GetApplicationComponentStrategiesCommand.d.ts +2 -1
  9. package/dist-types/commands/GetAssessmentCommand.d.ts +2 -1
  10. package/dist-types/commands/GetImportFileTaskCommand.d.ts +2 -1
  11. package/dist-types/commands/GetLatestAssessmentIdCommand.d.ts +2 -1
  12. package/dist-types/commands/GetPortfolioPreferencesCommand.d.ts +2 -1
  13. package/dist-types/commands/GetPortfolioSummaryCommand.d.ts +2 -1
  14. package/dist-types/commands/GetRecommendationReportDetailsCommand.d.ts +2 -1
  15. package/dist-types/commands/GetServerDetailsCommand.d.ts +2 -1
  16. package/dist-types/commands/GetServerStrategiesCommand.d.ts +2 -1
  17. package/dist-types/commands/ListAnalyzableServersCommand.d.ts +2 -1
  18. package/dist-types/commands/ListApplicationComponentsCommand.d.ts +2 -1
  19. package/dist-types/commands/ListCollectorsCommand.d.ts +2 -1
  20. package/dist-types/commands/ListImportFileTaskCommand.d.ts +2 -1
  21. package/dist-types/commands/ListServersCommand.d.ts +2 -1
  22. package/dist-types/commands/PutPortfolioPreferencesCommand.d.ts +2 -1
  23. package/dist-types/commands/StartAssessmentCommand.d.ts +2 -1
  24. package/dist-types/commands/StartImportFileTaskCommand.d.ts +2 -1
  25. package/dist-types/commands/StartRecommendationReportGenerationCommand.d.ts +2 -1
  26. package/dist-types/commands/StopAssessmentCommand.d.ts +2 -1
  27. package/dist-types/commands/UpdateApplicationComponentConfigCommand.d.ts +2 -1
  28. package/dist-types/commands/UpdateServerConfigCommand.d.ts +2 -1
  29. package/dist-types/index.d.ts +0 -1
  30. package/dist-types/models/models_0.d.ts +354 -354
  31. package/dist-types/ts3.4/MigrationHubStrategy.d.ts +11 -0
  32. package/dist-types/ts3.4/commands/GetApplicationComponentDetailsCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/GetApplicationComponentStrategiesCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/GetAssessmentCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/GetImportFileTaskCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/GetLatestAssessmentIdCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/GetPortfolioPreferencesCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/GetPortfolioSummaryCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/GetRecommendationReportDetailsCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/GetServerDetailsCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/GetServerStrategiesCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/ListAnalyzableServersCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/ListApplicationComponentsCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/ListCollectorsCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/ListImportFileTaskCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/ListServersCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/PutPortfolioPreferencesCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/commands/StartAssessmentCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/StartImportFileTaskCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/StartRecommendationReportGenerationCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/StopAssessmentCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/UpdateApplicationComponentConfigCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/UpdateServerConfigCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/index.d.ts +0 -1
  55. package/package.json +40 -40
@@ -147,6 +147,7 @@ export interface MigrationHubStrategy {
147
147
  options: __HttpHandlerOptions,
148
148
  cb: (err: any, data?: GetImportFileTaskCommandOutput) => void
149
149
  ): void;
150
+ getLatestAssessmentId(): Promise<GetLatestAssessmentIdCommandOutput>;
150
151
  getLatestAssessmentId(
151
152
  args: GetLatestAssessmentIdCommandInput,
152
153
  options?: __HttpHandlerOptions
@@ -160,6 +161,7 @@ export interface MigrationHubStrategy {
160
161
  options: __HttpHandlerOptions,
161
162
  cb: (err: any, data?: GetLatestAssessmentIdCommandOutput) => void
162
163
  ): void;
164
+ getPortfolioPreferences(): Promise<GetPortfolioPreferencesCommandOutput>;
163
165
  getPortfolioPreferences(
164
166
  args: GetPortfolioPreferencesCommandInput,
165
167
  options?: __HttpHandlerOptions
@@ -173,6 +175,7 @@ export interface MigrationHubStrategy {
173
175
  options: __HttpHandlerOptions,
174
176
  cb: (err: any, data?: GetPortfolioPreferencesCommandOutput) => void
175
177
  ): void;
178
+ getPortfolioSummary(): Promise<GetPortfolioSummaryCommandOutput>;
176
179
  getPortfolioSummary(
177
180
  args: GetPortfolioSummaryCommandInput,
178
181
  options?: __HttpHandlerOptions
@@ -225,6 +228,7 @@ export interface MigrationHubStrategy {
225
228
  options: __HttpHandlerOptions,
226
229
  cb: (err: any, data?: GetServerStrategiesCommandOutput) => void
227
230
  ): void;
231
+ listAnalyzableServers(): Promise<ListAnalyzableServersCommandOutput>;
228
232
  listAnalyzableServers(
229
233
  args: ListAnalyzableServersCommandInput,
230
234
  options?: __HttpHandlerOptions
@@ -238,6 +242,7 @@ export interface MigrationHubStrategy {
238
242
  options: __HttpHandlerOptions,
239
243
  cb: (err: any, data?: ListAnalyzableServersCommandOutput) => void
240
244
  ): void;
245
+ listApplicationComponents(): Promise<ListApplicationComponentsCommandOutput>;
241
246
  listApplicationComponents(
242
247
  args: ListApplicationComponentsCommandInput,
243
248
  options?: __HttpHandlerOptions
@@ -251,6 +256,7 @@ export interface MigrationHubStrategy {
251
256
  options: __HttpHandlerOptions,
252
257
  cb: (err: any, data?: ListApplicationComponentsCommandOutput) => void
253
258
  ): void;
259
+ listCollectors(): Promise<ListCollectorsCommandOutput>;
254
260
  listCollectors(
255
261
  args: ListCollectorsCommandInput,
256
262
  options?: __HttpHandlerOptions
@@ -264,6 +270,7 @@ export interface MigrationHubStrategy {
264
270
  options: __HttpHandlerOptions,
265
271
  cb: (err: any, data?: ListCollectorsCommandOutput) => void
266
272
  ): void;
273
+ listImportFileTask(): Promise<ListImportFileTaskCommandOutput>;
267
274
  listImportFileTask(
268
275
  args: ListImportFileTaskCommandInput,
269
276
  options?: __HttpHandlerOptions
@@ -277,6 +284,7 @@ export interface MigrationHubStrategy {
277
284
  options: __HttpHandlerOptions,
278
285
  cb: (err: any, data?: ListImportFileTaskCommandOutput) => void
279
286
  ): void;
287
+ listServers(): Promise<ListServersCommandOutput>;
280
288
  listServers(
281
289
  args: ListServersCommandInput,
282
290
  options?: __HttpHandlerOptions
@@ -290,6 +298,7 @@ export interface MigrationHubStrategy {
290
298
  options: __HttpHandlerOptions,
291
299
  cb: (err: any, data?: ListServersCommandOutput) => void
292
300
  ): void;
301
+ putPortfolioPreferences(): Promise<PutPortfolioPreferencesCommandOutput>;
293
302
  putPortfolioPreferences(
294
303
  args: PutPortfolioPreferencesCommandInput,
295
304
  options?: __HttpHandlerOptions
@@ -303,6 +312,7 @@ export interface MigrationHubStrategy {
303
312
  options: __HttpHandlerOptions,
304
313
  cb: (err: any, data?: PutPortfolioPreferencesCommandOutput) => void
305
314
  ): void;
315
+ startAssessment(): Promise<StartAssessmentCommandOutput>;
306
316
  startAssessment(
307
317
  args: StartAssessmentCommandInput,
308
318
  options?: __HttpHandlerOptions
@@ -329,6 +339,7 @@ export interface MigrationHubStrategy {
329
339
  options: __HttpHandlerOptions,
330
340
  cb: (err: any, data?: StartImportFileTaskCommandOutput) => void
331
341
  ): void;
342
+ startRecommendationReportGeneration(): Promise<StartRecommendationReportGenerationCommandOutput>;
332
343
  startRecommendationReportGeneration(
333
344
  args: StartRecommendationReportGenerationCommandInput,
334
345
  options?: __HttpHandlerOptions
@@ -25,6 +25,15 @@ declare const GetApplicationComponentDetailsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetApplicationComponentDetailsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetApplicationComponentDetailsCommandInput,
32
+ GetApplicationComponentDetailsCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetApplicationComponentDetailsCommand extends GetApplicationComponentDetailsCommand_base {}
@@ -25,6 +25,15 @@ declare const GetApplicationComponentStrategiesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetApplicationComponentStrategiesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetApplicationComponentStrategiesCommandInput,
32
+ GetApplicationComponentStrategiesCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetApplicationComponentStrategiesCommand extends GetApplicationComponentStrategiesCommand_base {}
@@ -24,6 +24,15 @@ declare const GetAssessmentCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: GetAssessmentCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetAssessmentCommandInput,
31
+ GetAssessmentCommandOutput,
32
+ MigrationHubStrategyClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetAssessmentCommand extends GetAssessmentCommand_base {}
@@ -25,6 +25,15 @@ declare const GetImportFileTaskCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetImportFileTaskCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetImportFileTaskCommandInput,
32
+ GetImportFileTaskCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetImportFileTaskCommand extends GetImportFileTaskCommand_base {}
@@ -25,6 +25,15 @@ declare const GetLatestAssessmentIdCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [GetLatestAssessmentIdCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetLatestAssessmentIdCommandInput,
32
+ GetLatestAssessmentIdCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetLatestAssessmentIdCommand extends GetLatestAssessmentIdCommand_base {}
@@ -25,6 +25,15 @@ declare const GetPortfolioPreferencesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [GetPortfolioPreferencesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetPortfolioPreferencesCommandInput,
32
+ GetPortfolioPreferencesCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetPortfolioPreferencesCommand extends GetPortfolioPreferencesCommand_base {}
@@ -25,6 +25,15 @@ declare const GetPortfolioSummaryCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [GetPortfolioSummaryCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetPortfolioSummaryCommandInput,
32
+ GetPortfolioSummaryCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetPortfolioSummaryCommand extends GetPortfolioSummaryCommand_base {}
@@ -25,6 +25,15 @@ declare const GetRecommendationReportDetailsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetRecommendationReportDetailsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetRecommendationReportDetailsCommandInput,
32
+ GetRecommendationReportDetailsCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetRecommendationReportDetailsCommand extends GetRecommendationReportDetailsCommand_base {}
@@ -24,6 +24,15 @@ declare const GetServerDetailsCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: GetServerDetailsCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetServerDetailsCommandInput,
31
+ GetServerDetailsCommandOutput,
32
+ MigrationHubStrategyClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class GetServerDetailsCommand extends GetServerDetailsCommand_base {}
@@ -25,6 +25,15 @@ declare const GetServerStrategiesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: GetServerStrategiesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetServerStrategiesCommandInput,
32
+ GetServerStrategiesCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class GetServerStrategiesCommand extends GetServerStrategiesCommand_base {}
@@ -25,6 +25,15 @@ declare const ListAnalyzableServersCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListAnalyzableServersCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListAnalyzableServersCommandInput,
32
+ ListAnalyzableServersCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListAnalyzableServersCommand extends ListAnalyzableServersCommand_base {}
@@ -25,6 +25,15 @@ declare const ListApplicationComponentsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListApplicationComponentsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListApplicationComponentsCommandInput,
32
+ ListApplicationComponentsCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListApplicationComponentsCommand extends ListApplicationComponentsCommand_base {}
@@ -24,6 +24,15 @@ declare const ListCollectorsCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [ListCollectorsCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ ListCollectorsCommandInput,
31
+ ListCollectorsCommandOutput,
32
+ MigrationHubStrategyClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class ListCollectorsCommand extends ListCollectorsCommand_base {}
@@ -25,6 +25,15 @@ declare const ListImportFileTaskCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListImportFileTaskCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListImportFileTaskCommandInput,
32
+ ListImportFileTaskCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListImportFileTaskCommand extends ListImportFileTaskCommand_base {}
@@ -21,6 +21,15 @@ declare const ListServersCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListServersCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListServersCommandInput,
28
+ ListServersCommandOutput,
29
+ MigrationHubStrategyClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListServersCommand extends ListServersCommand_base {}
@@ -25,6 +25,15 @@ declare const PutPortfolioPreferencesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [PutPortfolioPreferencesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ PutPortfolioPreferencesCommandInput,
32
+ PutPortfolioPreferencesCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class PutPortfolioPreferencesCommand extends PutPortfolioPreferencesCommand_base {}
@@ -24,6 +24,15 @@ declare const StartAssessmentCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ ...[input]: [] | [StartAssessmentCommandInput]
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ StartAssessmentCommandInput,
31
+ StartAssessmentCommandOutput,
32
+ MigrationHubStrategyClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class StartAssessmentCommand extends StartAssessmentCommand_base {}
@@ -25,6 +25,15 @@ declare const StartImportFileTaskCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: StartImportFileTaskCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ StartImportFileTaskCommandInput,
32
+ StartImportFileTaskCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class StartImportFileTaskCommand extends StartImportFileTaskCommand_base {}
@@ -25,6 +25,15 @@ declare const StartRecommendationReportGenerationCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [StartRecommendationReportGenerationCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ StartRecommendationReportGenerationCommandInput,
32
+ StartRecommendationReportGenerationCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class StartRecommendationReportGenerationCommand extends StartRecommendationReportGenerationCommand_base {}
@@ -24,6 +24,15 @@ declare const StopAssessmentCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: StopAssessmentCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ StopAssessmentCommandInput,
31
+ StopAssessmentCommandOutput,
32
+ MigrationHubStrategyClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class StopAssessmentCommand extends StopAssessmentCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateApplicationComponentConfigCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateApplicationComponentConfigCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateApplicationComponentConfigCommandInput,
32
+ UpdateApplicationComponentConfigCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateApplicationComponentConfigCommand extends UpdateApplicationComponentConfigCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateServerConfigCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateServerConfigCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateServerConfigCommandInput,
32
+ UpdateServerConfigCommandOutput,
33
+ MigrationHubStrategyClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateServerConfigCommand extends UpdateServerConfigCommand_base {}
@@ -6,5 +6,4 @@ export { MigrationHubStrategyExtensionConfiguration } from "./extensionConfigura
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { MigrationHubStrategyServiceException } from "./models/MigrationHubStrategyServiceException";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-migrationhubstrategy",
3
3
  "description": "AWS SDK for JavaScript Migrationhubstrategy Client for Node.js, Browser and React Native",
4
- "version": "3.533.0",
4
+ "version": "3.540.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-migrationhubstrategy",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.540.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",