@aws-sdk/client-route53-recovery-readiness 3.48.0 → 3.49.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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/dist-types/Route53RecoveryReadiness.d.ts +33 -33
- package/dist-types/Route53RecoveryReadinessClient.d.ts +1 -1
- package/dist-types/commands/CreateCellCommand.d.ts +1 -1
- package/dist-types/commands/CreateCrossAccountAuthorizationCommand.d.ts +1 -1
- package/dist-types/commands/CreateReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateResourceSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCellCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +1 -1
- package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/GetCellCommand.d.ts +1 -1
- package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetRecoveryGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceSetCommand.d.ts +1 -1
- package/dist-types/commands/ListCellsCommand.d.ts +1 -1
- package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadinessChecksCommand.d.ts +1 -1
- package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourcesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCellCommand.d.ts +1 -1
- package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResourceSetCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +215 -233
- package/dist-types/ts3.4/models/models_0.d.ts +0 -6
- package/package.json +39 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 01/28/2022 ([#3263](https://github.com/aws/aws-sdk-js-v3/issues/3263)) ([c207cf4](https://github.com/aws/aws-sdk-js-v3/commit/c207cf4a70ba9ef14dc5b94da7883b0889d64918))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness
|
package/README.md
CHANGED
|
@@ -33,197 +33,197 @@ import { UpdateRecoveryGroupCommandInput, UpdateRecoveryGroupCommandOutput } fro
|
|
|
33
33
|
import { UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput } from "./commands/UpdateResourceSetCommand";
|
|
34
34
|
import { Route53RecoveryReadinessClient } from "./Route53RecoveryReadinessClient";
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* <p>Recovery readiness</p>
|
|
37
37
|
*/
|
|
38
38
|
export declare class Route53RecoveryReadiness extends Route53RecoveryReadinessClient {
|
|
39
39
|
/**
|
|
40
|
-
* Creates a
|
|
40
|
+
* <p>Creates a cell in an account.</p>
|
|
41
41
|
*/
|
|
42
42
|
createCell(args: CreateCellCommandInput, options?: __HttpHandlerOptions): Promise<CreateCellCommandOutput>;
|
|
43
43
|
createCell(args: CreateCellCommandInput, cb: (err: any, data?: CreateCellCommandOutput) => void): void;
|
|
44
44
|
createCell(args: CreateCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCellCommandOutput) => void): void;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* <p>Creates a cross-account readiness authorization. This lets you authorize another account to work with Route 53 Application Recovery Controller, for example, to check the readiness status of resources in a separate account.</p>
|
|
47
47
|
*/
|
|
48
48
|
createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCrossAccountAuthorizationCommandOutput>;
|
|
49
49
|
createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, cb: (err: any, data?: CreateCrossAccountAuthorizationCommandOutput) => void): void;
|
|
50
50
|
createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCrossAccountAuthorizationCommandOutput) => void): void;
|
|
51
51
|
/**
|
|
52
|
-
* Creates a
|
|
52
|
+
* <p>Creates a readiness check in an account. A readiness check monitors a resource set in your application, such as a set of Amazon Aurora instances, that Application Recovery Controller is auditing recovery readiness for. The audits run once every minute on every resource that's associated with a readiness check.</p>
|
|
53
53
|
*/
|
|
54
54
|
createReadinessCheck(args: CreateReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<CreateReadinessCheckCommandOutput>;
|
|
55
55
|
createReadinessCheck(args: CreateReadinessCheckCommandInput, cb: (err: any, data?: CreateReadinessCheckCommandOutput) => void): void;
|
|
56
56
|
createReadinessCheck(args: CreateReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReadinessCheckCommandOutput) => void): void;
|
|
57
57
|
/**
|
|
58
|
-
* Creates a
|
|
58
|
+
* <p>Creates a recovery group in an account. A recovery group corresponds to an application and includes a list of the cells that make up the application.</p>
|
|
59
59
|
*/
|
|
60
60
|
createRecoveryGroup(args: CreateRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecoveryGroupCommandOutput>;
|
|
61
61
|
createRecoveryGroup(args: CreateRecoveryGroupCommandInput, cb: (err: any, data?: CreateRecoveryGroupCommandOutput) => void): void;
|
|
62
62
|
createRecoveryGroup(args: CreateRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecoveryGroupCommandOutput) => void): void;
|
|
63
63
|
/**
|
|
64
|
-
* Creates a
|
|
64
|
+
* <p>Creates a resource set. A resource set is a set of resources of one type that span multiple cells. You can associate a resource set with a readiness check to monitor the resources for failover readiness.</p>
|
|
65
65
|
*/
|
|
66
66
|
createResourceSet(args: CreateResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceSetCommandOutput>;
|
|
67
67
|
createResourceSet(args: CreateResourceSetCommandInput, cb: (err: any, data?: CreateResourceSetCommandOutput) => void): void;
|
|
68
68
|
createResourceSet(args: CreateResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceSetCommandOutput) => void): void;
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* <p>Delete a cell. When successful, the response code is 204, with no response body.</p>
|
|
71
71
|
*/
|
|
72
72
|
deleteCell(args: DeleteCellCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCellCommandOutput>;
|
|
73
73
|
deleteCell(args: DeleteCellCommandInput, cb: (err: any, data?: DeleteCellCommandOutput) => void): void;
|
|
74
74
|
deleteCell(args: DeleteCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCellCommandOutput) => void): void;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* <p>Deletes cross account readiness authorization.</p>
|
|
77
77
|
*/
|
|
78
78
|
deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCrossAccountAuthorizationCommandOutput>;
|
|
79
79
|
deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, cb: (err: any, data?: DeleteCrossAccountAuthorizationCommandOutput) => void): void;
|
|
80
80
|
deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCrossAccountAuthorizationCommandOutput) => void): void;
|
|
81
81
|
/**
|
|
82
|
-
* Deletes
|
|
82
|
+
* <p>Deletes a readiness check.</p>
|
|
83
83
|
*/
|
|
84
84
|
deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReadinessCheckCommandOutput>;
|
|
85
85
|
deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, cb: (err: any, data?: DeleteReadinessCheckCommandOutput) => void): void;
|
|
86
86
|
deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReadinessCheckCommandOutput) => void): void;
|
|
87
87
|
/**
|
|
88
|
-
* Deletes
|
|
88
|
+
* <p>Deletes a recovery group.</p>
|
|
89
89
|
*/
|
|
90
90
|
deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryGroupCommandOutput>;
|
|
91
91
|
deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, cb: (err: any, data?: DeleteRecoveryGroupCommandOutput) => void): void;
|
|
92
92
|
deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryGroupCommandOutput) => void): void;
|
|
93
93
|
/**
|
|
94
|
-
* Deletes
|
|
94
|
+
* <p>Deletes a resource set.</p>
|
|
95
95
|
*/
|
|
96
96
|
deleteResourceSet(args: DeleteResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceSetCommandOutput>;
|
|
97
97
|
deleteResourceSet(args: DeleteResourceSetCommandInput, cb: (err: any, data?: DeleteResourceSetCommandOutput) => void): void;
|
|
98
98
|
deleteResourceSet(args: DeleteResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceSetCommandOutput) => void): void;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* <p>Gets recommendations about architecture designs for improving resiliency for an application, based on a recovery group.</p>
|
|
101
101
|
*/
|
|
102
102
|
getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetArchitectureRecommendationsCommandOutput>;
|
|
103
103
|
getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, cb: (err: any, data?: GetArchitectureRecommendationsCommandOutput) => void): void;
|
|
104
104
|
getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetArchitectureRecommendationsCommandOutput) => void): void;
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* <p>Gets information about a cell including cell name, cell Amazon Resource Name (ARN), ARNs of nested cells for this cell, and a list of those cell ARNs with their associated recovery group ARNs.</p>
|
|
107
107
|
*/
|
|
108
108
|
getCell(args: GetCellCommandInput, options?: __HttpHandlerOptions): Promise<GetCellCommandOutput>;
|
|
109
109
|
getCell(args: GetCellCommandInput, cb: (err: any, data?: GetCellCommandOutput) => void): void;
|
|
110
110
|
getCell(args: GetCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCellCommandOutput) => void): void;
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* <p>Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.</p>
|
|
113
113
|
*/
|
|
114
114
|
getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetCellReadinessSummaryCommandOutput>;
|
|
115
115
|
getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, cb: (err: any, data?: GetCellReadinessSummaryCommandOutput) => void): void;
|
|
116
116
|
getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCellReadinessSummaryCommandOutput) => void): void;
|
|
117
117
|
/**
|
|
118
|
-
*
|
|
118
|
+
* <p>Gets details about a readiness check.</p>
|
|
119
119
|
*/
|
|
120
120
|
getReadinessCheck(args: GetReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckCommandOutput>;
|
|
121
121
|
getReadinessCheck(args: GetReadinessCheckCommandInput, cb: (err: any, data?: GetReadinessCheckCommandOutput) => void): void;
|
|
122
122
|
getReadinessCheck(args: GetReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckCommandOutput) => void): void;
|
|
123
123
|
/**
|
|
124
|
-
*
|
|
124
|
+
* <p>Gets individual readiness status for a readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in the recovery group, use GetRecoveryGroupReadinessSummary.</p>
|
|
125
125
|
*/
|
|
126
126
|
getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckResourceStatusCommandOutput>;
|
|
127
127
|
getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, cb: (err: any, data?: GetReadinessCheckResourceStatusCommandOutput) => void): void;
|
|
128
128
|
getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckResourceStatusCommandOutput) => void): void;
|
|
129
129
|
/**
|
|
130
|
-
*
|
|
130
|
+
* <p>Gets the readiness status for an individual readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in a recovery group, use GetRecoveryGroupReadinessSummary.</p>
|
|
131
131
|
*/
|
|
132
132
|
getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckStatusCommandOutput>;
|
|
133
133
|
getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, cb: (err: any, data?: GetReadinessCheckStatusCommandOutput) => void): void;
|
|
134
134
|
getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckStatusCommandOutput) => void): void;
|
|
135
135
|
/**
|
|
136
|
-
*
|
|
136
|
+
* <p>Gets details about a recovery group, including a list of the cells that are included in it.</p>
|
|
137
137
|
*/
|
|
138
138
|
getRecoveryGroup(args: GetRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryGroupCommandOutput>;
|
|
139
139
|
getRecoveryGroup(args: GetRecoveryGroupCommandInput, cb: (err: any, data?: GetRecoveryGroupCommandOutput) => void): void;
|
|
140
140
|
getRecoveryGroup(args: GetRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryGroupCommandOutput) => void): void;
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
* <p>Displays a summary of information about a recovery group's readiness status. Includes the readiness checks for resources in the recovery group and the readiness status of each one.</p>
|
|
143
143
|
*/
|
|
144
144
|
getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryGroupReadinessSummaryCommandOutput>;
|
|
145
145
|
getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, cb: (err: any, data?: GetRecoveryGroupReadinessSummaryCommandOutput) => void): void;
|
|
146
146
|
getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryGroupReadinessSummaryCommandOutput) => void): void;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* <p>Displays the details about a resource set, including a list of the resources in the set.</p>
|
|
149
149
|
*/
|
|
150
150
|
getResourceSet(args: GetResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceSetCommandOutput>;
|
|
151
151
|
getResourceSet(args: GetResourceSetCommandInput, cb: (err: any, data?: GetResourceSetCommandOutput) => void): void;
|
|
152
152
|
getResourceSet(args: GetResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceSetCommandOutput) => void): void;
|
|
153
153
|
/**
|
|
154
|
-
*
|
|
154
|
+
* <p>Lists the cells for an account.</p>
|
|
155
155
|
*/
|
|
156
156
|
listCells(args: ListCellsCommandInput, options?: __HttpHandlerOptions): Promise<ListCellsCommandOutput>;
|
|
157
157
|
listCells(args: ListCellsCommandInput, cb: (err: any, data?: ListCellsCommandOutput) => void): void;
|
|
158
158
|
listCells(args: ListCellsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCellsCommandOutput) => void): void;
|
|
159
159
|
/**
|
|
160
|
-
*
|
|
160
|
+
* <p>Lists the cross-account readiness authorizations that are in place for an account.</p>
|
|
161
161
|
*/
|
|
162
162
|
listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrossAccountAuthorizationsCommandOutput>;
|
|
163
163
|
listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, cb: (err: any, data?: ListCrossAccountAuthorizationsCommandOutput) => void): void;
|
|
164
164
|
listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrossAccountAuthorizationsCommandOutput) => void): void;
|
|
165
165
|
/**
|
|
166
|
-
*
|
|
166
|
+
* <p>Lists the readiness checks for an account.</p>
|
|
167
167
|
*/
|
|
168
168
|
listReadinessChecks(args: ListReadinessChecksCommandInput, options?: __HttpHandlerOptions): Promise<ListReadinessChecksCommandOutput>;
|
|
169
169
|
listReadinessChecks(args: ListReadinessChecksCommandInput, cb: (err: any, data?: ListReadinessChecksCommandOutput) => void): void;
|
|
170
170
|
listReadinessChecks(args: ListReadinessChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadinessChecksCommandOutput) => void): void;
|
|
171
171
|
/**
|
|
172
|
-
*
|
|
172
|
+
* <p>Lists the recovery groups in an account.</p>
|
|
173
173
|
*/
|
|
174
174
|
listRecoveryGroups(args: ListRecoveryGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryGroupsCommandOutput>;
|
|
175
175
|
listRecoveryGroups(args: ListRecoveryGroupsCommandInput, cb: (err: any, data?: ListRecoveryGroupsCommandOutput) => void): void;
|
|
176
176
|
listRecoveryGroups(args: ListRecoveryGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryGroupsCommandOutput) => void): void;
|
|
177
177
|
/**
|
|
178
|
-
*
|
|
178
|
+
* <p>Lists the resource sets in an account.</p>
|
|
179
179
|
*/
|
|
180
180
|
listResourceSets(args: ListResourceSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceSetsCommandOutput>;
|
|
181
181
|
listResourceSets(args: ListResourceSetsCommandInput, cb: (err: any, data?: ListResourceSetsCommandOutput) => void): void;
|
|
182
182
|
listResourceSets(args: ListResourceSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceSetsCommandOutput) => void): void;
|
|
183
183
|
/**
|
|
184
|
-
*
|
|
184
|
+
* <p>Lists all readiness rules, or lists the readiness rules for a specific resource type.</p>
|
|
185
185
|
*/
|
|
186
186
|
listRules(args: ListRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesCommandOutput>;
|
|
187
187
|
listRules(args: ListRulesCommandInput, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
188
188
|
listRules(args: ListRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
189
189
|
/**
|
|
190
|
-
*
|
|
190
|
+
* <p>Lists the tags for a resource.</p>
|
|
191
191
|
*/
|
|
192
192
|
listTagsForResources(args: ListTagsForResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourcesCommandOutput>;
|
|
193
193
|
listTagsForResources(args: ListTagsForResourcesCommandInput, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
|
|
194
194
|
listTagsForResources(args: ListTagsForResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
|
|
195
195
|
/**
|
|
196
|
-
* Adds
|
|
196
|
+
* <p>Adds a tag to a resource.</p>
|
|
197
197
|
*/
|
|
198
198
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
199
199
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
200
200
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
201
201
|
/**
|
|
202
|
-
* Removes
|
|
202
|
+
* <p>Removes a tag from a resource.</p>
|
|
203
203
|
*/
|
|
204
204
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
205
205
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
206
206
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
207
207
|
/**
|
|
208
|
-
* Updates
|
|
208
|
+
* <p>Updates a cell to replace the list of nested cells with a new list of nested cells.</p>
|
|
209
209
|
*/
|
|
210
210
|
updateCell(args: UpdateCellCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCellCommandOutput>;
|
|
211
211
|
updateCell(args: UpdateCellCommandInput, cb: (err: any, data?: UpdateCellCommandOutput) => void): void;
|
|
212
212
|
updateCell(args: UpdateCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCellCommandOutput) => void): void;
|
|
213
213
|
/**
|
|
214
|
-
* Updates
|
|
214
|
+
* <p>Updates a readiness check.</p>
|
|
215
215
|
*/
|
|
216
216
|
updateReadinessCheck(args: UpdateReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReadinessCheckCommandOutput>;
|
|
217
217
|
updateReadinessCheck(args: UpdateReadinessCheckCommandInput, cb: (err: any, data?: UpdateReadinessCheckCommandOutput) => void): void;
|
|
218
218
|
updateReadinessCheck(args: UpdateReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReadinessCheckCommandOutput) => void): void;
|
|
219
219
|
/**
|
|
220
|
-
* Updates
|
|
220
|
+
* <p>Updates a recovery group.</p>
|
|
221
221
|
*/
|
|
222
222
|
updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecoveryGroupCommandOutput>;
|
|
223
223
|
updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, cb: (err: any, data?: UpdateRecoveryGroupCommandOutput) => void): void;
|
|
224
224
|
updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecoveryGroupCommandOutput) => void): void;
|
|
225
225
|
/**
|
|
226
|
-
* Updates
|
|
226
|
+
* <p>Updates a resource set.</p>
|
|
227
227
|
*/
|
|
228
228
|
updateResourceSet(args: UpdateResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceSetCommandOutput>;
|
|
229
229
|
updateResourceSet(args: UpdateResourceSetCommandInput, cb: (err: any, data?: UpdateResourceSetCommandOutput) => void): void;
|
|
@@ -158,7 +158,7 @@ declare type Route53RecoveryReadinessClientResolvedConfigType = __SmithyResolved
|
|
|
158
158
|
export interface Route53RecoveryReadinessClientResolvedConfig extends Route53RecoveryReadinessClientResolvedConfigType {
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* <p>Recovery readiness</p>
|
|
162
162
|
*/
|
|
163
163
|
export declare class Route53RecoveryReadinessClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Route53RecoveryReadinessClientResolvedConfig> {
|
|
164
164
|
/**
|
|
@@ -7,7 +7,7 @@ export interface CreateCellCommandInput extends CreateCellRequest {
|
|
|
7
7
|
export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Creates a
|
|
10
|
+
* <p>Creates a cell in an account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface CreateCrossAccountAuthorizationCommandInput extends CreateCross
|
|
|
7
7
|
export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCrossAccountAuthorizationResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Creates a cross-account readiness authorization. This lets you authorize another account to work with Route 53 Application Recovery Controller, for example, to check the readiness status of resources in a separate account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface CreateReadinessCheckCommandInput extends CreateReadinessCheckRe
|
|
|
7
7
|
export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Creates a
|
|
10
|
+
* <p>Creates a readiness check in an account. A readiness check monitors a resource set in your application, such as a set of Amazon Aurora instances, that Application Recovery Controller is auditing recovery readiness for. The audits run once every minute on every resource that's associated with a readiness check.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface CreateRecoveryGroupCommandInput extends CreateRecoveryGroupRequ
|
|
|
7
7
|
export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Creates a
|
|
10
|
+
* <p>Creates a recovery group in an account. A recovery group corresponds to an application and includes a list of the cells that make up the application.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface CreateResourceSetCommandInput extends CreateResourceSetRequest
|
|
|
7
7
|
export interface CreateResourceSetCommandOutput extends CreateResourceSetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Creates a
|
|
10
|
+
* <p>Creates a resource set. A resource set is a set of resources of one type that span multiple cells. You can associate a resource set with a readiness check to monitor the resources for failover readiness.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface DeleteCellCommandInput extends DeleteCellRequest {
|
|
|
7
7
|
export interface DeleteCellCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Delete a cell. When successful, the response code is 204, with no response body.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface DeleteCrossAccountAuthorizationCommandInput extends DeleteCross
|
|
|
7
7
|
export interface DeleteCrossAccountAuthorizationCommandOutput extends DeleteCrossAccountAuthorizationResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Deletes cross account readiness authorization.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface DeleteReadinessCheckCommandInput extends DeleteReadinessCheckRe
|
|
|
7
7
|
export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Deletes
|
|
10
|
+
* <p>Deletes a readiness check.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface DeleteRecoveryGroupCommandInput extends DeleteRecoveryGroupRequ
|
|
|
7
7
|
export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Deletes
|
|
10
|
+
* <p>Deletes a recovery group.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface DeleteResourceSetCommandInput extends DeleteResourceSetRequest
|
|
|
7
7
|
export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Deletes
|
|
10
|
+
* <p>Deletes a resource set.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetArchitectureRecommendationsCommandInput extends GetArchitect
|
|
|
7
7
|
export interface GetArchitectureRecommendationsCommandOutput extends GetArchitectureRecommendationsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets recommendations about architecture designs for improving resiliency for an application, based on a recovery group.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetCellCommandInput extends GetCellRequest {
|
|
|
7
7
|
export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets information about a cell including cell name, cell Amazon Resource Name (ARN), ARNs of nested cells for this cell, and a list of those cell ARNs with their associated recovery group ARNs.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetCellReadinessSummaryCommandInput extends GetCellReadinessSum
|
|
|
7
7
|
export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSummaryResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetReadinessCheckCommandInput extends GetReadinessCheckRequest
|
|
|
7
7
|
export interface GetReadinessCheckCommandOutput extends GetReadinessCheckResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets details about a readiness check.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetReadinessCheckResourceStatusCommandInput extends GetReadines
|
|
|
7
7
|
export interface GetReadinessCheckResourceStatusCommandOutput extends GetReadinessCheckResourceStatusResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets individual readiness status for a readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in the recovery group, use GetRecoveryGroupReadinessSummary.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetReadinessCheckStatusCommandInput extends GetReadinessCheckSt
|
|
|
7
7
|
export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckStatusResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets the readiness status for an individual readiness check. To see the overall readiness status for a recovery group, that considers the readiness status for all the readiness checks in a recovery group, use GetRecoveryGroupReadinessSummary.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetRecoveryGroupCommandInput extends GetRecoveryGroupRequest {
|
|
|
7
7
|
export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Gets details about a recovery group, including a list of the cells that are included in it.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetRecoveryGroupReadinessSummaryCommandInput extends GetRecover
|
|
|
7
7
|
export interface GetRecoveryGroupReadinessSummaryCommandOutput extends GetRecoveryGroupReadinessSummaryResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Displays a summary of information about a recovery group's readiness status. Includes the readiness checks for resources in the recovery group and the readiness status of each one.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetResourceSetCommandInput extends GetResourceSetRequest {
|
|
|
7
7
|
export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Displays the details about a resource set, including a list of the resources in the set.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListCellsCommandInput extends ListCellsRequest {
|
|
|
7
7
|
export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists the cells for an account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListCrossAccountAuthorizationsCommandInput extends ListCrossAcc
|
|
|
7
7
|
export interface ListCrossAccountAuthorizationsCommandOutput extends ListCrossAccountAuthorizationsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists the cross-account readiness authorizations that are in place for an account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListReadinessChecksCommandInput extends ListReadinessChecksRequ
|
|
|
7
7
|
export interface ListReadinessChecksCommandOutput extends ListReadinessChecksResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists the readiness checks for an account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListRecoveryGroupsCommandInput extends ListRecoveryGroupsReques
|
|
|
7
7
|
export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists the recovery groups in an account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListResourceSetsCommandInput extends ListResourceSetsRequest {
|
|
|
7
7
|
export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists the resource sets in an account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListRulesCommandInput extends ListRulesRequest {
|
|
|
7
7
|
export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists all readiness rules, or lists the readiness rules for a specific resource type.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListTagsForResourcesCommandInput extends ListTagsForResourcesRe
|
|
|
7
7
|
export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* <p>Lists the tags for a resource.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
7
7
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Adds
|
|
10
|
+
* <p>Adds a tag to a resource.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
7
7
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Removes
|
|
10
|
+
* <p>Removes a tag from a resource.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface UpdateCellCommandInput extends UpdateCellRequest {
|
|
|
7
7
|
export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Updates
|
|
10
|
+
* <p>Updates a cell to replace the list of nested cells with a new list of nested cells.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface UpdateReadinessCheckCommandInput extends UpdateReadinessCheckRe
|
|
|
7
7
|
export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Updates
|
|
10
|
+
* <p>Updates a readiness check.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface UpdateRecoveryGroupCommandInput extends UpdateRecoveryGroupRequ
|
|
|
7
7
|
export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Updates
|
|
10
|
+
* <p>Updates a recovery group.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|