@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.
- package/dist-cjs/models/models_0.js +6 -2
- package/dist-es/models/models_0.js +4 -0
- package/dist-types/commands/AddDraftAppVersionResourceMappingsCommand.d.ts +24 -0
- package/dist-types/commands/CreateAppCommand.d.ts +25 -3
- package/dist-types/commands/CreateAppVersionAppComponentCommand.d.ts +17 -0
- package/dist-types/commands/CreateAppVersionResourceCommand.d.ts +43 -1
- package/dist-types/commands/CreateRecommendationTemplateCommand.d.ts +30 -0
- package/dist-types/commands/CreateResiliencyPolicyCommand.d.ts +23 -0
- package/dist-types/commands/DeleteAppAssessmentCommand.d.ts +7 -0
- package/dist-types/commands/DeleteAppCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAppInputSourceCommand.d.ts +19 -0
- package/dist-types/commands/DeleteAppVersionAppComponentCommand.d.ts +17 -0
- package/dist-types/commands/DeleteAppVersionResourceCommand.d.ts +42 -0
- package/dist-types/commands/DeleteRecommendationTemplateCommand.d.ts +7 -0
- package/dist-types/commands/DeleteResiliencyPolicyCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAppAssessmentCommand.d.ts +73 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +21 -0
- package/dist-types/commands/DescribeAppVersionAppComponentCommand.d.ts +17 -0
- package/dist-types/commands/DescribeAppVersionCommand.d.ts +12 -0
- package/dist-types/commands/DescribeAppVersionResourceCommand.d.ts +42 -0
- package/dist-types/commands/DescribeAppVersionResourcesResolutionStatusCommand.d.ts +10 -0
- package/dist-types/commands/DescribeAppVersionTemplateCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDraftAppVersionResourcesImportStatusCommand.d.ts +10 -0
- package/dist-types/commands/DescribeResiliencyPolicyCommand.d.ts +23 -0
- package/dist-types/commands/ImportResourcesToDraftAppVersionCommand.d.ts +24 -0
- package/dist-types/commands/ListAlarmRecommendationsCommand.d.ts +25 -0
- package/dist-types/commands/ListAppAssessmentsCommand.d.ts +26 -0
- package/dist-types/commands/ListAppComponentCompliancesCommand.d.ts +38 -0
- package/dist-types/commands/ListAppComponentRecommendationsCommand.d.ts +53 -0
- package/dist-types/commands/ListAppInputSourcesCommand.d.ts +21 -0
- package/dist-types/commands/ListAppVersionAppComponentsCommand.d.ts +20 -0
- package/dist-types/commands/ListAppVersionResourceMappingsCommand.d.ts +23 -0
- package/dist-types/commands/ListAppVersionResourcesCommand.d.ts +44 -0
- package/dist-types/commands/ListAppVersionsCommand.d.ts +11 -0
- package/dist-types/commands/ListAppsCommand.d.ts +18 -0
- package/dist-types/commands/ListRecommendationTemplatesCommand.d.ts +33 -0
- package/dist-types/commands/ListResiliencyPoliciesCommand.d.ts +26 -0
- package/dist-types/commands/ListSopRecommendationsCommand.d.ts +25 -0
- package/dist-types/commands/ListSuggestedResiliencyPoliciesCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListTestRecommendationsCommand.d.ts +30 -0
- package/dist-types/commands/ListUnsupportedAppVersionResourcesCommand.d.ts +26 -0
- package/dist-types/commands/PublishAppVersionCommand.d.ts +7 -0
- package/dist-types/commands/PutDraftAppVersionTemplateCommand.d.ts +7 -0
- package/dist-types/commands/RemoveDraftAppVersionResourceMappingsCommand.d.ts +7 -0
- package/dist-types/commands/ResolveAppVersionResourcesCommand.d.ts +9 -0
- package/dist-types/commands/StartAppAssessmentCommand.d.ts +73 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAppCommand.d.ts +21 -0
- package/dist-types/commands/UpdateAppVersionAppComponentCommand.d.ts +17 -0
- package/dist-types/commands/UpdateAppVersionCommand.d.ts +12 -0
- package/dist-types/commands/UpdateAppVersionResourceCommand.d.ts +42 -0
- package/dist-types/commands/UpdateResiliencyPolicyCommand.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +21 -1
- package/dist-types/ts3.4/models/models_0.d.ts +9 -1
- package/package.json +16 -16
|
@@ -43,6 +43,22 @@ export interface ListAppsCommandOutput extends ListAppsResponse, __MetadataBeare
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListAppsCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListAppsResponse
|
|
47
|
+
* // appSummaries: [ // AppSummaryList // required
|
|
48
|
+
* // { // AppSummary
|
|
49
|
+
* // appArn: "STRING_VALUE", // required
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // description: "STRING_VALUE",
|
|
52
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // complianceStatus: "STRING_VALUE",
|
|
54
|
+
* // resiliencyScore: Number("double"),
|
|
55
|
+
* // assessmentSchedule: "STRING_VALUE",
|
|
56
|
+
* // status: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // nextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
46
62
|
* ```
|
|
47
63
|
*
|
|
48
64
|
* @param ListAppsCommandInput - {@link ListAppsCommandInput}
|
|
@@ -66,6 +82,8 @@ export interface ListAppsCommandOutput extends ListAppsResponse, __MetadataBeare
|
|
|
66
82
|
* @throws {@link ValidationException} (client fault)
|
|
67
83
|
* <p>This exception occurs when a request is not valid.</p>
|
|
68
84
|
*
|
|
85
|
+
* @throws {@link ResiliencehubServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
69
87
|
*
|
|
70
88
|
*/
|
|
71
89
|
export declare class ListAppsCommand extends $Command<ListAppsCommandInput, ListAppsCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -39,6 +39,37 @@ export interface ListRecommendationTemplatesCommandOutput extends ListRecommenda
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListRecommendationTemplatesCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListRecommendationTemplatesResponse
|
|
43
|
+
* // nextToken: "STRING_VALUE",
|
|
44
|
+
* // recommendationTemplates: [ // RecommendationTemplateList
|
|
45
|
+
* // { // RecommendationTemplate
|
|
46
|
+
* // templatesLocation: { // S3Location
|
|
47
|
+
* // bucket: "STRING_VALUE",
|
|
48
|
+
* // prefix: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // assessmentArn: "STRING_VALUE", // required
|
|
51
|
+
* // appArn: "STRING_VALUE",
|
|
52
|
+
* // recommendationIds: [ // RecommendationIdList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // recommendationTypes: [ // RenderRecommendationTypeList // required
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // format: "STRING_VALUE", // required
|
|
59
|
+
* // recommendationTemplateArn: "STRING_VALUE", // required
|
|
60
|
+
* // message: "STRING_VALUE",
|
|
61
|
+
* // status: "STRING_VALUE", // required
|
|
62
|
+
* // name: "STRING_VALUE", // required
|
|
63
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
64
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
65
|
+
* // tags: { // TagMap
|
|
66
|
+
* // "<keys>": "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // needsReplacements: true || false,
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
42
73
|
* ```
|
|
43
74
|
*
|
|
44
75
|
* @param ListRecommendationTemplatesCommandInput - {@link ListRecommendationTemplatesCommandInput}
|
|
@@ -62,6 +93,8 @@ export interface ListRecommendationTemplatesCommandOutput extends ListRecommenda
|
|
|
62
93
|
* @throws {@link ValidationException} (client fault)
|
|
63
94
|
* <p>This exception occurs when a request is not valid.</p>
|
|
64
95
|
*
|
|
96
|
+
* @throws {@link ResiliencehubServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
65
98
|
*
|
|
66
99
|
*/
|
|
67
100
|
export declare class ListRecommendationTemplatesCommand extends $Command<ListRecommendationTemplatesCommandInput, ListRecommendationTemplatesCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -33,6 +33,30 @@ export interface ListResiliencyPoliciesCommandOutput extends ListResiliencyPolic
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListResiliencyPoliciesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListResiliencyPoliciesResponse
|
|
37
|
+
* // resiliencyPolicies: [ // ResiliencyPolicies // required
|
|
38
|
+
* // { // ResiliencyPolicy
|
|
39
|
+
* // policyArn: "STRING_VALUE",
|
|
40
|
+
* // policyName: "STRING_VALUE",
|
|
41
|
+
* // policyDescription: "STRING_VALUE",
|
|
42
|
+
* // dataLocationConstraint: "STRING_VALUE",
|
|
43
|
+
* // tier: "STRING_VALUE",
|
|
44
|
+
* // estimatedCostTier: "STRING_VALUE",
|
|
45
|
+
* // policy: { // DisruptionPolicy
|
|
46
|
+
* // "<keys>": { // FailurePolicy
|
|
47
|
+
* // rtoInSecs: Number("int"), // required
|
|
48
|
+
* // rpoInSecs: Number("int"), // required
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // tags: { // TagMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // nextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
36
60
|
* ```
|
|
37
61
|
*
|
|
38
62
|
* @param ListResiliencyPoliciesCommandInput - {@link ListResiliencyPoliciesCommandInput}
|
|
@@ -59,6 +83,8 @@ export interface ListResiliencyPoliciesCommandOutput extends ListResiliencyPolic
|
|
|
59
83
|
* @throws {@link ValidationException} (client fault)
|
|
60
84
|
* <p>This exception occurs when a request is not valid.</p>
|
|
61
85
|
*
|
|
86
|
+
* @throws {@link ResiliencehubServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
62
88
|
*
|
|
63
89
|
*/
|
|
64
90
|
export declare class ListResiliencyPoliciesCommand extends $Command<ListResiliencyPoliciesCommandInput, ListResiliencyPoliciesCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -34,6 +34,29 @@ export interface ListSopRecommendationsCommandOutput extends ListSopRecommendati
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListSopRecommendationsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListSopRecommendationsResponse
|
|
38
|
+
* // nextToken: "STRING_VALUE",
|
|
39
|
+
* // sopRecommendations: [ // SopRecommendationList // required
|
|
40
|
+
* // { // SopRecommendation
|
|
41
|
+
* // serviceType: "STRING_VALUE", // required
|
|
42
|
+
* // appComponentName: "STRING_VALUE",
|
|
43
|
+
* // description: "STRING_VALUE",
|
|
44
|
+
* // recommendationId: "STRING_VALUE", // required
|
|
45
|
+
* // name: "STRING_VALUE",
|
|
46
|
+
* // items: [ // RecommendationItemList
|
|
47
|
+
* // { // RecommendationItem
|
|
48
|
+
* // resourceId: "STRING_VALUE",
|
|
49
|
+
* // targetAccountId: "STRING_VALUE",
|
|
50
|
+
* // targetRegion: "STRING_VALUE",
|
|
51
|
+
* // alreadyImplemented: true || false,
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // referenceId: "STRING_VALUE", // required
|
|
55
|
+
* // prerequisite: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
37
60
|
* ```
|
|
38
61
|
*
|
|
39
62
|
* @param ListSopRecommendationsCommandInput - {@link ListSopRecommendationsCommandInput}
|
|
@@ -66,6 +89,8 @@ export interface ListSopRecommendationsCommandOutput extends ListSopRecommendati
|
|
|
66
89
|
* @throws {@link ValidationException} (client fault)
|
|
67
90
|
* <p>This exception occurs when a request is not valid.</p>
|
|
68
91
|
*
|
|
92
|
+
* @throws {@link ResiliencehubServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
69
94
|
*
|
|
70
95
|
*/
|
|
71
96
|
export declare class ListSopRecommendationsCommand extends $Command<ListSopRecommendationsCommandInput, ListSopRecommendationsCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -32,6 +32,30 @@ export interface ListSuggestedResiliencyPoliciesCommandOutput extends ListSugges
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListSuggestedResiliencyPoliciesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListSuggestedResiliencyPoliciesResponse
|
|
36
|
+
* // resiliencyPolicies: [ // ResiliencyPolicies // required
|
|
37
|
+
* // { // 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
|
+
* // nextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
35
59
|
* ```
|
|
36
60
|
*
|
|
37
61
|
* @param ListSuggestedResiliencyPoliciesCommandInput - {@link ListSuggestedResiliencyPoliciesCommandInput}
|
|
@@ -58,6 +82,8 @@ export interface ListSuggestedResiliencyPoliciesCommandOutput extends ListSugges
|
|
|
58
82
|
* @throws {@link ValidationException} (client fault)
|
|
59
83
|
* <p>This exception occurs when a request is not valid.</p>
|
|
60
84
|
*
|
|
85
|
+
* @throws {@link ResiliencehubServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
61
87
|
*
|
|
62
88
|
*/
|
|
63
89
|
export declare class ListSuggestedResiliencyPoliciesCommand extends $Command<ListSuggestedResiliencyPoliciesCommandInput, ListSuggestedResiliencyPoliciesCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -57,6 +63,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
57
63
|
* @throws {@link ValidationException} (client fault)
|
|
58
64
|
* <p>This exception occurs when a request is not valid.</p>
|
|
59
65
|
*
|
|
66
|
+
* @throws {@link ResiliencehubServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
60
68
|
*
|
|
61
69
|
*/
|
|
62
70
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -33,6 +33,34 @@ export interface ListTestRecommendationsCommandOutput extends ListTestRecommenda
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTestRecommendationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTestRecommendationsResponse
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // testRecommendations: [ // TestRecommendationList // required
|
|
39
|
+
* // { // TestRecommendation
|
|
40
|
+
* // recommendationId: "STRING_VALUE",
|
|
41
|
+
* // referenceId: "STRING_VALUE", // required
|
|
42
|
+
* // appComponentName: "STRING_VALUE",
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // intent: "STRING_VALUE",
|
|
45
|
+
* // risk: "STRING_VALUE",
|
|
46
|
+
* // type: "STRING_VALUE",
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // items: [ // RecommendationItemList
|
|
49
|
+
* // { // RecommendationItem
|
|
50
|
+
* // resourceId: "STRING_VALUE",
|
|
51
|
+
* // targetAccountId: "STRING_VALUE",
|
|
52
|
+
* // targetRegion: "STRING_VALUE",
|
|
53
|
+
* // alreadyImplemented: true || false,
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // prerequisite: "STRING_VALUE",
|
|
57
|
+
* // dependsOnAlarms: [ // AlarmReferenceIdList
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
36
64
|
* ```
|
|
37
65
|
*
|
|
38
66
|
* @param ListTestRecommendationsCommandInput - {@link ListTestRecommendationsCommandInput}
|
|
@@ -65,6 +93,8 @@ export interface ListTestRecommendationsCommandOutput extends ListTestRecommenda
|
|
|
65
93
|
* @throws {@link ValidationException} (client fault)
|
|
66
94
|
* <p>This exception occurs when a request is not valid.</p>
|
|
67
95
|
*
|
|
96
|
+
* @throws {@link ResiliencehubServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
68
98
|
*
|
|
69
99
|
*/
|
|
70
100
|
export declare class ListTestRecommendationsCommand extends $Command<ListTestRecommendationsCommandInput, ListTestRecommendationsCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -37,6 +37,30 @@ export interface ListUnsupportedAppVersionResourcesCommandOutput extends ListUns
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListUnsupportedAppVersionResourcesCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListUnsupportedAppVersionResourcesResponse
|
|
41
|
+
* // unsupportedResources: [ // UnsupportedResourceList // required
|
|
42
|
+
* // { // UnsupportedResource
|
|
43
|
+
* // logicalResourceId: { // LogicalResourceId
|
|
44
|
+
* // identifier: "STRING_VALUE", // required
|
|
45
|
+
* // logicalStackName: "STRING_VALUE",
|
|
46
|
+
* // resourceGroupName: "STRING_VALUE",
|
|
47
|
+
* // terraformSourceName: "STRING_VALUE",
|
|
48
|
+
* // eksSourceName: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // physicalResourceId: { // PhysicalResourceId
|
|
51
|
+
* // identifier: "STRING_VALUE", // required
|
|
52
|
+
* // type: "STRING_VALUE", // required
|
|
53
|
+
* // awsRegion: "STRING_VALUE",
|
|
54
|
+
* // awsAccountId: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // resourceType: "STRING_VALUE", // required
|
|
57
|
+
* // unsupportedResourceStatus: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // resolutionId: "STRING_VALUE", // required
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
40
64
|
* ```
|
|
41
65
|
*
|
|
42
66
|
* @param ListUnsupportedAppVersionResourcesCommandInput - {@link ListUnsupportedAppVersionResourcesCommandInput}
|
|
@@ -69,6 +93,8 @@ export interface ListUnsupportedAppVersionResourcesCommandOutput extends ListUns
|
|
|
69
93
|
* @throws {@link ValidationException} (client fault)
|
|
70
94
|
* <p>This exception occurs when a request is not valid.</p>
|
|
71
95
|
*
|
|
96
|
+
* @throws {@link ResiliencehubServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
72
98
|
*
|
|
73
99
|
*/
|
|
74
100
|
export declare class ListUnsupportedAppVersionResourcesCommand extends $Command<ListUnsupportedAppVersionResourcesCommandInput, ListUnsupportedAppVersionResourcesCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface PublishAppVersionCommandOutput extends PublishAppVersionRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new PublishAppVersionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // PublishAppVersionResponse
|
|
35
|
+
* // appArn: "STRING_VALUE", // required
|
|
36
|
+
* // appVersion: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param PublishAppVersionCommandInput - {@link PublishAppVersionCommandInput}
|
|
@@ -63,6 +68,8 @@ export interface PublishAppVersionCommandOutput extends PublishAppVersionRespons
|
|
|
63
68
|
* @throws {@link ValidationException} (client fault)
|
|
64
69
|
* <p>This exception occurs when a request is not valid.</p>
|
|
65
70
|
*
|
|
71
|
+
* @throws {@link ResiliencehubServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
66
73
|
*
|
|
67
74
|
*/
|
|
68
75
|
export declare class PublishAppVersionCommand extends $Command<PublishAppVersionCommandInput, PublishAppVersionCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface PutDraftAppVersionTemplateCommandOutput extends PutDraftAppVers
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new PutDraftAppVersionTemplateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // PutDraftAppVersionTemplateResponse
|
|
36
|
+
* // appArn: "STRING_VALUE",
|
|
37
|
+
* // appVersion: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param PutDraftAppVersionTemplateCommandInput - {@link PutDraftAppVersionTemplateCommandInput}
|
|
@@ -64,6 +69,8 @@ export interface PutDraftAppVersionTemplateCommandOutput extends PutDraftAppVers
|
|
|
64
69
|
* @throws {@link ValidationException} (client fault)
|
|
65
70
|
* <p>This exception occurs when a request is not valid.</p>
|
|
66
71
|
*
|
|
72
|
+
* @throws {@link ResiliencehubServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
67
74
|
*
|
|
68
75
|
*/
|
|
69
76
|
export declare class PutDraftAppVersionTemplateCommand extends $Command<PutDraftAppVersionTemplateCommandInput, PutDraftAppVersionTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -49,6 +49,11 @@ export interface RemoveDraftAppVersionResourceMappingsCommandOutput extends Remo
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new RemoveDraftAppVersionResourceMappingsCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // RemoveDraftAppVersionResourceMappingsResponse
|
|
53
|
+
* // appArn: "STRING_VALUE",
|
|
54
|
+
* // appVersion: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
54
59
|
* @param RemoveDraftAppVersionResourceMappingsCommandInput - {@link RemoveDraftAppVersionResourceMappingsCommandInput}
|
|
@@ -81,6 +86,8 @@ export interface RemoveDraftAppVersionResourceMappingsCommandOutput extends Remo
|
|
|
81
86
|
* @throws {@link ValidationException} (client fault)
|
|
82
87
|
* <p>This exception occurs when a request is not valid.</p>
|
|
83
88
|
*
|
|
89
|
+
* @throws {@link ResiliencehubServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
84
91
|
*
|
|
85
92
|
*/
|
|
86
93
|
export declare class RemoveDraftAppVersionResourceMappingsCommand extends $Command<RemoveDraftAppVersionResourceMappingsCommandInput, RemoveDraftAppVersionResourceMappingsCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface ResolveAppVersionResourcesCommandOutput extends ResolveAppVersi
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ResolveAppVersionResourcesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ResolveAppVersionResourcesResponse
|
|
36
|
+
* // appArn: "STRING_VALUE", // required
|
|
37
|
+
* // appVersion: "STRING_VALUE", // required
|
|
38
|
+
* // resolutionId: "STRING_VALUE", // required
|
|
39
|
+
* // status: "STRING_VALUE", // required
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param ResolveAppVersionResourcesCommandInput - {@link ResolveAppVersionResourcesCommandInput}
|
|
@@ -64,6 +71,8 @@ export interface ResolveAppVersionResourcesCommandOutput extends ResolveAppVersi
|
|
|
64
71
|
* @throws {@link ValidationException} (client fault)
|
|
65
72
|
* <p>This exception occurs when a request is not valid.</p>
|
|
66
73
|
*
|
|
74
|
+
* @throws {@link ResiliencehubServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
67
76
|
*
|
|
68
77
|
*/
|
|
69
78
|
export declare class ResolveAppVersionResourcesCommand extends $Command<ResolveAppVersionResourcesCommandInput, ResolveAppVersionResourcesCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -37,6 +37,77 @@ export interface StartAppAssessmentCommandOutput extends StartAppAssessmentRespo
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new StartAppAssessmentCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // StartAppAssessmentResponse
|
|
41
|
+
* // assessment: { // AppAssessment
|
|
42
|
+
* // appArn: "STRING_VALUE",
|
|
43
|
+
* // appVersion: "STRING_VALUE",
|
|
44
|
+
* // invoker: "STRING_VALUE", // required
|
|
45
|
+
* // cost: { // Cost
|
|
46
|
+
* // amount: Number("double"), // required
|
|
47
|
+
* // currency: "STRING_VALUE", // required
|
|
48
|
+
* // frequency: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // resiliencyScore: { // ResiliencyScore
|
|
51
|
+
* // score: Number("double"), // required
|
|
52
|
+
* // disruptionScore: { // DisruptionResiliencyScore // required
|
|
53
|
+
* // "<keys>": Number("double"),
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // compliance: { // AssessmentCompliance
|
|
57
|
+
* // "<keys>": { // DisruptionCompliance
|
|
58
|
+
* // achievableRtoInSecs: Number("int"),
|
|
59
|
+
* // currentRtoInSecs: Number("int"),
|
|
60
|
+
* // rtoReferenceId: "STRING_VALUE",
|
|
61
|
+
* // rtoDescription: "STRING_VALUE",
|
|
62
|
+
* // currentRpoInSecs: Number("int"),
|
|
63
|
+
* // rpoReferenceId: "STRING_VALUE",
|
|
64
|
+
* // rpoDescription: "STRING_VALUE",
|
|
65
|
+
* // complianceStatus: "STRING_VALUE", // required
|
|
66
|
+
* // achievableRpoInSecs: Number("int"),
|
|
67
|
+
* // message: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // complianceStatus: "STRING_VALUE",
|
|
71
|
+
* // assessmentStatus: "STRING_VALUE", // required
|
|
72
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
73
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
74
|
+
* // message: "STRING_VALUE",
|
|
75
|
+
* // assessmentName: "STRING_VALUE",
|
|
76
|
+
* // assessmentArn: "STRING_VALUE", // required
|
|
77
|
+
* // policy: { // ResiliencyPolicy
|
|
78
|
+
* // policyArn: "STRING_VALUE",
|
|
79
|
+
* // policyName: "STRING_VALUE",
|
|
80
|
+
* // policyDescription: "STRING_VALUE",
|
|
81
|
+
* // dataLocationConstraint: "STRING_VALUE",
|
|
82
|
+
* // tier: "STRING_VALUE",
|
|
83
|
+
* // estimatedCostTier: "STRING_VALUE",
|
|
84
|
+
* // policy: { // DisruptionPolicy
|
|
85
|
+
* // "<keys>": { // FailurePolicy
|
|
86
|
+
* // rtoInSecs: Number("int"), // required
|
|
87
|
+
* // rpoInSecs: Number("int"), // required
|
|
88
|
+
* // },
|
|
89
|
+
* // },
|
|
90
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
91
|
+
* // tags: { // TagMap
|
|
92
|
+
* // "<keys>": "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // tags: {
|
|
96
|
+
* // "<keys>": "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // resourceErrorsDetails: { // ResourceErrorsDetails
|
|
99
|
+
* // resourceErrors: [ // ResourceErrorList
|
|
100
|
+
* // { // ResourceError
|
|
101
|
+
* // logicalResourceId: "STRING_VALUE",
|
|
102
|
+
* // physicalResourceId: "STRING_VALUE",
|
|
103
|
+
* // reason: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // hasMoreErrors: true || false,
|
|
107
|
+
* // },
|
|
108
|
+
* // },
|
|
109
|
+
* // };
|
|
110
|
+
*
|
|
40
111
|
* ```
|
|
41
112
|
*
|
|
42
113
|
* @param StartAppAssessmentCommandInput - {@link StartAppAssessmentCommandInput}
|
|
@@ -73,6 +144,8 @@ export interface StartAppAssessmentCommandOutput extends StartAppAssessmentRespo
|
|
|
73
144
|
* @throws {@link ValidationException} (client fault)
|
|
74
145
|
* <p>This exception occurs when a request is not valid.</p>
|
|
75
146
|
*
|
|
147
|
+
* @throws {@link ResiliencehubServiceException}
|
|
148
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
76
149
|
*
|
|
77
150
|
*/
|
|
78
151
|
export declare class StartAppAssessmentCommand extends $Command<StartAppAssessmentCommandInput, StartAppAssessmentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>This exception occurs when a request is not valid.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ResiliencehubServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>This exception occurs when a request is not valid.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ResiliencehubServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -35,6 +35,25 @@ export interface UpdateAppCommandOutput extends UpdateAppResponse, __MetadataBea
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateAppCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateAppResponse
|
|
39
|
+
* // app: { // App
|
|
40
|
+
* // appArn: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // description: "STRING_VALUE",
|
|
43
|
+
* // policyArn: "STRING_VALUE",
|
|
44
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // status: "STRING_VALUE",
|
|
46
|
+
* // complianceStatus: "STRING_VALUE",
|
|
47
|
+
* // lastAppComplianceEvaluationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // resiliencyScore: Number("double"),
|
|
49
|
+
* // lastResiliencyScoreEvaluationTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // tags: { // TagMap
|
|
51
|
+
* // "<keys>": "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // assessmentSchedule: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
38
57
|
* ```
|
|
39
58
|
*
|
|
40
59
|
* @param UpdateAppCommandInput - {@link UpdateAppCommandInput}
|
|
@@ -67,6 +86,8 @@ export interface UpdateAppCommandOutput extends UpdateAppResponse, __MetadataBea
|
|
|
67
86
|
* @throws {@link ValidationException} (client fault)
|
|
68
87
|
* <p>This exception occurs when a request is not valid.</p>
|
|
69
88
|
*
|
|
89
|
+
* @throws {@link ResiliencehubServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
70
91
|
*
|
|
71
92
|
*/
|
|
72
93
|
export declare class UpdateAppCommand extends $Command<UpdateAppCommandInput, UpdateAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -42,6 +42,21 @@ export interface UpdateAppVersionAppComponentCommandOutput extends UpdateAppVers
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new UpdateAppVersionAppComponentCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // UpdateAppVersionAppComponentResponse
|
|
46
|
+
* // appArn: "STRING_VALUE", // required
|
|
47
|
+
* // appVersion: "STRING_VALUE", // required
|
|
48
|
+
* // appComponent: { // AppComponent
|
|
49
|
+
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // type: "STRING_VALUE", // required
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // additionalInfo: { // AdditionalInfoMap
|
|
53
|
+
* // "<keys>": [ // AdditionalInfoValueList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
45
60
|
* ```
|
|
46
61
|
*
|
|
47
62
|
* @param UpdateAppVersionAppComponentCommandInput - {@link UpdateAppVersionAppComponentCommandInput}
|
|
@@ -74,6 +89,8 @@ export interface UpdateAppVersionAppComponentCommandOutput extends UpdateAppVers
|
|
|
74
89
|
* @throws {@link ValidationException} (client fault)
|
|
75
90
|
* <p>This exception occurs when a request is not valid.</p>
|
|
76
91
|
*
|
|
92
|
+
* @throws {@link ResiliencehubServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
77
94
|
*
|
|
78
95
|
*/
|
|
79
96
|
export declare class UpdateAppVersionAppComponentCommand extends $Command<UpdateAppVersionAppComponentCommandInput, UpdateAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -41,6 +41,16 @@ export interface UpdateAppVersionCommandOutput extends UpdateAppVersionResponse,
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new UpdateAppVersionCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // UpdateAppVersionResponse
|
|
45
|
+
* // appArn: "STRING_VALUE", // required
|
|
46
|
+
* // appVersion: "STRING_VALUE", // required
|
|
47
|
+
* // additionalInfo: { // AdditionalInfoMap
|
|
48
|
+
* // "<keys>": [ // AdditionalInfoValueList
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
44
54
|
* ```
|
|
45
55
|
*
|
|
46
56
|
* @param UpdateAppVersionCommandInput - {@link UpdateAppVersionCommandInput}
|
|
@@ -73,6 +83,8 @@ export interface UpdateAppVersionCommandOutput extends UpdateAppVersionResponse,
|
|
|
73
83
|
* @throws {@link ValidationException} (client fault)
|
|
74
84
|
* <p>This exception occurs when a request is not valid.</p>
|
|
75
85
|
*
|
|
86
|
+
* @throws {@link ResiliencehubServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
76
88
|
*
|
|
77
89
|
*/
|
|
78
90
|
export declare class UpdateAppVersionCommand extends $Command<UpdateAppVersionCommandInput, UpdateAppVersionCommandOutput, ResiliencehubClientResolvedConfig> {
|