@aws-sdk/client-resiliencehub 3.325.0 → 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-types/commands/AddDraftAppVersionResourceMappingsCommand.d.ts +24 -0
- package/dist-types/commands/CreateAppCommand.d.ts +21 -0
- package/dist-types/commands/CreateAppVersionAppComponentCommand.d.ts +17 -0
- package/dist-types/commands/CreateAppVersionResourceCommand.d.ts +42 -0
- 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/package.json +3 -3
|
@@ -48,6 +48,28 @@ export interface AddDraftAppVersionResourceMappingsCommandOutput extends AddDraf
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new AddDraftAppVersionResourceMappingsCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // AddDraftAppVersionResourceMappingsResponse
|
|
52
|
+
* // appArn: "STRING_VALUE", // required
|
|
53
|
+
* // appVersion: "STRING_VALUE", // required
|
|
54
|
+
* // resourceMappings: [ // ResourceMappingList // required
|
|
55
|
+
* // { // ResourceMapping
|
|
56
|
+
* // resourceName: "STRING_VALUE",
|
|
57
|
+
* // logicalStackName: "STRING_VALUE",
|
|
58
|
+
* // appRegistryAppName: "STRING_VALUE",
|
|
59
|
+
* // resourceGroupName: "STRING_VALUE",
|
|
60
|
+
* // mappingType: "STRING_VALUE", // required
|
|
61
|
+
* // physicalResourceId: { // PhysicalResourceId
|
|
62
|
+
* // identifier: "STRING_VALUE", // required
|
|
63
|
+
* // type: "STRING_VALUE", // required
|
|
64
|
+
* // awsRegion: "STRING_VALUE",
|
|
65
|
+
* // awsAccountId: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // terraformSourceName: "STRING_VALUE",
|
|
68
|
+
* // eksSourceName: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
51
73
|
* ```
|
|
52
74
|
*
|
|
53
75
|
* @param AddDraftAppVersionResourceMappingsCommandInput - {@link AddDraftAppVersionResourceMappingsCommandInput}
|
|
@@ -80,6 +102,8 @@ export interface AddDraftAppVersionResourceMappingsCommandOutput extends AddDraf
|
|
|
80
102
|
* @throws {@link ValidationException} (client fault)
|
|
81
103
|
* <p>This exception occurs when a request is not valid.</p>
|
|
82
104
|
*
|
|
105
|
+
* @throws {@link ResiliencehubServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
83
107
|
*
|
|
84
108
|
*/
|
|
85
109
|
export declare class AddDraftAppVersionResourceMappingsCommand extends $Command<AddDraftAppVersionResourceMappingsCommandInput, AddDraftAppVersionResourceMappingsCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -47,6 +47,25 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new CreateAppCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // CreateAppResponse
|
|
51
|
+
* // app: { // App
|
|
52
|
+
* // appArn: "STRING_VALUE", // required
|
|
53
|
+
* // name: "STRING_VALUE", // required
|
|
54
|
+
* // description: "STRING_VALUE",
|
|
55
|
+
* // policyArn: "STRING_VALUE",
|
|
56
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // status: "STRING_VALUE",
|
|
58
|
+
* // complianceStatus: "STRING_VALUE",
|
|
59
|
+
* // lastAppComplianceEvaluationTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // resiliencyScore: Number("double"),
|
|
61
|
+
* // lastResiliencyScoreEvaluationTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // tags: { // TagMap
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // assessmentSchedule: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
50
69
|
* ```
|
|
51
70
|
*
|
|
52
71
|
* @param CreateAppCommandInput - {@link CreateAppCommandInput}
|
|
@@ -83,6 +102,8 @@ export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBea
|
|
|
83
102
|
* @throws {@link ValidationException} (client fault)
|
|
84
103
|
* <p>This exception occurs when a request is not valid.</p>
|
|
85
104
|
*
|
|
105
|
+
* @throws {@link ResiliencehubServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
86
107
|
*
|
|
87
108
|
*/
|
|
88
109
|
export declare class CreateAppCommand extends $Command<CreateAppCommandInput, CreateAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -43,6 +43,21 @@ export interface CreateAppVersionAppComponentCommandOutput extends CreateAppVers
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreateAppVersionAppComponentCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateAppVersionAppComponentResponse
|
|
47
|
+
* // appArn: "STRING_VALUE", // required
|
|
48
|
+
* // appVersion: "STRING_VALUE", // required
|
|
49
|
+
* // appComponent: { // AppComponent
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // type: "STRING_VALUE", // required
|
|
52
|
+
* // id: "STRING_VALUE",
|
|
53
|
+
* // additionalInfo: { // AdditionalInfoMap
|
|
54
|
+
* // "<keys>": [ // AdditionalInfoValueList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
46
61
|
* ```
|
|
47
62
|
*
|
|
48
63
|
* @param CreateAppVersionAppComponentCommandInput - {@link CreateAppVersionAppComponentCommandInput}
|
|
@@ -79,6 +94,8 @@ export interface CreateAppVersionAppComponentCommandOutput extends CreateAppVers
|
|
|
79
94
|
* @throws {@link ValidationException} (client fault)
|
|
80
95
|
* <p>This exception occurs when a request is not valid.</p>
|
|
81
96
|
*
|
|
97
|
+
* @throws {@link ResiliencehubServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
82
99
|
*
|
|
83
100
|
*/
|
|
84
101
|
export declare class CreateAppVersionAppComponentCommand extends $Command<CreateAppVersionAppComponentCommandInput, CreateAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -70,6 +70,46 @@ export interface CreateAppVersionResourceCommandOutput extends CreateAppVersionR
|
|
|
70
70
|
* };
|
|
71
71
|
* const command = new CreateAppVersionResourceCommand(input);
|
|
72
72
|
* const response = await client.send(command);
|
|
73
|
+
* // { // CreateAppVersionResourceResponse
|
|
74
|
+
* // appArn: "STRING_VALUE", // required
|
|
75
|
+
* // appVersion: "STRING_VALUE", // required
|
|
76
|
+
* // physicalResource: { // PhysicalResource
|
|
77
|
+
* // resourceName: "STRING_VALUE",
|
|
78
|
+
* // logicalResourceId: { // LogicalResourceId
|
|
79
|
+
* // identifier: "STRING_VALUE", // required
|
|
80
|
+
* // logicalStackName: "STRING_VALUE",
|
|
81
|
+
* // resourceGroupName: "STRING_VALUE",
|
|
82
|
+
* // terraformSourceName: "STRING_VALUE",
|
|
83
|
+
* // eksSourceName: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // physicalResourceId: { // PhysicalResourceId
|
|
86
|
+
* // identifier: "STRING_VALUE", // required
|
|
87
|
+
* // type: "STRING_VALUE", // required
|
|
88
|
+
* // awsRegion: "STRING_VALUE",
|
|
89
|
+
* // awsAccountId: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // resourceType: "STRING_VALUE", // required
|
|
92
|
+
* // appComponents: [ // AppComponentList
|
|
93
|
+
* // { // AppComponent
|
|
94
|
+
* // name: "STRING_VALUE", // required
|
|
95
|
+
* // type: "STRING_VALUE", // required
|
|
96
|
+
* // id: "STRING_VALUE",
|
|
97
|
+
* // additionalInfo: { // AdditionalInfoMap
|
|
98
|
+
* // "<keys>": [ // AdditionalInfoValueList
|
|
99
|
+
* // "STRING_VALUE",
|
|
100
|
+
* // ],
|
|
101
|
+
* // },
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // additionalInfo: {
|
|
105
|
+
* // "<keys>": [
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // },
|
|
109
|
+
* // excluded: true || false,
|
|
110
|
+
* // },
|
|
111
|
+
* // };
|
|
112
|
+
*
|
|
73
113
|
* ```
|
|
74
114
|
*
|
|
75
115
|
* @param CreateAppVersionResourceCommandInput - {@link CreateAppVersionResourceCommandInput}
|
|
@@ -106,6 +146,8 @@ export interface CreateAppVersionResourceCommandOutput extends CreateAppVersionR
|
|
|
106
146
|
* @throws {@link ValidationException} (client fault)
|
|
107
147
|
* <p>This exception occurs when a request is not valid.</p>
|
|
108
148
|
*
|
|
149
|
+
* @throws {@link ResiliencehubServiceException}
|
|
150
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
109
151
|
*
|
|
110
152
|
*/
|
|
111
153
|
export declare class CreateAppVersionResourceCommand extends $Command<CreateAppVersionResourceCommandInput, CreateAppVersionResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -44,6 +44,34 @@ export interface CreateRecommendationTemplateCommandOutput extends CreateRecomme
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateRecommendationTemplateCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateRecommendationTemplateResponse
|
|
48
|
+
* // recommendationTemplate: { // RecommendationTemplate
|
|
49
|
+
* // templatesLocation: { // S3Location
|
|
50
|
+
* // bucket: "STRING_VALUE",
|
|
51
|
+
* // prefix: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // assessmentArn: "STRING_VALUE", // required
|
|
54
|
+
* // appArn: "STRING_VALUE",
|
|
55
|
+
* // recommendationIds: [ // RecommendationIdList
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // recommendationTypes: [ // RenderRecommendationTypeList // required
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // format: "STRING_VALUE", // required
|
|
62
|
+
* // recommendationTemplateArn: "STRING_VALUE", // required
|
|
63
|
+
* // message: "STRING_VALUE",
|
|
64
|
+
* // status: "STRING_VALUE", // required
|
|
65
|
+
* // name: "STRING_VALUE", // required
|
|
66
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
67
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
68
|
+
* // tags: { // TagMap
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // needsReplacements: true || false,
|
|
72
|
+
* // },
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
47
75
|
* ```
|
|
48
76
|
*
|
|
49
77
|
* @param CreateRecommendationTemplateCommandInput - {@link CreateRecommendationTemplateCommandInput}
|
|
@@ -80,6 +108,8 @@ export interface CreateRecommendationTemplateCommandOutput extends CreateRecomme
|
|
|
80
108
|
* @throws {@link ValidationException} (client fault)
|
|
81
109
|
* <p>This exception occurs when a request is not valid.</p>
|
|
82
110
|
*
|
|
111
|
+
* @throws {@link ResiliencehubServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
83
113
|
*
|
|
84
114
|
*/
|
|
85
115
|
export declare class CreateRecommendationTemplateCommand extends $Command<CreateRecommendationTemplateCommandInput, CreateRecommendationTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -44,6 +44,27 @@ export interface CreateResiliencyPolicyCommandOutput extends CreateResiliencyPol
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateResiliencyPolicyCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateResiliencyPolicyResponse
|
|
48
|
+
* // policy: { // ResiliencyPolicy
|
|
49
|
+
* // policyArn: "STRING_VALUE",
|
|
50
|
+
* // policyName: "STRING_VALUE",
|
|
51
|
+
* // policyDescription: "STRING_VALUE",
|
|
52
|
+
* // dataLocationConstraint: "STRING_VALUE",
|
|
53
|
+
* // tier: "STRING_VALUE",
|
|
54
|
+
* // estimatedCostTier: "STRING_VALUE",
|
|
55
|
+
* // policy: { // DisruptionPolicy
|
|
56
|
+
* // "<keys>": { // FailurePolicy
|
|
57
|
+
* // rtoInSecs: Number("int"), // required
|
|
58
|
+
* // rpoInSecs: Number("int"), // required
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // tags: { // TagMap
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
47
68
|
* ```
|
|
48
69
|
*
|
|
49
70
|
* @param CreateResiliencyPolicyCommandInput - {@link CreateResiliencyPolicyCommandInput}
|
|
@@ -77,6 +98,8 @@ export interface CreateResiliencyPolicyCommandOutput extends CreateResiliencyPol
|
|
|
77
98
|
* @throws {@link ValidationException} (client fault)
|
|
78
99
|
* <p>This exception occurs when a request is not valid.</p>
|
|
79
100
|
*
|
|
101
|
+
* @throws {@link ResiliencehubServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
80
103
|
*
|
|
81
104
|
*/
|
|
82
105
|
export declare class CreateResiliencyPolicyCommand extends $Command<CreateResiliencyPolicyCommandInput, CreateResiliencyPolicyCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface DeleteAppAssessmentCommandOutput extends DeleteAppAssessmentRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteAppAssessmentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteAppAssessmentResponse
|
|
37
|
+
* // assessmentArn: "STRING_VALUE", // required
|
|
38
|
+
* // assessmentStatus: "STRING_VALUE", // required
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param DeleteAppAssessmentCommandInput - {@link DeleteAppAssessmentCommandInput}
|
|
@@ -65,6 +70,8 @@ export interface DeleteAppAssessmentCommandOutput extends DeleteAppAssessmentRes
|
|
|
65
70
|
* @throws {@link ValidationException} (client fault)
|
|
66
71
|
* <p>This exception occurs when a request is not valid.</p>
|
|
67
72
|
*
|
|
73
|
+
* @throws {@link ResiliencehubServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
68
75
|
*
|
|
69
76
|
*/
|
|
70
77
|
export declare class DeleteAppAssessmentCommand extends $Command<DeleteAppAssessmentCommandInput, DeleteAppAssessmentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteAppCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteAppResponse
|
|
38
|
+
* // appArn: "STRING_VALUE", // required
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param DeleteAppCommandInput - {@link DeleteAppCommandInput}
|
|
@@ -61,6 +65,8 @@ export interface DeleteAppCommandOutput extends DeleteAppResponse, __MetadataBea
|
|
|
61
65
|
* @throws {@link ValidationException} (client fault)
|
|
62
66
|
* <p>This exception occurs when a request is not valid.</p>
|
|
63
67
|
*
|
|
68
|
+
* @throws {@link ResiliencehubServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
64
70
|
*
|
|
65
71
|
*/
|
|
66
72
|
export declare class DeleteAppCommand extends $Command<DeleteAppCommandInput, DeleteAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -40,6 +40,23 @@ export interface DeleteAppInputSourceCommandOutput extends DeleteAppInputSourceR
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DeleteAppInputSourceCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DeleteAppInputSourceResponse
|
|
44
|
+
* // appArn: "STRING_VALUE",
|
|
45
|
+
* // appInputSource: { // AppInputSource
|
|
46
|
+
* // sourceName: "STRING_VALUE",
|
|
47
|
+
* // importType: "STRING_VALUE", // required
|
|
48
|
+
* // sourceArn: "STRING_VALUE",
|
|
49
|
+
* // terraformSource: { // TerraformSource
|
|
50
|
+
* // s3StateFileUrl: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // resourceCount: Number("int"),
|
|
53
|
+
* // eksSourceClusterNamespace: { // EksSourceClusterNamespace
|
|
54
|
+
* // eksClusterArn: "STRING_VALUE", // required
|
|
55
|
+
* // namespace: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
43
60
|
* ```
|
|
44
61
|
*
|
|
45
62
|
* @param DeleteAppInputSourceCommandInput - {@link DeleteAppInputSourceCommandInput}
|
|
@@ -72,6 +89,8 @@ export interface DeleteAppInputSourceCommandOutput extends DeleteAppInputSourceR
|
|
|
72
89
|
* @throws {@link ValidationException} (client fault)
|
|
73
90
|
* <p>This exception occurs when a request is not valid.</p>
|
|
74
91
|
*
|
|
92
|
+
* @throws {@link ResiliencehubServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
75
94
|
*
|
|
76
95
|
*/
|
|
77
96
|
export declare class DeleteAppInputSourceCommand extends $Command<DeleteAppInputSourceCommandInput, DeleteAppInputSourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -43,6 +43,21 @@ export interface DeleteAppVersionAppComponentCommandOutput extends DeleteAppVers
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new DeleteAppVersionAppComponentCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // DeleteAppVersionAppComponentResponse
|
|
47
|
+
* // appArn: "STRING_VALUE", // required
|
|
48
|
+
* // appVersion: "STRING_VALUE", // required
|
|
49
|
+
* // appComponent: { // AppComponent
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // type: "STRING_VALUE", // required
|
|
52
|
+
* // id: "STRING_VALUE",
|
|
53
|
+
* // additionalInfo: { // AdditionalInfoMap
|
|
54
|
+
* // "<keys>": [ // AdditionalInfoValueList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
46
61
|
* ```
|
|
47
62
|
*
|
|
48
63
|
* @param DeleteAppVersionAppComponentCommandInput - {@link DeleteAppVersionAppComponentCommandInput}
|
|
@@ -75,6 +90,8 @@ export interface DeleteAppVersionAppComponentCommandOutput extends DeleteAppVers
|
|
|
75
90
|
* @throws {@link ValidationException} (client fault)
|
|
76
91
|
* <p>This exception occurs when a request is not valid.</p>
|
|
77
92
|
*
|
|
93
|
+
* @throws {@link ResiliencehubServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
78
95
|
*
|
|
79
96
|
*/
|
|
80
97
|
export declare class DeleteAppVersionAppComponentCommand extends $Command<DeleteAppVersionAppComponentCommandInput, DeleteAppVersionAppComponentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -56,6 +56,46 @@ export interface DeleteAppVersionResourceCommandOutput extends DeleteAppVersionR
|
|
|
56
56
|
* };
|
|
57
57
|
* const command = new DeleteAppVersionResourceCommand(input);
|
|
58
58
|
* const response = await client.send(command);
|
|
59
|
+
* // { // DeleteAppVersionResourceResponse
|
|
60
|
+
* // appArn: "STRING_VALUE", // required
|
|
61
|
+
* // appVersion: "STRING_VALUE", // required
|
|
62
|
+
* // physicalResource: { // PhysicalResource
|
|
63
|
+
* // resourceName: "STRING_VALUE",
|
|
64
|
+
* // logicalResourceId: { // LogicalResourceId
|
|
65
|
+
* // identifier: "STRING_VALUE", // required
|
|
66
|
+
* // logicalStackName: "STRING_VALUE",
|
|
67
|
+
* // resourceGroupName: "STRING_VALUE",
|
|
68
|
+
* // terraformSourceName: "STRING_VALUE",
|
|
69
|
+
* // eksSourceName: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // physicalResourceId: { // PhysicalResourceId
|
|
72
|
+
* // identifier: "STRING_VALUE", // required
|
|
73
|
+
* // type: "STRING_VALUE", // required
|
|
74
|
+
* // awsRegion: "STRING_VALUE",
|
|
75
|
+
* // awsAccountId: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // resourceType: "STRING_VALUE", // required
|
|
78
|
+
* // appComponents: [ // AppComponentList
|
|
79
|
+
* // { // AppComponent
|
|
80
|
+
* // name: "STRING_VALUE", // required
|
|
81
|
+
* // type: "STRING_VALUE", // required
|
|
82
|
+
* // id: "STRING_VALUE",
|
|
83
|
+
* // additionalInfo: { // AdditionalInfoMap
|
|
84
|
+
* // "<keys>": [ // AdditionalInfoValueList
|
|
85
|
+
* // "STRING_VALUE",
|
|
86
|
+
* // ],
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // additionalInfo: {
|
|
91
|
+
* // "<keys>": [
|
|
92
|
+
* // "STRING_VALUE",
|
|
93
|
+
* // ],
|
|
94
|
+
* // },
|
|
95
|
+
* // excluded: true || false,
|
|
96
|
+
* // },
|
|
97
|
+
* // };
|
|
98
|
+
*
|
|
59
99
|
* ```
|
|
60
100
|
*
|
|
61
101
|
* @param DeleteAppVersionResourceCommandInput - {@link DeleteAppVersionResourceCommandInput}
|
|
@@ -88,6 +128,8 @@ export interface DeleteAppVersionResourceCommandOutput extends DeleteAppVersionR
|
|
|
88
128
|
* @throws {@link ValidationException} (client fault)
|
|
89
129
|
* <p>This exception occurs when a request is not valid.</p>
|
|
90
130
|
*
|
|
131
|
+
* @throws {@link ResiliencehubServiceException}
|
|
132
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
91
133
|
*
|
|
92
134
|
*/
|
|
93
135
|
export declare class DeleteAppVersionResourceCommand extends $Command<DeleteAppVersionResourceCommandInput, DeleteAppVersionResourceCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface DeleteRecommendationTemplateCommandOutput extends DeleteRecomme
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteRecommendationTemplateCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteRecommendationTemplateResponse
|
|
37
|
+
* // recommendationTemplateArn: "STRING_VALUE", // required
|
|
38
|
+
* // status: "STRING_VALUE", // required
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param DeleteRecommendationTemplateCommandInput - {@link DeleteRecommendationTemplateCommandInput}
|
|
@@ -59,6 +64,8 @@ export interface DeleteRecommendationTemplateCommandOutput extends DeleteRecomme
|
|
|
59
64
|
* @throws {@link ValidationException} (client fault)
|
|
60
65
|
* <p>This exception occurs when a request is not valid.</p>
|
|
61
66
|
*
|
|
67
|
+
* @throws {@link ResiliencehubServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
62
69
|
*
|
|
63
70
|
*/
|
|
64
71
|
export declare class DeleteRecommendationTemplateCommand extends $Command<DeleteRecommendationTemplateCommandInput, DeleteRecommendationTemplateCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface DeleteResiliencyPolicyCommandOutput extends DeleteResiliencyPol
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteResiliencyPolicyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteResiliencyPolicyResponse
|
|
36
|
+
* // policyArn: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param DeleteResiliencyPolicyCommandInput - {@link DeleteResiliencyPolicyCommandInput}
|
|
@@ -64,6 +68,8 @@ export interface DeleteResiliencyPolicyCommandOutput extends DeleteResiliencyPol
|
|
|
64
68
|
* @throws {@link ValidationException} (client fault)
|
|
65
69
|
* <p>This exception occurs when a request is not valid.</p>
|
|
66
70
|
*
|
|
71
|
+
* @throws {@link ResiliencehubServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
67
73
|
*
|
|
68
74
|
*/
|
|
69
75
|
export declare class DeleteResiliencyPolicyCommand extends $Command<DeleteResiliencyPolicyCommandInput, DeleteResiliencyPolicyCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -31,6 +31,77 @@ export interface DescribeAppAssessmentCommandOutput extends DescribeAppAssessmen
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeAppAssessmentCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeAppAssessmentResponse
|
|
35
|
+
* // assessment: { // AppAssessment
|
|
36
|
+
* // appArn: "STRING_VALUE",
|
|
37
|
+
* // appVersion: "STRING_VALUE",
|
|
38
|
+
* // invoker: "STRING_VALUE", // required
|
|
39
|
+
* // cost: { // Cost
|
|
40
|
+
* // amount: Number("double"), // required
|
|
41
|
+
* // currency: "STRING_VALUE", // required
|
|
42
|
+
* // frequency: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // resiliencyScore: { // ResiliencyScore
|
|
45
|
+
* // score: Number("double"), // required
|
|
46
|
+
* // disruptionScore: { // DisruptionResiliencyScore // required
|
|
47
|
+
* // "<keys>": Number("double"),
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // compliance: { // AssessmentCompliance
|
|
51
|
+
* // "<keys>": { // DisruptionCompliance
|
|
52
|
+
* // achievableRtoInSecs: Number("int"),
|
|
53
|
+
* // currentRtoInSecs: Number("int"),
|
|
54
|
+
* // rtoReferenceId: "STRING_VALUE",
|
|
55
|
+
* // rtoDescription: "STRING_VALUE",
|
|
56
|
+
* // currentRpoInSecs: Number("int"),
|
|
57
|
+
* // rpoReferenceId: "STRING_VALUE",
|
|
58
|
+
* // rpoDescription: "STRING_VALUE",
|
|
59
|
+
* // complianceStatus: "STRING_VALUE", // required
|
|
60
|
+
* // achievableRpoInSecs: Number("int"),
|
|
61
|
+
* // message: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // complianceStatus: "STRING_VALUE",
|
|
65
|
+
* // assessmentStatus: "STRING_VALUE", // required
|
|
66
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
67
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
68
|
+
* // message: "STRING_VALUE",
|
|
69
|
+
* // assessmentName: "STRING_VALUE",
|
|
70
|
+
* // assessmentArn: "STRING_VALUE", // required
|
|
71
|
+
* // policy: { // ResiliencyPolicy
|
|
72
|
+
* // policyArn: "STRING_VALUE",
|
|
73
|
+
* // policyName: "STRING_VALUE",
|
|
74
|
+
* // policyDescription: "STRING_VALUE",
|
|
75
|
+
* // dataLocationConstraint: "STRING_VALUE",
|
|
76
|
+
* // tier: "STRING_VALUE",
|
|
77
|
+
* // estimatedCostTier: "STRING_VALUE",
|
|
78
|
+
* // policy: { // DisruptionPolicy
|
|
79
|
+
* // "<keys>": { // FailurePolicy
|
|
80
|
+
* // rtoInSecs: Number("int"), // required
|
|
81
|
+
* // rpoInSecs: Number("int"), // required
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
85
|
+
* // tags: { // TagMap
|
|
86
|
+
* // "<keys>": "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // tags: {
|
|
90
|
+
* // "<keys>": "STRING_VALUE",
|
|
91
|
+
* // },
|
|
92
|
+
* // resourceErrorsDetails: { // ResourceErrorsDetails
|
|
93
|
+
* // resourceErrors: [ // ResourceErrorList
|
|
94
|
+
* // { // ResourceError
|
|
95
|
+
* // logicalResourceId: "STRING_VALUE",
|
|
96
|
+
* // physicalResourceId: "STRING_VALUE",
|
|
97
|
+
* // reason: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
100
|
+
* // hasMoreErrors: true || false,
|
|
101
|
+
* // },
|
|
102
|
+
* // },
|
|
103
|
+
* // };
|
|
104
|
+
*
|
|
34
105
|
* ```
|
|
35
106
|
*
|
|
36
107
|
* @param DescribeAppAssessmentCommandInput - {@link DescribeAppAssessmentCommandInput}
|
|
@@ -57,6 +128,8 @@ export interface DescribeAppAssessmentCommandOutput extends DescribeAppAssessmen
|
|
|
57
128
|
* @throws {@link ValidationException} (client fault)
|
|
58
129
|
* <p>This exception occurs when a request is not valid.</p>
|
|
59
130
|
*
|
|
131
|
+
* @throws {@link ResiliencehubServiceException}
|
|
132
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
60
133
|
*
|
|
61
134
|
*/
|
|
62
135
|
export declare class DescribeAppAssessmentCommand extends $Command<DescribeAppAssessmentCommandInput, DescribeAppAssessmentCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -31,6 +31,25 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeAppCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeAppResponse
|
|
35
|
+
* // app: { // App
|
|
36
|
+
* // appArn: "STRING_VALUE", // required
|
|
37
|
+
* // name: "STRING_VALUE", // required
|
|
38
|
+
* // description: "STRING_VALUE",
|
|
39
|
+
* // policyArn: "STRING_VALUE",
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // complianceStatus: "STRING_VALUE",
|
|
43
|
+
* // lastAppComplianceEvaluationTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // resiliencyScore: Number("double"),
|
|
45
|
+
* // lastResiliencyScoreEvaluationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // tags: { // TagMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // assessmentSchedule: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
34
53
|
* ```
|
|
35
54
|
*
|
|
36
55
|
* @param DescribeAppCommandInput - {@link DescribeAppCommandInput}
|
|
@@ -57,6 +76,8 @@ export interface DescribeAppCommandOutput extends DescribeAppResponse, __Metadat
|
|
|
57
76
|
* @throws {@link ValidationException} (client fault)
|
|
58
77
|
* <p>This exception occurs when a request is not valid.</p>
|
|
59
78
|
*
|
|
79
|
+
* @throws {@link ResiliencehubServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Resiliencehub service.</p>
|
|
60
81
|
*
|
|
61
82
|
*/
|
|
62
83
|
export declare class DescribeAppCommand extends $Command<DescribeAppCommandInput, DescribeAppCommandOutput, ResiliencehubClientResolvedConfig> {
|
|
@@ -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> {
|