@aws-sdk/client-migrationhubstrategy 3.928.0 → 3.930.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 (46) hide show
  1. package/dist-cjs/index.js +1256 -1119
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/MigrationHubStrategyClient.js +2 -0
  4. package/dist-es/commands/GetApplicationComponentDetailsCommand.js +3 -9
  5. package/dist-es/commands/GetApplicationComponentStrategiesCommand.js +3 -9
  6. package/dist-es/commands/GetAssessmentCommand.js +3 -9
  7. package/dist-es/commands/GetImportFileTaskCommand.js +3 -9
  8. package/dist-es/commands/GetLatestAssessmentIdCommand.js +3 -9
  9. package/dist-es/commands/GetPortfolioPreferencesCommand.js +3 -9
  10. package/dist-es/commands/GetPortfolioSummaryCommand.js +3 -9
  11. package/dist-es/commands/GetRecommendationReportDetailsCommand.js +3 -9
  12. package/dist-es/commands/GetServerDetailsCommand.js +3 -9
  13. package/dist-es/commands/GetServerStrategiesCommand.js +3 -9
  14. package/dist-es/commands/ListAnalyzableServersCommand.js +3 -9
  15. package/dist-es/commands/ListApplicationComponentsCommand.js +3 -9
  16. package/dist-es/commands/ListCollectorsCommand.js +3 -9
  17. package/dist-es/commands/ListImportFileTaskCommand.js +3 -9
  18. package/dist-es/commands/ListServersCommand.js +3 -9
  19. package/dist-es/commands/PutPortfolioPreferencesCommand.js +3 -9
  20. package/dist-es/commands/StartAssessmentCommand.js +3 -9
  21. package/dist-es/commands/StartImportFileTaskCommand.js +3 -9
  22. package/dist-es/commands/StartRecommendationReportGenerationCommand.js +3 -9
  23. package/dist-es/commands/StopAssessmentCommand.js +3 -9
  24. package/dist-es/commands/UpdateApplicationComponentConfigCommand.js +3 -10
  25. package/dist-es/commands/UpdateServerConfigCommand.js +3 -9
  26. package/dist-es/models/models_0.js +0 -51
  27. package/dist-es/runtimeConfig.shared.js +2 -0
  28. package/dist-es/schemas/schemas_0.js +1194 -0
  29. package/dist-types/MigrationHubStrategyClient.d.ts +10 -1
  30. package/dist-types/models/models_0.d.ts +16 -8
  31. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  32. package/dist-types/runtimeConfig.d.ts +1 -0
  33. package/dist-types/runtimeConfig.native.d.ts +1 -0
  34. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +165 -0
  36. package/dist-types/ts3.4/MigrationHubStrategyClient.d.ts +4 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +0 -10
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -0
  43. package/package.json +33 -33
  44. package/dist-es/protocols/Aws_restJson1.js +0 -890
  45. package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { GetApplicationComponentDetailsCommandInput, GetApplicationComponentDetailsCommandOutput } from "./commands/GetApplicationComponentDetailsCommand";
11
11
  import { GetApplicationComponentStrategiesCommandInput, GetApplicationComponentStrategiesCommandOutput } from "./commands/GetApplicationComponentStrategiesCommand";
@@ -163,6 +163,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
163
163
  * Optional extensions
164
164
  */
165
165
  extensions?: RuntimeExtension[];
166
+ /**
167
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
168
+ * may be overridden. A default will always be set by the client.
169
+ * Available options depend on the service's supported protocols and will not be validated by
170
+ * the client.
171
+ * @alpha
172
+ *
173
+ */
174
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
166
175
  /**
167
176
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
168
177
  */
@@ -79,12 +79,15 @@ export declare namespace AnalysisStatusUnion {
79
79
  srcCodeOrDbAnalysisStatus?: never;
80
80
  $unknown: [string, any];
81
81
  }
82
+ /**
83
+ * @deprecated unused in schema-serde mode.
84
+ *
85
+ */
82
86
  interface Visitor<T> {
83
87
  runtimeAnalysisStatus: (value: RuntimeAnalysisStatus) => T;
84
88
  srcCodeOrDbAnalysisStatus: (value: SrcCodeOrDbAnalysisStatus) => T;
85
89
  _: (name: string, value: any) => T;
86
90
  }
87
- const visit: <T>(value: AnalysisStatusUnion, visitor: Visitor<T>) => T;
88
91
  }
89
92
  /**
90
93
  * @public
@@ -215,13 +218,16 @@ export declare namespace AnalyzerNameUnion {
215
218
  sourceCodeAnalyzerName?: never;
216
219
  $unknown: [string, any];
217
220
  }
221
+ /**
222
+ * @deprecated unused in schema-serde mode.
223
+ *
224
+ */
218
225
  interface Visitor<T> {
219
226
  binaryAnalyzerName: (value: BinaryAnalyzerName) => T;
220
227
  runTimeAnalyzerName: (value: RunTimeAnalyzerName) => T;
221
228
  sourceCodeAnalyzerName: (value: SourceCodeAnalyzerName) => T;
222
229
  _: (name: string, value: any) => T;
223
230
  }
224
- const visit: <T>(value: AnalyzerNameUnion, visitor: Visitor<T>) => T;
225
231
  }
226
232
  /**
227
233
  * <p> Contains the S3 bucket name and the Amazon S3 key name. </p>
@@ -907,13 +913,16 @@ export declare namespace ManagementPreference {
907
913
  noPreference?: never;
908
914
  $unknown: [string, any];
909
915
  }
916
+ /**
917
+ * @deprecated unused in schema-serde mode.
918
+ *
919
+ */
910
920
  interface Visitor<T> {
911
921
  awsManagedResources: (value: AwsManagedResources) => T;
912
922
  selfManageResources: (value: SelfManageResources) => T;
913
923
  noPreference: (value: NoManagementPreference) => T;
914
924
  _: (name: string, value: any) => T;
915
925
  }
916
- const visit: <T>(value: ManagementPreference, visitor: Visitor<T>) => T;
917
926
  }
918
927
  /**
919
928
  * <p> Application preferences that you specify. </p>
@@ -1608,13 +1617,16 @@ export declare namespace DatabaseMigrationPreference {
1608
1617
  noPreference?: never;
1609
1618
  $unknown: [string, any];
1610
1619
  }
1620
+ /**
1621
+ * @deprecated unused in schema-serde mode.
1622
+ *
1623
+ */
1611
1624
  interface Visitor<T> {
1612
1625
  heterogeneous: (value: Heterogeneous) => T;
1613
1626
  homogeneous: (value: Homogeneous) => T;
1614
1627
  noPreference: (value: NoDatabaseMigrationPreference) => T;
1615
1628
  _: (name: string, value: any) => T;
1616
1629
  }
1617
- const visit: <T>(value: DatabaseMigrationPreference, visitor: Visitor<T>) => T;
1618
1630
  }
1619
1631
  /**
1620
1632
  * <p> Preferences on managing your databases on AWS. </p>
@@ -2945,7 +2957,3 @@ export interface UpdateServerConfigRequest {
2945
2957
  */
2946
2958
  export interface UpdateServerConfigResponse {
2947
2959
  }
2948
- /**
2949
- * @internal
2950
- */
2951
- export declare const UpdateApplicationComponentConfigRequestFilterSensitiveLog: (obj: UpdateApplicationComponentConfigRequest) => any;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MigrationHubStrategyClientConfig
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MigrationHubStrategyClientConfig
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MigrationHubStrategyClientConfig
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MigrationHubStrategyClientConfig
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MigrationHubStrategyHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,165 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var SecretsManagerKey: StaticSimpleSchema;
3
+ export declare var AccessDeniedException: StaticErrorSchema;
4
+ export declare var AnalyzableServerSummary: StaticStructureSchema;
5
+ export declare var AntipatternReportResult: StaticStructureSchema;
6
+ export declare var AntipatternSeveritySummary: StaticStructureSchema;
7
+ export declare var ApplicationComponentDetail: StaticStructureSchema;
8
+ export declare var ApplicationComponentStatusSummary: StaticStructureSchema;
9
+ export declare var ApplicationComponentStrategy: StaticStructureSchema;
10
+ export declare var ApplicationComponentSummary: StaticStructureSchema;
11
+ export declare var ApplicationPreferences: StaticStructureSchema;
12
+ export declare var AppUnitError: StaticStructureSchema;
13
+ export declare var AssessmentSummary: StaticStructureSchema;
14
+ export declare var AssessmentTarget: StaticStructureSchema;
15
+ export declare var AssociatedApplication: StaticStructureSchema;
16
+ export declare var AwsManagedResources: StaticStructureSchema;
17
+ export declare var BusinessGoals: StaticStructureSchema;
18
+ export declare var Collector: StaticStructureSchema;
19
+ export declare var ConfigurationSummary: StaticStructureSchema;
20
+ export declare var ConflictException: StaticErrorSchema;
21
+ export declare var DatabaseConfigDetail: StaticStructureSchema;
22
+ export declare var DatabasePreferences: StaticStructureSchema;
23
+ export declare var DataCollectionDetails: StaticStructureSchema;
24
+ export declare var DependencyException: StaticErrorSchema;
25
+ export declare var GetApplicationComponentDetailsRequest: StaticStructureSchema;
26
+ export declare var GetApplicationComponentDetailsResponse: StaticStructureSchema;
27
+ export declare var GetApplicationComponentStrategiesRequest: StaticStructureSchema;
28
+ export declare var GetApplicationComponentStrategiesResponse: StaticStructureSchema;
29
+ export declare var GetAssessmentRequest: StaticStructureSchema;
30
+ export declare var GetAssessmentResponse: StaticStructureSchema;
31
+ export declare var GetImportFileTaskRequest: StaticStructureSchema;
32
+ export declare var GetImportFileTaskResponse: StaticStructureSchema;
33
+ export declare var GetLatestAssessmentIdRequest: StaticStructureSchema;
34
+ export declare var GetLatestAssessmentIdResponse: StaticStructureSchema;
35
+ export declare var GetPortfolioPreferencesRequest: StaticStructureSchema;
36
+ export declare var GetPortfolioPreferencesResponse: StaticStructureSchema;
37
+ export declare var GetPortfolioSummaryRequest: StaticStructureSchema;
38
+ export declare var GetPortfolioSummaryResponse: StaticStructureSchema;
39
+ export declare var GetRecommendationReportDetailsRequest: StaticStructureSchema;
40
+ export declare var GetRecommendationReportDetailsResponse: StaticStructureSchema;
41
+ export declare var GetServerDetailsRequest: StaticStructureSchema;
42
+ export declare var GetServerDetailsResponse: StaticStructureSchema;
43
+ export declare var GetServerStrategiesRequest: StaticStructureSchema;
44
+ export declare var GetServerStrategiesResponse: StaticStructureSchema;
45
+ export declare var Group: StaticStructureSchema;
46
+ export declare var Heterogeneous: StaticStructureSchema;
47
+ export declare var Homogeneous: StaticStructureSchema;
48
+ export declare var ImportFileTaskInformation: StaticStructureSchema;
49
+ export declare var InternalServerException: StaticErrorSchema;
50
+ export declare var IPAddressBasedRemoteInfo: StaticStructureSchema;
51
+ export declare var ListAnalyzableServersRequest: StaticStructureSchema;
52
+ export declare var ListAnalyzableServersResponse: StaticStructureSchema;
53
+ export declare var ListApplicationComponentsRequest: StaticStructureSchema;
54
+ export declare var ListApplicationComponentsResponse: StaticStructureSchema;
55
+ export declare var ListCollectorsRequest: StaticStructureSchema;
56
+ export declare var ListCollectorsResponse: StaticStructureSchema;
57
+ export declare var ListImportFileTaskRequest: StaticStructureSchema;
58
+ export declare var ListImportFileTaskResponse: StaticStructureSchema;
59
+ export declare var ListServersRequest: StaticStructureSchema;
60
+ export declare var ListServersResponse: StaticStructureSchema;
61
+ export declare var NetworkInfo: StaticStructureSchema;
62
+ export declare var NoDatabaseMigrationPreference: StaticStructureSchema;
63
+ export declare var NoManagementPreference: StaticStructureSchema;
64
+ export declare var OSInfo: StaticStructureSchema;
65
+ export declare var PipelineInfo: StaticStructureSchema;
66
+ export declare var PrioritizeBusinessGoals: StaticStructureSchema;
67
+ export declare var PutPortfolioPreferencesRequest: StaticStructureSchema;
68
+ export declare var PutPortfolioPreferencesResponse: StaticStructureSchema;
69
+ export declare var RecommendationReportDetails: StaticStructureSchema;
70
+ export declare var RecommendationSet: StaticStructureSchema;
71
+ export declare var RemoteSourceCodeAnalysisServerInfo: StaticStructureSchema;
72
+ export declare var ResourceNotFoundException: StaticErrorSchema;
73
+ export declare var Result: StaticStructureSchema;
74
+ export declare var S3Object: StaticStructureSchema;
75
+ export declare var SelfManageResources: StaticStructureSchema;
76
+ export declare var ServerDetail: StaticStructureSchema;
77
+ export declare var ServerError: StaticStructureSchema;
78
+ export declare var ServerStatusSummary: StaticStructureSchema;
79
+ export declare var ServerStrategy: StaticStructureSchema;
80
+ export declare var ServerSummary: StaticStructureSchema;
81
+ export declare var ServiceLinkedRoleLockClientException: StaticErrorSchema;
82
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
83
+ export declare var SourceCode: StaticStructureSchema;
84
+ export declare var SourceCodeRepository: StaticStructureSchema;
85
+ export declare var StartAssessmentRequest: StaticStructureSchema;
86
+ export declare var StartAssessmentResponse: StaticStructureSchema;
87
+ export declare var StartImportFileTaskRequest: StaticStructureSchema;
88
+ export declare var StartImportFileTaskResponse: StaticStructureSchema;
89
+ export declare var StartRecommendationReportGenerationRequest: StaticStructureSchema;
90
+ export declare var StartRecommendationReportGenerationResponse: StaticStructureSchema;
91
+ export declare var StopAssessmentRequest: StaticStructureSchema;
92
+ export declare var StopAssessmentResponse: StaticStructureSchema;
93
+ export declare var StrategyOption: StaticStructureSchema;
94
+ export declare var StrategySummary: StaticStructureSchema;
95
+ export declare var SystemInfo: StaticStructureSchema;
96
+ export declare var ThrottlingException: StaticErrorSchema;
97
+ export declare var TransformationTool: StaticStructureSchema;
98
+ export declare var UpdateApplicationComponentConfigRequest: StaticStructureSchema;
99
+ export declare var UpdateApplicationComponentConfigResponse: StaticStructureSchema;
100
+ export declare var UpdateServerConfigRequest: StaticStructureSchema;
101
+ export declare var UpdateServerConfigResponse: StaticStructureSchema;
102
+ export declare var ValidationException: StaticErrorSchema;
103
+ export declare var VcenterBasedRemoteInfo: StaticStructureSchema;
104
+ export declare var VersionControlInfo: StaticStructureSchema;
105
+ export declare var MigrationHubStrategyServiceException: StaticErrorSchema;
106
+ export declare var AnalyzableServerSummaryList: StaticListSchema;
107
+ export declare var AntipatternReportResultList: StaticListSchema;
108
+ export declare var ApplicationComponentDetails: StaticListSchema;
109
+ export declare var ApplicationComponentStrategies: StaticListSchema;
110
+ export declare var AssessmentTargets: StaticListSchema;
111
+ export declare var AssessmentTargetValues: number;
112
+ export declare var AssociatedApplications: StaticListSchema;
113
+ export declare var AssociatedServerIDs: number;
114
+ export declare var AwsManagedTargetDestinations: number;
115
+ export declare var Collectors: StaticListSchema;
116
+ export declare var GroupIds: StaticListSchema;
117
+ export declare var HeterogeneousTargetDatabaseEngines: number;
118
+ export declare var HomogeneousTargetDatabaseEngines: number;
119
+ export declare var IPAddressBasedRemoteInfoList: StaticListSchema;
120
+ export declare var ListAntipatternSeveritySummary: StaticListSchema;
121
+ export declare var ListApplicationComponentStatusSummary: StaticListSchema;
122
+ export declare var ListApplicationComponentSummary: StaticListSchema;
123
+ export declare var ListImportFileTaskInformation: StaticListSchema;
124
+ export declare var ListServerStatusSummary: StaticListSchema;
125
+ export declare var ListServerSummary: StaticListSchema;
126
+ export declare var ListStrategySummary: StaticListSchema;
127
+ export declare var NetworkInfoList: StaticListSchema;
128
+ export declare var NoPreferenceTargetDestinations: number;
129
+ export declare var PipelineInfoList: StaticListSchema;
130
+ export declare var ResultList: StaticListSchema;
131
+ export declare var S3Keys: number;
132
+ export declare var SelfManageTargetDestinations: number;
133
+ export declare var ServerDetails: StaticListSchema;
134
+ export declare var ServerStrategies: StaticListSchema;
135
+ export declare var SourceCodeList: StaticListSchema;
136
+ export declare var SourceCodeRepositories: StaticListSchema;
137
+ export declare var TargetDatabaseEngines: number;
138
+ export declare var VcenterBasedRemoteInfoList: StaticListSchema;
139
+ export declare var VersionControlInfoList: StaticListSchema;
140
+ export declare var AnalysisStatusUnion: StaticStructureSchema;
141
+ export declare var AnalyzerNameUnion: StaticStructureSchema;
142
+ export declare var DatabaseMigrationPreference: StaticStructureSchema;
143
+ export declare var ManagementPreference: StaticStructureSchema;
144
+ export declare var GetApplicationComponentDetails: StaticOperationSchema;
145
+ export declare var GetApplicationComponentStrategies: StaticOperationSchema;
146
+ export declare var GetAssessment: StaticOperationSchema;
147
+ export declare var GetImportFileTask: StaticOperationSchema;
148
+ export declare var GetLatestAssessmentId: StaticOperationSchema;
149
+ export declare var GetPortfolioPreferences: StaticOperationSchema;
150
+ export declare var GetPortfolioSummary: StaticOperationSchema;
151
+ export declare var GetRecommendationReportDetails: StaticOperationSchema;
152
+ export declare var GetServerDetails: StaticOperationSchema;
153
+ export declare var GetServerStrategies: StaticOperationSchema;
154
+ export declare var ListAnalyzableServers: StaticOperationSchema;
155
+ export declare var ListApplicationComponents: StaticOperationSchema;
156
+ export declare var ListCollectors: StaticOperationSchema;
157
+ export declare var ListImportFileTask: StaticOperationSchema;
158
+ export declare var ListServers: StaticOperationSchema;
159
+ export declare var PutPortfolioPreferences: StaticOperationSchema;
160
+ export declare var StartAssessment: StaticOperationSchema;
161
+ export declare var StartImportFileTask: StaticOperationSchema;
162
+ export declare var StartRecommendationReportGeneration: StaticOperationSchema;
163
+ export declare var StopAssessment: StaticOperationSchema;
164
+ export declare var UpdateApplicationComponentConfig: StaticOperationSchema;
165
+ export declare var UpdateServerConfig: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -210,6 +213,7 @@ export interface ClientDefaults
210
213
  retryMode?: string | __Provider<string>;
211
214
  logger?: __Logger;
212
215
  extensions?: RuntimeExtension[];
216
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
213
217
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
214
218
  }
215
219
  export type MigrationHubStrategyClientConfigType = Partial<
@@ -51,7 +51,6 @@ export declare namespace AnalysisStatusUnion {
51
51
  srcCodeOrDbAnalysisStatus: (value: SrcCodeOrDbAnalysisStatus) => T;
52
52
  _: (name: string, value: any) => T;
53
53
  }
54
- const visit: <T>(value: AnalysisStatusUnion, visitor: Visitor<T>) => T;
55
54
  }
56
55
  export declare const AnalysisType: {
57
56
  readonly BINARY_ANALYSIS: "BINARY_ANALYSIS";
@@ -125,7 +124,6 @@ export declare namespace AnalyzerNameUnion {
125
124
  sourceCodeAnalyzerName: (value: SourceCodeAnalyzerName) => T;
126
125
  _: (name: string, value: any) => T;
127
126
  }
128
- const visit: <T>(value: AnalyzerNameUnion, visitor: Visitor<T>) => T;
129
127
  }
130
128
  export interface S3Object {
131
129
  s3Bucket?: string | undefined;
@@ -406,7 +404,6 @@ export declare namespace ManagementPreference {
406
404
  noPreference: (value: NoManagementPreference) => T;
407
405
  _: (name: string, value: any) => T;
408
406
  }
409
- const visit: <T>(value: ManagementPreference, visitor: Visitor<T>) => T;
410
407
  }
411
408
  export interface ApplicationPreferences {
412
409
  managementPreference?: ManagementPreference | undefined;
@@ -680,10 +677,6 @@ export declare namespace DatabaseMigrationPreference {
680
677
  noPreference: (value: NoDatabaseMigrationPreference) => T;
681
678
  _: (name: string, value: any) => T;
682
679
  }
683
- const visit: <T>(
684
- value: DatabaseMigrationPreference,
685
- visitor: Visitor<T>
686
- ) => T;
687
680
  }
688
681
  export interface DatabasePreferences {
689
682
  databaseManagementPreference?: DatabaseManagementPreference | undefined;
@@ -1051,6 +1044,3 @@ export interface UpdateServerConfigRequest {
1051
1044
  strategyOption?: StrategyOption | undefined;
1052
1045
  }
1053
1046
  export interface UpdateServerConfigResponse {}
1054
- export declare const UpdateApplicationComponentConfigRequestFilterSensitiveLog: (
1055
- obj: UpdateApplicationComponentConfigRequest
1056
- ) => any;
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MigrationHubStrategyHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,171 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticSimpleSchema,
6
+ StaticStructureSchema,
7
+ } from "@smithy/types";
8
+ export declare var SecretsManagerKey: StaticSimpleSchema;
9
+ export declare var AccessDeniedException: StaticErrorSchema;
10
+ export declare var AnalyzableServerSummary: StaticStructureSchema;
11
+ export declare var AntipatternReportResult: StaticStructureSchema;
12
+ export declare var AntipatternSeveritySummary: StaticStructureSchema;
13
+ export declare var ApplicationComponentDetail: StaticStructureSchema;
14
+ export declare var ApplicationComponentStatusSummary: StaticStructureSchema;
15
+ export declare var ApplicationComponentStrategy: StaticStructureSchema;
16
+ export declare var ApplicationComponentSummary: StaticStructureSchema;
17
+ export declare var ApplicationPreferences: StaticStructureSchema;
18
+ export declare var AppUnitError: StaticStructureSchema;
19
+ export declare var AssessmentSummary: StaticStructureSchema;
20
+ export declare var AssessmentTarget: StaticStructureSchema;
21
+ export declare var AssociatedApplication: StaticStructureSchema;
22
+ export declare var AwsManagedResources: StaticStructureSchema;
23
+ export declare var BusinessGoals: StaticStructureSchema;
24
+ export declare var Collector: StaticStructureSchema;
25
+ export declare var ConfigurationSummary: StaticStructureSchema;
26
+ export declare var ConflictException: StaticErrorSchema;
27
+ export declare var DatabaseConfigDetail: StaticStructureSchema;
28
+ export declare var DatabasePreferences: StaticStructureSchema;
29
+ export declare var DataCollectionDetails: StaticStructureSchema;
30
+ export declare var DependencyException: StaticErrorSchema;
31
+ export declare var GetApplicationComponentDetailsRequest: StaticStructureSchema;
32
+ export declare var GetApplicationComponentDetailsResponse: StaticStructureSchema;
33
+ export declare var GetApplicationComponentStrategiesRequest: StaticStructureSchema;
34
+ export declare var GetApplicationComponentStrategiesResponse: StaticStructureSchema;
35
+ export declare var GetAssessmentRequest: StaticStructureSchema;
36
+ export declare var GetAssessmentResponse: StaticStructureSchema;
37
+ export declare var GetImportFileTaskRequest: StaticStructureSchema;
38
+ export declare var GetImportFileTaskResponse: StaticStructureSchema;
39
+ export declare var GetLatestAssessmentIdRequest: StaticStructureSchema;
40
+ export declare var GetLatestAssessmentIdResponse: StaticStructureSchema;
41
+ export declare var GetPortfolioPreferencesRequest: StaticStructureSchema;
42
+ export declare var GetPortfolioPreferencesResponse: StaticStructureSchema;
43
+ export declare var GetPortfolioSummaryRequest: StaticStructureSchema;
44
+ export declare var GetPortfolioSummaryResponse: StaticStructureSchema;
45
+ export declare var GetRecommendationReportDetailsRequest: StaticStructureSchema;
46
+ export declare var GetRecommendationReportDetailsResponse: StaticStructureSchema;
47
+ export declare var GetServerDetailsRequest: StaticStructureSchema;
48
+ export declare var GetServerDetailsResponse: StaticStructureSchema;
49
+ export declare var GetServerStrategiesRequest: StaticStructureSchema;
50
+ export declare var GetServerStrategiesResponse: StaticStructureSchema;
51
+ export declare var Group: StaticStructureSchema;
52
+ export declare var Heterogeneous: StaticStructureSchema;
53
+ export declare var Homogeneous: StaticStructureSchema;
54
+ export declare var ImportFileTaskInformation: StaticStructureSchema;
55
+ export declare var InternalServerException: StaticErrorSchema;
56
+ export declare var IPAddressBasedRemoteInfo: StaticStructureSchema;
57
+ export declare var ListAnalyzableServersRequest: StaticStructureSchema;
58
+ export declare var ListAnalyzableServersResponse: StaticStructureSchema;
59
+ export declare var ListApplicationComponentsRequest: StaticStructureSchema;
60
+ export declare var ListApplicationComponentsResponse: StaticStructureSchema;
61
+ export declare var ListCollectorsRequest: StaticStructureSchema;
62
+ export declare var ListCollectorsResponse: StaticStructureSchema;
63
+ export declare var ListImportFileTaskRequest: StaticStructureSchema;
64
+ export declare var ListImportFileTaskResponse: StaticStructureSchema;
65
+ export declare var ListServersRequest: StaticStructureSchema;
66
+ export declare var ListServersResponse: StaticStructureSchema;
67
+ export declare var NetworkInfo: StaticStructureSchema;
68
+ export declare var NoDatabaseMigrationPreference: StaticStructureSchema;
69
+ export declare var NoManagementPreference: StaticStructureSchema;
70
+ export declare var OSInfo: StaticStructureSchema;
71
+ export declare var PipelineInfo: StaticStructureSchema;
72
+ export declare var PrioritizeBusinessGoals: StaticStructureSchema;
73
+ export declare var PutPortfolioPreferencesRequest: StaticStructureSchema;
74
+ export declare var PutPortfolioPreferencesResponse: StaticStructureSchema;
75
+ export declare var RecommendationReportDetails: StaticStructureSchema;
76
+ export declare var RecommendationSet: StaticStructureSchema;
77
+ export declare var RemoteSourceCodeAnalysisServerInfo: StaticStructureSchema;
78
+ export declare var ResourceNotFoundException: StaticErrorSchema;
79
+ export declare var Result: StaticStructureSchema;
80
+ export declare var S3Object: StaticStructureSchema;
81
+ export declare var SelfManageResources: StaticStructureSchema;
82
+ export declare var ServerDetail: StaticStructureSchema;
83
+ export declare var ServerError: StaticStructureSchema;
84
+ export declare var ServerStatusSummary: StaticStructureSchema;
85
+ export declare var ServerStrategy: StaticStructureSchema;
86
+ export declare var ServerSummary: StaticStructureSchema;
87
+ export declare var ServiceLinkedRoleLockClientException: StaticErrorSchema;
88
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
89
+ export declare var SourceCode: StaticStructureSchema;
90
+ export declare var SourceCodeRepository: StaticStructureSchema;
91
+ export declare var StartAssessmentRequest: StaticStructureSchema;
92
+ export declare var StartAssessmentResponse: StaticStructureSchema;
93
+ export declare var StartImportFileTaskRequest: StaticStructureSchema;
94
+ export declare var StartImportFileTaskResponse: StaticStructureSchema;
95
+ export declare var StartRecommendationReportGenerationRequest: StaticStructureSchema;
96
+ export declare var StartRecommendationReportGenerationResponse: StaticStructureSchema;
97
+ export declare var StopAssessmentRequest: StaticStructureSchema;
98
+ export declare var StopAssessmentResponse: StaticStructureSchema;
99
+ export declare var StrategyOption: StaticStructureSchema;
100
+ export declare var StrategySummary: StaticStructureSchema;
101
+ export declare var SystemInfo: StaticStructureSchema;
102
+ export declare var ThrottlingException: StaticErrorSchema;
103
+ export declare var TransformationTool: StaticStructureSchema;
104
+ export declare var UpdateApplicationComponentConfigRequest: StaticStructureSchema;
105
+ export declare var UpdateApplicationComponentConfigResponse: StaticStructureSchema;
106
+ export declare var UpdateServerConfigRequest: StaticStructureSchema;
107
+ export declare var UpdateServerConfigResponse: StaticStructureSchema;
108
+ export declare var ValidationException: StaticErrorSchema;
109
+ export declare var VcenterBasedRemoteInfo: StaticStructureSchema;
110
+ export declare var VersionControlInfo: StaticStructureSchema;
111
+ export declare var MigrationHubStrategyServiceException: StaticErrorSchema;
112
+ export declare var AnalyzableServerSummaryList: StaticListSchema;
113
+ export declare var AntipatternReportResultList: StaticListSchema;
114
+ export declare var ApplicationComponentDetails: StaticListSchema;
115
+ export declare var ApplicationComponentStrategies: StaticListSchema;
116
+ export declare var AssessmentTargets: StaticListSchema;
117
+ export declare var AssessmentTargetValues: number;
118
+ export declare var AssociatedApplications: StaticListSchema;
119
+ export declare var AssociatedServerIDs: number;
120
+ export declare var AwsManagedTargetDestinations: number;
121
+ export declare var Collectors: StaticListSchema;
122
+ export declare var GroupIds: StaticListSchema;
123
+ export declare var HeterogeneousTargetDatabaseEngines: number;
124
+ export declare var HomogeneousTargetDatabaseEngines: number;
125
+ export declare var IPAddressBasedRemoteInfoList: StaticListSchema;
126
+ export declare var ListAntipatternSeveritySummary: StaticListSchema;
127
+ export declare var ListApplicationComponentStatusSummary: StaticListSchema;
128
+ export declare var ListApplicationComponentSummary: StaticListSchema;
129
+ export declare var ListImportFileTaskInformation: StaticListSchema;
130
+ export declare var ListServerStatusSummary: StaticListSchema;
131
+ export declare var ListServerSummary: StaticListSchema;
132
+ export declare var ListStrategySummary: StaticListSchema;
133
+ export declare var NetworkInfoList: StaticListSchema;
134
+ export declare var NoPreferenceTargetDestinations: number;
135
+ export declare var PipelineInfoList: StaticListSchema;
136
+ export declare var ResultList: StaticListSchema;
137
+ export declare var S3Keys: number;
138
+ export declare var SelfManageTargetDestinations: number;
139
+ export declare var ServerDetails: StaticListSchema;
140
+ export declare var ServerStrategies: StaticListSchema;
141
+ export declare var SourceCodeList: StaticListSchema;
142
+ export declare var SourceCodeRepositories: StaticListSchema;
143
+ export declare var TargetDatabaseEngines: number;
144
+ export declare var VcenterBasedRemoteInfoList: StaticListSchema;
145
+ export declare var VersionControlInfoList: StaticListSchema;
146
+ export declare var AnalysisStatusUnion: StaticStructureSchema;
147
+ export declare var AnalyzerNameUnion: StaticStructureSchema;
148
+ export declare var DatabaseMigrationPreference: StaticStructureSchema;
149
+ export declare var ManagementPreference: StaticStructureSchema;
150
+ export declare var GetApplicationComponentDetails: StaticOperationSchema;
151
+ export declare var GetApplicationComponentStrategies: StaticOperationSchema;
152
+ export declare var GetAssessment: StaticOperationSchema;
153
+ export declare var GetImportFileTask: StaticOperationSchema;
154
+ export declare var GetLatestAssessmentId: StaticOperationSchema;
155
+ export declare var GetPortfolioPreferences: StaticOperationSchema;
156
+ export declare var GetPortfolioSummary: StaticOperationSchema;
157
+ export declare var GetRecommendationReportDetails: StaticOperationSchema;
158
+ export declare var GetServerDetails: StaticOperationSchema;
159
+ export declare var GetServerStrategies: StaticOperationSchema;
160
+ export declare var ListAnalyzableServers: StaticOperationSchema;
161
+ export declare var ListApplicationComponents: StaticOperationSchema;
162
+ export declare var ListCollectors: StaticOperationSchema;
163
+ export declare var ListImportFileTask: StaticOperationSchema;
164
+ export declare var ListServers: StaticOperationSchema;
165
+ export declare var PutPortfolioPreferences: StaticOperationSchema;
166
+ export declare var StartAssessment: StaticOperationSchema;
167
+ export declare var StartImportFileTask: StaticOperationSchema;
168
+ export declare var StartRecommendationReportGeneration: StaticOperationSchema;
169
+ export declare var StopAssessment: StaticOperationSchema;
170
+ export declare var UpdateApplicationComponentConfig: StaticOperationSchema;
171
+ export declare var UpdateServerConfig: StaticOperationSchema;