@aws-sdk/client-migrationhubstrategy 3.987.0 → 3.989.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 +41 -1297
- package/dist-cjs/models/MigrationHubStrategyServiceException.js +12 -0
- package/dist-cjs/models/errors.js +121 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1042 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +68 -62
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var MigrationHubStrategyServiceException = require('./models/MigrationHubStrategyServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1142 +113,6 @@ class MigrationHubStrategyClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class MigrationHubStrategyServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, MigrationHubStrategyServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends MigrationHubStrategyServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends MigrationHubStrategyServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends MigrationHubStrategyServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ThrottlingException extends MigrationHubStrategyServiceException {
|
|
157
|
-
name = "ThrottlingException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ThrottlingException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends MigrationHubStrategyServiceException {
|
|
169
|
-
name = "ValidationException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ValidationException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class DependencyException extends MigrationHubStrategyServiceException {
|
|
181
|
-
name = "DependencyException";
|
|
182
|
-
$fault = "server";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "DependencyException",
|
|
186
|
-
$fault: "server",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ServiceLinkedRoleLockClientException extends MigrationHubStrategyServiceException {
|
|
193
|
-
name = "ServiceLinkedRoleLockClientException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ServiceLinkedRoleLockClientException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ServiceLinkedRoleLockClientException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ConflictException extends MigrationHubStrategyServiceException {
|
|
205
|
-
name = "ConflictException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "ConflictException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class ServiceQuotaExceededException extends MigrationHubStrategyServiceException {
|
|
217
|
-
name = "ServiceQuotaExceededException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "ServiceQuotaExceededException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
const _AA = "AssociatedApplication";
|
|
230
|
-
const _AAs = "AssociatedApplications";
|
|
231
|
-
const _ACD = "ApplicationComponentDetail";
|
|
232
|
-
const _ACDp = "ApplicationComponentDetails";
|
|
233
|
-
const _ACS = "ApplicationComponentStrategy";
|
|
234
|
-
const _ACSS = "ApplicationComponentStatusSummary";
|
|
235
|
-
const _ACSp = "ApplicationComponentSummary";
|
|
236
|
-
const _ACSpp = "ApplicationComponentStrategies";
|
|
237
|
-
const _ADE = "AccessDeniedException";
|
|
238
|
-
const _AMR = "AwsManagedResources";
|
|
239
|
-
const _ANU = "AnalyzerNameUnion";
|
|
240
|
-
const _AP = "ApplicationPreferences";
|
|
241
|
-
const _ARR = "AntipatternReportResult";
|
|
242
|
-
const _ARRL = "AntipatternReportResultList";
|
|
243
|
-
const _AS = "AssessmentSummary";
|
|
244
|
-
const _ASS = "AnalyzableServerSummary";
|
|
245
|
-
const _ASSL = "AnalyzableServerSummaryList";
|
|
246
|
-
const _ASSn = "AntipatternSeveritySummary";
|
|
247
|
-
const _ASU = "AnalysisStatusUnion";
|
|
248
|
-
const _AT = "AssessmentTarget";
|
|
249
|
-
const _ATs = "AssessmentTargets";
|
|
250
|
-
const _AUE = "AppUnitError";
|
|
251
|
-
const _BG = "BusinessGoals";
|
|
252
|
-
const _C = "Collector";
|
|
253
|
-
const _CE = "ConflictException";
|
|
254
|
-
const _CS = "ConfigurationSummary";
|
|
255
|
-
const _Co = "Collectors";
|
|
256
|
-
const _DCD = "DatabaseConfigDetail";
|
|
257
|
-
const _DCDa = "DataCollectionDetails";
|
|
258
|
-
const _DE = "DependencyException";
|
|
259
|
-
const _DMP = "DatabaseMigrationPreference";
|
|
260
|
-
const _DP = "DatabasePreferences";
|
|
261
|
-
const _G = "Group";
|
|
262
|
-
const _GA = "GetAssessment";
|
|
263
|
-
const _GACD = "GetApplicationComponentDetails";
|
|
264
|
-
const _GACDR = "GetApplicationComponentDetailsRequest";
|
|
265
|
-
const _GACDRe = "GetApplicationComponentDetailsResponse";
|
|
266
|
-
const _GACS = "GetApplicationComponentStrategies";
|
|
267
|
-
const _GACSR = "GetApplicationComponentStrategiesRequest";
|
|
268
|
-
const _GACSRe = "GetApplicationComponentStrategiesResponse";
|
|
269
|
-
const _GAR = "GetAssessmentRequest";
|
|
270
|
-
const _GARe = "GetAssessmentResponse";
|
|
271
|
-
const _GI = "GroupIds";
|
|
272
|
-
const _GIFT = "GetImportFileTask";
|
|
273
|
-
const _GIFTR = "GetImportFileTaskRequest";
|
|
274
|
-
const _GIFTRe = "GetImportFileTaskResponse";
|
|
275
|
-
const _GLAI = "GetLatestAssessmentId";
|
|
276
|
-
const _GLAIR = "GetLatestAssessmentIdRequest";
|
|
277
|
-
const _GLAIRe = "GetLatestAssessmentIdResponse";
|
|
278
|
-
const _GPP = "GetPortfolioPreferences";
|
|
279
|
-
const _GPPR = "GetPortfolioPreferencesRequest";
|
|
280
|
-
const _GPPRe = "GetPortfolioPreferencesResponse";
|
|
281
|
-
const _GPS = "GetPortfolioSummary";
|
|
282
|
-
const _GPSR = "GetPortfolioSummaryRequest";
|
|
283
|
-
const _GPSRe = "GetPortfolioSummaryResponse";
|
|
284
|
-
const _GRRD = "GetRecommendationReportDetails";
|
|
285
|
-
const _GRRDR = "GetRecommendationReportDetailsRequest";
|
|
286
|
-
const _GRRDRe = "GetRecommendationReportDetailsResponse";
|
|
287
|
-
const _GSD = "GetServerDetails";
|
|
288
|
-
const _GSDR = "GetServerDetailsRequest";
|
|
289
|
-
const _GSDRe = "GetServerDetailsResponse";
|
|
290
|
-
const _GSS = "GetServerStrategies";
|
|
291
|
-
const _GSSR = "GetServerStrategiesRequest";
|
|
292
|
-
const _GSSRe = "GetServerStrategiesResponse";
|
|
293
|
-
const _H = "Heterogeneous";
|
|
294
|
-
const _Ho = "Homogeneous";
|
|
295
|
-
const _IFTI = "ImportFileTaskInformation";
|
|
296
|
-
const _IPABRI = "IPAddressBasedRemoteInfo";
|
|
297
|
-
const _IPABRIL = "IPAddressBasedRemoteInfoList";
|
|
298
|
-
const _ISE = "InternalServerException";
|
|
299
|
-
const _LAC = "ListApplicationComponents";
|
|
300
|
-
const _LACR = "ListApplicationComponentsRequest";
|
|
301
|
-
const _LACRi = "ListApplicationComponentsResponse";
|
|
302
|
-
const _LACS = "ListApplicationComponentSummary";
|
|
303
|
-
const _LACSS = "ListApplicationComponentStatusSummary";
|
|
304
|
-
const _LAS = "ListAnalyzableServers";
|
|
305
|
-
const _LASR = "ListAnalyzableServersRequest";
|
|
306
|
-
const _LASRi = "ListAnalyzableServersResponse";
|
|
307
|
-
const _LASS = "ListAntipatternSeveritySummary";
|
|
308
|
-
const _LC = "ListCollectors";
|
|
309
|
-
const _LCR = "ListCollectorsRequest";
|
|
310
|
-
const _LCRi = "ListCollectorsResponse";
|
|
311
|
-
const _LIFT = "ListImportFileTask";
|
|
312
|
-
const _LIFTI = "ListImportFileTaskInformation";
|
|
313
|
-
const _LIFTR = "ListImportFileTaskRequest";
|
|
314
|
-
const _LIFTRi = "ListImportFileTaskResponse";
|
|
315
|
-
const _LS = "ListServers";
|
|
316
|
-
const _LSR = "ListServersRequest";
|
|
317
|
-
const _LSRi = "ListServersResponse";
|
|
318
|
-
const _LSS = "ListServerSummary";
|
|
319
|
-
const _LSSS = "ListServerStatusSummary";
|
|
320
|
-
const _LSSi = "ListStrategySummary";
|
|
321
|
-
const _MP = "ManagementPreference";
|
|
322
|
-
const _NDMP = "NoDatabaseMigrationPreference";
|
|
323
|
-
const _NI = "NetworkInfo";
|
|
324
|
-
const _NIL = "NetworkInfoList";
|
|
325
|
-
const _NMP = "NoManagementPreference";
|
|
326
|
-
const _OSI = "OSInfo";
|
|
327
|
-
const _PBG = "PrioritizeBusinessGoals";
|
|
328
|
-
const _PI = "PipelineInfo";
|
|
329
|
-
const _PIL = "PipelineInfoList";
|
|
330
|
-
const _PPP = "PutPortfolioPreferences";
|
|
331
|
-
const _PPPR = "PutPortfolioPreferencesRequest";
|
|
332
|
-
const _PPPRu = "PutPortfolioPreferencesResponse";
|
|
333
|
-
const _R = "Result";
|
|
334
|
-
const _RL = "ResultList";
|
|
335
|
-
const _RNFE = "ResourceNotFoundException";
|
|
336
|
-
const _RRD = "RecommendationReportDetails";
|
|
337
|
-
const _RS = "RecommendationSet";
|
|
338
|
-
const _RSCASI = "RemoteSourceCodeAnalysisServerInfo";
|
|
339
|
-
const _SA = "StartAssessment";
|
|
340
|
-
const _SAR = "StartAssessmentRequest";
|
|
341
|
-
const _SARt = "StartAssessmentResponse";
|
|
342
|
-
const _SARto = "StopAssessmentRequest";
|
|
343
|
-
const _SARtop = "StopAssessmentResponse";
|
|
344
|
-
const _SAt = "StopAssessment";
|
|
345
|
-
const _SB = "S3Bucket";
|
|
346
|
-
const _SC = "SourceCode";
|
|
347
|
-
const _SCL = "SourceCodeList";
|
|
348
|
-
const _SCR = "SourceCodeRepository";
|
|
349
|
-
const _SCRo = "SourceCodeRepositories";
|
|
350
|
-
const _SD = "ServerDetail";
|
|
351
|
-
const _SDe = "ServerDetails";
|
|
352
|
-
const _SE = "ServerError";
|
|
353
|
-
const _SI = "SystemInfo";
|
|
354
|
-
const _SIFT = "StartImportFileTask";
|
|
355
|
-
const _SIFTR = "StartImportFileTaskRequest";
|
|
356
|
-
const _SIFTRt = "StartImportFileTaskResponse";
|
|
357
|
-
const _SLRLCE = "ServiceLinkedRoleLockClientException";
|
|
358
|
-
const _SMK = "SecretsManagerKey";
|
|
359
|
-
const _SMR = "SelfManageResources";
|
|
360
|
-
const _SO = "S3Object";
|
|
361
|
-
const _SOT = "ServerOsType";
|
|
362
|
-
const _SOt = "StrategyOption";
|
|
363
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
364
|
-
const _SRRG = "StartRecommendationReportGeneration";
|
|
365
|
-
const _SRRGR = "StartRecommendationReportGenerationRequest";
|
|
366
|
-
const _SRRGRt = "StartRecommendationReportGenerationResponse";
|
|
367
|
-
const _SS = "ServerStrategy";
|
|
368
|
-
const _SSS = "ServerStatusSummary";
|
|
369
|
-
const _SSe = "ServerSummary";
|
|
370
|
-
const _SSer = "ServerStrategies";
|
|
371
|
-
const _SSt = "StrategySummary";
|
|
372
|
-
const _TE = "ThrottlingException";
|
|
373
|
-
const _TT = "TransformationTool";
|
|
374
|
-
const _UACC = "UpdateApplicationComponentConfig";
|
|
375
|
-
const _UACCR = "UpdateApplicationComponentConfigRequest";
|
|
376
|
-
const _UACCRp = "UpdateApplicationComponentConfigResponse";
|
|
377
|
-
const _USC = "UpdateServerConfig";
|
|
378
|
-
const _USCR = "UpdateServerConfigRequest";
|
|
379
|
-
const _USCRp = "UpdateServerConfigResponse";
|
|
380
|
-
const _VBRI = "VcenterBasedRemoteInfo";
|
|
381
|
-
const _VBRIL = "VcenterBasedRemoteInfoList";
|
|
382
|
-
const _VCI = "VersionControlInfo";
|
|
383
|
-
const _VCIL = "VersionControlInfoList";
|
|
384
|
-
const _VE = "ValidationException";
|
|
385
|
-
const _aA = "associatedApplications";
|
|
386
|
-
const _aCC = "applicationComponentCriteria";
|
|
387
|
-
const _aCD = "applicationComponentDetail";
|
|
388
|
-
const _aCI = "applicationComponentId";
|
|
389
|
-
const _aCIp = "applicationComponentInfos";
|
|
390
|
-
const _aCS = "applicationComponentStrategies";
|
|
391
|
-
const _aCSS = "applicationComponentStrategySummary";
|
|
392
|
-
const _aDST = "assessmentDataSourceType";
|
|
393
|
-
const _aI = "assessmentId";
|
|
394
|
-
const _aM = "applicationMode";
|
|
395
|
-
const _aMR = "awsManagedResources";
|
|
396
|
-
const _aN = "analyzerName";
|
|
397
|
-
const _aP = "applicationPreferences";
|
|
398
|
-
const _aPRSO = "antiPatternReportS3Object";
|
|
399
|
-
const _aRRL = "antipatternReportResultList";
|
|
400
|
-
const _aRS = "antipatternReportStatus";
|
|
401
|
-
const _aRSM = "antipatternReportStatusMessage";
|
|
402
|
-
const _aRSO = "antipatternReportS3Object";
|
|
403
|
-
const _aS = "analysisStatus";
|
|
404
|
-
const _aSI = "associatedServerId";
|
|
405
|
-
const _aSIs = "associatedServerIds";
|
|
406
|
-
const _aSn = "analyzableServers";
|
|
407
|
-
const _aSs = "assessmentSummary";
|
|
408
|
-
const _aT = "appType";
|
|
409
|
-
const _aTn = "analysisType";
|
|
410
|
-
const _aTs = "assessmentTargets";
|
|
411
|
-
const _aTu = "authType";
|
|
412
|
-
const _aUE = "appUnitError";
|
|
413
|
-
const _aUEC = "appUnitErrorCategory";
|
|
414
|
-
const _b = "branch";
|
|
415
|
-
const _bAN = "binaryAnalyzerName";
|
|
416
|
-
const _bG = "businessGoals";
|
|
417
|
-
const _c = "client";
|
|
418
|
-
const _cA = "cpuArchitecture";
|
|
419
|
-
const _cH = "collectorHealth";
|
|
420
|
-
const _cI = "collectorId";
|
|
421
|
-
const _cO = "configureOnly";
|
|
422
|
-
const _cS = "configurationSummary";
|
|
423
|
-
const _cT = "completionTime";
|
|
424
|
-
const _cV = "collectorVersion";
|
|
425
|
-
const _co = "count";
|
|
426
|
-
const _con = "condition";
|
|
427
|
-
const _d = "description";
|
|
428
|
-
const _dCD = "databaseConfigDetail";
|
|
429
|
-
const _dCDa = "dataCollectionDetails";
|
|
430
|
-
const _dCS = "dataCollectionStatus";
|
|
431
|
-
const _dMP = "databaseManagementPreference";
|
|
432
|
-
const _dMPa = "databaseMigrationPreference";
|
|
433
|
-
const _dP = "databasePreferences";
|
|
434
|
-
const _dST = "dataSourceType";
|
|
435
|
-
const _e = "error";
|
|
436
|
-
const _f = "failed";
|
|
437
|
-
const _fST = "fileSystemType";
|
|
438
|
-
const _fV = "filterValue";
|
|
439
|
-
const _gI = "groupId";
|
|
440
|
-
const _gIF = "groupIdFilter";
|
|
441
|
-
const _h = "hostname";
|
|
442
|
-
const _hE = "httpError";
|
|
443
|
-
const _hN = "hostName";
|
|
444
|
-
const _hQ = "httpQuery";
|
|
445
|
-
const _he = "heterogeneous";
|
|
446
|
-
const _ho = "homogeneous";
|
|
447
|
-
const _ht = "http";
|
|
448
|
-
const _i = "id";
|
|
449
|
-
const _iA = "ipAddress";
|
|
450
|
-
const _iABRIL = "ipAddressBasedRemoteInfoList";
|
|
451
|
-
const _iACTS = "ipAddressConfigurationTimeStamp";
|
|
452
|
-
const _iN = "importName";
|
|
453
|
-
const _iNn = "interfaceName";
|
|
454
|
-
const _iP = "isPreferred";
|
|
455
|
-
const _iPn = "inProgress";
|
|
456
|
-
const _iS = "inclusionStatus";
|
|
457
|
-
const _iSB = "inputS3Bucket";
|
|
458
|
-
const _iSK = "inputS3Key";
|
|
459
|
-
const _l = "location";
|
|
460
|
-
const _lACS = "listApplicationComponentSummary";
|
|
461
|
-
const _lACSS = "listApplicationComponentStrategySummary";
|
|
462
|
-
const _lACSSi = "listApplicationComponentStatusSummary";
|
|
463
|
-
const _lASS = "listAntipatternSeveritySummary";
|
|
464
|
-
const _lAT = "lastAnalyzedTimestamp";
|
|
465
|
-
const _lATS = "lastActivityTimeStamp";
|
|
466
|
-
const _lCR = "licenseCostReduction";
|
|
467
|
-
const _lSS = "listServerSummary";
|
|
468
|
-
const _lSSS = "listServerStrategySummary";
|
|
469
|
-
const _lSSSi = "listServerStatusSummary";
|
|
470
|
-
const _m = "message";
|
|
471
|
-
const _mA = "macAddress";
|
|
472
|
-
const _mAR = "moreApplicationResource";
|
|
473
|
-
const _mIWCNT = "modernizeInfrastructureWithCloudNativeTechnologies";
|
|
474
|
-
const _mP = "managementPreference";
|
|
475
|
-
const _mR = "maxResults";
|
|
476
|
-
const _mSAE = "moreServerAssociationExists";
|
|
477
|
-
const _n = "name";
|
|
478
|
-
const _nIL = "networkInfoList";
|
|
479
|
-
const _nM = "netMask";
|
|
480
|
-
const _nOAC = "numberOfApplicationComponents";
|
|
481
|
-
const _nORF = "numberOfRecordsFailed";
|
|
482
|
-
const _nORS = "numberOfRecordsSuccess";
|
|
483
|
-
const _nP = "noPreference";
|
|
484
|
-
const _nT = "nextToken";
|
|
485
|
-
const _oD = "osDriver";
|
|
486
|
-
const _oF = "outputFormat";
|
|
487
|
-
const _oI = "osInfo";
|
|
488
|
-
const _oT = "osType";
|
|
489
|
-
const _oV = "osVersion";
|
|
490
|
-
const _pBG = "prioritizeBusinessGoals";
|
|
491
|
-
const _pCTS = "pipelineConfigurationTimeStamp";
|
|
492
|
-
const _pIL = "pipelineInfoList";
|
|
493
|
-
const _pN = "projectName";
|
|
494
|
-
const _pT = "pipelineType";
|
|
495
|
-
const _r = "recommendation";
|
|
496
|
-
const _rAS = "runtimeAnalysisStatus";
|
|
497
|
-
const _rL = "resultList";
|
|
498
|
-
const _rOOWMS = "reduceOperationalOverheadWithManagedServices";
|
|
499
|
-
const _rRD = "recommendationReportDetails";
|
|
500
|
-
const _rS = "recommendationSet";
|
|
501
|
-
const _rSCASCT = "remoteSourceCodeAnalysisServerConfigurationTimestamp";
|
|
502
|
-
const _rSCASI = "remoteSourceCodeAnalysisServerInfo";
|
|
503
|
-
const _rSM = "runtimeStatusMessage";
|
|
504
|
-
const _rST = "resourceSubType";
|
|
505
|
-
const _rSu = "runtimeStatus";
|
|
506
|
-
const _rTAN = "runTimeAnalyzerName";
|
|
507
|
-
const _rTAS = "runTimeAssessmentStatus";
|
|
508
|
-
const _rTS = "registeredTimeStamp";
|
|
509
|
-
const _re = "repository";
|
|
510
|
-
const _s = "source";
|
|
511
|
-
const _sB = "s3Bucket";
|
|
512
|
-
const _sC = "serverCriteria";
|
|
513
|
-
const _sCAN = "sourceCodeAnalyzerName";
|
|
514
|
-
const _sCL = "sourceCodeList";
|
|
515
|
-
const _sCODAS = "srcCodeOrDbAnalysisStatus";
|
|
516
|
-
const _sCR = "sourceCodeRepositories";
|
|
517
|
-
const _sD = "serverDetail";
|
|
518
|
-
const _sE = "serverError";
|
|
519
|
-
const _sEC = "serverErrorCategory";
|
|
520
|
-
const _sFAD = "s3bucketForAnalysisData";
|
|
521
|
-
const _sFRD = "s3bucketForReportData";
|
|
522
|
-
const _sI = "serverId";
|
|
523
|
-
const _sIe = "serverInfos";
|
|
524
|
-
const _sIy = "systemInfo";
|
|
525
|
-
const _sK = "s3Keys";
|
|
526
|
-
const _sM = "statusMessage";
|
|
527
|
-
const _sMK = "secretsManagerKey";
|
|
528
|
-
const _sMR = "selfManageResources";
|
|
529
|
-
const _sN = "secretName";
|
|
530
|
-
const _sO = "strategyOption";
|
|
531
|
-
const _sOM = "speedOfMigration";
|
|
532
|
-
const _sRSB = "statusReportS3Bucket";
|
|
533
|
-
const _sRSK = "statusReportS3Key";
|
|
534
|
-
const _sS = "serverStrategies";
|
|
535
|
-
const _sT = "startTime";
|
|
536
|
-
const _sTe = "serverType";
|
|
537
|
-
const _sV = "sourceVersion";
|
|
538
|
-
const _se = "severity";
|
|
539
|
-
const _ser = "servers";
|
|
540
|
-
const _serv = "server";
|
|
541
|
-
const _sk = "s3key";
|
|
542
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhubstrategy";
|
|
543
|
-
const _so = "sort";
|
|
544
|
-
const _st = "status";
|
|
545
|
-
const _str = "strategy";
|
|
546
|
-
const _su = "success";
|
|
547
|
-
const _t = "type";
|
|
548
|
-
const _tD = "targetDestination";
|
|
549
|
-
const _tDE = "targetDatabaseEngine";
|
|
550
|
-
const _tI = "taskInfos";
|
|
551
|
-
const _tN = "toolName";
|
|
552
|
-
const _tT = "transformationTool";
|
|
553
|
-
const _tTIL = "tranformationToolInstallationLink";
|
|
554
|
-
const _v = "values";
|
|
555
|
-
const _vBRIL = "vcenterBasedRemoteInfoList";
|
|
556
|
-
const _vC = "versionControl";
|
|
557
|
-
const _vCCTS = "versionControlConfigurationTimeStamp";
|
|
558
|
-
const _vCIL = "versionControlInfoList";
|
|
559
|
-
const _vCT = "versionControlType";
|
|
560
|
-
const _vCTS = "vcenterConfigurationTimeStamp";
|
|
561
|
-
const _vI = "vmId";
|
|
562
|
-
const _va = "value";
|
|
563
|
-
const _ve = "version";
|
|
564
|
-
const n0 = "com.amazonaws.migrationhubstrategy";
|
|
565
|
-
var SecretsManagerKey = [0, n0, _SMK, 8, 0];
|
|
566
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
567
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
568
|
-
[_m],
|
|
569
|
-
[0], 1
|
|
570
|
-
];
|
|
571
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
572
|
-
var AnalyzableServerSummary$ = [3, n0, _ASS,
|
|
573
|
-
0,
|
|
574
|
-
[_h, _iA, _s, _vI],
|
|
575
|
-
[0, 0, 0, 0]
|
|
576
|
-
];
|
|
577
|
-
var AntipatternReportResult$ = [3, n0, _ARR,
|
|
578
|
-
0,
|
|
579
|
-
[_aN, _aPRSO, _aRS, _aRSM],
|
|
580
|
-
[() => AnalyzerNameUnion$, () => S3Object$, 0, 0]
|
|
581
|
-
];
|
|
582
|
-
var AntipatternSeveritySummary$ = [3, n0, _ASSn,
|
|
583
|
-
0,
|
|
584
|
-
[_se, _co],
|
|
585
|
-
[0, 1]
|
|
586
|
-
];
|
|
587
|
-
var ApplicationComponentDetail$ = [3, n0, _ACD,
|
|
588
|
-
0,
|
|
589
|
-
[_i, _n, _rS, _aS, _sM, _lASS, _dCD, _sCR, _aT, _rST, _iS, _aRSO, _aRS, _aRSM, _oV, _oD, _lAT, _aSI, _mSAE, _rSu, _rSM, _aUE, _rL],
|
|
590
|
-
[0, 0, () => RecommendationSet$, 0, 0, () => ListAntipatternSeveritySummary, () => DatabaseConfigDetail$, () => SourceCodeRepositories, 0, 0, 0, () => S3Object$, 0, 0, 0, 0, 4, 0, 2, 0, 0, () => AppUnitError$, () => ResultList]
|
|
591
|
-
];
|
|
592
|
-
var ApplicationComponentStatusSummary$ = [3, n0, _ACSS,
|
|
593
|
-
0,
|
|
594
|
-
[_sCODAS, _co],
|
|
595
|
-
[0, 1]
|
|
596
|
-
];
|
|
597
|
-
var ApplicationComponentStrategy$ = [3, n0, _ACS,
|
|
598
|
-
0,
|
|
599
|
-
[_r, _st, _iP],
|
|
600
|
-
[() => RecommendationSet$, 0, 2]
|
|
601
|
-
];
|
|
602
|
-
var ApplicationComponentSummary$ = [3, n0, _ACSp,
|
|
603
|
-
0,
|
|
604
|
-
[_aT, _co],
|
|
605
|
-
[0, 1]
|
|
606
|
-
];
|
|
607
|
-
var ApplicationPreferences$ = [3, n0, _AP,
|
|
608
|
-
0,
|
|
609
|
-
[_mP],
|
|
610
|
-
[() => ManagementPreference$]
|
|
611
|
-
];
|
|
612
|
-
var AppUnitError$ = [3, n0, _AUE,
|
|
613
|
-
0,
|
|
614
|
-
[_aUEC],
|
|
615
|
-
[0]
|
|
616
|
-
];
|
|
617
|
-
var AssessmentSummary$ = [3, n0, _AS,
|
|
618
|
-
0,
|
|
619
|
-
[_lSSS, _lACSS, _lASS, _lACS, _lSS, _aRSO, _aRS, _aRSM, _lAT, _lACSSi, _lSSSi],
|
|
620
|
-
[() => ListStrategySummary, () => ListStrategySummary, () => ListAntipatternSeveritySummary, () => ListApplicationComponentSummary, () => ListServerSummary, () => S3Object$, 0, 0, 4, () => ListApplicationComponentStatusSummary, () => ListServerStatusSummary]
|
|
621
|
-
];
|
|
622
|
-
var AssessmentTarget$ = [3, n0, _AT,
|
|
623
|
-
0,
|
|
624
|
-
[_con, _n, _v],
|
|
625
|
-
[0, 0, 64 | 0], 3
|
|
626
|
-
];
|
|
627
|
-
var AssociatedApplication$ = [3, n0, _AA,
|
|
628
|
-
0,
|
|
629
|
-
[_n, _i],
|
|
630
|
-
[0, 0]
|
|
631
|
-
];
|
|
632
|
-
var AwsManagedResources$ = [3, n0, _AMR,
|
|
633
|
-
0,
|
|
634
|
-
[_tD],
|
|
635
|
-
[64 | 0], 1
|
|
636
|
-
];
|
|
637
|
-
var BusinessGoals$ = [3, n0, _BG,
|
|
638
|
-
0,
|
|
639
|
-
[_sOM, _rOOWMS, _mIWCNT, _lCR],
|
|
640
|
-
[1, 1, 1, 1]
|
|
641
|
-
];
|
|
642
|
-
var Collector$ = [3, n0, _C,
|
|
643
|
-
0,
|
|
644
|
-
[_cI, _iA, _hN, _cH, _cV, _rTS, _lATS, _cS],
|
|
645
|
-
[0, 0, 0, 0, 0, 0, 0, () => ConfigurationSummary$]
|
|
646
|
-
];
|
|
647
|
-
var ConfigurationSummary$ = [3, n0, _CS,
|
|
648
|
-
0,
|
|
649
|
-
[_vBRIL, _iABRIL, _vCIL, _pIL, _rSCASI],
|
|
650
|
-
[() => VcenterBasedRemoteInfoList, () => IPAddressBasedRemoteInfoList, () => VersionControlInfoList, () => PipelineInfoList, () => RemoteSourceCodeAnalysisServerInfo$]
|
|
651
|
-
];
|
|
652
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
653
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
654
|
-
[_m],
|
|
655
|
-
[0], 1
|
|
656
|
-
];
|
|
657
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
658
|
-
var DatabaseConfigDetail$ = [3, n0, _DCD,
|
|
659
|
-
0,
|
|
660
|
-
[_sN],
|
|
661
|
-
[0]
|
|
662
|
-
];
|
|
663
|
-
var DatabasePreferences$ = [3, n0, _DP,
|
|
664
|
-
0,
|
|
665
|
-
[_dMP, _dMPa],
|
|
666
|
-
[0, () => DatabaseMigrationPreference$]
|
|
667
|
-
];
|
|
668
|
-
var DataCollectionDetails$ = [3, n0, _DCDa,
|
|
669
|
-
0,
|
|
670
|
-
[_st, _ser, _f, _su, _iPn, _sT, _cT, _sM],
|
|
671
|
-
[0, 1, 1, 1, 1, 4, 4, 0]
|
|
672
|
-
];
|
|
673
|
-
var DependencyException$ = [-3, n0, _DE,
|
|
674
|
-
{ [_e]: _serv, [_hE]: 500 },
|
|
675
|
-
[_m],
|
|
676
|
-
[0]
|
|
677
|
-
];
|
|
678
|
-
schema.TypeRegistry.for(n0).registerError(DependencyException$, DependencyException);
|
|
679
|
-
var GetApplicationComponentDetailsRequest$ = [3, n0, _GACDR,
|
|
680
|
-
0,
|
|
681
|
-
[_aCI],
|
|
682
|
-
[[0, 1]], 1
|
|
683
|
-
];
|
|
684
|
-
var GetApplicationComponentDetailsResponse$ = [3, n0, _GACDRe,
|
|
685
|
-
0,
|
|
686
|
-
[_aCD, _aA, _mAR, _aSIs],
|
|
687
|
-
[() => ApplicationComponentDetail$, () => AssociatedApplications, 2, 64 | 0]
|
|
688
|
-
];
|
|
689
|
-
var GetApplicationComponentStrategiesRequest$ = [3, n0, _GACSR,
|
|
690
|
-
0,
|
|
691
|
-
[_aCI],
|
|
692
|
-
[[0, 1]], 1
|
|
693
|
-
];
|
|
694
|
-
var GetApplicationComponentStrategiesResponse$ = [3, n0, _GACSRe,
|
|
695
|
-
0,
|
|
696
|
-
[_aCS],
|
|
697
|
-
[() => ApplicationComponentStrategies]
|
|
698
|
-
];
|
|
699
|
-
var GetAssessmentRequest$ = [3, n0, _GAR,
|
|
700
|
-
0,
|
|
701
|
-
[_i],
|
|
702
|
-
[[0, 1]], 1
|
|
703
|
-
];
|
|
704
|
-
var GetAssessmentResponse$ = [3, n0, _GARe,
|
|
705
|
-
0,
|
|
706
|
-
[_i, _dCDa, _aTs],
|
|
707
|
-
[0, () => DataCollectionDetails$, () => AssessmentTargets]
|
|
708
|
-
];
|
|
709
|
-
var GetImportFileTaskRequest$ = [3, n0, _GIFTR,
|
|
710
|
-
0,
|
|
711
|
-
[_i],
|
|
712
|
-
[[0, 1]], 1
|
|
713
|
-
];
|
|
714
|
-
var GetImportFileTaskResponse$ = [3, n0, _GIFTRe,
|
|
715
|
-
0,
|
|
716
|
-
[_i, _st, _sT, _iSB, _iSK, _sRSB, _sRSK, _cT, _nORS, _nORF, _iN],
|
|
717
|
-
[0, 0, 4, 0, 0, 0, 0, 4, 1, 1, 0]
|
|
718
|
-
];
|
|
719
|
-
var GetLatestAssessmentIdRequest$ = [3, n0, _GLAIR,
|
|
720
|
-
0,
|
|
721
|
-
[],
|
|
722
|
-
[]
|
|
723
|
-
];
|
|
724
|
-
var GetLatestAssessmentIdResponse$ = [3, n0, _GLAIRe,
|
|
725
|
-
0,
|
|
726
|
-
[_i],
|
|
727
|
-
[0]
|
|
728
|
-
];
|
|
729
|
-
var GetPortfolioPreferencesRequest$ = [3, n0, _GPPR,
|
|
730
|
-
0,
|
|
731
|
-
[],
|
|
732
|
-
[]
|
|
733
|
-
];
|
|
734
|
-
var GetPortfolioPreferencesResponse$ = [3, n0, _GPPRe,
|
|
735
|
-
0,
|
|
736
|
-
[_pBG, _aP, _dP, _aM],
|
|
737
|
-
[() => PrioritizeBusinessGoals$, () => ApplicationPreferences$, () => DatabasePreferences$, 0]
|
|
738
|
-
];
|
|
739
|
-
var GetPortfolioSummaryRequest$ = [3, n0, _GPSR,
|
|
740
|
-
0,
|
|
741
|
-
[],
|
|
742
|
-
[]
|
|
743
|
-
];
|
|
744
|
-
var GetPortfolioSummaryResponse$ = [3, n0, _GPSRe,
|
|
745
|
-
0,
|
|
746
|
-
[_aSs],
|
|
747
|
-
[() => AssessmentSummary$]
|
|
748
|
-
];
|
|
749
|
-
var GetRecommendationReportDetailsRequest$ = [3, n0, _GRRDR,
|
|
750
|
-
0,
|
|
751
|
-
[_i],
|
|
752
|
-
[[0, 1]], 1
|
|
753
|
-
];
|
|
754
|
-
var GetRecommendationReportDetailsResponse$ = [3, n0, _GRRDRe,
|
|
755
|
-
0,
|
|
756
|
-
[_i, _rRD],
|
|
757
|
-
[0, () => RecommendationReportDetails$]
|
|
758
|
-
];
|
|
759
|
-
var GetServerDetailsRequest$ = [3, n0, _GSDR,
|
|
760
|
-
0,
|
|
761
|
-
[_sI, _nT, _mR],
|
|
762
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
763
|
-
];
|
|
764
|
-
var GetServerDetailsResponse$ = [3, n0, _GSDRe,
|
|
765
|
-
0,
|
|
766
|
-
[_nT, _sD, _aA],
|
|
767
|
-
[0, () => ServerDetail$, () => AssociatedApplications]
|
|
768
|
-
];
|
|
769
|
-
var GetServerStrategiesRequest$ = [3, n0, _GSSR,
|
|
770
|
-
0,
|
|
771
|
-
[_sI],
|
|
772
|
-
[[0, 1]], 1
|
|
773
|
-
];
|
|
774
|
-
var GetServerStrategiesResponse$ = [3, n0, _GSSRe,
|
|
775
|
-
0,
|
|
776
|
-
[_sS],
|
|
777
|
-
[() => ServerStrategies]
|
|
778
|
-
];
|
|
779
|
-
var Group$ = [3, n0, _G,
|
|
780
|
-
0,
|
|
781
|
-
[_n, _va],
|
|
782
|
-
[0, 0]
|
|
783
|
-
];
|
|
784
|
-
var Heterogeneous$ = [3, n0, _H,
|
|
785
|
-
0,
|
|
786
|
-
[_tDE],
|
|
787
|
-
[64 | 0], 1
|
|
788
|
-
];
|
|
789
|
-
var Homogeneous$ = [3, n0, _Ho,
|
|
790
|
-
0,
|
|
791
|
-
[_tDE],
|
|
792
|
-
[64 | 0]
|
|
793
|
-
];
|
|
794
|
-
var ImportFileTaskInformation$ = [3, n0, _IFTI,
|
|
795
|
-
0,
|
|
796
|
-
[_i, _st, _sT, _iSB, _iSK, _sRSB, _sRSK, _cT, _nORS, _nORF, _iN],
|
|
797
|
-
[0, 0, 4, 0, 0, 0, 0, 4, 1, 1, 0]
|
|
798
|
-
];
|
|
799
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
800
|
-
{ [_e]: _serv, [_hE]: 500 },
|
|
801
|
-
[_m],
|
|
802
|
-
[0]
|
|
803
|
-
];
|
|
804
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
805
|
-
var IPAddressBasedRemoteInfo$ = [3, n0, _IPABRI,
|
|
806
|
-
0,
|
|
807
|
-
[_iACTS, _aTu, _oT],
|
|
808
|
-
[0, 0, 0]
|
|
809
|
-
];
|
|
810
|
-
var ListAnalyzableServersRequest$ = [3, n0, _LASR,
|
|
811
|
-
0,
|
|
812
|
-
[_so, _nT, _mR],
|
|
813
|
-
[0, 0, 1]
|
|
814
|
-
];
|
|
815
|
-
var ListAnalyzableServersResponse$ = [3, n0, _LASRi,
|
|
816
|
-
0,
|
|
817
|
-
[_aSn, _nT],
|
|
818
|
-
[() => AnalyzableServerSummaryList, 0]
|
|
819
|
-
];
|
|
820
|
-
var ListApplicationComponentsRequest$ = [3, n0, _LACR,
|
|
821
|
-
0,
|
|
822
|
-
[_aCC, _fV, _so, _gIF, _nT, _mR],
|
|
823
|
-
[0, 0, 0, () => GroupIds, 0, 1]
|
|
824
|
-
];
|
|
825
|
-
var ListApplicationComponentsResponse$ = [3, n0, _LACRi,
|
|
826
|
-
0,
|
|
827
|
-
[_aCIp, _nT],
|
|
828
|
-
[() => ApplicationComponentDetails, 0]
|
|
829
|
-
];
|
|
830
|
-
var ListCollectorsRequest$ = [3, n0, _LCR,
|
|
831
|
-
0,
|
|
832
|
-
[_nT, _mR],
|
|
833
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
834
|
-
];
|
|
835
|
-
var ListCollectorsResponse$ = [3, n0, _LCRi,
|
|
836
|
-
0,
|
|
837
|
-
[_Co, _nT],
|
|
838
|
-
[() => Collectors, 0]
|
|
839
|
-
];
|
|
840
|
-
var ListImportFileTaskRequest$ = [3, n0, _LIFTR,
|
|
841
|
-
0,
|
|
842
|
-
[_nT, _mR],
|
|
843
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
844
|
-
];
|
|
845
|
-
var ListImportFileTaskResponse$ = [3, n0, _LIFTRi,
|
|
846
|
-
0,
|
|
847
|
-
[_tI, _nT],
|
|
848
|
-
[() => ListImportFileTaskInformation, 0]
|
|
849
|
-
];
|
|
850
|
-
var ListServersRequest$ = [3, n0, _LSR,
|
|
851
|
-
0,
|
|
852
|
-
[_sC, _fV, _so, _gIF, _nT, _mR],
|
|
853
|
-
[0, 0, 0, () => GroupIds, 0, 1]
|
|
854
|
-
];
|
|
855
|
-
var ListServersResponse$ = [3, n0, _LSRi,
|
|
856
|
-
0,
|
|
857
|
-
[_sIe, _nT],
|
|
858
|
-
[() => ServerDetails, 0]
|
|
859
|
-
];
|
|
860
|
-
var NetworkInfo$ = [3, n0, _NI,
|
|
861
|
-
0,
|
|
862
|
-
[_iNn, _iA, _mA, _nM],
|
|
863
|
-
[0, 0, 0, 0], 4
|
|
864
|
-
];
|
|
865
|
-
var NoDatabaseMigrationPreference$ = [3, n0, _NDMP,
|
|
866
|
-
0,
|
|
867
|
-
[_tDE],
|
|
868
|
-
[64 | 0], 1
|
|
869
|
-
];
|
|
870
|
-
var NoManagementPreference$ = [3, n0, _NMP,
|
|
871
|
-
0,
|
|
872
|
-
[_tD],
|
|
873
|
-
[64 | 0], 1
|
|
874
|
-
];
|
|
875
|
-
var OSInfo$ = [3, n0, _OSI,
|
|
876
|
-
0,
|
|
877
|
-
[_t, _ve],
|
|
878
|
-
[0, 0]
|
|
879
|
-
];
|
|
880
|
-
var PipelineInfo$ = [3, n0, _PI,
|
|
881
|
-
0,
|
|
882
|
-
[_pT, _pCTS],
|
|
883
|
-
[0, 0]
|
|
884
|
-
];
|
|
885
|
-
var PrioritizeBusinessGoals$ = [3, n0, _PBG,
|
|
886
|
-
0,
|
|
887
|
-
[_bG],
|
|
888
|
-
[() => BusinessGoals$]
|
|
889
|
-
];
|
|
890
|
-
var PutPortfolioPreferencesRequest$ = [3, n0, _PPPR,
|
|
891
|
-
0,
|
|
892
|
-
[_pBG, _aP, _dP, _aM],
|
|
893
|
-
[() => PrioritizeBusinessGoals$, () => ApplicationPreferences$, () => DatabasePreferences$, 0]
|
|
894
|
-
];
|
|
895
|
-
var PutPortfolioPreferencesResponse$ = [3, n0, _PPPRu,
|
|
896
|
-
0,
|
|
897
|
-
[],
|
|
898
|
-
[]
|
|
899
|
-
];
|
|
900
|
-
var RecommendationReportDetails$ = [3, n0, _RRD,
|
|
901
|
-
0,
|
|
902
|
-
[_st, _sM, _sT, _cT, _sB, _sK],
|
|
903
|
-
[0, 0, 4, 4, 0, 64 | 0]
|
|
904
|
-
];
|
|
905
|
-
var RecommendationSet$ = [3, n0, _RS,
|
|
906
|
-
0,
|
|
907
|
-
[_tT, _tD, _str],
|
|
908
|
-
[() => TransformationTool$, 0, 0]
|
|
909
|
-
];
|
|
910
|
-
var RemoteSourceCodeAnalysisServerInfo$ = [3, n0, _RSCASI,
|
|
911
|
-
0,
|
|
912
|
-
[_rSCASCT],
|
|
913
|
-
[0]
|
|
914
|
-
];
|
|
915
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
916
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
917
|
-
[_m],
|
|
918
|
-
[0]
|
|
919
|
-
];
|
|
920
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
921
|
-
var Result$ = [3, n0, _R,
|
|
922
|
-
0,
|
|
923
|
-
[_aTn, _aS, _sM, _aRRL],
|
|
924
|
-
[0, () => AnalysisStatusUnion$, 0, () => AntipatternReportResultList]
|
|
925
|
-
];
|
|
926
|
-
var S3Object$ = [3, n0, _SO,
|
|
927
|
-
0,
|
|
928
|
-
[_sB, _sk],
|
|
929
|
-
[0, 0]
|
|
930
|
-
];
|
|
931
|
-
var SelfManageResources$ = [3, n0, _SMR,
|
|
932
|
-
0,
|
|
933
|
-
[_tD],
|
|
934
|
-
[64 | 0], 1
|
|
935
|
-
];
|
|
936
|
-
var ServerDetail$ = [3, n0, _SD,
|
|
937
|
-
0,
|
|
938
|
-
[_i, _n, _rS, _dCS, _sM, _lASS, _sIy, _aCSS, _aRSO, _aRS, _aRSM, _sTe, _lAT, _sE],
|
|
939
|
-
[0, 0, () => RecommendationSet$, 0, 0, () => ListAntipatternSeveritySummary, () => SystemInfo$, () => ListStrategySummary, () => S3Object$, 0, 0, 0, 4, () => ServerError$]
|
|
940
|
-
];
|
|
941
|
-
var ServerError$ = [3, n0, _SE,
|
|
942
|
-
0,
|
|
943
|
-
[_sEC],
|
|
944
|
-
[0]
|
|
945
|
-
];
|
|
946
|
-
var ServerStatusSummary$ = [3, n0, _SSS,
|
|
947
|
-
0,
|
|
948
|
-
[_rTAS, _co],
|
|
949
|
-
[0, 1]
|
|
950
|
-
];
|
|
951
|
-
var ServerStrategy$ = [3, n0, _SS,
|
|
952
|
-
0,
|
|
953
|
-
[_r, _st, _nOAC, _iP],
|
|
954
|
-
[() => RecommendationSet$, 0, 1, 2]
|
|
955
|
-
];
|
|
956
|
-
var ServerSummary$ = [3, n0, _SSe,
|
|
957
|
-
0,
|
|
958
|
-
[_SOT, _co],
|
|
959
|
-
[0, 1]
|
|
960
|
-
];
|
|
961
|
-
var ServiceLinkedRoleLockClientException$ = [-3, n0, _SLRLCE,
|
|
962
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
963
|
-
[_m],
|
|
964
|
-
[0]
|
|
965
|
-
];
|
|
966
|
-
schema.TypeRegistry.for(n0).registerError(ServiceLinkedRoleLockClientException$, ServiceLinkedRoleLockClientException);
|
|
967
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
968
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
969
|
-
[_m],
|
|
970
|
-
[0], 1
|
|
971
|
-
];
|
|
972
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
973
|
-
var SourceCode$ = [3, n0, _SC,
|
|
974
|
-
0,
|
|
975
|
-
[_vC, _sV, _l, _pN],
|
|
976
|
-
[0, 0, 0, 0]
|
|
977
|
-
];
|
|
978
|
-
var SourceCodeRepository$ = [3, n0, _SCR,
|
|
979
|
-
0,
|
|
980
|
-
[_re, _b, _vCT, _pN],
|
|
981
|
-
[0, 0, 0, 0]
|
|
982
|
-
];
|
|
983
|
-
var StartAssessmentRequest$ = [3, n0, _SAR,
|
|
984
|
-
0,
|
|
985
|
-
[_sFAD, _sFRD, _aTs, _aDST],
|
|
986
|
-
[0, 0, () => AssessmentTargets, 0]
|
|
987
|
-
];
|
|
988
|
-
var StartAssessmentResponse$ = [3, n0, _SARt,
|
|
989
|
-
0,
|
|
990
|
-
[_aI],
|
|
991
|
-
[0]
|
|
992
|
-
];
|
|
993
|
-
var StartImportFileTaskRequest$ = [3, n0, _SIFTR,
|
|
994
|
-
0,
|
|
995
|
-
[_n, _SB, _sk, _dST, _gI, _sFRD],
|
|
996
|
-
[0, 0, 0, 0, () => GroupIds, 0], 3
|
|
997
|
-
];
|
|
998
|
-
var StartImportFileTaskResponse$ = [3, n0, _SIFTRt,
|
|
999
|
-
0,
|
|
1000
|
-
[_i],
|
|
1001
|
-
[0]
|
|
1002
|
-
];
|
|
1003
|
-
var StartRecommendationReportGenerationRequest$ = [3, n0, _SRRGR,
|
|
1004
|
-
0,
|
|
1005
|
-
[_oF, _gIF],
|
|
1006
|
-
[0, () => GroupIds]
|
|
1007
|
-
];
|
|
1008
|
-
var StartRecommendationReportGenerationResponse$ = [3, n0, _SRRGRt,
|
|
1009
|
-
0,
|
|
1010
|
-
[_i],
|
|
1011
|
-
[0]
|
|
1012
|
-
];
|
|
1013
|
-
var StopAssessmentRequest$ = [3, n0, _SARto,
|
|
1014
|
-
0,
|
|
1015
|
-
[_aI],
|
|
1016
|
-
[0], 1
|
|
1017
|
-
];
|
|
1018
|
-
var StopAssessmentResponse$ = [3, n0, _SARtop,
|
|
1019
|
-
0,
|
|
1020
|
-
[],
|
|
1021
|
-
[]
|
|
1022
|
-
];
|
|
1023
|
-
var StrategyOption$ = [3, n0, _SOt,
|
|
1024
|
-
0,
|
|
1025
|
-
[_str, _tN, _tD, _iP],
|
|
1026
|
-
[0, 0, 0, 2]
|
|
1027
|
-
];
|
|
1028
|
-
var StrategySummary$ = [3, n0, _SSt,
|
|
1029
|
-
0,
|
|
1030
|
-
[_str, _co],
|
|
1031
|
-
[0, 1]
|
|
1032
|
-
];
|
|
1033
|
-
var SystemInfo$ = [3, n0, _SI,
|
|
1034
|
-
0,
|
|
1035
|
-
[_oI, _fST, _nIL, _cA],
|
|
1036
|
-
[() => OSInfo$, 0, () => NetworkInfoList, 0]
|
|
1037
|
-
];
|
|
1038
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1039
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1040
|
-
[_m],
|
|
1041
|
-
[0]
|
|
1042
|
-
];
|
|
1043
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1044
|
-
var TransformationTool$ = [3, n0, _TT,
|
|
1045
|
-
0,
|
|
1046
|
-
[_n, _d, _tTIL],
|
|
1047
|
-
[0, 0, 0]
|
|
1048
|
-
];
|
|
1049
|
-
var UpdateApplicationComponentConfigRequest$ = [3, n0, _UACCR,
|
|
1050
|
-
0,
|
|
1051
|
-
[_aCI, _iS, _sO, _sCL, _sMK, _cO, _aT],
|
|
1052
|
-
[0, 0, () => StrategyOption$, () => SourceCodeList, [() => SecretsManagerKey, 0], 2, 0], 1
|
|
1053
|
-
];
|
|
1054
|
-
var UpdateApplicationComponentConfigResponse$ = [3, n0, _UACCRp,
|
|
1055
|
-
0,
|
|
1056
|
-
[],
|
|
1057
|
-
[]
|
|
1058
|
-
];
|
|
1059
|
-
var UpdateServerConfigRequest$ = [3, n0, _USCR,
|
|
1060
|
-
0,
|
|
1061
|
-
[_sI, _sO],
|
|
1062
|
-
[0, () => StrategyOption$], 1
|
|
1063
|
-
];
|
|
1064
|
-
var UpdateServerConfigResponse$ = [3, n0, _USCRp,
|
|
1065
|
-
0,
|
|
1066
|
-
[],
|
|
1067
|
-
[]
|
|
1068
|
-
];
|
|
1069
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1070
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1071
|
-
[_m],
|
|
1072
|
-
[0]
|
|
1073
|
-
];
|
|
1074
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1075
|
-
var VcenterBasedRemoteInfo$ = [3, n0, _VBRI,
|
|
1076
|
-
0,
|
|
1077
|
-
[_vCTS, _oT],
|
|
1078
|
-
[0, 0]
|
|
1079
|
-
];
|
|
1080
|
-
var VersionControlInfo$ = [3, n0, _VCI,
|
|
1081
|
-
0,
|
|
1082
|
-
[_vCT, _vCCTS],
|
|
1083
|
-
[0, 0]
|
|
1084
|
-
];
|
|
1085
|
-
var MigrationHubStrategyServiceException$ = [-3, _sm, "MigrationHubStrategyServiceException", 0, [], []];
|
|
1086
|
-
schema.TypeRegistry.for(_sm).registerError(MigrationHubStrategyServiceException$, MigrationHubStrategyServiceException);
|
|
1087
|
-
var AnalyzableServerSummaryList = [1, n0, _ASSL,
|
|
1088
|
-
0, () => AnalyzableServerSummary$
|
|
1089
|
-
];
|
|
1090
|
-
var AntipatternReportResultList = [1, n0, _ARRL,
|
|
1091
|
-
0, () => AntipatternReportResult$
|
|
1092
|
-
];
|
|
1093
|
-
var ApplicationComponentDetails = [1, n0, _ACDp,
|
|
1094
|
-
0, () => ApplicationComponentDetail$
|
|
1095
|
-
];
|
|
1096
|
-
var ApplicationComponentStrategies = [1, n0, _ACSpp,
|
|
1097
|
-
0, () => ApplicationComponentStrategy$
|
|
1098
|
-
];
|
|
1099
|
-
var AssessmentTargets = [1, n0, _ATs,
|
|
1100
|
-
0, () => AssessmentTarget$
|
|
1101
|
-
];
|
|
1102
|
-
var AssociatedApplications = [1, n0, _AAs,
|
|
1103
|
-
0, () => AssociatedApplication$
|
|
1104
|
-
];
|
|
1105
|
-
var Collectors = [1, n0, _Co,
|
|
1106
|
-
0, () => Collector$
|
|
1107
|
-
];
|
|
1108
|
-
var GroupIds = [1, n0, _GI,
|
|
1109
|
-
0, () => Group$
|
|
1110
|
-
];
|
|
1111
|
-
var IPAddressBasedRemoteInfoList = [1, n0, _IPABRIL,
|
|
1112
|
-
0, () => IPAddressBasedRemoteInfo$
|
|
1113
|
-
];
|
|
1114
|
-
var ListAntipatternSeveritySummary = [1, n0, _LASS,
|
|
1115
|
-
0, () => AntipatternSeveritySummary$
|
|
1116
|
-
];
|
|
1117
|
-
var ListApplicationComponentStatusSummary = [1, n0, _LACSS,
|
|
1118
|
-
0, () => ApplicationComponentStatusSummary$
|
|
1119
|
-
];
|
|
1120
|
-
var ListApplicationComponentSummary = [1, n0, _LACS,
|
|
1121
|
-
0, () => ApplicationComponentSummary$
|
|
1122
|
-
];
|
|
1123
|
-
var ListImportFileTaskInformation = [1, n0, _LIFTI,
|
|
1124
|
-
0, () => ImportFileTaskInformation$
|
|
1125
|
-
];
|
|
1126
|
-
var ListServerStatusSummary = [1, n0, _LSSS,
|
|
1127
|
-
0, () => ServerStatusSummary$
|
|
1128
|
-
];
|
|
1129
|
-
var ListServerSummary = [1, n0, _LSS,
|
|
1130
|
-
0, () => ServerSummary$
|
|
1131
|
-
];
|
|
1132
|
-
var ListStrategySummary = [1, n0, _LSSi,
|
|
1133
|
-
0, () => StrategySummary$
|
|
1134
|
-
];
|
|
1135
|
-
var NetworkInfoList = [1, n0, _NIL,
|
|
1136
|
-
0, () => NetworkInfo$
|
|
1137
|
-
];
|
|
1138
|
-
var PipelineInfoList = [1, n0, _PIL,
|
|
1139
|
-
0, () => PipelineInfo$
|
|
1140
|
-
];
|
|
1141
|
-
var ResultList = [1, n0, _RL,
|
|
1142
|
-
0, () => Result$
|
|
1143
|
-
];
|
|
1144
|
-
var ServerDetails = [1, n0, _SDe,
|
|
1145
|
-
0, () => ServerDetail$
|
|
1146
|
-
];
|
|
1147
|
-
var ServerStrategies = [1, n0, _SSer,
|
|
1148
|
-
0, () => ServerStrategy$
|
|
1149
|
-
];
|
|
1150
|
-
var SourceCodeList = [1, n0, _SCL,
|
|
1151
|
-
0, () => SourceCode$
|
|
1152
|
-
];
|
|
1153
|
-
var SourceCodeRepositories = [1, n0, _SCRo,
|
|
1154
|
-
0, () => SourceCodeRepository$
|
|
1155
|
-
];
|
|
1156
|
-
var VcenterBasedRemoteInfoList = [1, n0, _VBRIL,
|
|
1157
|
-
0, () => VcenterBasedRemoteInfo$
|
|
1158
|
-
];
|
|
1159
|
-
var VersionControlInfoList = [1, n0, _VCIL,
|
|
1160
|
-
0, () => VersionControlInfo$
|
|
1161
|
-
];
|
|
1162
|
-
var AnalysisStatusUnion$ = [4, n0, _ASU,
|
|
1163
|
-
0,
|
|
1164
|
-
[_rAS, _sCODAS],
|
|
1165
|
-
[0, 0]
|
|
1166
|
-
];
|
|
1167
|
-
var AnalyzerNameUnion$ = [4, n0, _ANU,
|
|
1168
|
-
0,
|
|
1169
|
-
[_bAN, _rTAN, _sCAN],
|
|
1170
|
-
[0, 0, 0]
|
|
1171
|
-
];
|
|
1172
|
-
var DatabaseMigrationPreference$ = [4, n0, _DMP,
|
|
1173
|
-
0,
|
|
1174
|
-
[_he, _ho, _nP],
|
|
1175
|
-
[() => Heterogeneous$, () => Homogeneous$, () => NoDatabaseMigrationPreference$]
|
|
1176
|
-
];
|
|
1177
|
-
var ManagementPreference$ = [4, n0, _MP,
|
|
1178
|
-
0,
|
|
1179
|
-
[_aMR, _sMR, _nP],
|
|
1180
|
-
[() => AwsManagedResources$, () => SelfManageResources$, () => NoManagementPreference$]
|
|
1181
|
-
];
|
|
1182
|
-
var GetApplicationComponentDetails$ = [9, n0, _GACD,
|
|
1183
|
-
{ [_ht]: ["GET", "/get-applicationcomponent-details/{applicationComponentId}", 200] }, () => GetApplicationComponentDetailsRequest$, () => GetApplicationComponentDetailsResponse$
|
|
1184
|
-
];
|
|
1185
|
-
var GetApplicationComponentStrategies$ = [9, n0, _GACS,
|
|
1186
|
-
{ [_ht]: ["GET", "/get-applicationcomponent-strategies/{applicationComponentId}", 200] }, () => GetApplicationComponentStrategiesRequest$, () => GetApplicationComponentStrategiesResponse$
|
|
1187
|
-
];
|
|
1188
|
-
var GetAssessment$ = [9, n0, _GA,
|
|
1189
|
-
{ [_ht]: ["GET", "/get-assessment/{id}", 200] }, () => GetAssessmentRequest$, () => GetAssessmentResponse$
|
|
1190
|
-
];
|
|
1191
|
-
var GetImportFileTask$ = [9, n0, _GIFT,
|
|
1192
|
-
{ [_ht]: ["GET", "/get-import-file-task/{id}", 200] }, () => GetImportFileTaskRequest$, () => GetImportFileTaskResponse$
|
|
1193
|
-
];
|
|
1194
|
-
var GetLatestAssessmentId$ = [9, n0, _GLAI,
|
|
1195
|
-
{ [_ht]: ["GET", "/get-latest-assessment-id", 200] }, () => GetLatestAssessmentIdRequest$, () => GetLatestAssessmentIdResponse$
|
|
1196
|
-
];
|
|
1197
|
-
var GetPortfolioPreferences$ = [9, n0, _GPP,
|
|
1198
|
-
{ [_ht]: ["GET", "/get-portfolio-preferences", 200] }, () => GetPortfolioPreferencesRequest$, () => GetPortfolioPreferencesResponse$
|
|
1199
|
-
];
|
|
1200
|
-
var GetPortfolioSummary$ = [9, n0, _GPS,
|
|
1201
|
-
{ [_ht]: ["GET", "/get-portfolio-summary", 200] }, () => GetPortfolioSummaryRequest$, () => GetPortfolioSummaryResponse$
|
|
1202
|
-
];
|
|
1203
|
-
var GetRecommendationReportDetails$ = [9, n0, _GRRD,
|
|
1204
|
-
{ [_ht]: ["GET", "/get-recommendation-report-details/{id}", 200] }, () => GetRecommendationReportDetailsRequest$, () => GetRecommendationReportDetailsResponse$
|
|
1205
|
-
];
|
|
1206
|
-
var GetServerDetails$ = [9, n0, _GSD,
|
|
1207
|
-
{ [_ht]: ["GET", "/get-server-details/{serverId}", 200] }, () => GetServerDetailsRequest$, () => GetServerDetailsResponse$
|
|
1208
|
-
];
|
|
1209
|
-
var GetServerStrategies$ = [9, n0, _GSS,
|
|
1210
|
-
{ [_ht]: ["GET", "/get-server-strategies/{serverId}", 200] }, () => GetServerStrategiesRequest$, () => GetServerStrategiesResponse$
|
|
1211
|
-
];
|
|
1212
|
-
var ListAnalyzableServers$ = [9, n0, _LAS,
|
|
1213
|
-
{ [_ht]: ["POST", "/list-analyzable-servers", 200] }, () => ListAnalyzableServersRequest$, () => ListAnalyzableServersResponse$
|
|
1214
|
-
];
|
|
1215
|
-
var ListApplicationComponents$ = [9, n0, _LAC,
|
|
1216
|
-
{ [_ht]: ["POST", "/list-applicationcomponents", 200] }, () => ListApplicationComponentsRequest$, () => ListApplicationComponentsResponse$
|
|
1217
|
-
];
|
|
1218
|
-
var ListCollectors$ = [9, n0, _LC,
|
|
1219
|
-
{ [_ht]: ["GET", "/list-collectors", 200] }, () => ListCollectorsRequest$, () => ListCollectorsResponse$
|
|
1220
|
-
];
|
|
1221
|
-
var ListImportFileTask$ = [9, n0, _LIFT,
|
|
1222
|
-
{ [_ht]: ["GET", "/list-import-file-task", 200] }, () => ListImportFileTaskRequest$, () => ListImportFileTaskResponse$
|
|
1223
|
-
];
|
|
1224
|
-
var ListServers$ = [9, n0, _LS,
|
|
1225
|
-
{ [_ht]: ["POST", "/list-servers", 200] }, () => ListServersRequest$, () => ListServersResponse$
|
|
1226
|
-
];
|
|
1227
|
-
var PutPortfolioPreferences$ = [9, n0, _PPP,
|
|
1228
|
-
{ [_ht]: ["POST", "/put-portfolio-preferences", 200] }, () => PutPortfolioPreferencesRequest$, () => PutPortfolioPreferencesResponse$
|
|
1229
|
-
];
|
|
1230
|
-
var StartAssessment$ = [9, n0, _SA,
|
|
1231
|
-
{ [_ht]: ["POST", "/start-assessment", 200] }, () => StartAssessmentRequest$, () => StartAssessmentResponse$
|
|
1232
|
-
];
|
|
1233
|
-
var StartImportFileTask$ = [9, n0, _SIFT,
|
|
1234
|
-
{ [_ht]: ["POST", "/start-import-file-task", 200] }, () => StartImportFileTaskRequest$, () => StartImportFileTaskResponse$
|
|
1235
|
-
];
|
|
1236
|
-
var StartRecommendationReportGeneration$ = [9, n0, _SRRG,
|
|
1237
|
-
{ [_ht]: ["POST", "/start-recommendation-report-generation", 200] }, () => StartRecommendationReportGenerationRequest$, () => StartRecommendationReportGenerationResponse$
|
|
1238
|
-
];
|
|
1239
|
-
var StopAssessment$ = [9, n0, _SAt,
|
|
1240
|
-
{ [_ht]: ["POST", "/stop-assessment", 200] }, () => StopAssessmentRequest$, () => StopAssessmentResponse$
|
|
1241
|
-
];
|
|
1242
|
-
var UpdateApplicationComponentConfig$ = [9, n0, _UACC,
|
|
1243
|
-
{ [_ht]: ["POST", "/update-applicationcomponent-config/", 200] }, () => UpdateApplicationComponentConfigRequest$, () => UpdateApplicationComponentConfigResponse$
|
|
1244
|
-
];
|
|
1245
|
-
var UpdateServerConfig$ = [9, n0, _USC,
|
|
1246
|
-
{ [_ht]: ["POST", "/update-server-config/", 200] }, () => UpdateServerConfigRequest$, () => UpdateServerConfigResponse$
|
|
1247
|
-
];
|
|
1248
|
-
|
|
1249
116
|
class GetApplicationComponentDetailsCommand extends smithyClient.Command
|
|
1250
117
|
.classBuilder()
|
|
1251
118
|
.ep(commonParams)
|
|
@@ -1254,7 +121,7 @@ class GetApplicationComponentDetailsCommand extends smithyClient.Command
|
|
|
1254
121
|
})
|
|
1255
122
|
.s("AWSMigrationHubStrategyRecommendation", "GetApplicationComponentDetails", {})
|
|
1256
123
|
.n("MigrationHubStrategyClient", "GetApplicationComponentDetailsCommand")
|
|
1257
|
-
.sc(GetApplicationComponentDetails$)
|
|
124
|
+
.sc(schemas_0.GetApplicationComponentDetails$)
|
|
1258
125
|
.build() {
|
|
1259
126
|
}
|
|
1260
127
|
|
|
@@ -1266,7 +133,7 @@ class GetApplicationComponentStrategiesCommand extends smithyClient.Command
|
|
|
1266
133
|
})
|
|
1267
134
|
.s("AWSMigrationHubStrategyRecommendation", "GetApplicationComponentStrategies", {})
|
|
1268
135
|
.n("MigrationHubStrategyClient", "GetApplicationComponentStrategiesCommand")
|
|
1269
|
-
.sc(GetApplicationComponentStrategies$)
|
|
136
|
+
.sc(schemas_0.GetApplicationComponentStrategies$)
|
|
1270
137
|
.build() {
|
|
1271
138
|
}
|
|
1272
139
|
|
|
@@ -1278,7 +145,7 @@ class GetAssessmentCommand extends smithyClient.Command
|
|
|
1278
145
|
})
|
|
1279
146
|
.s("AWSMigrationHubStrategyRecommendation", "GetAssessment", {})
|
|
1280
147
|
.n("MigrationHubStrategyClient", "GetAssessmentCommand")
|
|
1281
|
-
.sc(GetAssessment$)
|
|
148
|
+
.sc(schemas_0.GetAssessment$)
|
|
1282
149
|
.build() {
|
|
1283
150
|
}
|
|
1284
151
|
|
|
@@ -1290,7 +157,7 @@ class GetImportFileTaskCommand extends smithyClient.Command
|
|
|
1290
157
|
})
|
|
1291
158
|
.s("AWSMigrationHubStrategyRecommendation", "GetImportFileTask", {})
|
|
1292
159
|
.n("MigrationHubStrategyClient", "GetImportFileTaskCommand")
|
|
1293
|
-
.sc(GetImportFileTask$)
|
|
160
|
+
.sc(schemas_0.GetImportFileTask$)
|
|
1294
161
|
.build() {
|
|
1295
162
|
}
|
|
1296
163
|
|
|
@@ -1302,7 +169,7 @@ class GetLatestAssessmentIdCommand extends smithyClient.Command
|
|
|
1302
169
|
})
|
|
1303
170
|
.s("AWSMigrationHubStrategyRecommendation", "GetLatestAssessmentId", {})
|
|
1304
171
|
.n("MigrationHubStrategyClient", "GetLatestAssessmentIdCommand")
|
|
1305
|
-
.sc(GetLatestAssessmentId$)
|
|
172
|
+
.sc(schemas_0.GetLatestAssessmentId$)
|
|
1306
173
|
.build() {
|
|
1307
174
|
}
|
|
1308
175
|
|
|
@@ -1314,7 +181,7 @@ class GetPortfolioPreferencesCommand extends smithyClient.Command
|
|
|
1314
181
|
})
|
|
1315
182
|
.s("AWSMigrationHubStrategyRecommendation", "GetPortfolioPreferences", {})
|
|
1316
183
|
.n("MigrationHubStrategyClient", "GetPortfolioPreferencesCommand")
|
|
1317
|
-
.sc(GetPortfolioPreferences$)
|
|
184
|
+
.sc(schemas_0.GetPortfolioPreferences$)
|
|
1318
185
|
.build() {
|
|
1319
186
|
}
|
|
1320
187
|
|
|
@@ -1326,7 +193,7 @@ class GetPortfolioSummaryCommand extends smithyClient.Command
|
|
|
1326
193
|
})
|
|
1327
194
|
.s("AWSMigrationHubStrategyRecommendation", "GetPortfolioSummary", {})
|
|
1328
195
|
.n("MigrationHubStrategyClient", "GetPortfolioSummaryCommand")
|
|
1329
|
-
.sc(GetPortfolioSummary$)
|
|
196
|
+
.sc(schemas_0.GetPortfolioSummary$)
|
|
1330
197
|
.build() {
|
|
1331
198
|
}
|
|
1332
199
|
|
|
@@ -1338,7 +205,7 @@ class GetRecommendationReportDetailsCommand extends smithyClient.Command
|
|
|
1338
205
|
})
|
|
1339
206
|
.s("AWSMigrationHubStrategyRecommendation", "GetRecommendationReportDetails", {})
|
|
1340
207
|
.n("MigrationHubStrategyClient", "GetRecommendationReportDetailsCommand")
|
|
1341
|
-
.sc(GetRecommendationReportDetails$)
|
|
208
|
+
.sc(schemas_0.GetRecommendationReportDetails$)
|
|
1342
209
|
.build() {
|
|
1343
210
|
}
|
|
1344
211
|
|
|
@@ -1350,7 +217,7 @@ class GetServerDetailsCommand extends smithyClient.Command
|
|
|
1350
217
|
})
|
|
1351
218
|
.s("AWSMigrationHubStrategyRecommendation", "GetServerDetails", {})
|
|
1352
219
|
.n("MigrationHubStrategyClient", "GetServerDetailsCommand")
|
|
1353
|
-
.sc(GetServerDetails$)
|
|
220
|
+
.sc(schemas_0.GetServerDetails$)
|
|
1354
221
|
.build() {
|
|
1355
222
|
}
|
|
1356
223
|
|
|
@@ -1362,7 +229,7 @@ class GetServerStrategiesCommand extends smithyClient.Command
|
|
|
1362
229
|
})
|
|
1363
230
|
.s("AWSMigrationHubStrategyRecommendation", "GetServerStrategies", {})
|
|
1364
231
|
.n("MigrationHubStrategyClient", "GetServerStrategiesCommand")
|
|
1365
|
-
.sc(GetServerStrategies$)
|
|
232
|
+
.sc(schemas_0.GetServerStrategies$)
|
|
1366
233
|
.build() {
|
|
1367
234
|
}
|
|
1368
235
|
|
|
@@ -1374,7 +241,7 @@ class ListAnalyzableServersCommand extends smithyClient.Command
|
|
|
1374
241
|
})
|
|
1375
242
|
.s("AWSMigrationHubStrategyRecommendation", "ListAnalyzableServers", {})
|
|
1376
243
|
.n("MigrationHubStrategyClient", "ListAnalyzableServersCommand")
|
|
1377
|
-
.sc(ListAnalyzableServers$)
|
|
244
|
+
.sc(schemas_0.ListAnalyzableServers$)
|
|
1378
245
|
.build() {
|
|
1379
246
|
}
|
|
1380
247
|
|
|
@@ -1386,7 +253,7 @@ class ListApplicationComponentsCommand extends smithyClient.Command
|
|
|
1386
253
|
})
|
|
1387
254
|
.s("AWSMigrationHubStrategyRecommendation", "ListApplicationComponents", {})
|
|
1388
255
|
.n("MigrationHubStrategyClient", "ListApplicationComponentsCommand")
|
|
1389
|
-
.sc(ListApplicationComponents$)
|
|
256
|
+
.sc(schemas_0.ListApplicationComponents$)
|
|
1390
257
|
.build() {
|
|
1391
258
|
}
|
|
1392
259
|
|
|
@@ -1398,7 +265,7 @@ class ListCollectorsCommand extends smithyClient.Command
|
|
|
1398
265
|
})
|
|
1399
266
|
.s("AWSMigrationHubStrategyRecommendation", "ListCollectors", {})
|
|
1400
267
|
.n("MigrationHubStrategyClient", "ListCollectorsCommand")
|
|
1401
|
-
.sc(ListCollectors$)
|
|
268
|
+
.sc(schemas_0.ListCollectors$)
|
|
1402
269
|
.build() {
|
|
1403
270
|
}
|
|
1404
271
|
|
|
@@ -1410,7 +277,7 @@ class ListImportFileTaskCommand extends smithyClient.Command
|
|
|
1410
277
|
})
|
|
1411
278
|
.s("AWSMigrationHubStrategyRecommendation", "ListImportFileTask", {})
|
|
1412
279
|
.n("MigrationHubStrategyClient", "ListImportFileTaskCommand")
|
|
1413
|
-
.sc(ListImportFileTask$)
|
|
280
|
+
.sc(schemas_0.ListImportFileTask$)
|
|
1414
281
|
.build() {
|
|
1415
282
|
}
|
|
1416
283
|
|
|
@@ -1422,7 +289,7 @@ class ListServersCommand extends smithyClient.Command
|
|
|
1422
289
|
})
|
|
1423
290
|
.s("AWSMigrationHubStrategyRecommendation", "ListServers", {})
|
|
1424
291
|
.n("MigrationHubStrategyClient", "ListServersCommand")
|
|
1425
|
-
.sc(ListServers$)
|
|
292
|
+
.sc(schemas_0.ListServers$)
|
|
1426
293
|
.build() {
|
|
1427
294
|
}
|
|
1428
295
|
|
|
@@ -1434,7 +301,7 @@ class PutPortfolioPreferencesCommand extends smithyClient.Command
|
|
|
1434
301
|
})
|
|
1435
302
|
.s("AWSMigrationHubStrategyRecommendation", "PutPortfolioPreferences", {})
|
|
1436
303
|
.n("MigrationHubStrategyClient", "PutPortfolioPreferencesCommand")
|
|
1437
|
-
.sc(PutPortfolioPreferences$)
|
|
304
|
+
.sc(schemas_0.PutPortfolioPreferences$)
|
|
1438
305
|
.build() {
|
|
1439
306
|
}
|
|
1440
307
|
|
|
@@ -1446,7 +313,7 @@ class StartAssessmentCommand extends smithyClient.Command
|
|
|
1446
313
|
})
|
|
1447
314
|
.s("AWSMigrationHubStrategyRecommendation", "StartAssessment", {})
|
|
1448
315
|
.n("MigrationHubStrategyClient", "StartAssessmentCommand")
|
|
1449
|
-
.sc(StartAssessment$)
|
|
316
|
+
.sc(schemas_0.StartAssessment$)
|
|
1450
317
|
.build() {
|
|
1451
318
|
}
|
|
1452
319
|
|
|
@@ -1458,7 +325,7 @@ class StartImportFileTaskCommand extends smithyClient.Command
|
|
|
1458
325
|
})
|
|
1459
326
|
.s("AWSMigrationHubStrategyRecommendation", "StartImportFileTask", {})
|
|
1460
327
|
.n("MigrationHubStrategyClient", "StartImportFileTaskCommand")
|
|
1461
|
-
.sc(StartImportFileTask$)
|
|
328
|
+
.sc(schemas_0.StartImportFileTask$)
|
|
1462
329
|
.build() {
|
|
1463
330
|
}
|
|
1464
331
|
|
|
@@ -1470,7 +337,7 @@ class StartRecommendationReportGenerationCommand extends smithyClient.Command
|
|
|
1470
337
|
})
|
|
1471
338
|
.s("AWSMigrationHubStrategyRecommendation", "StartRecommendationReportGeneration", {})
|
|
1472
339
|
.n("MigrationHubStrategyClient", "StartRecommendationReportGenerationCommand")
|
|
1473
|
-
.sc(StartRecommendationReportGeneration$)
|
|
340
|
+
.sc(schemas_0.StartRecommendationReportGeneration$)
|
|
1474
341
|
.build() {
|
|
1475
342
|
}
|
|
1476
343
|
|
|
@@ -1482,7 +349,7 @@ class StopAssessmentCommand extends smithyClient.Command
|
|
|
1482
349
|
})
|
|
1483
350
|
.s("AWSMigrationHubStrategyRecommendation", "StopAssessment", {})
|
|
1484
351
|
.n("MigrationHubStrategyClient", "StopAssessmentCommand")
|
|
1485
|
-
.sc(StopAssessment$)
|
|
352
|
+
.sc(schemas_0.StopAssessment$)
|
|
1486
353
|
.build() {
|
|
1487
354
|
}
|
|
1488
355
|
|
|
@@ -1494,7 +361,7 @@ class UpdateApplicationComponentConfigCommand extends smithyClient.Command
|
|
|
1494
361
|
})
|
|
1495
362
|
.s("AWSMigrationHubStrategyRecommendation", "UpdateApplicationComponentConfig", {})
|
|
1496
363
|
.n("MigrationHubStrategyClient", "UpdateApplicationComponentConfigCommand")
|
|
1497
|
-
.sc(UpdateApplicationComponentConfig$)
|
|
364
|
+
.sc(schemas_0.UpdateApplicationComponentConfig$)
|
|
1498
365
|
.build() {
|
|
1499
366
|
}
|
|
1500
367
|
|
|
@@ -1506,7 +373,7 @@ class UpdateServerConfigCommand extends smithyClient.Command
|
|
|
1506
373
|
})
|
|
1507
374
|
.s("AWSMigrationHubStrategyRecommendation", "UpdateServerConfig", {})
|
|
1508
375
|
.n("MigrationHubStrategyClient", "UpdateServerConfigCommand")
|
|
1509
|
-
.sc(UpdateServerConfig$)
|
|
376
|
+
.sc(schemas_0.UpdateServerConfig$)
|
|
1510
377
|
.build() {
|
|
1511
378
|
}
|
|
1512
379
|
|
|
@@ -1872,212 +739,77 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1872
739
|
enumerable: true,
|
|
1873
740
|
get: function () { return smithyClient.Client; }
|
|
1874
741
|
});
|
|
1875
|
-
exports
|
|
1876
|
-
|
|
1877
|
-
|
|
742
|
+
Object.defineProperty(exports, "MigrationHubStrategyServiceException", {
|
|
743
|
+
enumerable: true,
|
|
744
|
+
get: function () { return MigrationHubStrategyServiceException.MigrationHubStrategyServiceException; }
|
|
745
|
+
});
|
|
1878
746
|
exports.AnalysisType = AnalysisType;
|
|
1879
|
-
exports.AnalyzableServerSummary$ = AnalyzableServerSummary$;
|
|
1880
|
-
exports.AnalyzerNameUnion$ = AnalyzerNameUnion$;
|
|
1881
|
-
exports.AntipatternReportResult$ = AntipatternReportResult$;
|
|
1882
747
|
exports.AntipatternReportStatus = AntipatternReportStatus;
|
|
1883
|
-
exports.AntipatternSeveritySummary$ = AntipatternSeveritySummary$;
|
|
1884
748
|
exports.AppType = AppType;
|
|
1885
|
-
exports.AppUnitError$ = AppUnitError$;
|
|
1886
749
|
exports.AppUnitErrorCategory = AppUnitErrorCategory;
|
|
1887
750
|
exports.ApplicationComponentCriteria = ApplicationComponentCriteria;
|
|
1888
|
-
exports.ApplicationComponentDetail$ = ApplicationComponentDetail$;
|
|
1889
|
-
exports.ApplicationComponentStatusSummary$ = ApplicationComponentStatusSummary$;
|
|
1890
|
-
exports.ApplicationComponentStrategy$ = ApplicationComponentStrategy$;
|
|
1891
|
-
exports.ApplicationComponentSummary$ = ApplicationComponentSummary$;
|
|
1892
751
|
exports.ApplicationMode = ApplicationMode;
|
|
1893
|
-
exports.ApplicationPreferences$ = ApplicationPreferences$;
|
|
1894
752
|
exports.AssessmentDataSourceType = AssessmentDataSourceType;
|
|
1895
753
|
exports.AssessmentStatus = AssessmentStatus;
|
|
1896
|
-
exports.AssessmentSummary$ = AssessmentSummary$;
|
|
1897
|
-
exports.AssessmentTarget$ = AssessmentTarget$;
|
|
1898
|
-
exports.AssociatedApplication$ = AssociatedApplication$;
|
|
1899
754
|
exports.AuthType = AuthType;
|
|
1900
|
-
exports.AwsManagedResources$ = AwsManagedResources$;
|
|
1901
755
|
exports.AwsManagedTargetDestination = AwsManagedTargetDestination;
|
|
1902
756
|
exports.BinaryAnalyzerName = BinaryAnalyzerName;
|
|
1903
|
-
exports.BusinessGoals$ = BusinessGoals$;
|
|
1904
|
-
exports.Collector$ = Collector$;
|
|
1905
757
|
exports.CollectorHealth = CollectorHealth;
|
|
1906
758
|
exports.Condition = Condition;
|
|
1907
|
-
exports.ConfigurationSummary$ = ConfigurationSummary$;
|
|
1908
|
-
exports.ConflictException = ConflictException;
|
|
1909
|
-
exports.ConflictException$ = ConflictException$;
|
|
1910
|
-
exports.DataCollectionDetails$ = DataCollectionDetails$;
|
|
1911
759
|
exports.DataSourceType = DataSourceType;
|
|
1912
|
-
exports.DatabaseConfigDetail$ = DatabaseConfigDetail$;
|
|
1913
760
|
exports.DatabaseManagementPreference = DatabaseManagementPreference;
|
|
1914
|
-
exports.DatabaseMigrationPreference$ = DatabaseMigrationPreference$;
|
|
1915
|
-
exports.DatabasePreferences$ = DatabasePreferences$;
|
|
1916
|
-
exports.DependencyException = DependencyException;
|
|
1917
|
-
exports.DependencyException$ = DependencyException$;
|
|
1918
|
-
exports.GetApplicationComponentDetails$ = GetApplicationComponentDetails$;
|
|
1919
761
|
exports.GetApplicationComponentDetailsCommand = GetApplicationComponentDetailsCommand;
|
|
1920
|
-
exports.GetApplicationComponentDetailsRequest$ = GetApplicationComponentDetailsRequest$;
|
|
1921
|
-
exports.GetApplicationComponentDetailsResponse$ = GetApplicationComponentDetailsResponse$;
|
|
1922
|
-
exports.GetApplicationComponentStrategies$ = GetApplicationComponentStrategies$;
|
|
1923
762
|
exports.GetApplicationComponentStrategiesCommand = GetApplicationComponentStrategiesCommand;
|
|
1924
|
-
exports.GetApplicationComponentStrategiesRequest$ = GetApplicationComponentStrategiesRequest$;
|
|
1925
|
-
exports.GetApplicationComponentStrategiesResponse$ = GetApplicationComponentStrategiesResponse$;
|
|
1926
|
-
exports.GetAssessment$ = GetAssessment$;
|
|
1927
763
|
exports.GetAssessmentCommand = GetAssessmentCommand;
|
|
1928
|
-
exports.GetAssessmentRequest$ = GetAssessmentRequest$;
|
|
1929
|
-
exports.GetAssessmentResponse$ = GetAssessmentResponse$;
|
|
1930
|
-
exports.GetImportFileTask$ = GetImportFileTask$;
|
|
1931
764
|
exports.GetImportFileTaskCommand = GetImportFileTaskCommand;
|
|
1932
|
-
exports.GetImportFileTaskRequest$ = GetImportFileTaskRequest$;
|
|
1933
|
-
exports.GetImportFileTaskResponse$ = GetImportFileTaskResponse$;
|
|
1934
|
-
exports.GetLatestAssessmentId$ = GetLatestAssessmentId$;
|
|
1935
765
|
exports.GetLatestAssessmentIdCommand = GetLatestAssessmentIdCommand;
|
|
1936
|
-
exports.GetLatestAssessmentIdRequest$ = GetLatestAssessmentIdRequest$;
|
|
1937
|
-
exports.GetLatestAssessmentIdResponse$ = GetLatestAssessmentIdResponse$;
|
|
1938
|
-
exports.GetPortfolioPreferences$ = GetPortfolioPreferences$;
|
|
1939
766
|
exports.GetPortfolioPreferencesCommand = GetPortfolioPreferencesCommand;
|
|
1940
|
-
exports.GetPortfolioPreferencesRequest$ = GetPortfolioPreferencesRequest$;
|
|
1941
|
-
exports.GetPortfolioPreferencesResponse$ = GetPortfolioPreferencesResponse$;
|
|
1942
|
-
exports.GetPortfolioSummary$ = GetPortfolioSummary$;
|
|
1943
767
|
exports.GetPortfolioSummaryCommand = GetPortfolioSummaryCommand;
|
|
1944
|
-
exports.GetPortfolioSummaryRequest$ = GetPortfolioSummaryRequest$;
|
|
1945
|
-
exports.GetPortfolioSummaryResponse$ = GetPortfolioSummaryResponse$;
|
|
1946
|
-
exports.GetRecommendationReportDetails$ = GetRecommendationReportDetails$;
|
|
1947
768
|
exports.GetRecommendationReportDetailsCommand = GetRecommendationReportDetailsCommand;
|
|
1948
|
-
exports.GetRecommendationReportDetailsRequest$ = GetRecommendationReportDetailsRequest$;
|
|
1949
|
-
exports.GetRecommendationReportDetailsResponse$ = GetRecommendationReportDetailsResponse$;
|
|
1950
|
-
exports.GetServerDetails$ = GetServerDetails$;
|
|
1951
769
|
exports.GetServerDetailsCommand = GetServerDetailsCommand;
|
|
1952
|
-
exports.GetServerDetailsRequest$ = GetServerDetailsRequest$;
|
|
1953
|
-
exports.GetServerDetailsResponse$ = GetServerDetailsResponse$;
|
|
1954
|
-
exports.GetServerStrategies$ = GetServerStrategies$;
|
|
1955
770
|
exports.GetServerStrategiesCommand = GetServerStrategiesCommand;
|
|
1956
|
-
exports.GetServerStrategiesRequest$ = GetServerStrategiesRequest$;
|
|
1957
|
-
exports.GetServerStrategiesResponse$ = GetServerStrategiesResponse$;
|
|
1958
|
-
exports.Group$ = Group$;
|
|
1959
771
|
exports.GroupName = GroupName;
|
|
1960
|
-
exports.Heterogeneous$ = Heterogeneous$;
|
|
1961
772
|
exports.HeterogeneousTargetDatabaseEngine = HeterogeneousTargetDatabaseEngine;
|
|
1962
|
-
exports.Homogeneous$ = Homogeneous$;
|
|
1963
773
|
exports.HomogeneousTargetDatabaseEngine = HomogeneousTargetDatabaseEngine;
|
|
1964
|
-
exports.IPAddressBasedRemoteInfo$ = IPAddressBasedRemoteInfo$;
|
|
1965
|
-
exports.ImportFileTaskInformation$ = ImportFileTaskInformation$;
|
|
1966
774
|
exports.ImportFileTaskStatus = ImportFileTaskStatus;
|
|
1967
775
|
exports.InclusionStatus = InclusionStatus;
|
|
1968
|
-
exports.InternalServerException = InternalServerException;
|
|
1969
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1970
|
-
exports.ListAnalyzableServers$ = ListAnalyzableServers$;
|
|
1971
776
|
exports.ListAnalyzableServersCommand = ListAnalyzableServersCommand;
|
|
1972
|
-
exports.ListAnalyzableServersRequest$ = ListAnalyzableServersRequest$;
|
|
1973
|
-
exports.ListAnalyzableServersResponse$ = ListAnalyzableServersResponse$;
|
|
1974
|
-
exports.ListApplicationComponents$ = ListApplicationComponents$;
|
|
1975
777
|
exports.ListApplicationComponentsCommand = ListApplicationComponentsCommand;
|
|
1976
|
-
exports.ListApplicationComponentsRequest$ = ListApplicationComponentsRequest$;
|
|
1977
|
-
exports.ListApplicationComponentsResponse$ = ListApplicationComponentsResponse$;
|
|
1978
|
-
exports.ListCollectors$ = ListCollectors$;
|
|
1979
778
|
exports.ListCollectorsCommand = ListCollectorsCommand;
|
|
1980
|
-
exports.ListCollectorsRequest$ = ListCollectorsRequest$;
|
|
1981
|
-
exports.ListCollectorsResponse$ = ListCollectorsResponse$;
|
|
1982
|
-
exports.ListImportFileTask$ = ListImportFileTask$;
|
|
1983
779
|
exports.ListImportFileTaskCommand = ListImportFileTaskCommand;
|
|
1984
|
-
exports.ListImportFileTaskRequest$ = ListImportFileTaskRequest$;
|
|
1985
|
-
exports.ListImportFileTaskResponse$ = ListImportFileTaskResponse$;
|
|
1986
|
-
exports.ListServers$ = ListServers$;
|
|
1987
780
|
exports.ListServersCommand = ListServersCommand;
|
|
1988
|
-
exports.ListServersRequest$ = ListServersRequest$;
|
|
1989
|
-
exports.ListServersResponse$ = ListServersResponse$;
|
|
1990
|
-
exports.ManagementPreference$ = ManagementPreference$;
|
|
1991
781
|
exports.MigrationHubStrategy = MigrationHubStrategy;
|
|
1992
782
|
exports.MigrationHubStrategyClient = MigrationHubStrategyClient;
|
|
1993
|
-
exports.MigrationHubStrategyServiceException = MigrationHubStrategyServiceException;
|
|
1994
|
-
exports.MigrationHubStrategyServiceException$ = MigrationHubStrategyServiceException$;
|
|
1995
|
-
exports.NetworkInfo$ = NetworkInfo$;
|
|
1996
|
-
exports.NoDatabaseMigrationPreference$ = NoDatabaseMigrationPreference$;
|
|
1997
|
-
exports.NoManagementPreference$ = NoManagementPreference$;
|
|
1998
783
|
exports.NoPreferenceTargetDestination = NoPreferenceTargetDestination;
|
|
1999
|
-
exports.OSInfo$ = OSInfo$;
|
|
2000
784
|
exports.OSType = OSType;
|
|
2001
785
|
exports.OutputFormat = OutputFormat;
|
|
2002
|
-
exports.PipelineInfo$ = PipelineInfo$;
|
|
2003
786
|
exports.PipelineType = PipelineType;
|
|
2004
|
-
exports.PrioritizeBusinessGoals$ = PrioritizeBusinessGoals$;
|
|
2005
|
-
exports.PutPortfolioPreferences$ = PutPortfolioPreferences$;
|
|
2006
787
|
exports.PutPortfolioPreferencesCommand = PutPortfolioPreferencesCommand;
|
|
2007
|
-
exports.PutPortfolioPreferencesRequest$ = PutPortfolioPreferencesRequest$;
|
|
2008
|
-
exports.PutPortfolioPreferencesResponse$ = PutPortfolioPreferencesResponse$;
|
|
2009
|
-
exports.RecommendationReportDetails$ = RecommendationReportDetails$;
|
|
2010
788
|
exports.RecommendationReportStatus = RecommendationReportStatus;
|
|
2011
|
-
exports.RecommendationSet$ = RecommendationSet$;
|
|
2012
|
-
exports.RemoteSourceCodeAnalysisServerInfo$ = RemoteSourceCodeAnalysisServerInfo$;
|
|
2013
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2014
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2015
789
|
exports.ResourceSubType = ResourceSubType;
|
|
2016
|
-
exports.Result$ = Result$;
|
|
2017
790
|
exports.RunTimeAnalyzerName = RunTimeAnalyzerName;
|
|
2018
791
|
exports.RunTimeAssessmentStatus = RunTimeAssessmentStatus;
|
|
2019
792
|
exports.RuntimeAnalysisStatus = RuntimeAnalysisStatus;
|
|
2020
|
-
exports.S3Object$ = S3Object$;
|
|
2021
|
-
exports.SelfManageResources$ = SelfManageResources$;
|
|
2022
793
|
exports.SelfManageTargetDestination = SelfManageTargetDestination;
|
|
2023
794
|
exports.ServerCriteria = ServerCriteria;
|
|
2024
|
-
exports.ServerDetail$ = ServerDetail$;
|
|
2025
|
-
exports.ServerError$ = ServerError$;
|
|
2026
795
|
exports.ServerErrorCategory = ServerErrorCategory;
|
|
2027
796
|
exports.ServerOsType = ServerOsType;
|
|
2028
|
-
exports.ServerStatusSummary$ = ServerStatusSummary$;
|
|
2029
|
-
exports.ServerStrategy$ = ServerStrategy$;
|
|
2030
|
-
exports.ServerSummary$ = ServerSummary$;
|
|
2031
|
-
exports.ServiceLinkedRoleLockClientException = ServiceLinkedRoleLockClientException;
|
|
2032
|
-
exports.ServiceLinkedRoleLockClientException$ = ServiceLinkedRoleLockClientException$;
|
|
2033
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2034
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2035
797
|
exports.Severity = Severity;
|
|
2036
798
|
exports.SortOrder = SortOrder;
|
|
2037
|
-
exports.SourceCode$ = SourceCode$;
|
|
2038
799
|
exports.SourceCodeAnalyzerName = SourceCodeAnalyzerName;
|
|
2039
|
-
exports.SourceCodeRepository$ = SourceCodeRepository$;
|
|
2040
800
|
exports.SrcCodeOrDbAnalysisStatus = SrcCodeOrDbAnalysisStatus;
|
|
2041
|
-
exports.StartAssessment$ = StartAssessment$;
|
|
2042
801
|
exports.StartAssessmentCommand = StartAssessmentCommand;
|
|
2043
|
-
exports.StartAssessmentRequest$ = StartAssessmentRequest$;
|
|
2044
|
-
exports.StartAssessmentResponse$ = StartAssessmentResponse$;
|
|
2045
|
-
exports.StartImportFileTask$ = StartImportFileTask$;
|
|
2046
802
|
exports.StartImportFileTaskCommand = StartImportFileTaskCommand;
|
|
2047
|
-
exports.StartImportFileTaskRequest$ = StartImportFileTaskRequest$;
|
|
2048
|
-
exports.StartImportFileTaskResponse$ = StartImportFileTaskResponse$;
|
|
2049
|
-
exports.StartRecommendationReportGeneration$ = StartRecommendationReportGeneration$;
|
|
2050
803
|
exports.StartRecommendationReportGenerationCommand = StartRecommendationReportGenerationCommand;
|
|
2051
|
-
exports.StartRecommendationReportGenerationRequest$ = StartRecommendationReportGenerationRequest$;
|
|
2052
|
-
exports.StartRecommendationReportGenerationResponse$ = StartRecommendationReportGenerationResponse$;
|
|
2053
|
-
exports.StopAssessment$ = StopAssessment$;
|
|
2054
804
|
exports.StopAssessmentCommand = StopAssessmentCommand;
|
|
2055
|
-
exports.StopAssessmentRequest$ = StopAssessmentRequest$;
|
|
2056
|
-
exports.StopAssessmentResponse$ = StopAssessmentResponse$;
|
|
2057
805
|
exports.Strategy = Strategy;
|
|
2058
|
-
exports.StrategyOption$ = StrategyOption$;
|
|
2059
806
|
exports.StrategyRecommendation = StrategyRecommendation;
|
|
2060
|
-
exports.StrategySummary$ = StrategySummary$;
|
|
2061
|
-
exports.SystemInfo$ = SystemInfo$;
|
|
2062
807
|
exports.TargetDatabaseEngine = TargetDatabaseEngine;
|
|
2063
808
|
exports.TargetDestination = TargetDestination;
|
|
2064
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2065
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2066
|
-
exports.TransformationTool$ = TransformationTool$;
|
|
2067
809
|
exports.TransformationToolName = TransformationToolName;
|
|
2068
|
-
exports.UpdateApplicationComponentConfig$ = UpdateApplicationComponentConfig$;
|
|
2069
810
|
exports.UpdateApplicationComponentConfigCommand = UpdateApplicationComponentConfigCommand;
|
|
2070
|
-
exports.UpdateApplicationComponentConfigRequest$ = UpdateApplicationComponentConfigRequest$;
|
|
2071
|
-
exports.UpdateApplicationComponentConfigResponse$ = UpdateApplicationComponentConfigResponse$;
|
|
2072
|
-
exports.UpdateServerConfig$ = UpdateServerConfig$;
|
|
2073
811
|
exports.UpdateServerConfigCommand = UpdateServerConfigCommand;
|
|
2074
|
-
exports.UpdateServerConfigRequest$ = UpdateServerConfigRequest$;
|
|
2075
|
-
exports.UpdateServerConfigResponse$ = UpdateServerConfigResponse$;
|
|
2076
|
-
exports.ValidationException = ValidationException;
|
|
2077
|
-
exports.ValidationException$ = ValidationException$;
|
|
2078
|
-
exports.VcenterBasedRemoteInfo$ = VcenterBasedRemoteInfo$;
|
|
2079
812
|
exports.VersionControl = VersionControl;
|
|
2080
|
-
exports.VersionControlInfo$ = VersionControlInfo$;
|
|
2081
813
|
exports.VersionControlType = VersionControlType;
|
|
2082
814
|
exports.paginateGetServerDetails = paginateGetServerDetails;
|
|
2083
815
|
exports.paginateListAnalyzableServers = paginateListAnalyzableServers;
|
|
@@ -2085,3 +817,15 @@ exports.paginateListApplicationComponents = paginateListApplicationComponents;
|
|
|
2085
817
|
exports.paginateListCollectors = paginateListCollectors;
|
|
2086
818
|
exports.paginateListImportFileTask = paginateListImportFileTask;
|
|
2087
819
|
exports.paginateListServers = paginateListServers;
|
|
820
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
821
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
822
|
+
enumerable: true,
|
|
823
|
+
get: function () { return schemas_0[k]; }
|
|
824
|
+
});
|
|
825
|
+
});
|
|
826
|
+
Object.keys(errors).forEach(function (k) {
|
|
827
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
828
|
+
enumerable: true,
|
|
829
|
+
get: function () { return errors[k]; }
|
|
830
|
+
});
|
|
831
|
+
});
|