@aws-sdk/client-resiliencehub 3.321.1 → 3.326.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist-cjs/models/models_0.js +6 -2
  2. package/dist-es/models/models_0.js +4 -0
  3. package/dist-types/commands/AddDraftAppVersionResourceMappingsCommand.d.ts +24 -0
  4. package/dist-types/commands/CreateAppCommand.d.ts +25 -3
  5. package/dist-types/commands/CreateAppVersionAppComponentCommand.d.ts +17 -0
  6. package/dist-types/commands/CreateAppVersionResourceCommand.d.ts +43 -1
  7. package/dist-types/commands/CreateRecommendationTemplateCommand.d.ts +30 -0
  8. package/dist-types/commands/CreateResiliencyPolicyCommand.d.ts +23 -0
  9. package/dist-types/commands/DeleteAppAssessmentCommand.d.ts +7 -0
  10. package/dist-types/commands/DeleteAppCommand.d.ts +6 -0
  11. package/dist-types/commands/DeleteAppInputSourceCommand.d.ts +19 -0
  12. package/dist-types/commands/DeleteAppVersionAppComponentCommand.d.ts +17 -0
  13. package/dist-types/commands/DeleteAppVersionResourceCommand.d.ts +42 -0
  14. package/dist-types/commands/DeleteRecommendationTemplateCommand.d.ts +7 -0
  15. package/dist-types/commands/DeleteResiliencyPolicyCommand.d.ts +6 -0
  16. package/dist-types/commands/DescribeAppAssessmentCommand.d.ts +73 -0
  17. package/dist-types/commands/DescribeAppCommand.d.ts +21 -0
  18. package/dist-types/commands/DescribeAppVersionAppComponentCommand.d.ts +17 -0
  19. package/dist-types/commands/DescribeAppVersionCommand.d.ts +12 -0
  20. package/dist-types/commands/DescribeAppVersionResourceCommand.d.ts +42 -0
  21. package/dist-types/commands/DescribeAppVersionResourcesResolutionStatusCommand.d.ts +10 -0
  22. package/dist-types/commands/DescribeAppVersionTemplateCommand.d.ts +8 -0
  23. package/dist-types/commands/DescribeDraftAppVersionResourcesImportStatusCommand.d.ts +10 -0
  24. package/dist-types/commands/DescribeResiliencyPolicyCommand.d.ts +23 -0
  25. package/dist-types/commands/ImportResourcesToDraftAppVersionCommand.d.ts +24 -0
  26. package/dist-types/commands/ListAlarmRecommendationsCommand.d.ts +25 -0
  27. package/dist-types/commands/ListAppAssessmentsCommand.d.ts +26 -0
  28. package/dist-types/commands/ListAppComponentCompliancesCommand.d.ts +38 -0
  29. package/dist-types/commands/ListAppComponentRecommendationsCommand.d.ts +53 -0
  30. package/dist-types/commands/ListAppInputSourcesCommand.d.ts +21 -0
  31. package/dist-types/commands/ListAppVersionAppComponentsCommand.d.ts +20 -0
  32. package/dist-types/commands/ListAppVersionResourceMappingsCommand.d.ts +23 -0
  33. package/dist-types/commands/ListAppVersionResourcesCommand.d.ts +44 -0
  34. package/dist-types/commands/ListAppVersionsCommand.d.ts +11 -0
  35. package/dist-types/commands/ListAppsCommand.d.ts +18 -0
  36. package/dist-types/commands/ListRecommendationTemplatesCommand.d.ts +33 -0
  37. package/dist-types/commands/ListResiliencyPoliciesCommand.d.ts +26 -0
  38. package/dist-types/commands/ListSopRecommendationsCommand.d.ts +25 -0
  39. package/dist-types/commands/ListSuggestedResiliencyPoliciesCommand.d.ts +26 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  41. package/dist-types/commands/ListTestRecommendationsCommand.d.ts +30 -0
  42. package/dist-types/commands/ListUnsupportedAppVersionResourcesCommand.d.ts +26 -0
  43. package/dist-types/commands/PublishAppVersionCommand.d.ts +7 -0
  44. package/dist-types/commands/PutDraftAppVersionTemplateCommand.d.ts +7 -0
  45. package/dist-types/commands/RemoveDraftAppVersionResourceMappingsCommand.d.ts +7 -0
  46. package/dist-types/commands/ResolveAppVersionResourcesCommand.d.ts +9 -0
  47. package/dist-types/commands/StartAppAssessmentCommand.d.ts +73 -0
  48. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  49. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  50. package/dist-types/commands/UpdateAppCommand.d.ts +21 -0
  51. package/dist-types/commands/UpdateAppVersionAppComponentCommand.d.ts +17 -0
  52. package/dist-types/commands/UpdateAppVersionCommand.d.ts +12 -0
  53. package/dist-types/commands/UpdateAppVersionResourceCommand.d.ts +42 -0
  54. package/dist-types/commands/UpdateResiliencyPolicyCommand.d.ts +23 -0
  55. package/dist-types/models/models_0.d.ts +21 -1
  56. package/dist-types/ts3.4/models/models_0.d.ts +9 -1
  57. package/package.json +16 -16
@@ -33,6 +33,21 @@ export interface DescribeAppVersionAppComponentCommandOutput extends DescribeApp
33
33
  * };
34
34
  * const command = new DescribeAppVersionAppComponentCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeAppVersionAppComponentResponse
37
+ * // appArn: "STRING_VALUE", // required
38
+ * // appVersion: "STRING_VALUE", // required
39
+ * // appComponent: { // AppComponent
40
+ * // name: "STRING_VALUE", // required
41
+ * // type: "STRING_VALUE", // required
42
+ * // id: "STRING_VALUE",
43
+ * // additionalInfo: { // AdditionalInfoMap
44
+ * // "<keys>": [ // AdditionalInfoValueList
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // },
48
+ * // },
49
+ * // };
50
+ *
36
51
  * ```
37
52
  *
38
53
  * @param DescribeAppVersionAppComponentCommandInput - {@link DescribeAppVersionAppComponentCommandInput}
@@ -65,6 +80,8 @@ export interface DescribeAppVersionAppComponentCommandOutput extends DescribeApp
65
80
  * @throws {@link ValidationException} (client fault)
66
81
  * <p>This exception occurs when a request is not valid.</p>
67
82
  *
83
+ * @throws {@link ResiliencehubServiceException}
84
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
68
85
  *
69
86
  */
70
87
  export declare class DescribeAppVersionAppComponentCommand extends $Command<DescribeAppVersionAppComponentCommandInput, DescribeAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -32,6 +32,16 @@ export interface DescribeAppVersionCommandOutput extends DescribeAppVersionRespo
32
32
  * };
33
33
  * const command = new DescribeAppVersionCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAppVersionResponse
36
+ * // appArn: "STRING_VALUE", // required
37
+ * // appVersion: "STRING_VALUE", // required
38
+ * // additionalInfo: { // AdditionalInfoMap
39
+ * // "<keys>": [ // AdditionalInfoValueList
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // },
43
+ * // };
44
+ *
35
45
  * ```
36
46
  *
37
47
  * @param DescribeAppVersionCommandInput - {@link DescribeAppVersionCommandInput}
@@ -58,6 +68,8 @@ export interface DescribeAppVersionCommandOutput extends DescribeAppVersionRespo
58
68
  * @throws {@link ValidationException} (client fault)
59
69
  * <p>This exception occurs when a request is not valid.</p>
60
70
  *
71
+ * @throws {@link ResiliencehubServiceException}
72
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
61
73
  *
62
74
  */
63
75
  export declare class DescribeAppVersionCommand extends $Command<DescribeAppVersionCommandInput, DescribeAppVersionCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -63,6 +63,46 @@ export interface DescribeAppVersionResourceCommandOutput extends DescribeAppVers
63
63
  * };
64
64
  * const command = new DescribeAppVersionResourceCommand(input);
65
65
  * const response = await client.send(command);
66
+ * // { // DescribeAppVersionResourceResponse
67
+ * // appArn: "STRING_VALUE", // required
68
+ * // appVersion: "STRING_VALUE", // required
69
+ * // physicalResource: { // PhysicalResource
70
+ * // resourceName: "STRING_VALUE",
71
+ * // logicalResourceId: { // LogicalResourceId
72
+ * // identifier: "STRING_VALUE", // required
73
+ * // logicalStackName: "STRING_VALUE",
74
+ * // resourceGroupName: "STRING_VALUE",
75
+ * // terraformSourceName: "STRING_VALUE",
76
+ * // eksSourceName: "STRING_VALUE",
77
+ * // },
78
+ * // physicalResourceId: { // PhysicalResourceId
79
+ * // identifier: "STRING_VALUE", // required
80
+ * // type: "STRING_VALUE", // required
81
+ * // awsRegion: "STRING_VALUE",
82
+ * // awsAccountId: "STRING_VALUE",
83
+ * // },
84
+ * // resourceType: "STRING_VALUE", // required
85
+ * // appComponents: [ // AppComponentList
86
+ * // { // AppComponent
87
+ * // name: "STRING_VALUE", // required
88
+ * // type: "STRING_VALUE", // required
89
+ * // id: "STRING_VALUE",
90
+ * // additionalInfo: { // AdditionalInfoMap
91
+ * // "<keys>": [ // AdditionalInfoValueList
92
+ * // "STRING_VALUE",
93
+ * // ],
94
+ * // },
95
+ * // },
96
+ * // ],
97
+ * // additionalInfo: {
98
+ * // "<keys>": [
99
+ * // "STRING_VALUE",
100
+ * // ],
101
+ * // },
102
+ * // excluded: true || false,
103
+ * // },
104
+ * // };
105
+ *
66
106
  * ```
67
107
  *
68
108
  * @param DescribeAppVersionResourceCommandInput - {@link DescribeAppVersionResourceCommandInput}
@@ -95,6 +135,8 @@ export interface DescribeAppVersionResourceCommandOutput extends DescribeAppVers
95
135
  * @throws {@link ValidationException} (client fault)
96
136
  * <p>This exception occurs when a request is not valid.</p>
97
137
  *
138
+ * @throws {@link ResiliencehubServiceException}
139
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
98
140
  *
99
141
  */
100
142
  export declare class DescribeAppVersionResourceCommand extends $Command<DescribeAppVersionResourceCommandInput, DescribeAppVersionResourceCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -35,6 +35,14 @@ export interface DescribeAppVersionResourcesResolutionStatusCommandOutput extend
35
35
  * };
36
36
  * const command = new DescribeAppVersionResourcesResolutionStatusCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeAppVersionResourcesResolutionStatusResponse
39
+ * // appArn: "STRING_VALUE", // required
40
+ * // appVersion: "STRING_VALUE", // required
41
+ * // resolutionId: "STRING_VALUE", // required
42
+ * // status: "STRING_VALUE", // required
43
+ * // errorMessage: "STRING_VALUE",
44
+ * // };
45
+ *
38
46
  * ```
39
47
  *
40
48
  * @param DescribeAppVersionResourcesResolutionStatusCommandInput - {@link DescribeAppVersionResourcesResolutionStatusCommandInput}
@@ -61,6 +69,8 @@ export interface DescribeAppVersionResourcesResolutionStatusCommandOutput extend
61
69
  * @throws {@link ValidationException} (client fault)
62
70
  * <p>This exception occurs when a request is not valid.</p>
63
71
  *
72
+ * @throws {@link ResiliencehubServiceException}
73
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
64
74
  *
65
75
  */
66
76
  export declare class DescribeAppVersionResourcesResolutionStatusCommand extends $Command<DescribeAppVersionResourcesResolutionStatusCommandInput, DescribeAppVersionResourcesResolutionStatusCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -32,6 +32,12 @@ export interface DescribeAppVersionTemplateCommandOutput extends DescribeAppVers
32
32
  * };
33
33
  * const command = new DescribeAppVersionTemplateCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAppVersionTemplateResponse
36
+ * // appArn: "STRING_VALUE", // required
37
+ * // appVersion: "STRING_VALUE", // required
38
+ * // appTemplateBody: "STRING_VALUE", // required
39
+ * // };
40
+ *
35
41
  * ```
36
42
  *
37
43
  * @param DescribeAppVersionTemplateCommandInput - {@link DescribeAppVersionTemplateCommandInput}
@@ -58,6 +64,8 @@ export interface DescribeAppVersionTemplateCommandOutput extends DescribeAppVers
58
64
  * @throws {@link ValidationException} (client fault)
59
65
  * <p>This exception occurs when a request is not valid.</p>
60
66
  *
67
+ * @throws {@link ResiliencehubServiceException}
68
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
61
69
  *
62
70
  */
63
71
  export declare class DescribeAppVersionTemplateCommand extends $Command<DescribeAppVersionTemplateCommandInput, DescribeAppVersionTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -38,6 +38,14 @@ export interface DescribeDraftAppVersionResourcesImportStatusCommandOutput exten
38
38
  * };
39
39
  * const command = new DescribeDraftAppVersionResourcesImportStatusCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeDraftAppVersionResourcesImportStatusResponse
42
+ * // appArn: "STRING_VALUE", // required
43
+ * // appVersion: "STRING_VALUE", // required
44
+ * // status: "STRING_VALUE", // required
45
+ * // statusChangeTime: new Date("TIMESTAMP"), // required
46
+ * // errorMessage: "STRING_VALUE",
47
+ * // };
48
+ *
41
49
  * ```
42
50
  *
43
51
  * @param DescribeDraftAppVersionResourcesImportStatusCommandInput - {@link DescribeDraftAppVersionResourcesImportStatusCommandInput}
@@ -64,6 +72,8 @@ export interface DescribeDraftAppVersionResourcesImportStatusCommandOutput exten
64
72
  * @throws {@link ValidationException} (client fault)
65
73
  * <p>This exception occurs when a request is not valid.</p>
66
74
  *
75
+ * @throws {@link ResiliencehubServiceException}
76
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
67
77
  *
68
78
  */
69
79
  export declare class DescribeDraftAppVersionResourcesImportStatusCommand extends $Command<DescribeDraftAppVersionResourcesImportStatusCommandInput, DescribeDraftAppVersionResourcesImportStatusCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -33,6 +33,27 @@ export interface DescribeResiliencyPolicyCommandOutput extends DescribeResilienc
33
33
  * };
34
34
  * const command = new DescribeResiliencyPolicyCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeResiliencyPolicyResponse
37
+ * // policy: { // ResiliencyPolicy
38
+ * // policyArn: "STRING_VALUE",
39
+ * // policyName: "STRING_VALUE",
40
+ * // policyDescription: "STRING_VALUE",
41
+ * // dataLocationConstraint: "STRING_VALUE",
42
+ * // tier: "STRING_VALUE",
43
+ * // estimatedCostTier: "STRING_VALUE",
44
+ * // policy: { // DisruptionPolicy
45
+ * // "<keys>": { // FailurePolicy
46
+ * // rtoInSecs: Number("int"), // required
47
+ * // rpoInSecs: Number("int"), // required
48
+ * // },
49
+ * // },
50
+ * // creationTime: new Date("TIMESTAMP"),
51
+ * // tags: { // TagMap
52
+ * // "<keys>": "STRING_VALUE",
53
+ * // },
54
+ * // },
55
+ * // };
56
+ *
36
57
  * ```
37
58
  *
38
59
  * @param DescribeResiliencyPolicyCommandInput - {@link DescribeResiliencyPolicyCommandInput}
@@ -59,6 +80,8 @@ export interface DescribeResiliencyPolicyCommandOutput extends DescribeResilienc
59
80
  * @throws {@link ValidationException} (client fault)
60
81
  * <p>This exception occurs when a request is not valid.</p>
61
82
  *
83
+ * @throws {@link ResiliencehubServiceException}
84
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
62
85
  *
63
86
  */
64
87
  export declare class DescribeResiliencyPolicyCommand extends $Command<DescribeResiliencyPolicyCommandInput, DescribeResiliencyPolicyCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -49,6 +49,28 @@ export interface ImportResourcesToDraftAppVersionCommandOutput extends ImportRes
49
49
  * };
50
50
  * const command = new ImportResourcesToDraftAppVersionCommand(input);
51
51
  * const response = await client.send(command);
52
+ * // { // ImportResourcesToDraftAppVersionResponse
53
+ * // appArn: "STRING_VALUE", // required
54
+ * // appVersion: "STRING_VALUE", // required
55
+ * // sourceArns: [ // ArnList
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // status: "STRING_VALUE", // required
59
+ * // terraformSources: [ // TerraformSourceList
60
+ * // { // TerraformSource
61
+ * // s3StateFileUrl: "STRING_VALUE", // required
62
+ * // },
63
+ * // ],
64
+ * // eksSources: [ // EksSourceList
65
+ * // { // EksSource
66
+ * // eksClusterArn: "STRING_VALUE", // required
67
+ * // namespaces: [ // EksNamespaceList // required
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // };
73
+ *
52
74
  * ```
53
75
  *
54
76
  * @param ImportResourcesToDraftAppVersionCommandInput - {@link ImportResourcesToDraftAppVersionCommandInput}
@@ -81,6 +103,8 @@ export interface ImportResourcesToDraftAppVersionCommandOutput extends ImportRes
81
103
  * @throws {@link ValidationException} (client fault)
82
104
  * <p>This exception occurs when a request is not valid.</p>
83
105
  *
106
+ * @throws {@link ResiliencehubServiceException}
107
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
84
108
  *
85
109
  */
86
110
  export declare class ImportResourcesToDraftAppVersionCommand extends $Command<ImportResourcesToDraftAppVersionCommandInput, ImportResourcesToDraftAppVersionCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -33,6 +33,29 @@ export interface ListAlarmRecommendationsCommandOutput extends ListAlarmRecommen
33
33
  * };
34
34
  * const command = new ListAlarmRecommendationsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAlarmRecommendationsResponse
37
+ * // alarmRecommendations: [ // AlarmRecommendationList // required
38
+ * // { // AlarmRecommendation
39
+ * // recommendationId: "STRING_VALUE", // required
40
+ * // referenceId: "STRING_VALUE", // required
41
+ * // name: "STRING_VALUE", // required
42
+ * // description: "STRING_VALUE",
43
+ * // type: "STRING_VALUE", // required
44
+ * // appComponentName: "STRING_VALUE",
45
+ * // items: [ // RecommendationItemList
46
+ * // { // RecommendationItem
47
+ * // resourceId: "STRING_VALUE",
48
+ * // targetAccountId: "STRING_VALUE",
49
+ * // targetRegion: "STRING_VALUE",
50
+ * // alreadyImplemented: true || false,
51
+ * // },
52
+ * // ],
53
+ * // prerequisite: "STRING_VALUE",
54
+ * // },
55
+ * // ],
56
+ * // nextToken: "STRING_VALUE",
57
+ * // };
58
+ *
36
59
  * ```
37
60
  *
38
61
  * @param ListAlarmRecommendationsCommandInput - {@link ListAlarmRecommendationsCommandInput}
@@ -59,6 +82,8 @@ export interface ListAlarmRecommendationsCommandOutput extends ListAlarmRecommen
59
82
  * @throws {@link ValidationException} (client fault)
60
83
  * <p>This exception occurs when a request is not valid.</p>
61
84
  *
85
+ * @throws {@link ResiliencehubServiceException}
86
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
62
87
  *
63
88
  */
64
89
  export declare class ListAlarmRecommendationsCommand extends $Command<ListAlarmRecommendationsCommandInput, ListAlarmRecommendationsCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -41,6 +41,30 @@ export interface ListAppAssessmentsCommandOutput extends ListAppAssessmentsRespo
41
41
  * };
42
42
  * const command = new ListAppAssessmentsCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // ListAppAssessmentsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // assessmentSummaries: [ // AppAssessmentSummaryList // required
47
+ * // { // AppAssessmentSummary
48
+ * // appArn: "STRING_VALUE",
49
+ * // appVersion: "STRING_VALUE",
50
+ * // assessmentStatus: "STRING_VALUE", // required
51
+ * // invoker: "STRING_VALUE",
52
+ * // startTime: new Date("TIMESTAMP"),
53
+ * // endTime: new Date("TIMESTAMP"),
54
+ * // message: "STRING_VALUE",
55
+ * // assessmentName: "STRING_VALUE",
56
+ * // assessmentArn: "STRING_VALUE", // required
57
+ * // complianceStatus: "STRING_VALUE",
58
+ * // cost: { // Cost
59
+ * // amount: Number("double"), // required
60
+ * // currency: "STRING_VALUE", // required
61
+ * // frequency: "STRING_VALUE", // required
62
+ * // },
63
+ * // resiliencyScore: Number("double"),
64
+ * // },
65
+ * // ],
66
+ * // };
67
+ *
44
68
  * ```
45
69
  *
46
70
  * @param ListAppAssessmentsCommandInput - {@link ListAppAssessmentsCommandInput}
@@ -67,6 +91,8 @@ export interface ListAppAssessmentsCommandOutput extends ListAppAssessmentsRespo
67
91
  * @throws {@link ValidationException} (client fault)
68
92
  * <p>This exception occurs when a request is not valid.</p>
69
93
  *
94
+ * @throws {@link ResiliencehubServiceException}
95
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
70
96
  *
71
97
  */
72
98
  export declare class ListAppAssessmentsCommand extends $Command<ListAppAssessmentsCommandInput, ListAppAssessmentsCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -33,6 +33,42 @@ export interface ListAppComponentCompliancesCommandOutput extends ListAppCompone
33
33
  * };
34
34
  * const command = new ListAppComponentCompliancesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAppComponentCompliancesResponse
37
+ * // componentCompliances: [ // ComponentCompliancesList // required
38
+ * // { // AppComponentCompliance
39
+ * // cost: { // Cost
40
+ * // amount: Number("double"), // required
41
+ * // currency: "STRING_VALUE", // required
42
+ * // frequency: "STRING_VALUE", // required
43
+ * // },
44
+ * // appComponentName: "STRING_VALUE",
45
+ * // compliance: { // AssessmentCompliance
46
+ * // "<keys>": { // DisruptionCompliance
47
+ * // achievableRtoInSecs: Number("int"),
48
+ * // currentRtoInSecs: Number("int"),
49
+ * // rtoReferenceId: "STRING_VALUE",
50
+ * // rtoDescription: "STRING_VALUE",
51
+ * // currentRpoInSecs: Number("int"),
52
+ * // rpoReferenceId: "STRING_VALUE",
53
+ * // rpoDescription: "STRING_VALUE",
54
+ * // complianceStatus: "STRING_VALUE", // required
55
+ * // achievableRpoInSecs: Number("int"),
56
+ * // message: "STRING_VALUE",
57
+ * // },
58
+ * // },
59
+ * // message: "STRING_VALUE",
60
+ * // status: "STRING_VALUE",
61
+ * // resiliencyScore: { // ResiliencyScore
62
+ * // score: Number("double"), // required
63
+ * // disruptionScore: { // DisruptionResiliencyScore // required
64
+ * // "<keys>": Number("double"),
65
+ * // },
66
+ * // },
67
+ * // },
68
+ * // ],
69
+ * // nextToken: "STRING_VALUE",
70
+ * // };
71
+ *
36
72
  * ```
37
73
  *
38
74
  * @param ListAppComponentCompliancesCommandInput - {@link ListAppComponentCompliancesCommandInput}
@@ -59,6 +95,8 @@ export interface ListAppComponentCompliancesCommandOutput extends ListAppCompone
59
95
  * @throws {@link ValidationException} (client fault)
60
96
  * <p>This exception occurs when a request is not valid.</p>
61
97
  *
98
+ * @throws {@link ResiliencehubServiceException}
99
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
62
100
  *
63
101
  */
64
102
  export declare class ListAppComponentCompliancesCommand extends $Command<ListAppComponentCompliancesCommandInput, ListAppComponentCompliancesCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -33,6 +33,57 @@ export interface ListAppComponentRecommendationsCommandOutput extends ListAppCom
33
33
  * };
34
34
  * const command = new ListAppComponentRecommendationsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAppComponentRecommendationsResponse
37
+ * // componentRecommendations: [ // ComponentRecommendationList // required
38
+ * // { // ComponentRecommendation
39
+ * // appComponentName: "STRING_VALUE", // required
40
+ * // recommendationStatus: "STRING_VALUE", // required
41
+ * // configRecommendations: [ // ConfigRecommendationList // required
42
+ * // { // ConfigRecommendation
43
+ * // cost: { // Cost
44
+ * // amount: Number("double"), // required
45
+ * // currency: "STRING_VALUE", // required
46
+ * // frequency: "STRING_VALUE", // required
47
+ * // },
48
+ * // appComponentName: "STRING_VALUE",
49
+ * // compliance: { // AssessmentCompliance
50
+ * // "<keys>": { // DisruptionCompliance
51
+ * // achievableRtoInSecs: Number("int"),
52
+ * // currentRtoInSecs: Number("int"),
53
+ * // rtoReferenceId: "STRING_VALUE",
54
+ * // rtoDescription: "STRING_VALUE",
55
+ * // currentRpoInSecs: Number("int"),
56
+ * // rpoReferenceId: "STRING_VALUE",
57
+ * // rpoDescription: "STRING_VALUE",
58
+ * // complianceStatus: "STRING_VALUE", // required
59
+ * // achievableRpoInSecs: Number("int"),
60
+ * // message: "STRING_VALUE",
61
+ * // },
62
+ * // },
63
+ * // recommendationCompliance: { // RecommendationCompliance
64
+ * // "<keys>": { // RecommendationDisruptionCompliance
65
+ * // expectedComplianceStatus: "STRING_VALUE", // required
66
+ * // expectedRtoInSecs: Number("int"),
67
+ * // expectedRtoDescription: "STRING_VALUE",
68
+ * // expectedRpoInSecs: Number("int"),
69
+ * // expectedRpoDescription: "STRING_VALUE",
70
+ * // },
71
+ * // },
72
+ * // optimizationType: "STRING_VALUE", // required
73
+ * // name: "STRING_VALUE", // required
74
+ * // description: "STRING_VALUE",
75
+ * // suggestedChanges: [ // SuggestedChangesList
76
+ * // "STRING_VALUE",
77
+ * // ],
78
+ * // haArchitecture: "STRING_VALUE",
79
+ * // referenceId: "STRING_VALUE", // required
80
+ * // },
81
+ * // ],
82
+ * // },
83
+ * // ],
84
+ * // nextToken: "STRING_VALUE",
85
+ * // };
86
+ *
36
87
  * ```
37
88
  *
38
89
  * @param ListAppComponentRecommendationsCommandInput - {@link ListAppComponentRecommendationsCommandInput}
@@ -59,6 +110,8 @@ export interface ListAppComponentRecommendationsCommandOutput extends ListAppCom
59
110
  * @throws {@link ValidationException} (client fault)
60
111
  * <p>This exception occurs when a request is not valid.</p>
61
112
  *
113
+ * @throws {@link ResiliencehubServiceException}
114
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
62
115
  *
63
116
  */
64
117
  export declare class ListAppComponentRecommendationsCommand extends $Command<ListAppComponentRecommendationsCommandInput, ListAppComponentRecommendationsCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -36,6 +36,25 @@ export interface ListAppInputSourcesCommandOutput extends ListAppInputSourcesRes
36
36
  * };
37
37
  * const command = new ListAppInputSourcesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListAppInputSourcesResponse
40
+ * // appInputSources: [ // AppInputSourceList // required
41
+ * // { // AppInputSource
42
+ * // sourceName: "STRING_VALUE",
43
+ * // importType: "STRING_VALUE", // required
44
+ * // sourceArn: "STRING_VALUE",
45
+ * // terraformSource: { // TerraformSource
46
+ * // s3StateFileUrl: "STRING_VALUE", // required
47
+ * // },
48
+ * // resourceCount: Number("int"),
49
+ * // eksSourceClusterNamespace: { // EksSourceClusterNamespace
50
+ * // eksClusterArn: "STRING_VALUE", // required
51
+ * // namespace: "STRING_VALUE", // required
52
+ * // },
53
+ * // },
54
+ * // ],
55
+ * // nextToken: "STRING_VALUE",
56
+ * // };
57
+ *
39
58
  * ```
40
59
  *
41
60
  * @param ListAppInputSourcesCommandInput - {@link ListAppInputSourcesCommandInput}
@@ -62,6 +81,8 @@ export interface ListAppInputSourcesCommandOutput extends ListAppInputSourcesRes
62
81
  * @throws {@link ValidationException} (client fault)
63
82
  * <p>This exception occurs when a request is not valid.</p>
64
83
  *
84
+ * @throws {@link ResiliencehubServiceException}
85
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
65
86
  *
66
87
  */
67
88
  export declare class ListAppInputSourcesCommand extends $Command<ListAppInputSourcesCommandInput, ListAppInputSourcesCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -34,6 +34,24 @@ export interface ListAppVersionAppComponentsCommandOutput extends ListAppVersion
34
34
  * };
35
35
  * const command = new ListAppVersionAppComponentsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListAppVersionAppComponentsResponse
38
+ * // appArn: "STRING_VALUE", // required
39
+ * // appVersion: "STRING_VALUE", // required
40
+ * // appComponents: [ // AppComponentList
41
+ * // { // AppComponent
42
+ * // name: "STRING_VALUE", // required
43
+ * // type: "STRING_VALUE", // required
44
+ * // id: "STRING_VALUE",
45
+ * // additionalInfo: { // AdditionalInfoMap
46
+ * // "<keys>": [ // AdditionalInfoValueList
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // },
50
+ * // },
51
+ * // ],
52
+ * // nextToken: "STRING_VALUE",
53
+ * // };
54
+ *
37
55
  * ```
38
56
  *
39
57
  * @param ListAppVersionAppComponentsCommandInput - {@link ListAppVersionAppComponentsCommandInput}
@@ -66,6 +84,8 @@ export interface ListAppVersionAppComponentsCommandOutput extends ListAppVersion
66
84
  * @throws {@link ValidationException} (client fault)
67
85
  * <p>This exception occurs when a request is not valid.</p>
68
86
  *
87
+ * @throws {@link ResiliencehubServiceException}
88
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
69
89
  *
70
90
  */
71
91
  export declare class ListAppVersionAppComponentsCommand extends $Command<ListAppVersionAppComponentsCommandInput, ListAppVersionAppComponentsCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -36,6 +36,27 @@ export interface ListAppVersionResourceMappingsCommandOutput extends ListAppVers
36
36
  * };
37
37
  * const command = new ListAppVersionResourceMappingsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListAppVersionResourceMappingsResponse
40
+ * // resourceMappings: [ // ResourceMappingList // required
41
+ * // { // ResourceMapping
42
+ * // resourceName: "STRING_VALUE",
43
+ * // logicalStackName: "STRING_VALUE",
44
+ * // appRegistryAppName: "STRING_VALUE",
45
+ * // resourceGroupName: "STRING_VALUE",
46
+ * // mappingType: "STRING_VALUE", // required
47
+ * // physicalResourceId: { // PhysicalResourceId
48
+ * // identifier: "STRING_VALUE", // required
49
+ * // type: "STRING_VALUE", // required
50
+ * // awsRegion: "STRING_VALUE",
51
+ * // awsAccountId: "STRING_VALUE",
52
+ * // },
53
+ * // terraformSourceName: "STRING_VALUE",
54
+ * // eksSourceName: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // nextToken: "STRING_VALUE",
58
+ * // };
59
+ *
39
60
  * ```
40
61
  *
41
62
  * @param ListAppVersionResourceMappingsCommandInput - {@link ListAppVersionResourceMappingsCommandInput}
@@ -62,6 +83,8 @@ export interface ListAppVersionResourceMappingsCommandOutput extends ListAppVers
62
83
  * @throws {@link ValidationException} (client fault)
63
84
  * <p>This exception occurs when a request is not valid.</p>
64
85
  *
86
+ * @throws {@link ResiliencehubServiceException}
87
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
65
88
  *
66
89
  */
67
90
  export declare class ListAppVersionResourceMappingsCommand extends $Command<ListAppVersionResourceMappingsCommandInput, ListAppVersionResourceMappingsCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -35,6 +35,48 @@ export interface ListAppVersionResourcesCommandOutput extends ListAppVersionReso
35
35
  * };
36
36
  * const command = new ListAppVersionResourcesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListAppVersionResourcesResponse
39
+ * // physicalResources: [ // PhysicalResourceList // required
40
+ * // { // PhysicalResource
41
+ * // resourceName: "STRING_VALUE",
42
+ * // logicalResourceId: { // LogicalResourceId
43
+ * // identifier: "STRING_VALUE", // required
44
+ * // logicalStackName: "STRING_VALUE",
45
+ * // resourceGroupName: "STRING_VALUE",
46
+ * // terraformSourceName: "STRING_VALUE",
47
+ * // eksSourceName: "STRING_VALUE",
48
+ * // },
49
+ * // physicalResourceId: { // PhysicalResourceId
50
+ * // identifier: "STRING_VALUE", // required
51
+ * // type: "STRING_VALUE", // required
52
+ * // awsRegion: "STRING_VALUE",
53
+ * // awsAccountId: "STRING_VALUE",
54
+ * // },
55
+ * // resourceType: "STRING_VALUE", // required
56
+ * // appComponents: [ // AppComponentList
57
+ * // { // AppComponent
58
+ * // name: "STRING_VALUE", // required
59
+ * // type: "STRING_VALUE", // required
60
+ * // id: "STRING_VALUE",
61
+ * // additionalInfo: { // AdditionalInfoMap
62
+ * // "<keys>": [ // AdditionalInfoValueList
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // },
66
+ * // },
67
+ * // ],
68
+ * // additionalInfo: {
69
+ * // "<keys>": [
70
+ * // "STRING_VALUE",
71
+ * // ],
72
+ * // },
73
+ * // excluded: true || false,
74
+ * // },
75
+ * // ],
76
+ * // resolutionId: "STRING_VALUE", // required
77
+ * // nextToken: "STRING_VALUE",
78
+ * // };
79
+ *
38
80
  * ```
39
81
  *
40
82
  * @param ListAppVersionResourcesCommandInput - {@link ListAppVersionResourcesCommandInput}
@@ -67,6 +109,8 @@ export interface ListAppVersionResourcesCommandOutput extends ListAppVersionReso
67
109
  * @throws {@link ValidationException} (client fault)
68
110
  * <p>This exception occurs when a request is not valid.</p>
69
111
  *
112
+ * @throws {@link ResiliencehubServiceException}
113
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
70
114
  *
71
115
  */
72
116
  export declare class ListAppVersionResourcesCommand extends $Command<ListAppVersionResourcesCommandInput, ListAppVersionResourcesCommandOutput, ResiliencehubClientResolvedConfig> {
@@ -33,6 +33,15 @@ export interface ListAppVersionsCommandOutput extends ListAppVersionsResponse, _
33
33
  * };
34
34
  * const command = new ListAppVersionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAppVersionsResponse
37
+ * // appVersions: [ // AppVersionList // required
38
+ * // { // AppVersionSummary
39
+ * // appVersion: "STRING_VALUE", // required
40
+ * // },
41
+ * // ],
42
+ * // nextToken: "STRING_VALUE",
43
+ * // };
44
+ *
36
45
  * ```
37
46
  *
38
47
  * @param ListAppVersionsCommandInput - {@link ListAppVersionsCommandInput}
@@ -56,6 +65,8 @@ export interface ListAppVersionsCommandOutput extends ListAppVersionsResponse, _
56
65
  * @throws {@link ValidationException} (client fault)
57
66
  * <p>This exception occurs when a request is not valid.</p>
58
67
  *
68
+ * @throws {@link ResiliencehubServiceException}
69
+ * <p>Base exception class for all service exceptions from Resiliencehub service.</p>
59
70
  *
60
71
  */
61
72
  export declare class ListAppVersionsCommand extends $Command<ListAppVersionsCommandInput, ListAppVersionsCommandOutput, ResiliencehubClientResolvedConfig> {