@aws-sdk/client-migrationhubstrategy 3.933.0 → 3.935.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 +0 -349
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +109 -0
- package/dist-es/models/models_0.js +0 -109
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +113 -0
- package/dist-types/models/models_0.d.ts +0 -113
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -66
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -129,209 +129,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends MigrationHubSt
|
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
131
|
};
|
|
132
|
-
const RuntimeAnalysisStatus = {
|
|
133
|
-
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
134
|
-
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
135
|
-
ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS",
|
|
136
|
-
ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED",
|
|
137
|
-
};
|
|
138
|
-
const SrcCodeOrDbAnalysisStatus = {
|
|
139
|
-
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
140
|
-
ANALYSIS_PARTIAL_SUCCESS: "ANALYSIS_PARTIAL_SUCCESS",
|
|
141
|
-
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
142
|
-
ANALYSIS_SUCCESS: "ANALYSIS_SUCCESS",
|
|
143
|
-
ANALYSIS_TO_BE_SCHEDULED: "ANALYSIS_TO_BE_SCHEDULED",
|
|
144
|
-
CONFIGURED: "CONFIGURED",
|
|
145
|
-
UNCONFIGURED: "UNCONFIGURED",
|
|
146
|
-
};
|
|
147
|
-
const AnalysisType = {
|
|
148
|
-
BINARY_ANALYSIS: "BINARY_ANALYSIS",
|
|
149
|
-
DATABASE_ANALYSIS: "DATABASE_ANALYSIS",
|
|
150
|
-
RUNTIME_ANALYSIS: "RUNTIME_ANALYSIS",
|
|
151
|
-
SOURCE_CODE_ANALYSIS: "SOURCE_CODE_ANALYSIS",
|
|
152
|
-
};
|
|
153
|
-
const BinaryAnalyzerName = {
|
|
154
|
-
BYTECODE_ANALYZER: "BYTECODE_ANALYZER",
|
|
155
|
-
DLL_ANALYZER: "DLL_ANALYZER",
|
|
156
|
-
};
|
|
157
|
-
const RunTimeAnalyzerName = {
|
|
158
|
-
A2C_ANALYZER: "A2C_ANALYZER",
|
|
159
|
-
DATABASE_ANALYZER: "DATABASE_ANALYZER",
|
|
160
|
-
EMP_PA_ANALYZER: "EMP_PA_ANALYZER",
|
|
161
|
-
REHOST_ANALYZER: "REHOST_ANALYZER",
|
|
162
|
-
SCT_ANALYZER: "SCT_ANALYZER",
|
|
163
|
-
};
|
|
164
|
-
const SourceCodeAnalyzerName = {
|
|
165
|
-
BYTECODE_ANALYZER: "BYTECODE_ANALYZER",
|
|
166
|
-
CSHARP_ANALYZER: "CSHARP_ANALYZER",
|
|
167
|
-
JAVA_ANALYZER: "JAVA_ANALYZER",
|
|
168
|
-
PORTING_ASSISTANT: "PORTING_ASSISTANT",
|
|
169
|
-
};
|
|
170
|
-
const AntipatternReportStatus = {
|
|
171
|
-
FAILED: "FAILED",
|
|
172
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
173
|
-
SUCCESS: "SUCCESS",
|
|
174
|
-
};
|
|
175
|
-
const Severity = {
|
|
176
|
-
HIGH: "HIGH",
|
|
177
|
-
LOW: "LOW",
|
|
178
|
-
MEDIUM: "MEDIUM",
|
|
179
|
-
};
|
|
180
|
-
const ApplicationComponentCriteria = {
|
|
181
|
-
ANALYSIS_STATUS: "ANALYSIS_STATUS",
|
|
182
|
-
APP_NAME: "APP_NAME",
|
|
183
|
-
APP_TYPE: "APP_TYPE",
|
|
184
|
-
DESTINATION: "DESTINATION",
|
|
185
|
-
ERROR_CATEGORY: "ERROR_CATEGORY",
|
|
186
|
-
NOT_DEFINED: "NOT_DEFINED",
|
|
187
|
-
SERVER_ID: "SERVER_ID",
|
|
188
|
-
STRATEGY: "STRATEGY",
|
|
189
|
-
};
|
|
190
|
-
const AppType = {
|
|
191
|
-
IIS: "IIS",
|
|
192
|
-
cassandra: "Cassandra",
|
|
193
|
-
db2: "DB2",
|
|
194
|
-
dotNetFramework: "DotNetFramework",
|
|
195
|
-
dotnet: "Dotnet",
|
|
196
|
-
dotnetcore: "DotnetCore",
|
|
197
|
-
java: "Java",
|
|
198
|
-
jboss: "JBoss",
|
|
199
|
-
mariadb: "Maria DB",
|
|
200
|
-
mongodb: "Mongo DB",
|
|
201
|
-
mysql: "MySQL",
|
|
202
|
-
oracle: "Oracle",
|
|
203
|
-
other: "Other",
|
|
204
|
-
postgresqlserver: "PostgreSQLServer",
|
|
205
|
-
spring: "Spring",
|
|
206
|
-
sqlServer: "SQLServer",
|
|
207
|
-
sybase: "Sybase",
|
|
208
|
-
tomcat: "Tomcat",
|
|
209
|
-
unknown: "Unknown",
|
|
210
|
-
visualbasic: "Visual Basic",
|
|
211
|
-
weblogic: "Oracle WebLogic",
|
|
212
|
-
websphere: "IBM WebSphere",
|
|
213
|
-
};
|
|
214
|
-
const AppUnitErrorCategory = {
|
|
215
|
-
CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR",
|
|
216
|
-
CREDENTIAL_ERROR: "CREDENTIAL_ERROR",
|
|
217
|
-
OTHER_ERROR: "OTHER_ERROR",
|
|
218
|
-
PERMISSION_ERROR: "PERMISSION_ERROR",
|
|
219
|
-
UNSUPPORTED_ERROR: "UNSUPPORTED_ERROR",
|
|
220
|
-
};
|
|
221
|
-
const InclusionStatus = {
|
|
222
|
-
EXCLUDE_FROM_RECOMMENDATION: "excludeFromAssessment",
|
|
223
|
-
INCLUDE_IN_RECOMMENDATION: "includeInAssessment",
|
|
224
|
-
};
|
|
225
|
-
const Strategy = {
|
|
226
|
-
REFACTOR: "Refactor",
|
|
227
|
-
REHOST: "Rehost",
|
|
228
|
-
RELOCATE: "Relocate",
|
|
229
|
-
REPLATFORM: "Replatform",
|
|
230
|
-
REPURCHASE: "Repurchase",
|
|
231
|
-
RETAIN: "Retain",
|
|
232
|
-
RETIREMENT: "Retirement",
|
|
233
|
-
};
|
|
234
|
-
const TargetDestination = {
|
|
235
|
-
AMAZON_DOCUMENTDB: "Amazon DocumentDB",
|
|
236
|
-
AMAZON_DYNAMODB: "Amazon DynamoDB",
|
|
237
|
-
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
238
|
-
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
239
|
-
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
240
|
-
AMAZON_RDS: "Amazon Relational Database Service",
|
|
241
|
-
AMAZON_RDS_MYSQL: "Amazon Relational Database Service on MySQL",
|
|
242
|
-
AMAZON_RDS_POSTGRESQL: "Amazon Relational Database Service on PostgreSQL",
|
|
243
|
-
AURORA_MYSQL: "Aurora MySQL",
|
|
244
|
-
AURORA_POSTGRESQL: "Aurora PostgreSQL",
|
|
245
|
-
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
246
|
-
AWS_FARGATE: "AWS Fargate",
|
|
247
|
-
BABELFISH_AURORA_POSTGRESQL: "Babelfish for Aurora PostgreSQL",
|
|
248
|
-
NONE_SPECIFIED: "None specified",
|
|
249
|
-
};
|
|
250
|
-
const TransformationToolName = {
|
|
251
|
-
APP2CONTAINER: "App2Container",
|
|
252
|
-
DMS: "Database Migration Service",
|
|
253
|
-
EMP: "End of Support Migration",
|
|
254
|
-
IN_PLACE_OS_UPGRADE: "In Place Operating System Upgrade",
|
|
255
|
-
MGN: "Application Migration Service",
|
|
256
|
-
NATIVE_SQL: "Native SQL Server Backup/Restore",
|
|
257
|
-
PORTING_ASSISTANT: "Porting Assistant For .NET",
|
|
258
|
-
SCT: "Schema Conversion Tool",
|
|
259
|
-
STRATEGY_RECOMMENDATION_SUPPORT: "Strategy Recommendation Support",
|
|
260
|
-
WWAMA: "Windows Web Application Migration Assistant",
|
|
261
|
-
};
|
|
262
|
-
const ResourceSubType = {
|
|
263
|
-
DATABASE: "Database",
|
|
264
|
-
DATABASE_PROCESS: "DatabaseProcess",
|
|
265
|
-
PROCESS: "Process",
|
|
266
|
-
};
|
|
267
|
-
const StrategyRecommendation = {
|
|
268
|
-
NOT_RECOMMENDED: "notRecommended",
|
|
269
|
-
POTENTIAL: "potential",
|
|
270
|
-
RECOMMENDED: "recommended",
|
|
271
|
-
VIABLE_OPTION: "viableOption",
|
|
272
|
-
};
|
|
273
|
-
const ApplicationMode = {
|
|
274
|
-
ALL: "ALL",
|
|
275
|
-
KNOWN: "KNOWN",
|
|
276
|
-
UNKNOWN: "UNKNOWN",
|
|
277
|
-
};
|
|
278
|
-
const AwsManagedTargetDestination = {
|
|
279
|
-
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
280
|
-
AWS_FARGATE: "AWS Fargate",
|
|
281
|
-
NONE_SPECIFIED: "None specified",
|
|
282
|
-
};
|
|
283
|
-
const NoPreferenceTargetDestination = {
|
|
284
|
-
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
285
|
-
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
286
|
-
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
287
|
-
AWS_ELASTIC_BEANSTALK: "AWS Elastic BeanStalk",
|
|
288
|
-
AWS_FARGATE: "AWS Fargate",
|
|
289
|
-
NONE_SPECIFIED: "None specified",
|
|
290
|
-
};
|
|
291
|
-
const SelfManageTargetDestination = {
|
|
292
|
-
AMAZON_ELASTIC_CLOUD_COMPUTE: "Amazon Elastic Cloud Compute (EC2)",
|
|
293
|
-
AMAZON_ELASTIC_CONTAINER_SERVICE: "Amazon Elastic Container Service (ECS)",
|
|
294
|
-
AMAZON_ELASTIC_KUBERNETES_SERVICE: "Amazon Elastic Kubernetes Service (EKS)",
|
|
295
|
-
NONE_SPECIFIED: "None specified",
|
|
296
|
-
};
|
|
297
|
-
const AssessmentDataSourceType = {
|
|
298
|
-
ADS: "ApplicationDiscoveryService",
|
|
299
|
-
MANUAL_IMPORT: "ManualImport",
|
|
300
|
-
SR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector",
|
|
301
|
-
};
|
|
302
|
-
const AssessmentStatus = {
|
|
303
|
-
COMPLETE: "COMPLETE",
|
|
304
|
-
FAILED: "FAILED",
|
|
305
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
306
|
-
STOPPED: "STOPPED",
|
|
307
|
-
};
|
|
308
|
-
const RunTimeAssessmentStatus = {
|
|
309
|
-
DC_FAILED: "dataCollectionTaskFailed",
|
|
310
|
-
DC_PARTIAL_SUCCESS: "dataCollectionTaskPartialSuccess",
|
|
311
|
-
DC_REQ_SENT: "dataCollectionTaskScheduled",
|
|
312
|
-
DC_STARTED: "dataCollectionTaskStarted",
|
|
313
|
-
DC_STOPPED: "dataCollectionTaskStopped",
|
|
314
|
-
DC_SUCCESS: "dataCollectionTaskSuccess",
|
|
315
|
-
DC_TO_BE_SCHEDULED: "dataCollectionTaskToBeScheduled",
|
|
316
|
-
};
|
|
317
|
-
const ServerOsType = {
|
|
318
|
-
amazonLinux: "AmazonLinux",
|
|
319
|
-
endOfSupportWindowsServer: "EndOfSupportWindowsServer",
|
|
320
|
-
other: "Other",
|
|
321
|
-
redhat: "Redhat",
|
|
322
|
-
windowsServer: "WindowsServer",
|
|
323
|
-
};
|
|
324
|
-
const Condition = {
|
|
325
|
-
CONTAINS: "CONTAINS",
|
|
326
|
-
EQUALS: "EQUALS",
|
|
327
|
-
NOT_CONTAINS: "NOT_CONTAINS",
|
|
328
|
-
NOT_EQUALS: "NOT_EQUALS",
|
|
329
|
-
};
|
|
330
|
-
const AuthType = {
|
|
331
|
-
CERT: "CERT",
|
|
332
|
-
NTLM: "NTLM",
|
|
333
|
-
SSH: "SSH",
|
|
334
|
-
};
|
|
335
132
|
let InternalServerException$1 = class InternalServerException extends MigrationHubStrategyServiceException$1 {
|
|
336
133
|
name = "InternalServerException";
|
|
337
134
|
$fault = "server";
|
|
@@ -368,16 +165,6 @@ let ThrottlingException$1 = class ThrottlingException extends MigrationHubStrate
|
|
|
368
165
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
369
166
|
}
|
|
370
167
|
};
|
|
371
|
-
const ImportFileTaskStatus = {
|
|
372
|
-
DELETE_FAILED: "DeleteFailed",
|
|
373
|
-
DELETE_IN_PROGRESS: "DeleteInProgress",
|
|
374
|
-
DELETE_PARTIAL_SUCCESS: "DeletePartialSuccess",
|
|
375
|
-
DELETE_SUCCESS: "DeleteSuccess",
|
|
376
|
-
IMPORT_FAILED: "ImportFailed",
|
|
377
|
-
IMPORT_IN_PROGRESS: "ImportInProgress",
|
|
378
|
-
IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess",
|
|
379
|
-
IMPORT_SUCCESS: "ImportSuccess",
|
|
380
|
-
};
|
|
381
168
|
let ValidationException$1 = class ValidationException extends MigrationHubStrategyServiceException$1 {
|
|
382
169
|
name = "ValidationException";
|
|
383
170
|
$fault = "client";
|
|
@@ -402,62 +189,6 @@ let DependencyException$1 = class DependencyException extends MigrationHubStrate
|
|
|
402
189
|
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
403
190
|
}
|
|
404
191
|
};
|
|
405
|
-
const DatabaseManagementPreference = {
|
|
406
|
-
AWS_MANAGED: "AWS-managed",
|
|
407
|
-
NO_PREFERENCE: "No preference",
|
|
408
|
-
SELF_MANAGE: "Self-manage",
|
|
409
|
-
};
|
|
410
|
-
const HeterogeneousTargetDatabaseEngine = {
|
|
411
|
-
AMAZON_AURORA: "Amazon Aurora",
|
|
412
|
-
AWS_POSTGRESQL: "AWS PostgreSQL",
|
|
413
|
-
DB2_LUW: "Db2 LUW",
|
|
414
|
-
MARIA_DB: "MariaDB",
|
|
415
|
-
MICROSOFT_SQL_SERVER: "Microsoft SQL Server",
|
|
416
|
-
MONGO_DB: "MongoDB",
|
|
417
|
-
MYSQL: "MySQL",
|
|
418
|
-
NONE_SPECIFIED: "None specified",
|
|
419
|
-
ORACLE_DATABASE: "Oracle Database",
|
|
420
|
-
SAP: "SAP",
|
|
421
|
-
};
|
|
422
|
-
const HomogeneousTargetDatabaseEngine = {
|
|
423
|
-
NONE_SPECIFIED: "None specified",
|
|
424
|
-
};
|
|
425
|
-
const TargetDatabaseEngine = {
|
|
426
|
-
AMAZON_AURORA: "Amazon Aurora",
|
|
427
|
-
AWS_POSTGRESQL: "AWS PostgreSQL",
|
|
428
|
-
DB2_LUW: "Db2 LUW",
|
|
429
|
-
MARIA_DB: "MariaDB",
|
|
430
|
-
MICROSOFT_SQL_SERVER: "Microsoft SQL Server",
|
|
431
|
-
MONGO_DB: "MongoDB",
|
|
432
|
-
MYSQL: "MySQL",
|
|
433
|
-
NONE_SPECIFIED: "None specified",
|
|
434
|
-
ORACLE_DATABASE: "Oracle Database",
|
|
435
|
-
SAP: "SAP",
|
|
436
|
-
};
|
|
437
|
-
const RecommendationReportStatus = {
|
|
438
|
-
FAILED: "FAILED",
|
|
439
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
440
|
-
SUCCESS: "SUCCESS",
|
|
441
|
-
};
|
|
442
|
-
const ServerErrorCategory = {
|
|
443
|
-
ARCHITECTURE_ERROR: "ARCHITECTURE_ERROR",
|
|
444
|
-
CONNECTIVITY_ERROR: "CONNECTIVITY_ERROR",
|
|
445
|
-
CREDENTIAL_ERROR: "CREDENTIAL_ERROR",
|
|
446
|
-
OTHER_ERROR: "OTHER_ERROR",
|
|
447
|
-
PERMISSION_ERROR: "PERMISSION_ERROR",
|
|
448
|
-
};
|
|
449
|
-
const OSType = {
|
|
450
|
-
LINUX: "LINUX",
|
|
451
|
-
WINDOWS: "WINDOWS",
|
|
452
|
-
};
|
|
453
|
-
const SortOrder = {
|
|
454
|
-
ASC: "ASC",
|
|
455
|
-
DESC: "DESC",
|
|
456
|
-
};
|
|
457
|
-
const GroupName = {
|
|
458
|
-
EXTERNAL_ID: "ExternalId",
|
|
459
|
-
EXTERNAL_SOURCE_TYPE: "ExternalSourceType",
|
|
460
|
-
};
|
|
461
192
|
let ServiceLinkedRoleLockClientException$1 = class ServiceLinkedRoleLockClientException extends MigrationHubStrategyServiceException$1 {
|
|
462
193
|
name = "ServiceLinkedRoleLockClientException";
|
|
463
194
|
$fault = "client";
|
|
@@ -470,27 +201,6 @@ let ServiceLinkedRoleLockClientException$1 = class ServiceLinkedRoleLockClientEx
|
|
|
470
201
|
Object.setPrototypeOf(this, ServiceLinkedRoleLockClientException.prototype);
|
|
471
202
|
}
|
|
472
203
|
};
|
|
473
|
-
const CollectorHealth = {
|
|
474
|
-
COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY",
|
|
475
|
-
COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY",
|
|
476
|
-
};
|
|
477
|
-
const PipelineType = {
|
|
478
|
-
AZURE_DEVOPS: "AZURE_DEVOPS",
|
|
479
|
-
};
|
|
480
|
-
const VersionControlType = {
|
|
481
|
-
AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT",
|
|
482
|
-
GITHUB: "GITHUB",
|
|
483
|
-
GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
|
|
484
|
-
};
|
|
485
|
-
const ServerCriteria = {
|
|
486
|
-
ANALYSIS_STATUS: "ANALYSIS_STATUS",
|
|
487
|
-
DESTINATION: "DESTINATION",
|
|
488
|
-
ERROR_CATEGORY: "ERROR_CATEGORY",
|
|
489
|
-
NOT_DEFINED: "NOT_DEFINED",
|
|
490
|
-
OS_NAME: "OS_NAME",
|
|
491
|
-
SERVER_ID: "SERVER_ID",
|
|
492
|
-
STRATEGY: "STRATEGY",
|
|
493
|
-
};
|
|
494
204
|
let ConflictException$1 = class ConflictException extends MigrationHubStrategyServiceException$1 {
|
|
495
205
|
name = "ConflictException";
|
|
496
206
|
$fault = "client";
|
|
@@ -515,21 +225,6 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
515
225
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
516
226
|
}
|
|
517
227
|
};
|
|
518
|
-
const DataSourceType = {
|
|
519
|
-
ADS: "ApplicationDiscoveryService",
|
|
520
|
-
IMPORT: "Import",
|
|
521
|
-
MHSR_COLLECTOR: "StrategyRecommendationsApplicationDataCollector",
|
|
522
|
-
MPA: "MPA",
|
|
523
|
-
};
|
|
524
|
-
const OutputFormat = {
|
|
525
|
-
Excel: "Excel",
|
|
526
|
-
Json: "Json",
|
|
527
|
-
};
|
|
528
|
-
const VersionControl = {
|
|
529
|
-
AZURE_DEVOPS_GIT: "AZURE_DEVOPS_GIT",
|
|
530
|
-
GITHUB: "GITHUB",
|
|
531
|
-
GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",
|
|
532
|
-
};
|
|
533
228
|
|
|
534
229
|
const _AA = "AssociatedApplication";
|
|
535
230
|
const _AAs = "AssociatedApplications";
|
|
@@ -2027,22 +1722,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2027
1722
|
get: function () { return smithyClient.Client; }
|
|
2028
1723
|
});
|
|
2029
1724
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2030
|
-
exports.AnalysisType = AnalysisType;
|
|
2031
|
-
exports.AntipatternReportStatus = AntipatternReportStatus;
|
|
2032
|
-
exports.AppType = AppType;
|
|
2033
|
-
exports.AppUnitErrorCategory = AppUnitErrorCategory;
|
|
2034
|
-
exports.ApplicationComponentCriteria = ApplicationComponentCriteria;
|
|
2035
|
-
exports.ApplicationMode = ApplicationMode;
|
|
2036
|
-
exports.AssessmentDataSourceType = AssessmentDataSourceType;
|
|
2037
|
-
exports.AssessmentStatus = AssessmentStatus;
|
|
2038
|
-
exports.AuthType = AuthType;
|
|
2039
|
-
exports.AwsManagedTargetDestination = AwsManagedTargetDestination;
|
|
2040
|
-
exports.BinaryAnalyzerName = BinaryAnalyzerName;
|
|
2041
|
-
exports.CollectorHealth = CollectorHealth;
|
|
2042
|
-
exports.Condition = Condition;
|
|
2043
1725
|
exports.ConflictException = ConflictException$1;
|
|
2044
|
-
exports.DataSourceType = DataSourceType;
|
|
2045
|
-
exports.DatabaseManagementPreference = DatabaseManagementPreference;
|
|
2046
1726
|
exports.DependencyException = DependencyException$1;
|
|
2047
1727
|
exports.GetApplicationComponentDetailsCommand = GetApplicationComponentDetailsCommand;
|
|
2048
1728
|
exports.GetApplicationComponentStrategiesCommand = GetApplicationComponentStrategiesCommand;
|
|
@@ -2054,11 +1734,6 @@ exports.GetPortfolioSummaryCommand = GetPortfolioSummaryCommand;
|
|
|
2054
1734
|
exports.GetRecommendationReportDetailsCommand = GetRecommendationReportDetailsCommand;
|
|
2055
1735
|
exports.GetServerDetailsCommand = GetServerDetailsCommand;
|
|
2056
1736
|
exports.GetServerStrategiesCommand = GetServerStrategiesCommand;
|
|
2057
|
-
exports.GroupName = GroupName;
|
|
2058
|
-
exports.HeterogeneousTargetDatabaseEngine = HeterogeneousTargetDatabaseEngine;
|
|
2059
|
-
exports.HomogeneousTargetDatabaseEngine = HomogeneousTargetDatabaseEngine;
|
|
2060
|
-
exports.ImportFileTaskStatus = ImportFileTaskStatus;
|
|
2061
|
-
exports.InclusionStatus = InclusionStatus;
|
|
2062
1737
|
exports.InternalServerException = InternalServerException$1;
|
|
2063
1738
|
exports.ListAnalyzableServersCommand = ListAnalyzableServersCommand;
|
|
2064
1739
|
exports.ListApplicationComponentsCommand = ListApplicationComponentsCommand;
|
|
@@ -2068,42 +1743,18 @@ exports.ListServersCommand = ListServersCommand;
|
|
|
2068
1743
|
exports.MigrationHubStrategy = MigrationHubStrategy;
|
|
2069
1744
|
exports.MigrationHubStrategyClient = MigrationHubStrategyClient;
|
|
2070
1745
|
exports.MigrationHubStrategyServiceException = MigrationHubStrategyServiceException$1;
|
|
2071
|
-
exports.NoPreferenceTargetDestination = NoPreferenceTargetDestination;
|
|
2072
|
-
exports.OSType = OSType;
|
|
2073
|
-
exports.OutputFormat = OutputFormat;
|
|
2074
|
-
exports.PipelineType = PipelineType;
|
|
2075
1746
|
exports.PutPortfolioPreferencesCommand = PutPortfolioPreferencesCommand;
|
|
2076
|
-
exports.RecommendationReportStatus = RecommendationReportStatus;
|
|
2077
1747
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2078
|
-
exports.ResourceSubType = ResourceSubType;
|
|
2079
|
-
exports.RunTimeAnalyzerName = RunTimeAnalyzerName;
|
|
2080
|
-
exports.RunTimeAssessmentStatus = RunTimeAssessmentStatus;
|
|
2081
|
-
exports.RuntimeAnalysisStatus = RuntimeAnalysisStatus;
|
|
2082
|
-
exports.SelfManageTargetDestination = SelfManageTargetDestination;
|
|
2083
|
-
exports.ServerCriteria = ServerCriteria;
|
|
2084
|
-
exports.ServerErrorCategory = ServerErrorCategory;
|
|
2085
|
-
exports.ServerOsType = ServerOsType;
|
|
2086
1748
|
exports.ServiceLinkedRoleLockClientException = ServiceLinkedRoleLockClientException$1;
|
|
2087
1749
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2088
|
-
exports.Severity = Severity;
|
|
2089
|
-
exports.SortOrder = SortOrder;
|
|
2090
|
-
exports.SourceCodeAnalyzerName = SourceCodeAnalyzerName;
|
|
2091
|
-
exports.SrcCodeOrDbAnalysisStatus = SrcCodeOrDbAnalysisStatus;
|
|
2092
1750
|
exports.StartAssessmentCommand = StartAssessmentCommand;
|
|
2093
1751
|
exports.StartImportFileTaskCommand = StartImportFileTaskCommand;
|
|
2094
1752
|
exports.StartRecommendationReportGenerationCommand = StartRecommendationReportGenerationCommand;
|
|
2095
1753
|
exports.StopAssessmentCommand = StopAssessmentCommand;
|
|
2096
|
-
exports.Strategy = Strategy;
|
|
2097
|
-
exports.StrategyRecommendation = StrategyRecommendation;
|
|
2098
|
-
exports.TargetDatabaseEngine = TargetDatabaseEngine;
|
|
2099
|
-
exports.TargetDestination = TargetDestination;
|
|
2100
1754
|
exports.ThrottlingException = ThrottlingException$1;
|
|
2101
|
-
exports.TransformationToolName = TransformationToolName;
|
|
2102
1755
|
exports.UpdateApplicationComponentConfigCommand = UpdateApplicationComponentConfigCommand;
|
|
2103
1756
|
exports.UpdateServerConfigCommand = UpdateServerConfigCommand;
|
|
2104
1757
|
exports.ValidationException = ValidationException$1;
|
|
2105
|
-
exports.VersionControl = VersionControl;
|
|
2106
|
-
exports.VersionControlType = VersionControlType;
|
|
2107
1758
|
exports.paginateGetServerDetails = paginateGetServerDetails;
|
|
2108
1759
|
exports.paginateListAnalyzableServers = paginateListAnalyzableServers;
|
|
2109
1760
|
exports.paginateListApplicationComponents = paginateListApplicationComponents;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export * from "./MigrationHubStrategyClient";
|
|
|
2
2
|
export * from "./MigrationHubStrategy";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/errors";
|
|
6
6
|
export { MigrationHubStrategyServiceException } from "./models/MigrationHubStrategyServiceException";
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class InternalServerException extends __BaseException {
|
|
15
|
+
name = "InternalServerException";
|
|
16
|
+
$fault = "server";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "InternalServerException",
|
|
20
|
+
$fault: "server",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
name = "ResourceNotFoundException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ResourceNotFoundException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ThrottlingException extends __BaseException {
|
|
39
|
+
name = "ThrottlingException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ThrottlingException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ValidationException extends __BaseException {
|
|
51
|
+
name = "ValidationException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "ValidationException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class DependencyException extends __BaseException {
|
|
63
|
+
name = "DependencyException";
|
|
64
|
+
$fault = "server";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "DependencyException",
|
|
68
|
+
$fault: "server",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ServiceLinkedRoleLockClientException extends __BaseException {
|
|
75
|
+
name = "ServiceLinkedRoleLockClientException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ServiceLinkedRoleLockClientException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ServiceLinkedRoleLockClientException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class ConflictException extends __BaseException {
|
|
87
|
+
name = "ConflictException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "ConflictException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
99
|
+
name = "ServiceQuotaExceededException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "ServiceQuotaExceededException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException";
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
1
|
export const RuntimeAnalysisStatus = {
|
|
15
2
|
ANALYSIS_FAILED: "ANALYSIS_FAILED",
|
|
16
3
|
ANALYSIS_STARTED: "ANALYSIS_STARTED",
|
|
@@ -214,42 +201,6 @@ export const AuthType = {
|
|
|
214
201
|
NTLM: "NTLM",
|
|
215
202
|
SSH: "SSH",
|
|
216
203
|
};
|
|
217
|
-
export class InternalServerException extends __BaseException {
|
|
218
|
-
name = "InternalServerException";
|
|
219
|
-
$fault = "server";
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "InternalServerException",
|
|
223
|
-
$fault: "server",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
230
|
-
name = "ResourceNotFoundException";
|
|
231
|
-
$fault = "client";
|
|
232
|
-
constructor(opts) {
|
|
233
|
-
super({
|
|
234
|
-
name: "ResourceNotFoundException",
|
|
235
|
-
$fault: "client",
|
|
236
|
-
...opts,
|
|
237
|
-
});
|
|
238
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
export class ThrottlingException extends __BaseException {
|
|
242
|
-
name = "ThrottlingException";
|
|
243
|
-
$fault = "client";
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "ThrottlingException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
204
|
export const ImportFileTaskStatus = {
|
|
254
205
|
DELETE_FAILED: "DeleteFailed",
|
|
255
206
|
DELETE_IN_PROGRESS: "DeleteInProgress",
|
|
@@ -260,30 +211,6 @@ export const ImportFileTaskStatus = {
|
|
|
260
211
|
IMPORT_PARTIAL_SUCCESS: "ImportPartialSuccess",
|
|
261
212
|
IMPORT_SUCCESS: "ImportSuccess",
|
|
262
213
|
};
|
|
263
|
-
export class ValidationException extends __BaseException {
|
|
264
|
-
name = "ValidationException";
|
|
265
|
-
$fault = "client";
|
|
266
|
-
constructor(opts) {
|
|
267
|
-
super({
|
|
268
|
-
name: "ValidationException",
|
|
269
|
-
$fault: "client",
|
|
270
|
-
...opts,
|
|
271
|
-
});
|
|
272
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
export class DependencyException extends __BaseException {
|
|
276
|
-
name = "DependencyException";
|
|
277
|
-
$fault = "server";
|
|
278
|
-
constructor(opts) {
|
|
279
|
-
super({
|
|
280
|
-
name: "DependencyException",
|
|
281
|
-
$fault: "server",
|
|
282
|
-
...opts,
|
|
283
|
-
});
|
|
284
|
-
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
214
|
export const DatabaseManagementPreference = {
|
|
288
215
|
AWS_MANAGED: "AWS-managed",
|
|
289
216
|
NO_PREFERENCE: "No preference",
|
|
@@ -340,18 +267,6 @@ export const GroupName = {
|
|
|
340
267
|
EXTERNAL_ID: "ExternalId",
|
|
341
268
|
EXTERNAL_SOURCE_TYPE: "ExternalSourceType",
|
|
342
269
|
};
|
|
343
|
-
export class ServiceLinkedRoleLockClientException extends __BaseException {
|
|
344
|
-
name = "ServiceLinkedRoleLockClientException";
|
|
345
|
-
$fault = "client";
|
|
346
|
-
constructor(opts) {
|
|
347
|
-
super({
|
|
348
|
-
name: "ServiceLinkedRoleLockClientException",
|
|
349
|
-
$fault: "client",
|
|
350
|
-
...opts,
|
|
351
|
-
});
|
|
352
|
-
Object.setPrototypeOf(this, ServiceLinkedRoleLockClientException.prototype);
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
270
|
export const CollectorHealth = {
|
|
356
271
|
COLLECTOR_HEALTHY: "COLLECTOR_HEALTHY",
|
|
357
272
|
COLLECTOR_UNHEALTHY: "COLLECTOR_UNHEALTHY",
|
|
@@ -373,30 +288,6 @@ export const ServerCriteria = {
|
|
|
373
288
|
SERVER_ID: "SERVER_ID",
|
|
374
289
|
STRATEGY: "STRATEGY",
|
|
375
290
|
};
|
|
376
|
-
export class ConflictException extends __BaseException {
|
|
377
|
-
name = "ConflictException";
|
|
378
|
-
$fault = "client";
|
|
379
|
-
constructor(opts) {
|
|
380
|
-
super({
|
|
381
|
-
name: "ConflictException",
|
|
382
|
-
$fault: "client",
|
|
383
|
-
...opts,
|
|
384
|
-
});
|
|
385
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
386
|
-
}
|
|
387
|
-
}
|
|
388
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
389
|
-
name = "ServiceQuotaExceededException";
|
|
390
|
-
$fault = "client";
|
|
391
|
-
constructor(opts) {
|
|
392
|
-
super({
|
|
393
|
-
name: "ServiceQuotaExceededException",
|
|
394
|
-
$fault: "client",
|
|
395
|
-
...opts,
|
|
396
|
-
});
|
|
397
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
291
|
export const DataSourceType = {
|
|
401
292
|
ADS: "ApplicationDiscoveryService",
|
|
402
293
|
IMPORT: "Import",
|
|
@@ -335,7 +335,7 @@ const _va = "value";
|
|
|
335
335
|
const _ve = "version";
|
|
336
336
|
const n0 = "com.amazonaws.migrationhubstrategy";
|
|
337
337
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
338
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, DependencyException as __DependencyException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceLinkedRoleLockClientException as __ServiceLinkedRoleLockClientException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
338
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, DependencyException as __DependencyException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceLinkedRoleLockClientException as __ServiceLinkedRoleLockClientException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
339
339
|
import { MigrationHubStrategyServiceException as __MigrationHubStrategyServiceException } from "../models/MigrationHubStrategyServiceException";
|
|
340
340
|
export var SecretsManagerKey = [0, n0, _SMK, 8, 0];
|
|
341
341
|
export var AccessDeniedException = [
|
package/dist-types/index.d.ts
CHANGED
|
@@ -15,5 +15,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
15
15
|
export type { MigrationHubStrategyExtensionConfiguration } from "./extensionConfiguration";
|
|
16
16
|
export * from "./commands";
|
|
17
17
|
export * from "./pagination";
|
|
18
|
-
export * from "./models";
|
|
18
|
+
export * from "./models/errors";
|
|
19
|
+
export type * from "./models/models_0";
|
|
19
20
|
export { MigrationHubStrategyServiceException } from "./models/MigrationHubStrategyServiceException";
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p> The user does not have permission to perform the action. Check the
|
|
5
|
+
* AWS Identity and Access Management (IAM) policy associated with this user.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
+
readonly name: "AccessDeniedException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p> The server experienced an internal error. Try again. </p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InternalServerException extends __BaseException {
|
|
21
|
+
readonly name: "InternalServerException";
|
|
22
|
+
readonly $fault: "server";
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p> The specified ID in the request is not found. </p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
33
|
+
readonly name: "ResourceNotFoundException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p> The request was denied due to request throttling. </p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ThrottlingException extends __BaseException {
|
|
45
|
+
readonly name: "ThrottlingException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p> The request body isn't valid. </p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class ValidationException extends __BaseException {
|
|
57
|
+
readonly name: "ValidationException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>Dependency encountered an error.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class DependencyException extends __BaseException {
|
|
69
|
+
readonly name: "DependencyException";
|
|
70
|
+
readonly $fault: "server";
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p> Exception to indicate that the service-linked role (SLR) is locked. </p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class ServiceLinkedRoleLockClientException extends __BaseException {
|
|
81
|
+
readonly name: "ServiceLinkedRoleLockClientException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<ServiceLinkedRoleLockClientException, __BaseException>);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p> Exception to indicate that there is an ongoing task when a new task is created. Return
|
|
90
|
+
* when once the existing tasks are complete. </p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class ConflictException extends __BaseException {
|
|
94
|
+
readonly name: "ConflictException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p> The AWS account has reached its quota of imports. Contact AWS Support to increase the
|
|
103
|
+
* quota for this account. </p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
107
|
+
readonly name: "ServiceQuotaExceededException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
112
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
113
|
+
}
|
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p> The user does not have permission to perform the action. Check the
|
|
5
|
-
* AWS Identity and Access Management (IAM) policy associated with this user.</p>
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
-
readonly name: "AccessDeniedException";
|
|
10
|
-
readonly $fault: "client";
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
16
1
|
/**
|
|
17
2
|
* @public
|
|
18
3
|
* @enum
|
|
@@ -1204,42 +1189,6 @@ export interface GetApplicationComponentDetailsResponse {
|
|
|
1204
1189
|
*/
|
|
1205
1190
|
associatedServerIds?: string[] | undefined;
|
|
1206
1191
|
}
|
|
1207
|
-
/**
|
|
1208
|
-
* <p> The server experienced an internal error. Try again. </p>
|
|
1209
|
-
* @public
|
|
1210
|
-
*/
|
|
1211
|
-
export declare class InternalServerException extends __BaseException {
|
|
1212
|
-
readonly name: "InternalServerException";
|
|
1213
|
-
readonly $fault: "server";
|
|
1214
|
-
/**
|
|
1215
|
-
* @internal
|
|
1216
|
-
*/
|
|
1217
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
1218
|
-
}
|
|
1219
|
-
/**
|
|
1220
|
-
* <p> The specified ID in the request is not found. </p>
|
|
1221
|
-
* @public
|
|
1222
|
-
*/
|
|
1223
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
1224
|
-
readonly name: "ResourceNotFoundException";
|
|
1225
|
-
readonly $fault: "client";
|
|
1226
|
-
/**
|
|
1227
|
-
* @internal
|
|
1228
|
-
*/
|
|
1229
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1230
|
-
}
|
|
1231
|
-
/**
|
|
1232
|
-
* <p> The request was denied due to request throttling. </p>
|
|
1233
|
-
* @public
|
|
1234
|
-
*/
|
|
1235
|
-
export declare class ThrottlingException extends __BaseException {
|
|
1236
|
-
readonly name: "ThrottlingException";
|
|
1237
|
-
readonly $fault: "client";
|
|
1238
|
-
/**
|
|
1239
|
-
* @internal
|
|
1240
|
-
*/
|
|
1241
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
1242
|
-
}
|
|
1243
1192
|
/**
|
|
1244
1193
|
* @public
|
|
1245
1194
|
*/
|
|
@@ -1425,30 +1374,6 @@ export interface GetImportFileTaskResponse {
|
|
|
1425
1374
|
*/
|
|
1426
1375
|
importName?: string | undefined;
|
|
1427
1376
|
}
|
|
1428
|
-
/**
|
|
1429
|
-
* <p> The request body isn't valid. </p>
|
|
1430
|
-
* @public
|
|
1431
|
-
*/
|
|
1432
|
-
export declare class ValidationException extends __BaseException {
|
|
1433
|
-
readonly name: "ValidationException";
|
|
1434
|
-
readonly $fault: "client";
|
|
1435
|
-
/**
|
|
1436
|
-
* @internal
|
|
1437
|
-
*/
|
|
1438
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1439
|
-
}
|
|
1440
|
-
/**
|
|
1441
|
-
* <p>Dependency encountered an error.</p>
|
|
1442
|
-
* @public
|
|
1443
|
-
*/
|
|
1444
|
-
export declare class DependencyException extends __BaseException {
|
|
1445
|
-
readonly name: "DependencyException";
|
|
1446
|
-
readonly $fault: "server";
|
|
1447
|
-
/**
|
|
1448
|
-
* @internal
|
|
1449
|
-
*/
|
|
1450
|
-
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
1451
|
-
}
|
|
1452
1377
|
/**
|
|
1453
1378
|
* @public
|
|
1454
1379
|
*/
|
|
@@ -2206,18 +2131,6 @@ export interface ListApplicationComponentsResponse {
|
|
|
2206
2131
|
*/
|
|
2207
2132
|
nextToken?: string | undefined;
|
|
2208
2133
|
}
|
|
2209
|
-
/**
|
|
2210
|
-
* <p> Exception to indicate that the service-linked role (SLR) is locked. </p>
|
|
2211
|
-
* @public
|
|
2212
|
-
*/
|
|
2213
|
-
export declare class ServiceLinkedRoleLockClientException extends __BaseException {
|
|
2214
|
-
readonly name: "ServiceLinkedRoleLockClientException";
|
|
2215
|
-
readonly $fault: "client";
|
|
2216
|
-
/**
|
|
2217
|
-
* @internal
|
|
2218
|
-
*/
|
|
2219
|
-
constructor(opts: __ExceptionOptionType<ServiceLinkedRoleLockClientException, __BaseException>);
|
|
2220
|
-
}
|
|
2221
2134
|
/**
|
|
2222
2135
|
* @public
|
|
2223
2136
|
*/
|
|
@@ -2611,19 +2524,6 @@ export interface ListServersResponse {
|
|
|
2611
2524
|
*/
|
|
2612
2525
|
nextToken?: string | undefined;
|
|
2613
2526
|
}
|
|
2614
|
-
/**
|
|
2615
|
-
* <p> Exception to indicate that there is an ongoing task when a new task is created. Return
|
|
2616
|
-
* when once the existing tasks are complete. </p>
|
|
2617
|
-
* @public
|
|
2618
|
-
*/
|
|
2619
|
-
export declare class ConflictException extends __BaseException {
|
|
2620
|
-
readonly name: "ConflictException";
|
|
2621
|
-
readonly $fault: "client";
|
|
2622
|
-
/**
|
|
2623
|
-
* @internal
|
|
2624
|
-
*/
|
|
2625
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
2626
|
-
}
|
|
2627
2527
|
/**
|
|
2628
2528
|
* @public
|
|
2629
2529
|
*/
|
|
@@ -2654,19 +2554,6 @@ export interface PutPortfolioPreferencesRequest {
|
|
|
2654
2554
|
*/
|
|
2655
2555
|
export interface PutPortfolioPreferencesResponse {
|
|
2656
2556
|
}
|
|
2657
|
-
/**
|
|
2658
|
-
* <p> The AWS account has reached its quota of imports. Contact AWS Support to increase the
|
|
2659
|
-
* quota for this account. </p>
|
|
2660
|
-
* @public
|
|
2661
|
-
*/
|
|
2662
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
2663
|
-
readonly name: "ServiceQuotaExceededException";
|
|
2664
|
-
readonly $fault: "client";
|
|
2665
|
-
/**
|
|
2666
|
-
* @internal
|
|
2667
|
-
*/
|
|
2668
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
2669
|
-
}
|
|
2670
2557
|
/**
|
|
2671
2558
|
* @public
|
|
2672
2559
|
*/
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MigrationHubStrategyExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
9
10
|
export { MigrationHubStrategyServiceException } from "./models/MigrationHubStrategyServiceException";
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class InternalServerException extends __BaseException {
|
|
11
|
+
readonly name: "InternalServerException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
|
+
readonly name: "ResourceNotFoundException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ThrottlingException extends __BaseException {
|
|
25
|
+
readonly name: "ThrottlingException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ValidationException extends __BaseException {
|
|
32
|
+
readonly name: "ValidationException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class DependencyException extends __BaseException {
|
|
39
|
+
readonly name: "DependencyException";
|
|
40
|
+
readonly $fault: "server";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<DependencyException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ServiceLinkedRoleLockClientException extends __BaseException {
|
|
46
|
+
readonly name: "ServiceLinkedRoleLockClientException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<
|
|
50
|
+
ServiceLinkedRoleLockClientException,
|
|
51
|
+
__BaseException
|
|
52
|
+
>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export declare class ConflictException extends __BaseException {
|
|
56
|
+
readonly name: "ConflictException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
59
|
+
}
|
|
60
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
61
|
+
readonly name: "ServiceQuotaExceededException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
10
1
|
export declare const RuntimeAnalysisStatus: {
|
|
11
2
|
readonly ANALYSIS_FAILED: "ANALYSIS_FAILED";
|
|
12
3
|
readonly ANALYSIS_STARTED: "ANALYSIS_STARTED";
|
|
@@ -500,27 +491,6 @@ export interface GetApplicationComponentDetailsResponse {
|
|
|
500
491
|
moreApplicationResource?: boolean | undefined;
|
|
501
492
|
associatedServerIds?: string[] | undefined;
|
|
502
493
|
}
|
|
503
|
-
export declare class InternalServerException extends __BaseException {
|
|
504
|
-
readonly name: "InternalServerException";
|
|
505
|
-
readonly $fault: "server";
|
|
506
|
-
constructor(
|
|
507
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
508
|
-
);
|
|
509
|
-
}
|
|
510
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
511
|
-
readonly name: "ResourceNotFoundException";
|
|
512
|
-
readonly $fault: "client";
|
|
513
|
-
constructor(
|
|
514
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
515
|
-
);
|
|
516
|
-
}
|
|
517
|
-
export declare class ThrottlingException extends __BaseException {
|
|
518
|
-
readonly name: "ThrottlingException";
|
|
519
|
-
readonly $fault: "client";
|
|
520
|
-
constructor(
|
|
521
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
522
|
-
);
|
|
523
|
-
}
|
|
524
494
|
export interface GetApplicationComponentStrategiesRequest {
|
|
525
495
|
applicationComponentId: string | undefined;
|
|
526
496
|
}
|
|
@@ -573,20 +543,6 @@ export interface GetImportFileTaskResponse {
|
|
|
573
543
|
numberOfRecordsFailed?: number | undefined;
|
|
574
544
|
importName?: string | undefined;
|
|
575
545
|
}
|
|
576
|
-
export declare class ValidationException extends __BaseException {
|
|
577
|
-
readonly name: "ValidationException";
|
|
578
|
-
readonly $fault: "client";
|
|
579
|
-
constructor(
|
|
580
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
581
|
-
);
|
|
582
|
-
}
|
|
583
|
-
export declare class DependencyException extends __BaseException {
|
|
584
|
-
readonly name: "DependencyException";
|
|
585
|
-
readonly $fault: "server";
|
|
586
|
-
constructor(
|
|
587
|
-
opts: __ExceptionOptionType<DependencyException, __BaseException>
|
|
588
|
-
);
|
|
589
|
-
}
|
|
590
546
|
export interface GetLatestAssessmentIdRequest {}
|
|
591
547
|
export interface GetLatestAssessmentIdResponse {
|
|
592
548
|
id?: string | undefined;
|
|
@@ -829,16 +785,6 @@ export interface ListApplicationComponentsResponse {
|
|
|
829
785
|
applicationComponentInfos?: ApplicationComponentDetail[] | undefined;
|
|
830
786
|
nextToken?: string | undefined;
|
|
831
787
|
}
|
|
832
|
-
export declare class ServiceLinkedRoleLockClientException extends __BaseException {
|
|
833
|
-
readonly name: "ServiceLinkedRoleLockClientException";
|
|
834
|
-
readonly $fault: "client";
|
|
835
|
-
constructor(
|
|
836
|
-
opts: __ExceptionOptionType<
|
|
837
|
-
ServiceLinkedRoleLockClientException,
|
|
838
|
-
__BaseException
|
|
839
|
-
>
|
|
840
|
-
);
|
|
841
|
-
}
|
|
842
788
|
export interface ListCollectorsRequest {
|
|
843
789
|
nextToken?: string | undefined;
|
|
844
790
|
maxResults?: number | undefined;
|
|
@@ -947,11 +893,6 @@ export interface ListServersResponse {
|
|
|
947
893
|
serverInfos?: ServerDetail[] | undefined;
|
|
948
894
|
nextToken?: string | undefined;
|
|
949
895
|
}
|
|
950
|
-
export declare class ConflictException extends __BaseException {
|
|
951
|
-
readonly name: "ConflictException";
|
|
952
|
-
readonly $fault: "client";
|
|
953
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
954
|
-
}
|
|
955
896
|
export interface PutPortfolioPreferencesRequest {
|
|
956
897
|
prioritizeBusinessGoals?: PrioritizeBusinessGoals | undefined;
|
|
957
898
|
applicationPreferences?: ApplicationPreferences | undefined;
|
|
@@ -959,13 +900,6 @@ export interface PutPortfolioPreferencesRequest {
|
|
|
959
900
|
applicationMode?: ApplicationMode | undefined;
|
|
960
901
|
}
|
|
961
902
|
export interface PutPortfolioPreferencesResponse {}
|
|
962
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
963
|
-
readonly name: "ServiceQuotaExceededException";
|
|
964
|
-
readonly $fault: "client";
|
|
965
|
-
constructor(
|
|
966
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
967
|
-
);
|
|
968
|
-
}
|
|
969
903
|
export interface StartAssessmentRequest {
|
|
970
904
|
s3bucketForAnalysisData?: string | undefined;
|
|
971
905
|
s3bucketForReportData?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhubstrategy",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhubstrategy Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-migrationhubstrategy",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|