@aws-sdk/client-resiliencehub 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 +239 -238
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +238 -0
- package/dist-es/models/errors.js +95 -0
- package/dist-es/models/models_0.js +1 -333
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +582 -0
- package/dist-types/models/errors.d.ts +118 -0
- package/dist-types/models/models_0.d.ts +1 -700
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +316 -0
- package/dist-types/ts3.4/models/errors.d.ts +54 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -370
- 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
|
@@ -183,18 +183,6 @@ let ValidationException$1 = class ValidationException extends ResiliencehubServi
|
|
|
183
183
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
184
184
|
}
|
|
185
185
|
};
|
|
186
|
-
const ResourceMappingType = {
|
|
187
|
-
APP_REGISTRY_APP: "AppRegistryApp",
|
|
188
|
-
CFN_STACK: "CfnStack",
|
|
189
|
-
EKS: "EKS",
|
|
190
|
-
RESOURCE: "Resource",
|
|
191
|
-
RESOURCE_GROUP: "ResourceGroup",
|
|
192
|
-
TERRAFORM: "Terraform",
|
|
193
|
-
};
|
|
194
|
-
const PhysicalIdentifierType = {
|
|
195
|
-
ARN: "Arn",
|
|
196
|
-
NATIVE: "Native",
|
|
197
|
-
};
|
|
198
186
|
let ConflictException$1 = class ConflictException extends ResiliencehubServiceException$1 {
|
|
199
187
|
name = "ConflictException";
|
|
200
188
|
$fault = "client";
|
|
@@ -223,232 +211,6 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
223
211
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
224
212
|
}
|
|
225
213
|
};
|
|
226
|
-
const ExcludeRecommendationReason = {
|
|
227
|
-
ALREADY_IMPLEMENTED: "AlreadyImplemented",
|
|
228
|
-
COMPLEXITY_OF_IMPLEMENTATION: "ComplexityOfImplementation",
|
|
229
|
-
NOT_RELEVANT: "NotRelevant",
|
|
230
|
-
};
|
|
231
|
-
const RecommendationStatus = {
|
|
232
|
-
EXCLUDED: "Excluded",
|
|
233
|
-
IMPLEMENTED: "Implemented",
|
|
234
|
-
INACTIVE: "Inactive",
|
|
235
|
-
NOT_IMPLEMENTED: "NotImplemented",
|
|
236
|
-
};
|
|
237
|
-
const AlarmType = {
|
|
238
|
-
CANARY: "Canary",
|
|
239
|
-
COMPOSITE: "Composite",
|
|
240
|
-
EVENT: "Event",
|
|
241
|
-
LOGS: "Logs",
|
|
242
|
-
METRIC: "Metric",
|
|
243
|
-
};
|
|
244
|
-
const AppAssessmentScheduleType = {
|
|
245
|
-
DAILY: "Daily",
|
|
246
|
-
DISABLED: "Disabled",
|
|
247
|
-
};
|
|
248
|
-
const AppComplianceStatusType = {
|
|
249
|
-
CHANGES_DETECTED: "ChangesDetected",
|
|
250
|
-
MISSING_POLICY: "MissingPolicy",
|
|
251
|
-
NOT_APPLICABLE: "NotApplicable",
|
|
252
|
-
NOT_ASSESSED: "NotAssessed",
|
|
253
|
-
POLICY_BREACHED: "PolicyBreached",
|
|
254
|
-
POLICY_MET: "PolicyMet",
|
|
255
|
-
};
|
|
256
|
-
const AppDriftStatusType = {
|
|
257
|
-
DETECTED: "Detected",
|
|
258
|
-
NOT_CHECKED: "NotChecked",
|
|
259
|
-
NOT_DETECTED: "NotDetected",
|
|
260
|
-
};
|
|
261
|
-
const EventType = {
|
|
262
|
-
DRIFT_DETECTED: "DriftDetected",
|
|
263
|
-
SCHEDULED_ASSESSMENT_FAILURE: "ScheduledAssessmentFailure",
|
|
264
|
-
};
|
|
265
|
-
const PermissionModelType = {
|
|
266
|
-
LEGACY_IAM_USER: "LegacyIAMUser",
|
|
267
|
-
ROLE_BASED: "RoleBased",
|
|
268
|
-
};
|
|
269
|
-
const AppStatusType = {
|
|
270
|
-
ACTIVE: "Active",
|
|
271
|
-
DELETING: "Deleting",
|
|
272
|
-
};
|
|
273
|
-
const AssessmentStatus = {
|
|
274
|
-
FAILED: "Failed",
|
|
275
|
-
INPROGRESS: "InProgress",
|
|
276
|
-
PENDING: "Pending",
|
|
277
|
-
SUCCESS: "Success",
|
|
278
|
-
};
|
|
279
|
-
const DisruptionType = {
|
|
280
|
-
AZ: "AZ",
|
|
281
|
-
HARDWARE: "Hardware",
|
|
282
|
-
REGION: "Region",
|
|
283
|
-
SOFTWARE: "Software",
|
|
284
|
-
};
|
|
285
|
-
const ComplianceStatus = {
|
|
286
|
-
MISSING_POLICY: "MissingPolicy",
|
|
287
|
-
NOT_APPLICABLE: "NotApplicable",
|
|
288
|
-
POLICY_BREACHED: "PolicyBreached",
|
|
289
|
-
POLICY_MET: "PolicyMet",
|
|
290
|
-
};
|
|
291
|
-
const CostFrequency = {
|
|
292
|
-
DAILY: "Daily",
|
|
293
|
-
HOURLY: "Hourly",
|
|
294
|
-
MONTHLY: "Monthly",
|
|
295
|
-
YEARLY: "Yearly",
|
|
296
|
-
};
|
|
297
|
-
const DriftStatus = {
|
|
298
|
-
DETECTED: "Detected",
|
|
299
|
-
NOT_CHECKED: "NotChecked",
|
|
300
|
-
NOT_DETECTED: "NotDetected",
|
|
301
|
-
};
|
|
302
|
-
const AssessmentInvoker = {
|
|
303
|
-
SYSTEM: "System",
|
|
304
|
-
USER: "User",
|
|
305
|
-
};
|
|
306
|
-
const DataLocationConstraint = {
|
|
307
|
-
ANY_LOCATION: "AnyLocation",
|
|
308
|
-
SAME_CONTINENT: "SameContinent",
|
|
309
|
-
SAME_COUNTRY: "SameCountry",
|
|
310
|
-
};
|
|
311
|
-
const EstimatedCostTier = {
|
|
312
|
-
L1: "L1",
|
|
313
|
-
L2: "L2",
|
|
314
|
-
L3: "L3",
|
|
315
|
-
L4: "L4",
|
|
316
|
-
};
|
|
317
|
-
const ResiliencyPolicyTier = {
|
|
318
|
-
CORE_SERVICES: "CoreServices",
|
|
319
|
-
CRITICAL: "Critical",
|
|
320
|
-
IMPORTANT: "Important",
|
|
321
|
-
MISSION_CRITICAL: "MissionCritical",
|
|
322
|
-
NON_CRITICAL: "NonCritical",
|
|
323
|
-
NOT_APPLICABLE: "NotApplicable",
|
|
324
|
-
};
|
|
325
|
-
const ResiliencyScoreType = {
|
|
326
|
-
ALARM: "Alarm",
|
|
327
|
-
COMPLIANCE: "Compliance",
|
|
328
|
-
SOP: "Sop",
|
|
329
|
-
TEST: "Test",
|
|
330
|
-
};
|
|
331
|
-
const ResourceSourceType = {
|
|
332
|
-
APP_TEMPLATE: "AppTemplate",
|
|
333
|
-
DISCOVERED: "Discovered",
|
|
334
|
-
};
|
|
335
|
-
const TemplateFormat = {
|
|
336
|
-
CFN_JSON: "CfnJson",
|
|
337
|
-
CFN_YAML: "CfnYaml",
|
|
338
|
-
};
|
|
339
|
-
const RenderRecommendationType = {
|
|
340
|
-
ALARM: "Alarm",
|
|
341
|
-
SOP: "Sop",
|
|
342
|
-
TEST: "Test",
|
|
343
|
-
};
|
|
344
|
-
const RecommendationTemplateStatus = {
|
|
345
|
-
FAILED: "Failed",
|
|
346
|
-
IN_PROGRESS: "InProgress",
|
|
347
|
-
PENDING: "Pending",
|
|
348
|
-
SUCCESS: "Success",
|
|
349
|
-
};
|
|
350
|
-
const ResourceResolutionStatusType = {
|
|
351
|
-
FAILED: "Failed",
|
|
352
|
-
IN_PROGRESS: "InProgress",
|
|
353
|
-
PENDING: "Pending",
|
|
354
|
-
SUCCESS: "Success",
|
|
355
|
-
};
|
|
356
|
-
const ResourceImportStatusType = {
|
|
357
|
-
FAILED: "Failed",
|
|
358
|
-
IN_PROGRESS: "InProgress",
|
|
359
|
-
PENDING: "Pending",
|
|
360
|
-
SUCCESS: "Success",
|
|
361
|
-
};
|
|
362
|
-
const MetricsExportStatusType = {
|
|
363
|
-
FAILED: "Failed",
|
|
364
|
-
IN_PROGRESS: "InProgress",
|
|
365
|
-
PENDING: "Pending",
|
|
366
|
-
SUCCESS: "Success",
|
|
367
|
-
};
|
|
368
|
-
const ResourcesGroupingRecGenStatusType = {
|
|
369
|
-
FAILED: "Failed",
|
|
370
|
-
IN_PROGRESS: "InProgress",
|
|
371
|
-
PENDING: "Pending",
|
|
372
|
-
SUCCESS: "Success",
|
|
373
|
-
};
|
|
374
|
-
const ResourceImportStrategyType = {
|
|
375
|
-
ADD_ONLY: "AddOnly",
|
|
376
|
-
REPLACE_ALL: "ReplaceAll",
|
|
377
|
-
};
|
|
378
|
-
const DifferenceType = {
|
|
379
|
-
ADDED: "Added",
|
|
380
|
-
NOT_EQUAL: "NotEqual",
|
|
381
|
-
REMOVED: "Removed",
|
|
382
|
-
};
|
|
383
|
-
const DriftType = {
|
|
384
|
-
APPLICATION_COMPLIANCE: "ApplicationCompliance",
|
|
385
|
-
APP_COMPONENT_RESILIENCY_COMPLIANCE_STATUS: "AppComponentResiliencyComplianceStatus",
|
|
386
|
-
};
|
|
387
|
-
const HaArchitecture = {
|
|
388
|
-
BACKUP_AND_RESTORE: "BackupAndRestore",
|
|
389
|
-
MULTI_SITE: "MultiSite",
|
|
390
|
-
NO_RECOVERY_PLAN: "NoRecoveryPlan",
|
|
391
|
-
PILOT_LIGHT: "PilotLight",
|
|
392
|
-
WARM_STANDBY: "WarmStandby",
|
|
393
|
-
};
|
|
394
|
-
const ConfigRecommendationOptimizationType = {
|
|
395
|
-
BEST_ATTAINABLE: "BestAttainable",
|
|
396
|
-
BEST_AZ_RECOVERY: "BestAZRecovery",
|
|
397
|
-
BEST_REGION_RECOVERY: "BestRegionRecovery",
|
|
398
|
-
LEAST_CHANGE: "LeastChange",
|
|
399
|
-
LEAST_COST: "LeastCost",
|
|
400
|
-
LEAST_ERRORS: "LeastErrors",
|
|
401
|
-
};
|
|
402
|
-
const RecommendationComplianceStatus = {
|
|
403
|
-
BREACHED_CAN_MEET: "BreachedCanMeet",
|
|
404
|
-
BREACHED_UNATTAINABLE: "BreachedUnattainable",
|
|
405
|
-
MET_CAN_IMPROVE: "MetCanImprove",
|
|
406
|
-
MISSING_POLICY: "MissingPolicy",
|
|
407
|
-
};
|
|
408
|
-
const ConditionOperatorType = {
|
|
409
|
-
EQUALS: "Equals",
|
|
410
|
-
GREATER_OR_EQUALS: "GreaterOrEquals",
|
|
411
|
-
GREATER_THEN: "GreaterThen",
|
|
412
|
-
LESS_OR_EQUALS: "LessOrEquals",
|
|
413
|
-
LESS_THEN: "LessThen",
|
|
414
|
-
NOT_EQUALS: "NotEquals",
|
|
415
|
-
};
|
|
416
|
-
const FieldAggregationType = {
|
|
417
|
-
AVG: "Avg",
|
|
418
|
-
COUNT: "Count",
|
|
419
|
-
MAX: "Max",
|
|
420
|
-
MIN: "Min",
|
|
421
|
-
SUM: "Sum",
|
|
422
|
-
};
|
|
423
|
-
const GroupingRecommendationConfidenceLevel = {
|
|
424
|
-
HIGH: "High",
|
|
425
|
-
MEDIUM: "Medium",
|
|
426
|
-
};
|
|
427
|
-
const GroupingRecommendationRejectionReason = {
|
|
428
|
-
DISTINCT_BUSINESS_PURPOSE: "DistinctBusinessPurpose",
|
|
429
|
-
DISTINCT_USER_GROUP_HANDLING: "DistinctUserGroupHandling",
|
|
430
|
-
OTHER: "Other",
|
|
431
|
-
SEPARATE_DATA_CONCERN: "SeparateDataConcern",
|
|
432
|
-
};
|
|
433
|
-
const GroupingRecommendationStatusType = {
|
|
434
|
-
ACCEPTED: "Accepted",
|
|
435
|
-
PENDING_DECISION: "PendingDecision",
|
|
436
|
-
REJECTED: "Rejected",
|
|
437
|
-
};
|
|
438
|
-
const SopServiceType = {
|
|
439
|
-
SSM: "SSM",
|
|
440
|
-
};
|
|
441
|
-
const TestRisk = {
|
|
442
|
-
HIGH: "High",
|
|
443
|
-
MEDIUM: "Medium",
|
|
444
|
-
SMALL: "Small",
|
|
445
|
-
};
|
|
446
|
-
const TestType = {
|
|
447
|
-
AZ: "AZ",
|
|
448
|
-
HARDWARE: "Hardware",
|
|
449
|
-
REGION: "Region",
|
|
450
|
-
SOFTWARE: "Software",
|
|
451
|
-
};
|
|
452
214
|
|
|
453
215
|
const _A = "Alarm";
|
|
454
216
|
const _AA = "AppAssessment";
|
|
@@ -3891,6 +3653,245 @@ const paginateListTestRecommendations = core.createPaginator(ResiliencehubClient
|
|
|
3891
3653
|
|
|
3892
3654
|
const paginateListUnsupportedAppVersionResources = core.createPaginator(ResiliencehubClient, ListUnsupportedAppVersionResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
3893
3655
|
|
|
3656
|
+
const ResourceMappingType = {
|
|
3657
|
+
APP_REGISTRY_APP: "AppRegistryApp",
|
|
3658
|
+
CFN_STACK: "CfnStack",
|
|
3659
|
+
EKS: "EKS",
|
|
3660
|
+
RESOURCE: "Resource",
|
|
3661
|
+
RESOURCE_GROUP: "ResourceGroup",
|
|
3662
|
+
TERRAFORM: "Terraform",
|
|
3663
|
+
};
|
|
3664
|
+
const PhysicalIdentifierType = {
|
|
3665
|
+
ARN: "Arn",
|
|
3666
|
+
NATIVE: "Native",
|
|
3667
|
+
};
|
|
3668
|
+
const ExcludeRecommendationReason = {
|
|
3669
|
+
ALREADY_IMPLEMENTED: "AlreadyImplemented",
|
|
3670
|
+
COMPLEXITY_OF_IMPLEMENTATION: "ComplexityOfImplementation",
|
|
3671
|
+
NOT_RELEVANT: "NotRelevant",
|
|
3672
|
+
};
|
|
3673
|
+
const RecommendationStatus = {
|
|
3674
|
+
EXCLUDED: "Excluded",
|
|
3675
|
+
IMPLEMENTED: "Implemented",
|
|
3676
|
+
INACTIVE: "Inactive",
|
|
3677
|
+
NOT_IMPLEMENTED: "NotImplemented",
|
|
3678
|
+
};
|
|
3679
|
+
const AlarmType = {
|
|
3680
|
+
CANARY: "Canary",
|
|
3681
|
+
COMPOSITE: "Composite",
|
|
3682
|
+
EVENT: "Event",
|
|
3683
|
+
LOGS: "Logs",
|
|
3684
|
+
METRIC: "Metric",
|
|
3685
|
+
};
|
|
3686
|
+
const AppAssessmentScheduleType = {
|
|
3687
|
+
DAILY: "Daily",
|
|
3688
|
+
DISABLED: "Disabled",
|
|
3689
|
+
};
|
|
3690
|
+
const AppComplianceStatusType = {
|
|
3691
|
+
CHANGES_DETECTED: "ChangesDetected",
|
|
3692
|
+
MISSING_POLICY: "MissingPolicy",
|
|
3693
|
+
NOT_APPLICABLE: "NotApplicable",
|
|
3694
|
+
NOT_ASSESSED: "NotAssessed",
|
|
3695
|
+
POLICY_BREACHED: "PolicyBreached",
|
|
3696
|
+
POLICY_MET: "PolicyMet",
|
|
3697
|
+
};
|
|
3698
|
+
const AppDriftStatusType = {
|
|
3699
|
+
DETECTED: "Detected",
|
|
3700
|
+
NOT_CHECKED: "NotChecked",
|
|
3701
|
+
NOT_DETECTED: "NotDetected",
|
|
3702
|
+
};
|
|
3703
|
+
const EventType = {
|
|
3704
|
+
DRIFT_DETECTED: "DriftDetected",
|
|
3705
|
+
SCHEDULED_ASSESSMENT_FAILURE: "ScheduledAssessmentFailure",
|
|
3706
|
+
};
|
|
3707
|
+
const PermissionModelType = {
|
|
3708
|
+
LEGACY_IAM_USER: "LegacyIAMUser",
|
|
3709
|
+
ROLE_BASED: "RoleBased",
|
|
3710
|
+
};
|
|
3711
|
+
const AppStatusType = {
|
|
3712
|
+
ACTIVE: "Active",
|
|
3713
|
+
DELETING: "Deleting",
|
|
3714
|
+
};
|
|
3715
|
+
const AssessmentStatus = {
|
|
3716
|
+
FAILED: "Failed",
|
|
3717
|
+
INPROGRESS: "InProgress",
|
|
3718
|
+
PENDING: "Pending",
|
|
3719
|
+
SUCCESS: "Success",
|
|
3720
|
+
};
|
|
3721
|
+
const DisruptionType = {
|
|
3722
|
+
AZ: "AZ",
|
|
3723
|
+
HARDWARE: "Hardware",
|
|
3724
|
+
REGION: "Region",
|
|
3725
|
+
SOFTWARE: "Software",
|
|
3726
|
+
};
|
|
3727
|
+
const ComplianceStatus = {
|
|
3728
|
+
MISSING_POLICY: "MissingPolicy",
|
|
3729
|
+
NOT_APPLICABLE: "NotApplicable",
|
|
3730
|
+
POLICY_BREACHED: "PolicyBreached",
|
|
3731
|
+
POLICY_MET: "PolicyMet",
|
|
3732
|
+
};
|
|
3733
|
+
const CostFrequency = {
|
|
3734
|
+
DAILY: "Daily",
|
|
3735
|
+
HOURLY: "Hourly",
|
|
3736
|
+
MONTHLY: "Monthly",
|
|
3737
|
+
YEARLY: "Yearly",
|
|
3738
|
+
};
|
|
3739
|
+
const DriftStatus = {
|
|
3740
|
+
DETECTED: "Detected",
|
|
3741
|
+
NOT_CHECKED: "NotChecked",
|
|
3742
|
+
NOT_DETECTED: "NotDetected",
|
|
3743
|
+
};
|
|
3744
|
+
const AssessmentInvoker = {
|
|
3745
|
+
SYSTEM: "System",
|
|
3746
|
+
USER: "User",
|
|
3747
|
+
};
|
|
3748
|
+
const DataLocationConstraint = {
|
|
3749
|
+
ANY_LOCATION: "AnyLocation",
|
|
3750
|
+
SAME_CONTINENT: "SameContinent",
|
|
3751
|
+
SAME_COUNTRY: "SameCountry",
|
|
3752
|
+
};
|
|
3753
|
+
const EstimatedCostTier = {
|
|
3754
|
+
L1: "L1",
|
|
3755
|
+
L2: "L2",
|
|
3756
|
+
L3: "L3",
|
|
3757
|
+
L4: "L4",
|
|
3758
|
+
};
|
|
3759
|
+
const ResiliencyPolicyTier = {
|
|
3760
|
+
CORE_SERVICES: "CoreServices",
|
|
3761
|
+
CRITICAL: "Critical",
|
|
3762
|
+
IMPORTANT: "Important",
|
|
3763
|
+
MISSION_CRITICAL: "MissionCritical",
|
|
3764
|
+
NON_CRITICAL: "NonCritical",
|
|
3765
|
+
NOT_APPLICABLE: "NotApplicable",
|
|
3766
|
+
};
|
|
3767
|
+
const ResiliencyScoreType = {
|
|
3768
|
+
ALARM: "Alarm",
|
|
3769
|
+
COMPLIANCE: "Compliance",
|
|
3770
|
+
SOP: "Sop",
|
|
3771
|
+
TEST: "Test",
|
|
3772
|
+
};
|
|
3773
|
+
const ResourceSourceType = {
|
|
3774
|
+
APP_TEMPLATE: "AppTemplate",
|
|
3775
|
+
DISCOVERED: "Discovered",
|
|
3776
|
+
};
|
|
3777
|
+
const TemplateFormat = {
|
|
3778
|
+
CFN_JSON: "CfnJson",
|
|
3779
|
+
CFN_YAML: "CfnYaml",
|
|
3780
|
+
};
|
|
3781
|
+
const RenderRecommendationType = {
|
|
3782
|
+
ALARM: "Alarm",
|
|
3783
|
+
SOP: "Sop",
|
|
3784
|
+
TEST: "Test",
|
|
3785
|
+
};
|
|
3786
|
+
const RecommendationTemplateStatus = {
|
|
3787
|
+
FAILED: "Failed",
|
|
3788
|
+
IN_PROGRESS: "InProgress",
|
|
3789
|
+
PENDING: "Pending",
|
|
3790
|
+
SUCCESS: "Success",
|
|
3791
|
+
};
|
|
3792
|
+
const ResourceResolutionStatusType = {
|
|
3793
|
+
FAILED: "Failed",
|
|
3794
|
+
IN_PROGRESS: "InProgress",
|
|
3795
|
+
PENDING: "Pending",
|
|
3796
|
+
SUCCESS: "Success",
|
|
3797
|
+
};
|
|
3798
|
+
const ResourceImportStatusType = {
|
|
3799
|
+
FAILED: "Failed",
|
|
3800
|
+
IN_PROGRESS: "InProgress",
|
|
3801
|
+
PENDING: "Pending",
|
|
3802
|
+
SUCCESS: "Success",
|
|
3803
|
+
};
|
|
3804
|
+
const MetricsExportStatusType = {
|
|
3805
|
+
FAILED: "Failed",
|
|
3806
|
+
IN_PROGRESS: "InProgress",
|
|
3807
|
+
PENDING: "Pending",
|
|
3808
|
+
SUCCESS: "Success",
|
|
3809
|
+
};
|
|
3810
|
+
const ResourcesGroupingRecGenStatusType = {
|
|
3811
|
+
FAILED: "Failed",
|
|
3812
|
+
IN_PROGRESS: "InProgress",
|
|
3813
|
+
PENDING: "Pending",
|
|
3814
|
+
SUCCESS: "Success",
|
|
3815
|
+
};
|
|
3816
|
+
const ResourceImportStrategyType = {
|
|
3817
|
+
ADD_ONLY: "AddOnly",
|
|
3818
|
+
REPLACE_ALL: "ReplaceAll",
|
|
3819
|
+
};
|
|
3820
|
+
const DifferenceType = {
|
|
3821
|
+
ADDED: "Added",
|
|
3822
|
+
NOT_EQUAL: "NotEqual",
|
|
3823
|
+
REMOVED: "Removed",
|
|
3824
|
+
};
|
|
3825
|
+
const DriftType = {
|
|
3826
|
+
APPLICATION_COMPLIANCE: "ApplicationCompliance",
|
|
3827
|
+
APP_COMPONENT_RESILIENCY_COMPLIANCE_STATUS: "AppComponentResiliencyComplianceStatus",
|
|
3828
|
+
};
|
|
3829
|
+
const HaArchitecture = {
|
|
3830
|
+
BACKUP_AND_RESTORE: "BackupAndRestore",
|
|
3831
|
+
MULTI_SITE: "MultiSite",
|
|
3832
|
+
NO_RECOVERY_PLAN: "NoRecoveryPlan",
|
|
3833
|
+
PILOT_LIGHT: "PilotLight",
|
|
3834
|
+
WARM_STANDBY: "WarmStandby",
|
|
3835
|
+
};
|
|
3836
|
+
const ConfigRecommendationOptimizationType = {
|
|
3837
|
+
BEST_ATTAINABLE: "BestAttainable",
|
|
3838
|
+
BEST_AZ_RECOVERY: "BestAZRecovery",
|
|
3839
|
+
BEST_REGION_RECOVERY: "BestRegionRecovery",
|
|
3840
|
+
LEAST_CHANGE: "LeastChange",
|
|
3841
|
+
LEAST_COST: "LeastCost",
|
|
3842
|
+
LEAST_ERRORS: "LeastErrors",
|
|
3843
|
+
};
|
|
3844
|
+
const RecommendationComplianceStatus = {
|
|
3845
|
+
BREACHED_CAN_MEET: "BreachedCanMeet",
|
|
3846
|
+
BREACHED_UNATTAINABLE: "BreachedUnattainable",
|
|
3847
|
+
MET_CAN_IMPROVE: "MetCanImprove",
|
|
3848
|
+
MISSING_POLICY: "MissingPolicy",
|
|
3849
|
+
};
|
|
3850
|
+
const ConditionOperatorType = {
|
|
3851
|
+
EQUALS: "Equals",
|
|
3852
|
+
GREATER_OR_EQUALS: "GreaterOrEquals",
|
|
3853
|
+
GREATER_THEN: "GreaterThen",
|
|
3854
|
+
LESS_OR_EQUALS: "LessOrEquals",
|
|
3855
|
+
LESS_THEN: "LessThen",
|
|
3856
|
+
NOT_EQUALS: "NotEquals",
|
|
3857
|
+
};
|
|
3858
|
+
const FieldAggregationType = {
|
|
3859
|
+
AVG: "Avg",
|
|
3860
|
+
COUNT: "Count",
|
|
3861
|
+
MAX: "Max",
|
|
3862
|
+
MIN: "Min",
|
|
3863
|
+
SUM: "Sum",
|
|
3864
|
+
};
|
|
3865
|
+
const GroupingRecommendationConfidenceLevel = {
|
|
3866
|
+
HIGH: "High",
|
|
3867
|
+
MEDIUM: "Medium",
|
|
3868
|
+
};
|
|
3869
|
+
const GroupingRecommendationRejectionReason = {
|
|
3870
|
+
DISTINCT_BUSINESS_PURPOSE: "DistinctBusinessPurpose",
|
|
3871
|
+
DISTINCT_USER_GROUP_HANDLING: "DistinctUserGroupHandling",
|
|
3872
|
+
OTHER: "Other",
|
|
3873
|
+
SEPARATE_DATA_CONCERN: "SeparateDataConcern",
|
|
3874
|
+
};
|
|
3875
|
+
const GroupingRecommendationStatusType = {
|
|
3876
|
+
ACCEPTED: "Accepted",
|
|
3877
|
+
PENDING_DECISION: "PendingDecision",
|
|
3878
|
+
REJECTED: "Rejected",
|
|
3879
|
+
};
|
|
3880
|
+
const SopServiceType = {
|
|
3881
|
+
SSM: "SSM",
|
|
3882
|
+
};
|
|
3883
|
+
const TestRisk = {
|
|
3884
|
+
HIGH: "High",
|
|
3885
|
+
MEDIUM: "Medium",
|
|
3886
|
+
SMALL: "Small",
|
|
3887
|
+
};
|
|
3888
|
+
const TestType = {
|
|
3889
|
+
AZ: "AZ",
|
|
3890
|
+
HARDWARE: "Hardware",
|
|
3891
|
+
REGION: "Region",
|
|
3892
|
+
SOFTWARE: "Software",
|
|
3893
|
+
};
|
|
3894
|
+
|
|
3894
3895
|
Object.defineProperty(exports, "$Command", {
|
|
3895
3896
|
enumerable: true,
|
|
3896
3897
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./ResiliencehubClient";
|
|
|
2
2
|
export * from "./Resiliencehub";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { ResiliencehubServiceException } from "./models/ResiliencehubServiceException";
|