@aws-sdk/client-arc-region-switch 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/ARCRegionSwitch.d.ts +80 -106
- package/dist-types/ts3.4/ARCRegionSwitchClient.d.ts +12 -40
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- 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/ApprovePlanExecutionStepCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelPlanExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreatePlanCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeletePlanCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetPlanCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetPlanEvaluationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetPlanExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPlanInRegionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPlanExecutionEventsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListPlanExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPlansCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListPlansInRegionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRoute53HealthChecksCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRoute53HealthChecksInRegionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartPlanExecutionCommand.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/UpdatePlanCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdatePlanExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdatePlanExecutionStepCommand.d.ts +4 -6
- 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/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListPlansPaginator.d.ts +1 -4
- 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/waiters/waitForPlanEvaluationStatusPassed.d.ts +3 -7
- package/dist-types/ts3.4/waiters/waitForPlanExecutionCompleted.d.ts +3 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -14,18 +14,9 @@ import {
|
|
|
14
14
|
CancelPlanExecutionCommandInput,
|
|
15
15
|
CancelPlanExecutionCommandOutput,
|
|
16
16
|
} from "./commands/CancelPlanExecutionCommand";
|
|
17
|
-
import {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
} from "./commands/CreatePlanCommand";
|
|
21
|
-
import {
|
|
22
|
-
DeletePlanCommandInput,
|
|
23
|
-
DeletePlanCommandOutput,
|
|
24
|
-
} from "./commands/DeletePlanCommand";
|
|
25
|
-
import {
|
|
26
|
-
GetPlanCommandInput,
|
|
27
|
-
GetPlanCommandOutput,
|
|
28
|
-
} from "./commands/GetPlanCommand";
|
|
17
|
+
import { CreatePlanCommandInput, CreatePlanCommandOutput } from "./commands/CreatePlanCommand";
|
|
18
|
+
import { DeletePlanCommandInput, DeletePlanCommandOutput } from "./commands/DeletePlanCommand";
|
|
19
|
+
import { GetPlanCommandInput, GetPlanCommandOutput } from "./commands/GetPlanCommand";
|
|
29
20
|
import {
|
|
30
21
|
GetPlanEvaluationStatusCommandInput,
|
|
31
22
|
GetPlanEvaluationStatusCommandOutput,
|
|
@@ -46,10 +37,7 @@ import {
|
|
|
46
37
|
ListPlanExecutionsCommandInput,
|
|
47
38
|
ListPlanExecutionsCommandOutput,
|
|
48
39
|
} from "./commands/ListPlanExecutionsCommand";
|
|
49
|
-
import {
|
|
50
|
-
ListPlansCommandInput,
|
|
51
|
-
ListPlansCommandOutput,
|
|
52
|
-
} from "./commands/ListPlansCommand";
|
|
40
|
+
import { ListPlansCommandInput, ListPlansCommandOutput } from "./commands/ListPlansCommand";
|
|
53
41
|
import {
|
|
54
42
|
ListPlansInRegionCommandInput,
|
|
55
43
|
ListPlansInRegionCommandOutput,
|
|
@@ -70,18 +58,12 @@ import {
|
|
|
70
58
|
StartPlanExecutionCommandInput,
|
|
71
59
|
StartPlanExecutionCommandOutput,
|
|
72
60
|
} from "./commands/StartPlanExecutionCommand";
|
|
73
|
-
import {
|
|
74
|
-
TagResourceCommandInput,
|
|
75
|
-
TagResourceCommandOutput,
|
|
76
|
-
} from "./commands/TagResourceCommand";
|
|
61
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
77
62
|
import {
|
|
78
63
|
UntagResourceCommandInput,
|
|
79
64
|
UntagResourceCommandOutput,
|
|
80
65
|
} from "./commands/UntagResourceCommand";
|
|
81
|
-
import {
|
|
82
|
-
UpdatePlanCommandInput,
|
|
83
|
-
UpdatePlanCommandOutput,
|
|
84
|
-
} from "./commands/UpdatePlanCommand";
|
|
66
|
+
import { UpdatePlanCommandInput, UpdatePlanCommandOutput } from "./commands/UpdatePlanCommand";
|
|
85
67
|
import {
|
|
86
68
|
UpdatePlanExecutionCommandInput,
|
|
87
69
|
UpdatePlanExecutionCommandOutput,
|
|
@@ -93,334 +75,328 @@ import {
|
|
|
93
75
|
export interface ARCRegionSwitch {
|
|
94
76
|
approvePlanExecutionStep(
|
|
95
77
|
args: ApprovePlanExecutionStepCommandInput,
|
|
96
|
-
options?: __HttpHandlerOptions
|
|
78
|
+
options?: __HttpHandlerOptions,
|
|
97
79
|
): Promise<ApprovePlanExecutionStepCommandOutput>;
|
|
98
80
|
approvePlanExecutionStep(
|
|
99
81
|
args: ApprovePlanExecutionStepCommandInput,
|
|
100
|
-
cb: (err: any, data?: ApprovePlanExecutionStepCommandOutput) => void
|
|
82
|
+
cb: (err: any, data?: ApprovePlanExecutionStepCommandOutput) => void,
|
|
101
83
|
): void;
|
|
102
84
|
approvePlanExecutionStep(
|
|
103
85
|
args: ApprovePlanExecutionStepCommandInput,
|
|
104
86
|
options: __HttpHandlerOptions,
|
|
105
|
-
cb: (err: any, data?: ApprovePlanExecutionStepCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: ApprovePlanExecutionStepCommandOutput) => void,
|
|
106
88
|
): void;
|
|
107
89
|
cancelPlanExecution(
|
|
108
90
|
args: CancelPlanExecutionCommandInput,
|
|
109
|
-
options?: __HttpHandlerOptions
|
|
91
|
+
options?: __HttpHandlerOptions,
|
|
110
92
|
): Promise<CancelPlanExecutionCommandOutput>;
|
|
111
93
|
cancelPlanExecution(
|
|
112
94
|
args: CancelPlanExecutionCommandInput,
|
|
113
|
-
cb: (err: any, data?: CancelPlanExecutionCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: CancelPlanExecutionCommandOutput) => void,
|
|
114
96
|
): void;
|
|
115
97
|
cancelPlanExecution(
|
|
116
98
|
args: CancelPlanExecutionCommandInput,
|
|
117
99
|
options: __HttpHandlerOptions,
|
|
118
|
-
cb: (err: any, data?: CancelPlanExecutionCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: CancelPlanExecutionCommandOutput) => void,
|
|
119
101
|
): void;
|
|
120
102
|
createPlan(
|
|
121
103
|
args: CreatePlanCommandInput,
|
|
122
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
123
105
|
): Promise<CreatePlanCommandOutput>;
|
|
124
106
|
createPlan(
|
|
125
107
|
args: CreatePlanCommandInput,
|
|
126
|
-
cb: (err: any, data?: CreatePlanCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: CreatePlanCommandOutput) => void,
|
|
127
109
|
): void;
|
|
128
110
|
createPlan(
|
|
129
111
|
args: CreatePlanCommandInput,
|
|
130
112
|
options: __HttpHandlerOptions,
|
|
131
|
-
cb: (err: any, data?: CreatePlanCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: CreatePlanCommandOutput) => void,
|
|
132
114
|
): void;
|
|
133
115
|
deletePlan(
|
|
134
116
|
args: DeletePlanCommandInput,
|
|
135
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
136
118
|
): Promise<DeletePlanCommandOutput>;
|
|
137
119
|
deletePlan(
|
|
138
120
|
args: DeletePlanCommandInput,
|
|
139
|
-
cb: (err: any, data?: DeletePlanCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: DeletePlanCommandOutput) => void,
|
|
140
122
|
): void;
|
|
141
123
|
deletePlan(
|
|
142
124
|
args: DeletePlanCommandInput,
|
|
143
125
|
options: __HttpHandlerOptions,
|
|
144
|
-
cb: (err: any, data?: DeletePlanCommandOutput) => void
|
|
145
|
-
): void;
|
|
146
|
-
getPlan(
|
|
147
|
-
args: GetPlanCommandInput,
|
|
148
|
-
options?: __HttpHandlerOptions
|
|
149
|
-
): Promise<GetPlanCommandOutput>;
|
|
150
|
-
getPlan(
|
|
151
|
-
args: GetPlanCommandInput,
|
|
152
|
-
cb: (err: any, data?: GetPlanCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: DeletePlanCommandOutput) => void,
|
|
153
127
|
): void;
|
|
128
|
+
getPlan(args: GetPlanCommandInput, options?: __HttpHandlerOptions): Promise<GetPlanCommandOutput>;
|
|
129
|
+
getPlan(args: GetPlanCommandInput, cb: (err: any, data?: GetPlanCommandOutput) => void): void;
|
|
154
130
|
getPlan(
|
|
155
131
|
args: GetPlanCommandInput,
|
|
156
132
|
options: __HttpHandlerOptions,
|
|
157
|
-
cb: (err: any, data?: GetPlanCommandOutput) => void
|
|
133
|
+
cb: (err: any, data?: GetPlanCommandOutput) => void,
|
|
158
134
|
): void;
|
|
159
135
|
getPlanEvaluationStatus(
|
|
160
136
|
args: GetPlanEvaluationStatusCommandInput,
|
|
161
|
-
options?: __HttpHandlerOptions
|
|
137
|
+
options?: __HttpHandlerOptions,
|
|
162
138
|
): Promise<GetPlanEvaluationStatusCommandOutput>;
|
|
163
139
|
getPlanEvaluationStatus(
|
|
164
140
|
args: GetPlanEvaluationStatusCommandInput,
|
|
165
|
-
cb: (err: any, data?: GetPlanEvaluationStatusCommandOutput) => void
|
|
141
|
+
cb: (err: any, data?: GetPlanEvaluationStatusCommandOutput) => void,
|
|
166
142
|
): void;
|
|
167
143
|
getPlanEvaluationStatus(
|
|
168
144
|
args: GetPlanEvaluationStatusCommandInput,
|
|
169
145
|
options: __HttpHandlerOptions,
|
|
170
|
-
cb: (err: any, data?: GetPlanEvaluationStatusCommandOutput) => void
|
|
146
|
+
cb: (err: any, data?: GetPlanEvaluationStatusCommandOutput) => void,
|
|
171
147
|
): void;
|
|
172
148
|
getPlanExecution(
|
|
173
149
|
args: GetPlanExecutionCommandInput,
|
|
174
|
-
options?: __HttpHandlerOptions
|
|
150
|
+
options?: __HttpHandlerOptions,
|
|
175
151
|
): Promise<GetPlanExecutionCommandOutput>;
|
|
176
152
|
getPlanExecution(
|
|
177
153
|
args: GetPlanExecutionCommandInput,
|
|
178
|
-
cb: (err: any, data?: GetPlanExecutionCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: GetPlanExecutionCommandOutput) => void,
|
|
179
155
|
): void;
|
|
180
156
|
getPlanExecution(
|
|
181
157
|
args: GetPlanExecutionCommandInput,
|
|
182
158
|
options: __HttpHandlerOptions,
|
|
183
|
-
cb: (err: any, data?: GetPlanExecutionCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: GetPlanExecutionCommandOutput) => void,
|
|
184
160
|
): void;
|
|
185
161
|
getPlanInRegion(
|
|
186
162
|
args: GetPlanInRegionCommandInput,
|
|
187
|
-
options?: __HttpHandlerOptions
|
|
163
|
+
options?: __HttpHandlerOptions,
|
|
188
164
|
): Promise<GetPlanInRegionCommandOutput>;
|
|
189
165
|
getPlanInRegion(
|
|
190
166
|
args: GetPlanInRegionCommandInput,
|
|
191
|
-
cb: (err: any, data?: GetPlanInRegionCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: GetPlanInRegionCommandOutput) => void,
|
|
192
168
|
): void;
|
|
193
169
|
getPlanInRegion(
|
|
194
170
|
args: GetPlanInRegionCommandInput,
|
|
195
171
|
options: __HttpHandlerOptions,
|
|
196
|
-
cb: (err: any, data?: GetPlanInRegionCommandOutput) => void
|
|
172
|
+
cb: (err: any, data?: GetPlanInRegionCommandOutput) => void,
|
|
197
173
|
): void;
|
|
198
174
|
listPlanExecutionEvents(
|
|
199
175
|
args: ListPlanExecutionEventsCommandInput,
|
|
200
|
-
options?: __HttpHandlerOptions
|
|
176
|
+
options?: __HttpHandlerOptions,
|
|
201
177
|
): Promise<ListPlanExecutionEventsCommandOutput>;
|
|
202
178
|
listPlanExecutionEvents(
|
|
203
179
|
args: ListPlanExecutionEventsCommandInput,
|
|
204
|
-
cb: (err: any, data?: ListPlanExecutionEventsCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: ListPlanExecutionEventsCommandOutput) => void,
|
|
205
181
|
): void;
|
|
206
182
|
listPlanExecutionEvents(
|
|
207
183
|
args: ListPlanExecutionEventsCommandInput,
|
|
208
184
|
options: __HttpHandlerOptions,
|
|
209
|
-
cb: (err: any, data?: ListPlanExecutionEventsCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: ListPlanExecutionEventsCommandOutput) => void,
|
|
210
186
|
): void;
|
|
211
187
|
listPlanExecutions(
|
|
212
188
|
args: ListPlanExecutionsCommandInput,
|
|
213
|
-
options?: __HttpHandlerOptions
|
|
189
|
+
options?: __HttpHandlerOptions,
|
|
214
190
|
): Promise<ListPlanExecutionsCommandOutput>;
|
|
215
191
|
listPlanExecutions(
|
|
216
192
|
args: ListPlanExecutionsCommandInput,
|
|
217
|
-
cb: (err: any, data?: ListPlanExecutionsCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: ListPlanExecutionsCommandOutput) => void,
|
|
218
194
|
): void;
|
|
219
195
|
listPlanExecutions(
|
|
220
196
|
args: ListPlanExecutionsCommandInput,
|
|
221
197
|
options: __HttpHandlerOptions,
|
|
222
|
-
cb: (err: any, data?: ListPlanExecutionsCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: ListPlanExecutionsCommandOutput) => void,
|
|
223
199
|
): void;
|
|
224
200
|
listPlans(): Promise<ListPlansCommandOutput>;
|
|
225
201
|
listPlans(
|
|
226
202
|
args: ListPlansCommandInput,
|
|
227
|
-
options?: __HttpHandlerOptions
|
|
203
|
+
options?: __HttpHandlerOptions,
|
|
228
204
|
): Promise<ListPlansCommandOutput>;
|
|
229
205
|
listPlans(
|
|
230
206
|
args: ListPlansCommandInput,
|
|
231
|
-
cb: (err: any, data?: ListPlansCommandOutput) => void
|
|
207
|
+
cb: (err: any, data?: ListPlansCommandOutput) => void,
|
|
232
208
|
): void;
|
|
233
209
|
listPlans(
|
|
234
210
|
args: ListPlansCommandInput,
|
|
235
211
|
options: __HttpHandlerOptions,
|
|
236
|
-
cb: (err: any, data?: ListPlansCommandOutput) => void
|
|
212
|
+
cb: (err: any, data?: ListPlansCommandOutput) => void,
|
|
237
213
|
): void;
|
|
238
214
|
listPlansInRegion(): Promise<ListPlansInRegionCommandOutput>;
|
|
239
215
|
listPlansInRegion(
|
|
240
216
|
args: ListPlansInRegionCommandInput,
|
|
241
|
-
options?: __HttpHandlerOptions
|
|
217
|
+
options?: __HttpHandlerOptions,
|
|
242
218
|
): Promise<ListPlansInRegionCommandOutput>;
|
|
243
219
|
listPlansInRegion(
|
|
244
220
|
args: ListPlansInRegionCommandInput,
|
|
245
|
-
cb: (err: any, data?: ListPlansInRegionCommandOutput) => void
|
|
221
|
+
cb: (err: any, data?: ListPlansInRegionCommandOutput) => void,
|
|
246
222
|
): void;
|
|
247
223
|
listPlansInRegion(
|
|
248
224
|
args: ListPlansInRegionCommandInput,
|
|
249
225
|
options: __HttpHandlerOptions,
|
|
250
|
-
cb: (err: any, data?: ListPlansInRegionCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: ListPlansInRegionCommandOutput) => void,
|
|
251
227
|
): void;
|
|
252
228
|
listRoute53HealthChecks(
|
|
253
229
|
args: ListRoute53HealthChecksCommandInput,
|
|
254
|
-
options?: __HttpHandlerOptions
|
|
230
|
+
options?: __HttpHandlerOptions,
|
|
255
231
|
): Promise<ListRoute53HealthChecksCommandOutput>;
|
|
256
232
|
listRoute53HealthChecks(
|
|
257
233
|
args: ListRoute53HealthChecksCommandInput,
|
|
258
|
-
cb: (err: any, data?: ListRoute53HealthChecksCommandOutput) => void
|
|
234
|
+
cb: (err: any, data?: ListRoute53HealthChecksCommandOutput) => void,
|
|
259
235
|
): void;
|
|
260
236
|
listRoute53HealthChecks(
|
|
261
237
|
args: ListRoute53HealthChecksCommandInput,
|
|
262
238
|
options: __HttpHandlerOptions,
|
|
263
|
-
cb: (err: any, data?: ListRoute53HealthChecksCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: ListRoute53HealthChecksCommandOutput) => void,
|
|
264
240
|
): void;
|
|
265
241
|
listRoute53HealthChecksInRegion(
|
|
266
242
|
args: ListRoute53HealthChecksInRegionCommandInput,
|
|
267
|
-
options?: __HttpHandlerOptions
|
|
243
|
+
options?: __HttpHandlerOptions,
|
|
268
244
|
): Promise<ListRoute53HealthChecksInRegionCommandOutput>;
|
|
269
245
|
listRoute53HealthChecksInRegion(
|
|
270
246
|
args: ListRoute53HealthChecksInRegionCommandInput,
|
|
271
|
-
cb: (err: any, data?: ListRoute53HealthChecksInRegionCommandOutput) => void
|
|
247
|
+
cb: (err: any, data?: ListRoute53HealthChecksInRegionCommandOutput) => void,
|
|
272
248
|
): void;
|
|
273
249
|
listRoute53HealthChecksInRegion(
|
|
274
250
|
args: ListRoute53HealthChecksInRegionCommandInput,
|
|
275
251
|
options: __HttpHandlerOptions,
|
|
276
|
-
cb: (err: any, data?: ListRoute53HealthChecksInRegionCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: ListRoute53HealthChecksInRegionCommandOutput) => void,
|
|
277
253
|
): void;
|
|
278
254
|
listTagsForResource(
|
|
279
255
|
args: ListTagsForResourceCommandInput,
|
|
280
|
-
options?: __HttpHandlerOptions
|
|
256
|
+
options?: __HttpHandlerOptions,
|
|
281
257
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
282
258
|
listTagsForResource(
|
|
283
259
|
args: ListTagsForResourceCommandInput,
|
|
284
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
260
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
285
261
|
): void;
|
|
286
262
|
listTagsForResource(
|
|
287
263
|
args: ListTagsForResourceCommandInput,
|
|
288
264
|
options: __HttpHandlerOptions,
|
|
289
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
265
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
290
266
|
): void;
|
|
291
267
|
startPlanExecution(
|
|
292
268
|
args: StartPlanExecutionCommandInput,
|
|
293
|
-
options?: __HttpHandlerOptions
|
|
269
|
+
options?: __HttpHandlerOptions,
|
|
294
270
|
): Promise<StartPlanExecutionCommandOutput>;
|
|
295
271
|
startPlanExecution(
|
|
296
272
|
args: StartPlanExecutionCommandInput,
|
|
297
|
-
cb: (err: any, data?: StartPlanExecutionCommandOutput) => void
|
|
273
|
+
cb: (err: any, data?: StartPlanExecutionCommandOutput) => void,
|
|
298
274
|
): void;
|
|
299
275
|
startPlanExecution(
|
|
300
276
|
args: StartPlanExecutionCommandInput,
|
|
301
277
|
options: __HttpHandlerOptions,
|
|
302
|
-
cb: (err: any, data?: StartPlanExecutionCommandOutput) => void
|
|
278
|
+
cb: (err: any, data?: StartPlanExecutionCommandOutput) => void,
|
|
303
279
|
): void;
|
|
304
280
|
tagResource(
|
|
305
281
|
args: TagResourceCommandInput,
|
|
306
|
-
options?: __HttpHandlerOptions
|
|
282
|
+
options?: __HttpHandlerOptions,
|
|
307
283
|
): Promise<TagResourceCommandOutput>;
|
|
308
284
|
tagResource(
|
|
309
285
|
args: TagResourceCommandInput,
|
|
310
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
286
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
311
287
|
): void;
|
|
312
288
|
tagResource(
|
|
313
289
|
args: TagResourceCommandInput,
|
|
314
290
|
options: __HttpHandlerOptions,
|
|
315
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
291
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
316
292
|
): void;
|
|
317
293
|
untagResource(
|
|
318
294
|
args: UntagResourceCommandInput,
|
|
319
|
-
options?: __HttpHandlerOptions
|
|
295
|
+
options?: __HttpHandlerOptions,
|
|
320
296
|
): Promise<UntagResourceCommandOutput>;
|
|
321
297
|
untagResource(
|
|
322
298
|
args: UntagResourceCommandInput,
|
|
323
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
299
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
324
300
|
): void;
|
|
325
301
|
untagResource(
|
|
326
302
|
args: UntagResourceCommandInput,
|
|
327
303
|
options: __HttpHandlerOptions,
|
|
328
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
304
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
329
305
|
): void;
|
|
330
306
|
updatePlan(
|
|
331
307
|
args: UpdatePlanCommandInput,
|
|
332
|
-
options?: __HttpHandlerOptions
|
|
308
|
+
options?: __HttpHandlerOptions,
|
|
333
309
|
): Promise<UpdatePlanCommandOutput>;
|
|
334
310
|
updatePlan(
|
|
335
311
|
args: UpdatePlanCommandInput,
|
|
336
|
-
cb: (err: any, data?: UpdatePlanCommandOutput) => void
|
|
312
|
+
cb: (err: any, data?: UpdatePlanCommandOutput) => void,
|
|
337
313
|
): void;
|
|
338
314
|
updatePlan(
|
|
339
315
|
args: UpdatePlanCommandInput,
|
|
340
316
|
options: __HttpHandlerOptions,
|
|
341
|
-
cb: (err: any, data?: UpdatePlanCommandOutput) => void
|
|
317
|
+
cb: (err: any, data?: UpdatePlanCommandOutput) => void,
|
|
342
318
|
): void;
|
|
343
319
|
updatePlanExecution(
|
|
344
320
|
args: UpdatePlanExecutionCommandInput,
|
|
345
|
-
options?: __HttpHandlerOptions
|
|
321
|
+
options?: __HttpHandlerOptions,
|
|
346
322
|
): Promise<UpdatePlanExecutionCommandOutput>;
|
|
347
323
|
updatePlanExecution(
|
|
348
324
|
args: UpdatePlanExecutionCommandInput,
|
|
349
|
-
cb: (err: any, data?: UpdatePlanExecutionCommandOutput) => void
|
|
325
|
+
cb: (err: any, data?: UpdatePlanExecutionCommandOutput) => void,
|
|
350
326
|
): void;
|
|
351
327
|
updatePlanExecution(
|
|
352
328
|
args: UpdatePlanExecutionCommandInput,
|
|
353
329
|
options: __HttpHandlerOptions,
|
|
354
|
-
cb: (err: any, data?: UpdatePlanExecutionCommandOutput) => void
|
|
330
|
+
cb: (err: any, data?: UpdatePlanExecutionCommandOutput) => void,
|
|
355
331
|
): void;
|
|
356
332
|
updatePlanExecutionStep(
|
|
357
333
|
args: UpdatePlanExecutionStepCommandInput,
|
|
358
|
-
options?: __HttpHandlerOptions
|
|
334
|
+
options?: __HttpHandlerOptions,
|
|
359
335
|
): Promise<UpdatePlanExecutionStepCommandOutput>;
|
|
360
336
|
updatePlanExecutionStep(
|
|
361
337
|
args: UpdatePlanExecutionStepCommandInput,
|
|
362
|
-
cb: (err: any, data?: UpdatePlanExecutionStepCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: UpdatePlanExecutionStepCommandOutput) => void,
|
|
363
339
|
): void;
|
|
364
340
|
updatePlanExecutionStep(
|
|
365
341
|
args: UpdatePlanExecutionStepCommandInput,
|
|
366
342
|
options: __HttpHandlerOptions,
|
|
367
|
-
cb: (err: any, data?: UpdatePlanExecutionStepCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: UpdatePlanExecutionStepCommandOutput) => void,
|
|
368
344
|
): void;
|
|
369
345
|
paginateGetPlanEvaluationStatus(
|
|
370
346
|
args: GetPlanEvaluationStatusCommandInput,
|
|
371
347
|
paginationConfig?: Pick<
|
|
372
348
|
PaginationConfiguration,
|
|
373
349
|
Exclude<keyof PaginationConfiguration, "client">
|
|
374
|
-
|
|
350
|
+
>,
|
|
375
351
|
): Paginator<GetPlanEvaluationStatusCommandOutput>;
|
|
376
352
|
paginateGetPlanExecution(
|
|
377
353
|
args: GetPlanExecutionCommandInput,
|
|
378
354
|
paginationConfig?: Pick<
|
|
379
355
|
PaginationConfiguration,
|
|
380
356
|
Exclude<keyof PaginationConfiguration, "client">
|
|
381
|
-
|
|
357
|
+
>,
|
|
382
358
|
): Paginator<GetPlanExecutionCommandOutput>;
|
|
383
359
|
paginateListPlanExecutionEvents(
|
|
384
360
|
args: ListPlanExecutionEventsCommandInput,
|
|
385
361
|
paginationConfig?: Pick<
|
|
386
362
|
PaginationConfiguration,
|
|
387
363
|
Exclude<keyof PaginationConfiguration, "client">
|
|
388
|
-
|
|
364
|
+
>,
|
|
389
365
|
): Paginator<ListPlanExecutionEventsCommandOutput>;
|
|
390
366
|
paginateListPlanExecutions(
|
|
391
367
|
args: ListPlanExecutionsCommandInput,
|
|
392
368
|
paginationConfig?: Pick<
|
|
393
369
|
PaginationConfiguration,
|
|
394
370
|
Exclude<keyof PaginationConfiguration, "client">
|
|
395
|
-
|
|
371
|
+
>,
|
|
396
372
|
): Paginator<ListPlanExecutionsCommandOutput>;
|
|
397
373
|
paginateListPlans(
|
|
398
374
|
args?: ListPlansCommandInput,
|
|
399
375
|
paginationConfig?: Pick<
|
|
400
376
|
PaginationConfiguration,
|
|
401
377
|
Exclude<keyof PaginationConfiguration, "client">
|
|
402
|
-
|
|
378
|
+
>,
|
|
403
379
|
): Paginator<ListPlansCommandOutput>;
|
|
404
380
|
paginateListPlansInRegion(
|
|
405
381
|
args?: ListPlansInRegionCommandInput,
|
|
406
382
|
paginationConfig?: Pick<
|
|
407
383
|
PaginationConfiguration,
|
|
408
384
|
Exclude<keyof PaginationConfiguration, "client">
|
|
409
|
-
|
|
385
|
+
>,
|
|
410
386
|
): Paginator<ListPlansInRegionCommandOutput>;
|
|
411
387
|
paginateListRoute53HealthChecks(
|
|
412
388
|
args: ListRoute53HealthChecksCommandInput,
|
|
413
389
|
paginationConfig?: Pick<
|
|
414
390
|
PaginationConfiguration,
|
|
415
391
|
Exclude<keyof PaginationConfiguration, "client">
|
|
416
|
-
|
|
392
|
+
>,
|
|
417
393
|
): Paginator<ListRoute53HealthChecksCommandOutput>;
|
|
418
394
|
paginateListRoute53HealthChecksInRegion(
|
|
419
395
|
args: ListRoute53HealthChecksInRegionCommandInput,
|
|
420
396
|
paginationConfig?: Pick<
|
|
421
397
|
PaginationConfiguration,
|
|
422
398
|
Exclude<keyof PaginationConfiguration, "client">
|
|
423
|
-
|
|
399
|
+
>,
|
|
424
400
|
): Paginator<ListRoute53HealthChecksInRegionCommandOutput>;
|
|
425
401
|
waitUntilPlanEvaluationStatusPassed(
|
|
426
402
|
args: GetPlanEvaluationStatusCommandInput,
|
|
@@ -429,7 +405,7 @@ export interface ARCRegionSwitch {
|
|
|
429
405
|
| Pick<
|
|
430
406
|
WaiterConfiguration<ARCRegionSwitch>,
|
|
431
407
|
Exclude<keyof WaiterConfiguration<ARCRegionSwitch>, "client">
|
|
432
|
-
|
|
408
|
+
>,
|
|
433
409
|
): Promise<WaiterResult<GetPlanEvaluationStatusCommandOutput>>;
|
|
434
410
|
waitUntilPlanExecutionCompleted(
|
|
435
411
|
args: GetPlanExecutionCommandInput,
|
|
@@ -438,9 +414,7 @@ export interface ARCRegionSwitch {
|
|
|
438
414
|
| Pick<
|
|
439
415
|
WaiterConfiguration<ARCRegionSwitch>,
|
|
440
416
|
Exclude<keyof WaiterConfiguration<ARCRegionSwitch>, "client">
|
|
441
|
-
|
|
417
|
+
>,
|
|
442
418
|
): Promise<WaiterResult<GetPlanExecutionCommandOutput>>;
|
|
443
419
|
}
|
|
444
|
-
export declare class ARCRegionSwitch
|
|
445
|
-
extends ARCRegionSwitchClient
|
|
446
|
-
implements ARCRegionSwitch {}
|
|
420
|
+
export declare class ARCRegionSwitch extends ARCRegionSwitchClient implements ARCRegionSwitch {}
|
|
@@ -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 {
|
|
@@ -44,18 +41,9 @@ import {
|
|
|
44
41
|
CancelPlanExecutionCommandInput,
|
|
45
42
|
CancelPlanExecutionCommandOutput,
|
|
46
43
|
} from "./commands/CancelPlanExecutionCommand";
|
|
47
|
-
import {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
} from "./commands/CreatePlanCommand";
|
|
51
|
-
import {
|
|
52
|
-
DeletePlanCommandInput,
|
|
53
|
-
DeletePlanCommandOutput,
|
|
54
|
-
} from "./commands/DeletePlanCommand";
|
|
55
|
-
import {
|
|
56
|
-
GetPlanCommandInput,
|
|
57
|
-
GetPlanCommandOutput,
|
|
58
|
-
} from "./commands/GetPlanCommand";
|
|
44
|
+
import { CreatePlanCommandInput, CreatePlanCommandOutput } from "./commands/CreatePlanCommand";
|
|
45
|
+
import { DeletePlanCommandInput, DeletePlanCommandOutput } from "./commands/DeletePlanCommand";
|
|
46
|
+
import { GetPlanCommandInput, GetPlanCommandOutput } from "./commands/GetPlanCommand";
|
|
59
47
|
import {
|
|
60
48
|
GetPlanEvaluationStatusCommandInput,
|
|
61
49
|
GetPlanEvaluationStatusCommandOutput,
|
|
@@ -76,10 +64,7 @@ import {
|
|
|
76
64
|
ListPlanExecutionsCommandInput,
|
|
77
65
|
ListPlanExecutionsCommandOutput,
|
|
78
66
|
} from "./commands/ListPlanExecutionsCommand";
|
|
79
|
-
import {
|
|
80
|
-
ListPlansCommandInput,
|
|
81
|
-
ListPlansCommandOutput,
|
|
82
|
-
} from "./commands/ListPlansCommand";
|
|
67
|
+
import { ListPlansCommandInput, ListPlansCommandOutput } from "./commands/ListPlansCommand";
|
|
83
68
|
import {
|
|
84
69
|
ListPlansInRegionCommandInput,
|
|
85
70
|
ListPlansInRegionCommandOutput,
|
|
@@ -100,18 +85,12 @@ import {
|
|
|
100
85
|
StartPlanExecutionCommandInput,
|
|
101
86
|
StartPlanExecutionCommandOutput,
|
|
102
87
|
} from "./commands/StartPlanExecutionCommand";
|
|
103
|
-
import {
|
|
104
|
-
TagResourceCommandInput,
|
|
105
|
-
TagResourceCommandOutput,
|
|
106
|
-
} from "./commands/TagResourceCommand";
|
|
88
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
107
89
|
import {
|
|
108
90
|
UntagResourceCommandInput,
|
|
109
91
|
UntagResourceCommandOutput,
|
|
110
92
|
} from "./commands/UntagResourceCommand";
|
|
111
|
-
import {
|
|
112
|
-
UpdatePlanCommandInput,
|
|
113
|
-
UpdatePlanCommandOutput,
|
|
114
|
-
} from "./commands/UpdatePlanCommand";
|
|
93
|
+
import { UpdatePlanCommandInput, UpdatePlanCommandOutput } from "./commands/UpdatePlanCommand";
|
|
115
94
|
import {
|
|
116
95
|
UpdatePlanExecutionCommandInput,
|
|
117
96
|
UpdatePlanExecutionCommandOutput,
|
|
@@ -171,8 +150,7 @@ export type ServiceOutputTypes =
|
|
|
171
150
|
| UpdatePlanCommandOutput
|
|
172
151
|
| UpdatePlanExecutionCommandOutput
|
|
173
152
|
| UpdatePlanExecutionStepCommandOutput;
|
|
174
|
-
export interface ClientDefaults
|
|
175
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
153
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
176
154
|
requestHandler?: __HttpHandlerUserInput;
|
|
177
155
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
178
156
|
urlParser?: __UrlParser;
|
|
@@ -197,9 +175,7 @@ export interface ClientDefaults
|
|
|
197
175
|
extensions?: RuntimeExtension[];
|
|
198
176
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
199
177
|
}
|
|
200
|
-
export type ARCRegionSwitchClientConfigType = Partial<
|
|
201
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
202
|
-
> &
|
|
178
|
+
export type ARCRegionSwitchClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
203
179
|
ClientDefaults &
|
|
204
180
|
UserAgentInputConfig &
|
|
205
181
|
RetryInputConfig &
|
|
@@ -208,8 +184,7 @@ export type ARCRegionSwitchClientConfigType = Partial<
|
|
|
208
184
|
EndpointInputConfig<EndpointParameters> &
|
|
209
185
|
HttpAuthSchemeInputConfig &
|
|
210
186
|
ClientInputEndpointParameters;
|
|
211
|
-
export interface ARCRegionSwitchClientConfig
|
|
212
|
-
extends ARCRegionSwitchClientConfigType {}
|
|
187
|
+
export interface ARCRegionSwitchClientConfig extends ARCRegionSwitchClientConfigType {}
|
|
213
188
|
export type ARCRegionSwitchClientResolvedConfigType =
|
|
214
189
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
215
190
|
Required<ClientDefaults> &
|
|
@@ -221,8 +196,7 @@ export type ARCRegionSwitchClientResolvedConfigType =
|
|
|
221
196
|
EndpointResolvedConfig<EndpointParameters> &
|
|
222
197
|
HttpAuthSchemeResolvedConfig &
|
|
223
198
|
ClientResolvedEndpointParameters;
|
|
224
|
-
export interface ARCRegionSwitchClientResolvedConfig
|
|
225
|
-
extends ARCRegionSwitchClientResolvedConfigType {}
|
|
199
|
+
export interface ARCRegionSwitchClientResolvedConfig extends ARCRegionSwitchClientResolvedConfigType {}
|
|
226
200
|
export declare class ARCRegionSwitchClient extends __Client<
|
|
227
201
|
__HttpHandlerOptions,
|
|
228
202
|
ServiceInputTypes,
|
|
@@ -230,8 +204,6 @@ export declare class ARCRegionSwitchClient extends __Client<
|
|
|
230
204
|
ARCRegionSwitchClientResolvedConfig
|
|
231
205
|
> {
|
|
232
206
|
readonly config: ARCRegionSwitchClientResolvedConfig;
|
|
233
|
-
constructor(
|
|
234
|
-
...[configuration]: __CheckOptionalClientConfig<ARCRegionSwitchClientConfig>
|
|
235
|
-
);
|
|
207
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ARCRegionSwitchClientConfig>);
|
|
236
208
|
destroy(): void;
|
|
237
209
|
}
|
|
@@ -7,17 +7,10 @@ import { ARCRegionSwitchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ARCRegionSwitchHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ARCRegionSwitchHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ARCRegionSwitchHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|