@aws-sdk/client-route53-recovery-readiness 3.312.0 → 3.316.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/Route53RecoveryReadiness.js +36 -448
- package/dist-cjs/protocols/Aws_restJson1.js +406 -611
- package/dist-es/Route53RecoveryReadiness.js +36 -448
- package/dist-es/protocols/Aws_restJson1.js +357 -562
- package/dist-types/Route53RecoveryReadiness.d.ts +39 -69
- package/dist-types/ts3.4/Route53RecoveryReadiness.d.ts +4 -1
- package/package.json +6 -6
|
@@ -32,233 +32,203 @@ import { UpdateReadinessCheckCommandInput, UpdateReadinessCheckCommandOutput } f
|
|
|
32
32
|
import { UpdateRecoveryGroupCommandInput, UpdateRecoveryGroupCommandOutput } from "./commands/UpdateRecoveryGroupCommand";
|
|
33
33
|
import { UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput } from "./commands/UpdateResourceSetCommand";
|
|
34
34
|
import { Route53RecoveryReadinessClient } from "./Route53RecoveryReadinessClient";
|
|
35
|
-
|
|
36
|
-
* @public
|
|
37
|
-
* <p>Recovery readiness</p>
|
|
38
|
-
*/
|
|
39
|
-
export declare class Route53RecoveryReadiness extends Route53RecoveryReadinessClient {
|
|
35
|
+
export interface Route53RecoveryReadiness {
|
|
40
36
|
/**
|
|
41
|
-
* @
|
|
42
|
-
* <p>Creates a cell in an account.</p>
|
|
37
|
+
* @see {@link CreateCellCommand}
|
|
43
38
|
*/
|
|
44
39
|
createCell(args: CreateCellCommandInput, options?: __HttpHandlerOptions): Promise<CreateCellCommandOutput>;
|
|
45
40
|
createCell(args: CreateCellCommandInput, cb: (err: any, data?: CreateCellCommandOutput) => void): void;
|
|
46
41
|
createCell(args: CreateCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCellCommandOutput) => void): void;
|
|
47
42
|
/**
|
|
48
|
-
* @
|
|
49
|
-
* <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>
|
|
43
|
+
* @see {@link CreateCrossAccountAuthorizationCommand}
|
|
50
44
|
*/
|
|
51
45
|
createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCrossAccountAuthorizationCommandOutput>;
|
|
52
46
|
createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, cb: (err: any, data?: CreateCrossAccountAuthorizationCommandOutput) => void): void;
|
|
53
47
|
createCrossAccountAuthorization(args: CreateCrossAccountAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCrossAccountAuthorizationCommandOutput) => void): void;
|
|
54
48
|
/**
|
|
55
|
-
* @
|
|
56
|
-
* <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>
|
|
49
|
+
* @see {@link CreateReadinessCheckCommand}
|
|
57
50
|
*/
|
|
58
51
|
createReadinessCheck(args: CreateReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<CreateReadinessCheckCommandOutput>;
|
|
59
52
|
createReadinessCheck(args: CreateReadinessCheckCommandInput, cb: (err: any, data?: CreateReadinessCheckCommandOutput) => void): void;
|
|
60
53
|
createReadinessCheck(args: CreateReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReadinessCheckCommandOutput) => void): void;
|
|
61
54
|
/**
|
|
62
|
-
* @
|
|
63
|
-
* <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>
|
|
55
|
+
* @see {@link CreateRecoveryGroupCommand}
|
|
64
56
|
*/
|
|
65
57
|
createRecoveryGroup(args: CreateRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecoveryGroupCommandOutput>;
|
|
66
58
|
createRecoveryGroup(args: CreateRecoveryGroupCommandInput, cb: (err: any, data?: CreateRecoveryGroupCommandOutput) => void): void;
|
|
67
59
|
createRecoveryGroup(args: CreateRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecoveryGroupCommandOutput) => void): void;
|
|
68
60
|
/**
|
|
69
|
-
* @
|
|
70
|
-
* <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>
|
|
61
|
+
* @see {@link CreateResourceSetCommand}
|
|
71
62
|
*/
|
|
72
63
|
createResourceSet(args: CreateResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceSetCommandOutput>;
|
|
73
64
|
createResourceSet(args: CreateResourceSetCommandInput, cb: (err: any, data?: CreateResourceSetCommandOutput) => void): void;
|
|
74
65
|
createResourceSet(args: CreateResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceSetCommandOutput) => void): void;
|
|
75
66
|
/**
|
|
76
|
-
* @
|
|
77
|
-
* <p>Delete a cell. When successful, the response code is 204, with no response body.</p>
|
|
67
|
+
* @see {@link DeleteCellCommand}
|
|
78
68
|
*/
|
|
79
69
|
deleteCell(args: DeleteCellCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCellCommandOutput>;
|
|
80
70
|
deleteCell(args: DeleteCellCommandInput, cb: (err: any, data?: DeleteCellCommandOutput) => void): void;
|
|
81
71
|
deleteCell(args: DeleteCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCellCommandOutput) => void): void;
|
|
82
72
|
/**
|
|
83
|
-
* @
|
|
84
|
-
* <p>Deletes cross account readiness authorization.</p>
|
|
73
|
+
* @see {@link DeleteCrossAccountAuthorizationCommand}
|
|
85
74
|
*/
|
|
86
75
|
deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCrossAccountAuthorizationCommandOutput>;
|
|
87
76
|
deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, cb: (err: any, data?: DeleteCrossAccountAuthorizationCommandOutput) => void): void;
|
|
88
77
|
deleteCrossAccountAuthorization(args: DeleteCrossAccountAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCrossAccountAuthorizationCommandOutput) => void): void;
|
|
89
78
|
/**
|
|
90
|
-
* @
|
|
91
|
-
* <p>Deletes a readiness check.</p>
|
|
79
|
+
* @see {@link DeleteReadinessCheckCommand}
|
|
92
80
|
*/
|
|
93
81
|
deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReadinessCheckCommandOutput>;
|
|
94
82
|
deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, cb: (err: any, data?: DeleteReadinessCheckCommandOutput) => void): void;
|
|
95
83
|
deleteReadinessCheck(args: DeleteReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReadinessCheckCommandOutput) => void): void;
|
|
96
84
|
/**
|
|
97
|
-
* @
|
|
98
|
-
* <p>Deletes a recovery group.</p>
|
|
85
|
+
* @see {@link DeleteRecoveryGroupCommand}
|
|
99
86
|
*/
|
|
100
87
|
deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryGroupCommandOutput>;
|
|
101
88
|
deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, cb: (err: any, data?: DeleteRecoveryGroupCommandOutput) => void): void;
|
|
102
89
|
deleteRecoveryGroup(args: DeleteRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryGroupCommandOutput) => void): void;
|
|
103
90
|
/**
|
|
104
|
-
* @
|
|
105
|
-
* <p>Deletes a resource set.</p>
|
|
91
|
+
* @see {@link DeleteResourceSetCommand}
|
|
106
92
|
*/
|
|
107
93
|
deleteResourceSet(args: DeleteResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceSetCommandOutput>;
|
|
108
94
|
deleteResourceSet(args: DeleteResourceSetCommandInput, cb: (err: any, data?: DeleteResourceSetCommandOutput) => void): void;
|
|
109
95
|
deleteResourceSet(args: DeleteResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceSetCommandOutput) => void): void;
|
|
110
96
|
/**
|
|
111
|
-
* @
|
|
112
|
-
* <p>Gets recommendations about architecture designs for improving resiliency for an application, based on a recovery group.</p>
|
|
97
|
+
* @see {@link GetArchitectureRecommendationsCommand}
|
|
113
98
|
*/
|
|
114
99
|
getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetArchitectureRecommendationsCommandOutput>;
|
|
115
100
|
getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, cb: (err: any, data?: GetArchitectureRecommendationsCommandOutput) => void): void;
|
|
116
101
|
getArchitectureRecommendations(args: GetArchitectureRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetArchitectureRecommendationsCommandOutput) => void): void;
|
|
117
102
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <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>
|
|
103
|
+
* @see {@link GetCellCommand}
|
|
120
104
|
*/
|
|
121
105
|
getCell(args: GetCellCommandInput, options?: __HttpHandlerOptions): Promise<GetCellCommandOutput>;
|
|
122
106
|
getCell(args: GetCellCommandInput, cb: (err: any, data?: GetCellCommandOutput) => void): void;
|
|
123
107
|
getCell(args: GetCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCellCommandOutput) => void): void;
|
|
124
108
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>Gets readiness for a cell. Aggregates the readiness of all the resources that are associated with the cell into a single value.</p>
|
|
109
|
+
* @see {@link GetCellReadinessSummaryCommand}
|
|
127
110
|
*/
|
|
128
111
|
getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetCellReadinessSummaryCommandOutput>;
|
|
129
112
|
getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, cb: (err: any, data?: GetCellReadinessSummaryCommandOutput) => void): void;
|
|
130
113
|
getCellReadinessSummary(args: GetCellReadinessSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCellReadinessSummaryCommandOutput) => void): void;
|
|
131
114
|
/**
|
|
132
|
-
* @
|
|
133
|
-
* <p>Gets details about a readiness check.</p>
|
|
115
|
+
* @see {@link GetReadinessCheckCommand}
|
|
134
116
|
*/
|
|
135
117
|
getReadinessCheck(args: GetReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckCommandOutput>;
|
|
136
118
|
getReadinessCheck(args: GetReadinessCheckCommandInput, cb: (err: any, data?: GetReadinessCheckCommandOutput) => void): void;
|
|
137
119
|
getReadinessCheck(args: GetReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckCommandOutput) => void): void;
|
|
138
120
|
/**
|
|
139
|
-
* @
|
|
140
|
-
* <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>
|
|
121
|
+
* @see {@link GetReadinessCheckResourceStatusCommand}
|
|
141
122
|
*/
|
|
142
123
|
getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckResourceStatusCommandOutput>;
|
|
143
124
|
getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, cb: (err: any, data?: GetReadinessCheckResourceStatusCommandOutput) => void): void;
|
|
144
125
|
getReadinessCheckResourceStatus(args: GetReadinessCheckResourceStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckResourceStatusCommandOutput) => void): void;
|
|
145
126
|
/**
|
|
146
|
-
* @
|
|
147
|
-
* <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>
|
|
127
|
+
* @see {@link GetReadinessCheckStatusCommand}
|
|
148
128
|
*/
|
|
149
129
|
getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetReadinessCheckStatusCommandOutput>;
|
|
150
130
|
getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, cb: (err: any, data?: GetReadinessCheckStatusCommandOutput) => void): void;
|
|
151
131
|
getReadinessCheckStatus(args: GetReadinessCheckStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadinessCheckStatusCommandOutput) => void): void;
|
|
152
132
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Gets details about a recovery group, including a list of the cells that are included in it.</p>
|
|
133
|
+
* @see {@link GetRecoveryGroupCommand}
|
|
155
134
|
*/
|
|
156
135
|
getRecoveryGroup(args: GetRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryGroupCommandOutput>;
|
|
157
136
|
getRecoveryGroup(args: GetRecoveryGroupCommandInput, cb: (err: any, data?: GetRecoveryGroupCommandOutput) => void): void;
|
|
158
137
|
getRecoveryGroup(args: GetRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryGroupCommandOutput) => void): void;
|
|
159
138
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <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>
|
|
139
|
+
* @see {@link GetRecoveryGroupReadinessSummaryCommand}
|
|
162
140
|
*/
|
|
163
141
|
getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryGroupReadinessSummaryCommandOutput>;
|
|
164
142
|
getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, cb: (err: any, data?: GetRecoveryGroupReadinessSummaryCommandOutput) => void): void;
|
|
165
143
|
getRecoveryGroupReadinessSummary(args: GetRecoveryGroupReadinessSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryGroupReadinessSummaryCommandOutput) => void): void;
|
|
166
144
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Displays the details about a resource set, including a list of the resources in the set.</p>
|
|
145
|
+
* @see {@link GetResourceSetCommand}
|
|
169
146
|
*/
|
|
170
147
|
getResourceSet(args: GetResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceSetCommandOutput>;
|
|
171
148
|
getResourceSet(args: GetResourceSetCommandInput, cb: (err: any, data?: GetResourceSetCommandOutput) => void): void;
|
|
172
149
|
getResourceSet(args: GetResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceSetCommandOutput) => void): void;
|
|
173
150
|
/**
|
|
174
|
-
* @
|
|
175
|
-
* <p>Lists the cells for an account.</p>
|
|
151
|
+
* @see {@link ListCellsCommand}
|
|
176
152
|
*/
|
|
177
153
|
listCells(args: ListCellsCommandInput, options?: __HttpHandlerOptions): Promise<ListCellsCommandOutput>;
|
|
178
154
|
listCells(args: ListCellsCommandInput, cb: (err: any, data?: ListCellsCommandOutput) => void): void;
|
|
179
155
|
listCells(args: ListCellsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCellsCommandOutput) => void): void;
|
|
180
156
|
/**
|
|
181
|
-
* @
|
|
182
|
-
* <p>Lists the cross-account readiness authorizations that are in place for an account.</p>
|
|
157
|
+
* @see {@link ListCrossAccountAuthorizationsCommand}
|
|
183
158
|
*/
|
|
184
159
|
listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrossAccountAuthorizationsCommandOutput>;
|
|
185
160
|
listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, cb: (err: any, data?: ListCrossAccountAuthorizationsCommandOutput) => void): void;
|
|
186
161
|
listCrossAccountAuthorizations(args: ListCrossAccountAuthorizationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrossAccountAuthorizationsCommandOutput) => void): void;
|
|
187
162
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Lists the readiness checks for an account.</p>
|
|
163
|
+
* @see {@link ListReadinessChecksCommand}
|
|
190
164
|
*/
|
|
191
165
|
listReadinessChecks(args: ListReadinessChecksCommandInput, options?: __HttpHandlerOptions): Promise<ListReadinessChecksCommandOutput>;
|
|
192
166
|
listReadinessChecks(args: ListReadinessChecksCommandInput, cb: (err: any, data?: ListReadinessChecksCommandOutput) => void): void;
|
|
193
167
|
listReadinessChecks(args: ListReadinessChecksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadinessChecksCommandOutput) => void): void;
|
|
194
168
|
/**
|
|
195
|
-
* @
|
|
196
|
-
* <p>Lists the recovery groups in an account.</p>
|
|
169
|
+
* @see {@link ListRecoveryGroupsCommand}
|
|
197
170
|
*/
|
|
198
171
|
listRecoveryGroups(args: ListRecoveryGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryGroupsCommandOutput>;
|
|
199
172
|
listRecoveryGroups(args: ListRecoveryGroupsCommandInput, cb: (err: any, data?: ListRecoveryGroupsCommandOutput) => void): void;
|
|
200
173
|
listRecoveryGroups(args: ListRecoveryGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryGroupsCommandOutput) => void): void;
|
|
201
174
|
/**
|
|
202
|
-
* @
|
|
203
|
-
* <p>Lists the resource sets in an account.</p>
|
|
175
|
+
* @see {@link ListResourceSetsCommand}
|
|
204
176
|
*/
|
|
205
177
|
listResourceSets(args: ListResourceSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceSetsCommandOutput>;
|
|
206
178
|
listResourceSets(args: ListResourceSetsCommandInput, cb: (err: any, data?: ListResourceSetsCommandOutput) => void): void;
|
|
207
179
|
listResourceSets(args: ListResourceSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceSetsCommandOutput) => void): void;
|
|
208
180
|
/**
|
|
209
|
-
* @
|
|
210
|
-
* <p>Lists all readiness rules, or lists the readiness rules for a specific resource type.</p>
|
|
181
|
+
* @see {@link ListRulesCommand}
|
|
211
182
|
*/
|
|
212
183
|
listRules(args: ListRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesCommandOutput>;
|
|
213
184
|
listRules(args: ListRulesCommandInput, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
214
185
|
listRules(args: ListRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
215
186
|
/**
|
|
216
|
-
* @
|
|
217
|
-
* <p>Lists the tags for a resource.</p>
|
|
187
|
+
* @see {@link ListTagsForResourcesCommand}
|
|
218
188
|
*/
|
|
219
189
|
listTagsForResources(args: ListTagsForResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourcesCommandOutput>;
|
|
220
190
|
listTagsForResources(args: ListTagsForResourcesCommandInput, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
|
|
221
191
|
listTagsForResources(args: ListTagsForResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourcesCommandOutput) => void): void;
|
|
222
192
|
/**
|
|
223
|
-
* @
|
|
224
|
-
* <p>Adds a tag to a resource.</p>
|
|
193
|
+
* @see {@link TagResourceCommand}
|
|
225
194
|
*/
|
|
226
195
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
227
196
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
228
197
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
229
198
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Removes a tag from a resource.</p>
|
|
199
|
+
* @see {@link UntagResourceCommand}
|
|
232
200
|
*/
|
|
233
201
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
234
202
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
235
203
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
236
204
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Updates a cell to replace the list of nested cells with a new list of nested cells.</p>
|
|
205
|
+
* @see {@link UpdateCellCommand}
|
|
239
206
|
*/
|
|
240
207
|
updateCell(args: UpdateCellCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCellCommandOutput>;
|
|
241
208
|
updateCell(args: UpdateCellCommandInput, cb: (err: any, data?: UpdateCellCommandOutput) => void): void;
|
|
242
209
|
updateCell(args: UpdateCellCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCellCommandOutput) => void): void;
|
|
243
210
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Updates a readiness check.</p>
|
|
211
|
+
* @see {@link UpdateReadinessCheckCommand}
|
|
246
212
|
*/
|
|
247
213
|
updateReadinessCheck(args: UpdateReadinessCheckCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReadinessCheckCommandOutput>;
|
|
248
214
|
updateReadinessCheck(args: UpdateReadinessCheckCommandInput, cb: (err: any, data?: UpdateReadinessCheckCommandOutput) => void): void;
|
|
249
215
|
updateReadinessCheck(args: UpdateReadinessCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReadinessCheckCommandOutput) => void): void;
|
|
250
216
|
/**
|
|
251
|
-
* @
|
|
252
|
-
* <p>Updates a recovery group.</p>
|
|
217
|
+
* @see {@link UpdateRecoveryGroupCommand}
|
|
253
218
|
*/
|
|
254
219
|
updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecoveryGroupCommandOutput>;
|
|
255
220
|
updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, cb: (err: any, data?: UpdateRecoveryGroupCommandOutput) => void): void;
|
|
256
221
|
updateRecoveryGroup(args: UpdateRecoveryGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecoveryGroupCommandOutput) => void): void;
|
|
257
222
|
/**
|
|
258
|
-
* @
|
|
259
|
-
* <p>Updates a resource set.</p>
|
|
223
|
+
* @see {@link UpdateResourceSetCommand}
|
|
260
224
|
*/
|
|
261
225
|
updateResourceSet(args: UpdateResourceSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceSetCommandOutput>;
|
|
262
226
|
updateResourceSet(args: UpdateResourceSetCommandInput, cb: (err: any, data?: UpdateResourceSetCommandOutput) => void): void;
|
|
263
227
|
updateResourceSet(args: UpdateResourceSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceSetCommandOutput) => void): void;
|
|
264
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
* <p>Recovery readiness</p>
|
|
232
|
+
*/
|
|
233
|
+
export declare class Route53RecoveryReadiness extends Route53RecoveryReadinessClient implements Route53RecoveryReadiness {
|
|
234
|
+
}
|
|
@@ -128,7 +128,7 @@ import {
|
|
|
128
128
|
UpdateResourceSetCommandOutput,
|
|
129
129
|
} from "./commands/UpdateResourceSetCommand";
|
|
130
130
|
import { Route53RecoveryReadinessClient } from "./Route53RecoveryReadinessClient";
|
|
131
|
-
export
|
|
131
|
+
export interface Route53RecoveryReadiness {
|
|
132
132
|
createCell(
|
|
133
133
|
args: CreateCellCommandInput,
|
|
134
134
|
options?: __HttpHandlerOptions
|
|
@@ -546,3 +546,6 @@ export declare class Route53RecoveryReadiness extends Route53RecoveryReadinessCl
|
|
|
546
546
|
cb: (err: any, data?: UpdateResourceSetCommandOutput) => void
|
|
547
547
|
): void;
|
|
548
548
|
}
|
|
549
|
+
export declare class Route53RecoveryReadiness
|
|
550
|
+
extends Route53RecoveryReadinessClient
|
|
551
|
+
implements Route53RecoveryReadiness {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53-recovery-readiness",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53 Recovery Readiness Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|