@aws-sdk/client-route53-recovery-control-config 3.1086.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/Route53RecoveryControlConfig.d.ts +93 -120
- package/dist-types/ts3.4/Route53RecoveryControlConfigClient.d.ts +6 -17
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateControlPanelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateRoutingControlCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSafetyRuleCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteControlPanelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteRoutingControlCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSafetyRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeControlPanelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeRoutingControlCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeSafetyRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAssociatedRoute53HealthChecksCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListControlPanelsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRoutingControlsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSafetyRulesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateControlPanelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateRoutingControlCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSafetyRuleCommand.d.ts +3 -8
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForClusterCreated.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForClusterDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForControlPanelCreated.d.ts +3 -6
- package/dist-types/ts3.4/waiters/waitForControlPanelDeleted.d.ts +3 -6
- package/dist-types/ts3.4/waiters/waitForRoutingControlCreated.d.ts +3 -6
- package/dist-types/ts3.4/waiters/waitForRoutingControlDeleted.d.ts +3 -6
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -81,10 +81,7 @@ import {
|
|
|
81
81
|
ListTagsForResourceCommandInput,
|
|
82
82
|
ListTagsForResourceCommandOutput,
|
|
83
83
|
} from "./commands/ListTagsForResourceCommand";
|
|
84
|
-
import {
|
|
85
|
-
TagResourceCommandInput,
|
|
86
|
-
TagResourceCommandOutput,
|
|
87
|
-
} from "./commands/TagResourceCommand";
|
|
84
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
88
85
|
import {
|
|
89
86
|
UntagResourceCommandInput,
|
|
90
87
|
UntagResourceCommandOutput,
|
|
@@ -110,373 +107,367 @@ import { Route53RecoveryControlConfigClient } from "./Route53RecoveryControlConf
|
|
|
110
107
|
export interface Route53RecoveryControlConfig {
|
|
111
108
|
createCluster(
|
|
112
109
|
args: CreateClusterCommandInput,
|
|
113
|
-
options?: __HttpHandlerOptions
|
|
110
|
+
options?: __HttpHandlerOptions,
|
|
114
111
|
): Promise<CreateClusterCommandOutput>;
|
|
115
112
|
createCluster(
|
|
116
113
|
args: CreateClusterCommandInput,
|
|
117
|
-
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
114
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void,
|
|
118
115
|
): void;
|
|
119
116
|
createCluster(
|
|
120
117
|
args: CreateClusterCommandInput,
|
|
121
118
|
options: __HttpHandlerOptions,
|
|
122
|
-
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
119
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void,
|
|
123
120
|
): void;
|
|
124
121
|
createControlPanel(
|
|
125
122
|
args: CreateControlPanelCommandInput,
|
|
126
|
-
options?: __HttpHandlerOptions
|
|
123
|
+
options?: __HttpHandlerOptions,
|
|
127
124
|
): Promise<CreateControlPanelCommandOutput>;
|
|
128
125
|
createControlPanel(
|
|
129
126
|
args: CreateControlPanelCommandInput,
|
|
130
|
-
cb: (err: any, data?: CreateControlPanelCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: CreateControlPanelCommandOutput) => void,
|
|
131
128
|
): void;
|
|
132
129
|
createControlPanel(
|
|
133
130
|
args: CreateControlPanelCommandInput,
|
|
134
131
|
options: __HttpHandlerOptions,
|
|
135
|
-
cb: (err: any, data?: CreateControlPanelCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: CreateControlPanelCommandOutput) => void,
|
|
136
133
|
): void;
|
|
137
134
|
createRoutingControl(
|
|
138
135
|
args: CreateRoutingControlCommandInput,
|
|
139
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
140
137
|
): Promise<CreateRoutingControlCommandOutput>;
|
|
141
138
|
createRoutingControl(
|
|
142
139
|
args: CreateRoutingControlCommandInput,
|
|
143
|
-
cb: (err: any, data?: CreateRoutingControlCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: CreateRoutingControlCommandOutput) => void,
|
|
144
141
|
): void;
|
|
145
142
|
createRoutingControl(
|
|
146
143
|
args: CreateRoutingControlCommandInput,
|
|
147
144
|
options: __HttpHandlerOptions,
|
|
148
|
-
cb: (err: any, data?: CreateRoutingControlCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: CreateRoutingControlCommandOutput) => void,
|
|
149
146
|
): void;
|
|
150
147
|
createSafetyRule(): Promise<CreateSafetyRuleCommandOutput>;
|
|
151
148
|
createSafetyRule(
|
|
152
149
|
args: CreateSafetyRuleCommandInput,
|
|
153
|
-
options?: __HttpHandlerOptions
|
|
150
|
+
options?: __HttpHandlerOptions,
|
|
154
151
|
): Promise<CreateSafetyRuleCommandOutput>;
|
|
155
152
|
createSafetyRule(
|
|
156
153
|
args: CreateSafetyRuleCommandInput,
|
|
157
|
-
cb: (err: any, data?: CreateSafetyRuleCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: CreateSafetyRuleCommandOutput) => void,
|
|
158
155
|
): void;
|
|
159
156
|
createSafetyRule(
|
|
160
157
|
args: CreateSafetyRuleCommandInput,
|
|
161
158
|
options: __HttpHandlerOptions,
|
|
162
|
-
cb: (err: any, data?: CreateSafetyRuleCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: CreateSafetyRuleCommandOutput) => void,
|
|
163
160
|
): void;
|
|
164
161
|
deleteCluster(
|
|
165
162
|
args: DeleteClusterCommandInput,
|
|
166
|
-
options?: __HttpHandlerOptions
|
|
163
|
+
options?: __HttpHandlerOptions,
|
|
167
164
|
): Promise<DeleteClusterCommandOutput>;
|
|
168
165
|
deleteCluster(
|
|
169
166
|
args: DeleteClusterCommandInput,
|
|
170
|
-
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: DeleteClusterCommandOutput) => void,
|
|
171
168
|
): void;
|
|
172
169
|
deleteCluster(
|
|
173
170
|
args: DeleteClusterCommandInput,
|
|
174
171
|
options: __HttpHandlerOptions,
|
|
175
|
-
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
172
|
+
cb: (err: any, data?: DeleteClusterCommandOutput) => void,
|
|
176
173
|
): void;
|
|
177
174
|
deleteControlPanel(
|
|
178
175
|
args: DeleteControlPanelCommandInput,
|
|
179
|
-
options?: __HttpHandlerOptions
|
|
176
|
+
options?: __HttpHandlerOptions,
|
|
180
177
|
): Promise<DeleteControlPanelCommandOutput>;
|
|
181
178
|
deleteControlPanel(
|
|
182
179
|
args: DeleteControlPanelCommandInput,
|
|
183
|
-
cb: (err: any, data?: DeleteControlPanelCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: DeleteControlPanelCommandOutput) => void,
|
|
184
181
|
): void;
|
|
185
182
|
deleteControlPanel(
|
|
186
183
|
args: DeleteControlPanelCommandInput,
|
|
187
184
|
options: __HttpHandlerOptions,
|
|
188
|
-
cb: (err: any, data?: DeleteControlPanelCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: DeleteControlPanelCommandOutput) => void,
|
|
189
186
|
): void;
|
|
190
187
|
deleteRoutingControl(
|
|
191
188
|
args: DeleteRoutingControlCommandInput,
|
|
192
|
-
options?: __HttpHandlerOptions
|
|
189
|
+
options?: __HttpHandlerOptions,
|
|
193
190
|
): Promise<DeleteRoutingControlCommandOutput>;
|
|
194
191
|
deleteRoutingControl(
|
|
195
192
|
args: DeleteRoutingControlCommandInput,
|
|
196
|
-
cb: (err: any, data?: DeleteRoutingControlCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: DeleteRoutingControlCommandOutput) => void,
|
|
197
194
|
): void;
|
|
198
195
|
deleteRoutingControl(
|
|
199
196
|
args: DeleteRoutingControlCommandInput,
|
|
200
197
|
options: __HttpHandlerOptions,
|
|
201
|
-
cb: (err: any, data?: DeleteRoutingControlCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: DeleteRoutingControlCommandOutput) => void,
|
|
202
199
|
): void;
|
|
203
200
|
deleteSafetyRule(
|
|
204
201
|
args: DeleteSafetyRuleCommandInput,
|
|
205
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
206
203
|
): Promise<DeleteSafetyRuleCommandOutput>;
|
|
207
204
|
deleteSafetyRule(
|
|
208
205
|
args: DeleteSafetyRuleCommandInput,
|
|
209
|
-
cb: (err: any, data?: DeleteSafetyRuleCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: DeleteSafetyRuleCommandOutput) => void,
|
|
210
207
|
): void;
|
|
211
208
|
deleteSafetyRule(
|
|
212
209
|
args: DeleteSafetyRuleCommandInput,
|
|
213
210
|
options: __HttpHandlerOptions,
|
|
214
|
-
cb: (err: any, data?: DeleteSafetyRuleCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: DeleteSafetyRuleCommandOutput) => void,
|
|
215
212
|
): void;
|
|
216
213
|
describeCluster(
|
|
217
214
|
args: DescribeClusterCommandInput,
|
|
218
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
219
216
|
): Promise<DescribeClusterCommandOutput>;
|
|
220
217
|
describeCluster(
|
|
221
218
|
args: DescribeClusterCommandInput,
|
|
222
|
-
cb: (err: any, data?: DescribeClusterCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: DescribeClusterCommandOutput) => void,
|
|
223
220
|
): void;
|
|
224
221
|
describeCluster(
|
|
225
222
|
args: DescribeClusterCommandInput,
|
|
226
223
|
options: __HttpHandlerOptions,
|
|
227
|
-
cb: (err: any, data?: DescribeClusterCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: DescribeClusterCommandOutput) => void,
|
|
228
225
|
): void;
|
|
229
226
|
describeControlPanel(
|
|
230
227
|
args: DescribeControlPanelCommandInput,
|
|
231
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
232
229
|
): Promise<DescribeControlPanelCommandOutput>;
|
|
233
230
|
describeControlPanel(
|
|
234
231
|
args: DescribeControlPanelCommandInput,
|
|
235
|
-
cb: (err: any, data?: DescribeControlPanelCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DescribeControlPanelCommandOutput) => void,
|
|
236
233
|
): void;
|
|
237
234
|
describeControlPanel(
|
|
238
235
|
args: DescribeControlPanelCommandInput,
|
|
239
236
|
options: __HttpHandlerOptions,
|
|
240
|
-
cb: (err: any, data?: DescribeControlPanelCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: DescribeControlPanelCommandOutput) => void,
|
|
241
238
|
): void;
|
|
242
239
|
describeRoutingControl(
|
|
243
240
|
args: DescribeRoutingControlCommandInput,
|
|
244
|
-
options?: __HttpHandlerOptions
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
245
242
|
): Promise<DescribeRoutingControlCommandOutput>;
|
|
246
243
|
describeRoutingControl(
|
|
247
244
|
args: DescribeRoutingControlCommandInput,
|
|
248
|
-
cb: (err: any, data?: DescribeRoutingControlCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: DescribeRoutingControlCommandOutput) => void,
|
|
249
246
|
): void;
|
|
250
247
|
describeRoutingControl(
|
|
251
248
|
args: DescribeRoutingControlCommandInput,
|
|
252
249
|
options: __HttpHandlerOptions,
|
|
253
|
-
cb: (err: any, data?: DescribeRoutingControlCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: DescribeRoutingControlCommandOutput) => void,
|
|
254
251
|
): void;
|
|
255
252
|
describeSafetyRule(
|
|
256
253
|
args: DescribeSafetyRuleCommandInput,
|
|
257
|
-
options?: __HttpHandlerOptions
|
|
254
|
+
options?: __HttpHandlerOptions,
|
|
258
255
|
): Promise<DescribeSafetyRuleCommandOutput>;
|
|
259
256
|
describeSafetyRule(
|
|
260
257
|
args: DescribeSafetyRuleCommandInput,
|
|
261
|
-
cb: (err: any, data?: DescribeSafetyRuleCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: DescribeSafetyRuleCommandOutput) => void,
|
|
262
259
|
): void;
|
|
263
260
|
describeSafetyRule(
|
|
264
261
|
args: DescribeSafetyRuleCommandInput,
|
|
265
262
|
options: __HttpHandlerOptions,
|
|
266
|
-
cb: (err: any, data?: DescribeSafetyRuleCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: DescribeSafetyRuleCommandOutput) => void,
|
|
267
264
|
): void;
|
|
268
265
|
getResourcePolicy(
|
|
269
266
|
args: GetResourcePolicyCommandInput,
|
|
270
|
-
options?: __HttpHandlerOptions
|
|
267
|
+
options?: __HttpHandlerOptions,
|
|
271
268
|
): Promise<GetResourcePolicyCommandOutput>;
|
|
272
269
|
getResourcePolicy(
|
|
273
270
|
args: GetResourcePolicyCommandInput,
|
|
274
|
-
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
271
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void,
|
|
275
272
|
): void;
|
|
276
273
|
getResourcePolicy(
|
|
277
274
|
args: GetResourcePolicyCommandInput,
|
|
278
275
|
options: __HttpHandlerOptions,
|
|
279
|
-
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void,
|
|
280
277
|
): void;
|
|
281
278
|
listAssociatedRoute53HealthChecks(
|
|
282
279
|
args: ListAssociatedRoute53HealthChecksCommandInput,
|
|
283
|
-
options?: __HttpHandlerOptions
|
|
280
|
+
options?: __HttpHandlerOptions,
|
|
284
281
|
): Promise<ListAssociatedRoute53HealthChecksCommandOutput>;
|
|
285
282
|
listAssociatedRoute53HealthChecks(
|
|
286
283
|
args: ListAssociatedRoute53HealthChecksCommandInput,
|
|
287
|
-
cb: (
|
|
288
|
-
err: any,
|
|
289
|
-
data?: ListAssociatedRoute53HealthChecksCommandOutput
|
|
290
|
-
) => void
|
|
284
|
+
cb: (err: any, data?: ListAssociatedRoute53HealthChecksCommandOutput) => void,
|
|
291
285
|
): void;
|
|
292
286
|
listAssociatedRoute53HealthChecks(
|
|
293
287
|
args: ListAssociatedRoute53HealthChecksCommandInput,
|
|
294
288
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (
|
|
296
|
-
err: any,
|
|
297
|
-
data?: ListAssociatedRoute53HealthChecksCommandOutput
|
|
298
|
-
) => void
|
|
289
|
+
cb: (err: any, data?: ListAssociatedRoute53HealthChecksCommandOutput) => void,
|
|
299
290
|
): void;
|
|
300
291
|
listClusters(): Promise<ListClustersCommandOutput>;
|
|
301
292
|
listClusters(
|
|
302
293
|
args: ListClustersCommandInput,
|
|
303
|
-
options?: __HttpHandlerOptions
|
|
294
|
+
options?: __HttpHandlerOptions,
|
|
304
295
|
): Promise<ListClustersCommandOutput>;
|
|
305
296
|
listClusters(
|
|
306
297
|
args: ListClustersCommandInput,
|
|
307
|
-
cb: (err: any, data?: ListClustersCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: ListClustersCommandOutput) => void,
|
|
308
299
|
): void;
|
|
309
300
|
listClusters(
|
|
310
301
|
args: ListClustersCommandInput,
|
|
311
302
|
options: __HttpHandlerOptions,
|
|
312
|
-
cb: (err: any, data?: ListClustersCommandOutput) => void
|
|
303
|
+
cb: (err: any, data?: ListClustersCommandOutput) => void,
|
|
313
304
|
): void;
|
|
314
305
|
listControlPanels(): Promise<ListControlPanelsCommandOutput>;
|
|
315
306
|
listControlPanels(
|
|
316
307
|
args: ListControlPanelsCommandInput,
|
|
317
|
-
options?: __HttpHandlerOptions
|
|
308
|
+
options?: __HttpHandlerOptions,
|
|
318
309
|
): Promise<ListControlPanelsCommandOutput>;
|
|
319
310
|
listControlPanels(
|
|
320
311
|
args: ListControlPanelsCommandInput,
|
|
321
|
-
cb: (err: any, data?: ListControlPanelsCommandOutput) => void
|
|
312
|
+
cb: (err: any, data?: ListControlPanelsCommandOutput) => void,
|
|
322
313
|
): void;
|
|
323
314
|
listControlPanels(
|
|
324
315
|
args: ListControlPanelsCommandInput,
|
|
325
316
|
options: __HttpHandlerOptions,
|
|
326
|
-
cb: (err: any, data?: ListControlPanelsCommandOutput) => void
|
|
317
|
+
cb: (err: any, data?: ListControlPanelsCommandOutput) => void,
|
|
327
318
|
): void;
|
|
328
319
|
listRoutingControls(
|
|
329
320
|
args: ListRoutingControlsCommandInput,
|
|
330
|
-
options?: __HttpHandlerOptions
|
|
321
|
+
options?: __HttpHandlerOptions,
|
|
331
322
|
): Promise<ListRoutingControlsCommandOutput>;
|
|
332
323
|
listRoutingControls(
|
|
333
324
|
args: ListRoutingControlsCommandInput,
|
|
334
|
-
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void
|
|
325
|
+
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void,
|
|
335
326
|
): void;
|
|
336
327
|
listRoutingControls(
|
|
337
328
|
args: ListRoutingControlsCommandInput,
|
|
338
329
|
options: __HttpHandlerOptions,
|
|
339
|
-
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void
|
|
330
|
+
cb: (err: any, data?: ListRoutingControlsCommandOutput) => void,
|
|
340
331
|
): void;
|
|
341
332
|
listSafetyRules(
|
|
342
333
|
args: ListSafetyRulesCommandInput,
|
|
343
|
-
options?: __HttpHandlerOptions
|
|
334
|
+
options?: __HttpHandlerOptions,
|
|
344
335
|
): Promise<ListSafetyRulesCommandOutput>;
|
|
345
336
|
listSafetyRules(
|
|
346
337
|
args: ListSafetyRulesCommandInput,
|
|
347
|
-
cb: (err: any, data?: ListSafetyRulesCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: ListSafetyRulesCommandOutput) => void,
|
|
348
339
|
): void;
|
|
349
340
|
listSafetyRules(
|
|
350
341
|
args: ListSafetyRulesCommandInput,
|
|
351
342
|
options: __HttpHandlerOptions,
|
|
352
|
-
cb: (err: any, data?: ListSafetyRulesCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: ListSafetyRulesCommandOutput) => void,
|
|
353
344
|
): void;
|
|
354
345
|
listTagsForResource(
|
|
355
346
|
args: ListTagsForResourceCommandInput,
|
|
356
|
-
options?: __HttpHandlerOptions
|
|
347
|
+
options?: __HttpHandlerOptions,
|
|
357
348
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
358
349
|
listTagsForResource(
|
|
359
350
|
args: ListTagsForResourceCommandInput,
|
|
360
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
351
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
361
352
|
): void;
|
|
362
353
|
listTagsForResource(
|
|
363
354
|
args: ListTagsForResourceCommandInput,
|
|
364
355
|
options: __HttpHandlerOptions,
|
|
365
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
356
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
366
357
|
): void;
|
|
367
358
|
tagResource(
|
|
368
359
|
args: TagResourceCommandInput,
|
|
369
|
-
options?: __HttpHandlerOptions
|
|
360
|
+
options?: __HttpHandlerOptions,
|
|
370
361
|
): Promise<TagResourceCommandOutput>;
|
|
371
362
|
tagResource(
|
|
372
363
|
args: TagResourceCommandInput,
|
|
373
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
364
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
374
365
|
): void;
|
|
375
366
|
tagResource(
|
|
376
367
|
args: TagResourceCommandInput,
|
|
377
368
|
options: __HttpHandlerOptions,
|
|
378
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
369
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
379
370
|
): void;
|
|
380
371
|
untagResource(
|
|
381
372
|
args: UntagResourceCommandInput,
|
|
382
|
-
options?: __HttpHandlerOptions
|
|
373
|
+
options?: __HttpHandlerOptions,
|
|
383
374
|
): Promise<UntagResourceCommandOutput>;
|
|
384
375
|
untagResource(
|
|
385
376
|
args: UntagResourceCommandInput,
|
|
386
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
377
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
387
378
|
): void;
|
|
388
379
|
untagResource(
|
|
389
380
|
args: UntagResourceCommandInput,
|
|
390
381
|
options: __HttpHandlerOptions,
|
|
391
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
392
383
|
): void;
|
|
393
384
|
updateCluster(
|
|
394
385
|
args: UpdateClusterCommandInput,
|
|
395
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
396
387
|
): Promise<UpdateClusterCommandOutput>;
|
|
397
388
|
updateCluster(
|
|
398
389
|
args: UpdateClusterCommandInput,
|
|
399
|
-
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: UpdateClusterCommandOutput) => void,
|
|
400
391
|
): void;
|
|
401
392
|
updateCluster(
|
|
402
393
|
args: UpdateClusterCommandInput,
|
|
403
394
|
options: __HttpHandlerOptions,
|
|
404
|
-
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: UpdateClusterCommandOutput) => void,
|
|
405
396
|
): void;
|
|
406
397
|
updateControlPanel(
|
|
407
398
|
args: UpdateControlPanelCommandInput,
|
|
408
|
-
options?: __HttpHandlerOptions
|
|
399
|
+
options?: __HttpHandlerOptions,
|
|
409
400
|
): Promise<UpdateControlPanelCommandOutput>;
|
|
410
401
|
updateControlPanel(
|
|
411
402
|
args: UpdateControlPanelCommandInput,
|
|
412
|
-
cb: (err: any, data?: UpdateControlPanelCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: UpdateControlPanelCommandOutput) => void,
|
|
413
404
|
): void;
|
|
414
405
|
updateControlPanel(
|
|
415
406
|
args: UpdateControlPanelCommandInput,
|
|
416
407
|
options: __HttpHandlerOptions,
|
|
417
|
-
cb: (err: any, data?: UpdateControlPanelCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: UpdateControlPanelCommandOutput) => void,
|
|
418
409
|
): void;
|
|
419
410
|
updateRoutingControl(
|
|
420
411
|
args: UpdateRoutingControlCommandInput,
|
|
421
|
-
options?: __HttpHandlerOptions
|
|
412
|
+
options?: __HttpHandlerOptions,
|
|
422
413
|
): Promise<UpdateRoutingControlCommandOutput>;
|
|
423
414
|
updateRoutingControl(
|
|
424
415
|
args: UpdateRoutingControlCommandInput,
|
|
425
|
-
cb: (err: any, data?: UpdateRoutingControlCommandOutput) => void
|
|
416
|
+
cb: (err: any, data?: UpdateRoutingControlCommandOutput) => void,
|
|
426
417
|
): void;
|
|
427
418
|
updateRoutingControl(
|
|
428
419
|
args: UpdateRoutingControlCommandInput,
|
|
429
420
|
options: __HttpHandlerOptions,
|
|
430
|
-
cb: (err: any, data?: UpdateRoutingControlCommandOutput) => void
|
|
421
|
+
cb: (err: any, data?: UpdateRoutingControlCommandOutput) => void,
|
|
431
422
|
): void;
|
|
432
423
|
updateSafetyRule(): Promise<UpdateSafetyRuleCommandOutput>;
|
|
433
424
|
updateSafetyRule(
|
|
434
425
|
args: UpdateSafetyRuleCommandInput,
|
|
435
|
-
options?: __HttpHandlerOptions
|
|
426
|
+
options?: __HttpHandlerOptions,
|
|
436
427
|
): Promise<UpdateSafetyRuleCommandOutput>;
|
|
437
428
|
updateSafetyRule(
|
|
438
429
|
args: UpdateSafetyRuleCommandInput,
|
|
439
|
-
cb: (err: any, data?: UpdateSafetyRuleCommandOutput) => void
|
|
430
|
+
cb: (err: any, data?: UpdateSafetyRuleCommandOutput) => void,
|
|
440
431
|
): void;
|
|
441
432
|
updateSafetyRule(
|
|
442
433
|
args: UpdateSafetyRuleCommandInput,
|
|
443
434
|
options: __HttpHandlerOptions,
|
|
444
|
-
cb: (err: any, data?: UpdateSafetyRuleCommandOutput) => void
|
|
435
|
+
cb: (err: any, data?: UpdateSafetyRuleCommandOutput) => void,
|
|
445
436
|
): void;
|
|
446
437
|
paginateListAssociatedRoute53HealthChecks(
|
|
447
438
|
args: ListAssociatedRoute53HealthChecksCommandInput,
|
|
448
439
|
paginationConfig?: Pick<
|
|
449
440
|
PaginationConfiguration,
|
|
450
441
|
Exclude<keyof PaginationConfiguration, "client">
|
|
451
|
-
|
|
442
|
+
>,
|
|
452
443
|
): Paginator<ListAssociatedRoute53HealthChecksCommandOutput>;
|
|
453
444
|
paginateListClusters(
|
|
454
445
|
args?: ListClustersCommandInput,
|
|
455
446
|
paginationConfig?: Pick<
|
|
456
447
|
PaginationConfiguration,
|
|
457
448
|
Exclude<keyof PaginationConfiguration, "client">
|
|
458
|
-
|
|
449
|
+
>,
|
|
459
450
|
): Paginator<ListClustersCommandOutput>;
|
|
460
451
|
paginateListControlPanels(
|
|
461
452
|
args?: ListControlPanelsCommandInput,
|
|
462
453
|
paginationConfig?: Pick<
|
|
463
454
|
PaginationConfiguration,
|
|
464
455
|
Exclude<keyof PaginationConfiguration, "client">
|
|
465
|
-
|
|
456
|
+
>,
|
|
466
457
|
): Paginator<ListControlPanelsCommandOutput>;
|
|
467
458
|
paginateListRoutingControls(
|
|
468
459
|
args: ListRoutingControlsCommandInput,
|
|
469
460
|
paginationConfig?: Pick<
|
|
470
461
|
PaginationConfiguration,
|
|
471
462
|
Exclude<keyof PaginationConfiguration, "client">
|
|
472
|
-
|
|
463
|
+
>,
|
|
473
464
|
): Paginator<ListRoutingControlsCommandOutput>;
|
|
474
465
|
paginateListSafetyRules(
|
|
475
466
|
args: ListSafetyRulesCommandInput,
|
|
476
467
|
paginationConfig?: Pick<
|
|
477
468
|
PaginationConfiguration,
|
|
478
469
|
Exclude<keyof PaginationConfiguration, "client">
|
|
479
|
-
|
|
470
|
+
>,
|
|
480
471
|
): Paginator<ListSafetyRulesCommandOutput>;
|
|
481
472
|
waitUntilClusterCreated(
|
|
482
473
|
args: DescribeClusterCommandInput,
|
|
@@ -484,11 +475,8 @@ export interface Route53RecoveryControlConfig {
|
|
|
484
475
|
| number
|
|
485
476
|
| Pick<
|
|
486
477
|
WaiterConfiguration<Route53RecoveryControlConfig>,
|
|
487
|
-
Exclude<
|
|
488
|
-
|
|
489
|
-
"client"
|
|
490
|
-
>
|
|
491
|
-
>
|
|
478
|
+
Exclude<keyof WaiterConfiguration<Route53RecoveryControlConfig>, "client">
|
|
479
|
+
>,
|
|
492
480
|
): Promise<WaiterResult<DescribeClusterCommandOutput>>;
|
|
493
481
|
waitUntilClusterDeleted(
|
|
494
482
|
args: DescribeClusterCommandInput,
|
|
@@ -496,11 +484,8 @@ export interface Route53RecoveryControlConfig {
|
|
|
496
484
|
| number
|
|
497
485
|
| Pick<
|
|
498
486
|
WaiterConfiguration<Route53RecoveryControlConfig>,
|
|
499
|
-
Exclude<
|
|
500
|
-
|
|
501
|
-
"client"
|
|
502
|
-
>
|
|
503
|
-
>
|
|
487
|
+
Exclude<keyof WaiterConfiguration<Route53RecoveryControlConfig>, "client">
|
|
488
|
+
>,
|
|
504
489
|
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
505
490
|
waitUntilControlPanelCreated(
|
|
506
491
|
args: DescribeControlPanelCommandInput,
|
|
@@ -508,11 +493,8 @@ export interface Route53RecoveryControlConfig {
|
|
|
508
493
|
| number
|
|
509
494
|
| Pick<
|
|
510
495
|
WaiterConfiguration<Route53RecoveryControlConfig>,
|
|
511
|
-
Exclude<
|
|
512
|
-
|
|
513
|
-
"client"
|
|
514
|
-
>
|
|
515
|
-
>
|
|
496
|
+
Exclude<keyof WaiterConfiguration<Route53RecoveryControlConfig>, "client">
|
|
497
|
+
>,
|
|
516
498
|
): Promise<WaiterResult<DescribeControlPanelCommandOutput>>;
|
|
517
499
|
waitUntilControlPanelDeleted(
|
|
518
500
|
args: DescribeControlPanelCommandInput,
|
|
@@ -520,11 +502,8 @@ export interface Route53RecoveryControlConfig {
|
|
|
520
502
|
| number
|
|
521
503
|
| Pick<
|
|
522
504
|
WaiterConfiguration<Route53RecoveryControlConfig>,
|
|
523
|
-
Exclude<
|
|
524
|
-
|
|
525
|
-
"client"
|
|
526
|
-
>
|
|
527
|
-
>
|
|
505
|
+
Exclude<keyof WaiterConfiguration<Route53RecoveryControlConfig>, "client">
|
|
506
|
+
>,
|
|
528
507
|
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
529
508
|
waitUntilRoutingControlCreated(
|
|
530
509
|
args: DescribeRoutingControlCommandInput,
|
|
@@ -532,11 +511,8 @@ export interface Route53RecoveryControlConfig {
|
|
|
532
511
|
| number
|
|
533
512
|
| Pick<
|
|
534
513
|
WaiterConfiguration<Route53RecoveryControlConfig>,
|
|
535
|
-
Exclude<
|
|
536
|
-
|
|
537
|
-
"client"
|
|
538
|
-
>
|
|
539
|
-
>
|
|
514
|
+
Exclude<keyof WaiterConfiguration<Route53RecoveryControlConfig>, "client">
|
|
515
|
+
>,
|
|
540
516
|
): Promise<WaiterResult<DescribeRoutingControlCommandOutput>>;
|
|
541
517
|
waitUntilRoutingControlDeleted(
|
|
542
518
|
args: DescribeRoutingControlCommandInput,
|
|
@@ -544,11 +520,8 @@ export interface Route53RecoveryControlConfig {
|
|
|
544
520
|
| number
|
|
545
521
|
| Pick<
|
|
546
522
|
WaiterConfiguration<Route53RecoveryControlConfig>,
|
|
547
|
-
Exclude<
|
|
548
|
-
|
|
549
|
-
"client"
|
|
550
|
-
>
|
|
551
|
-
>
|
|
523
|
+
Exclude<keyof WaiterConfiguration<Route53RecoveryControlConfig>, "client">
|
|
524
|
+
>,
|
|
552
525
|
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
553
526
|
}
|
|
554
527
|
export declare class Route53RecoveryControlConfig
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -112,10 +109,7 @@ import {
|
|
|
112
109
|
ListTagsForResourceCommandInput,
|
|
113
110
|
ListTagsForResourceCommandOutput,
|
|
114
111
|
} from "./commands/ListTagsForResourceCommand";
|
|
115
|
-
import {
|
|
116
|
-
TagResourceCommandInput,
|
|
117
|
-
TagResourceCommandOutput,
|
|
118
|
-
} from "./commands/TagResourceCommand";
|
|
112
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
119
113
|
import {
|
|
120
114
|
UntagResourceCommandInput,
|
|
121
115
|
UntagResourceCommandOutput,
|
|
@@ -195,8 +189,7 @@ export type ServiceOutputTypes =
|
|
|
195
189
|
| UpdateControlPanelCommandOutput
|
|
196
190
|
| UpdateRoutingControlCommandOutput
|
|
197
191
|
| UpdateSafetyRuleCommandOutput;
|
|
198
|
-
export interface ClientDefaults
|
|
199
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
192
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
200
193
|
requestHandler?: __HttpHandlerUserInput;
|
|
201
194
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
202
195
|
urlParser?: __UrlParser;
|
|
@@ -232,8 +225,7 @@ export type Route53RecoveryControlConfigClientConfigType = Partial<
|
|
|
232
225
|
EndpointInputConfig<EndpointParameters> &
|
|
233
226
|
HttpAuthSchemeInputConfig &
|
|
234
227
|
ClientInputEndpointParameters;
|
|
235
|
-
export interface Route53RecoveryControlConfigClientConfig
|
|
236
|
-
extends Route53RecoveryControlConfigClientConfigType {}
|
|
228
|
+
export interface Route53RecoveryControlConfigClientConfig extends Route53RecoveryControlConfigClientConfigType {}
|
|
237
229
|
export type Route53RecoveryControlConfigClientResolvedConfigType =
|
|
238
230
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
239
231
|
Required<ClientDefaults> &
|
|
@@ -245,8 +237,7 @@ export type Route53RecoveryControlConfigClientResolvedConfigType =
|
|
|
245
237
|
EndpointResolvedConfig<EndpointParameters> &
|
|
246
238
|
HttpAuthSchemeResolvedConfig &
|
|
247
239
|
ClientResolvedEndpointParameters;
|
|
248
|
-
export interface Route53RecoveryControlConfigClientResolvedConfig
|
|
249
|
-
extends Route53RecoveryControlConfigClientResolvedConfigType {}
|
|
240
|
+
export interface Route53RecoveryControlConfigClientResolvedConfig extends Route53RecoveryControlConfigClientResolvedConfigType {}
|
|
250
241
|
export declare class Route53RecoveryControlConfigClient extends __Client<
|
|
251
242
|
__HttpHandlerOptions,
|
|
252
243
|
ServiceInputTypes,
|
|
@@ -255,9 +246,7 @@ export declare class Route53RecoveryControlConfigClient extends __Client<
|
|
|
255
246
|
> {
|
|
256
247
|
readonly config: Route53RecoveryControlConfigClientResolvedConfig;
|
|
257
248
|
constructor(
|
|
258
|
-
...[
|
|
259
|
-
configuration,
|
|
260
|
-
]: __CheckOptionalClientConfig<Route53RecoveryControlConfigClientConfig>
|
|
249
|
+
...[configuration]: __CheckOptionalClientConfig<Route53RecoveryControlConfigClientConfig>
|
|
261
250
|
);
|
|
262
251
|
destroy(): void;
|
|
263
252
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: Route53RecoveryControlConfigHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: Route53RecoveryControlConfigHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): Route53RecoveryControlConfigHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|