@aws-sdk/client-fis 3.1087.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/Fis.d.ts +87 -108
- package/dist-types/ts3.4/FisClient.d.ts +16 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CreateExperimentTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateTargetAccountConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteExperimentTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteTargetAccountConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetActionCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetExperimentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetExperimentTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSafetyLeverCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTargetAccountConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetTargetResourceTypeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListExperimentResolvedTargetsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListExperimentTemplatesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListExperimentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTargetAccountConfigurationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTargetResourceTypesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartExperimentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopExperimentCommand.d.ts +4 -9
- 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/UpdateExperimentTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateSafetyLeverStateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateTargetAccountConfigurationCommand.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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +3 -9
- package/dist-types/ts3.4/models/models_0.d.ts +16 -48
- package/dist-types/ts3.4/pagination/ListActionsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -19,10 +19,7 @@ import {
|
|
|
19
19
|
DeleteTargetAccountConfigurationCommandInput,
|
|
20
20
|
DeleteTargetAccountConfigurationCommandOutput,
|
|
21
21
|
} from "./commands/DeleteTargetAccountConfigurationCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetActionCommandInput,
|
|
24
|
-
GetActionCommandOutput,
|
|
25
|
-
} from "./commands/GetActionCommand";
|
|
22
|
+
import { GetActionCommandInput, GetActionCommandOutput } from "./commands/GetActionCommand";
|
|
26
23
|
import {
|
|
27
24
|
GetExperimentCommandInput,
|
|
28
25
|
GetExperimentCommandOutput,
|
|
@@ -47,10 +44,7 @@ import {
|
|
|
47
44
|
GetTargetResourceTypeCommandInput,
|
|
48
45
|
GetTargetResourceTypeCommandOutput,
|
|
49
46
|
} from "./commands/GetTargetResourceTypeCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListActionsCommandInput,
|
|
52
|
-
ListActionsCommandOutput,
|
|
53
|
-
} from "./commands/ListActionsCommand";
|
|
47
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
54
48
|
import {
|
|
55
49
|
ListExperimentResolvedTargetsCommandInput,
|
|
56
50
|
ListExperimentResolvedTargetsCommandOutput,
|
|
@@ -87,10 +81,7 @@ import {
|
|
|
87
81
|
StopExperimentCommandInput,
|
|
88
82
|
StopExperimentCommandOutput,
|
|
89
83
|
} from "./commands/StopExperimentCommand";
|
|
90
|
-
import {
|
|
91
|
-
TagResourceCommandInput,
|
|
92
|
-
TagResourceCommandOutput,
|
|
93
|
-
} from "./commands/TagResourceCommand";
|
|
84
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
94
85
|
import {
|
|
95
86
|
UntagResourceCommandInput,
|
|
96
87
|
UntagResourceCommandOutput,
|
|
@@ -111,399 +102,387 @@ import { FisClient } from "./FisClient";
|
|
|
111
102
|
export interface Fis {
|
|
112
103
|
createExperimentTemplate(
|
|
113
104
|
args: CreateExperimentTemplateCommandInput,
|
|
114
|
-
options?: __HttpHandlerOptions
|
|
105
|
+
options?: __HttpHandlerOptions,
|
|
115
106
|
): Promise<CreateExperimentTemplateCommandOutput>;
|
|
116
107
|
createExperimentTemplate(
|
|
117
108
|
args: CreateExperimentTemplateCommandInput,
|
|
118
|
-
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void
|
|
109
|
+
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void,
|
|
119
110
|
): void;
|
|
120
111
|
createExperimentTemplate(
|
|
121
112
|
args: CreateExperimentTemplateCommandInput,
|
|
122
113
|
options: __HttpHandlerOptions,
|
|
123
|
-
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void
|
|
114
|
+
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void,
|
|
124
115
|
): void;
|
|
125
116
|
createTargetAccountConfiguration(
|
|
126
117
|
args: CreateTargetAccountConfigurationCommandInput,
|
|
127
|
-
options?: __HttpHandlerOptions
|
|
118
|
+
options?: __HttpHandlerOptions,
|
|
128
119
|
): Promise<CreateTargetAccountConfigurationCommandOutput>;
|
|
129
120
|
createTargetAccountConfiguration(
|
|
130
121
|
args: CreateTargetAccountConfigurationCommandInput,
|
|
131
|
-
cb: (err: any, data?: CreateTargetAccountConfigurationCommandOutput) => void
|
|
122
|
+
cb: (err: any, data?: CreateTargetAccountConfigurationCommandOutput) => void,
|
|
132
123
|
): void;
|
|
133
124
|
createTargetAccountConfiguration(
|
|
134
125
|
args: CreateTargetAccountConfigurationCommandInput,
|
|
135
126
|
options: __HttpHandlerOptions,
|
|
136
|
-
cb: (err: any, data?: CreateTargetAccountConfigurationCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: CreateTargetAccountConfigurationCommandOutput) => void,
|
|
137
128
|
): void;
|
|
138
129
|
deleteExperimentTemplate(
|
|
139
130
|
args: DeleteExperimentTemplateCommandInput,
|
|
140
|
-
options?: __HttpHandlerOptions
|
|
131
|
+
options?: __HttpHandlerOptions,
|
|
141
132
|
): Promise<DeleteExperimentTemplateCommandOutput>;
|
|
142
133
|
deleteExperimentTemplate(
|
|
143
134
|
args: DeleteExperimentTemplateCommandInput,
|
|
144
|
-
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void,
|
|
145
136
|
): void;
|
|
146
137
|
deleteExperimentTemplate(
|
|
147
138
|
args: DeleteExperimentTemplateCommandInput,
|
|
148
139
|
options: __HttpHandlerOptions,
|
|
149
|
-
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void,
|
|
150
141
|
): void;
|
|
151
142
|
deleteTargetAccountConfiguration(
|
|
152
143
|
args: DeleteTargetAccountConfigurationCommandInput,
|
|
153
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
154
145
|
): Promise<DeleteTargetAccountConfigurationCommandOutput>;
|
|
155
146
|
deleteTargetAccountConfiguration(
|
|
156
147
|
args: DeleteTargetAccountConfigurationCommandInput,
|
|
157
|
-
cb: (err: any, data?: DeleteTargetAccountConfigurationCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: DeleteTargetAccountConfigurationCommandOutput) => void,
|
|
158
149
|
): void;
|
|
159
150
|
deleteTargetAccountConfiguration(
|
|
160
151
|
args: DeleteTargetAccountConfigurationCommandInput,
|
|
161
152
|
options: __HttpHandlerOptions,
|
|
162
|
-
cb: (err: any, data?: DeleteTargetAccountConfigurationCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: DeleteTargetAccountConfigurationCommandOutput) => void,
|
|
163
154
|
): void;
|
|
164
155
|
getAction(
|
|
165
156
|
args: GetActionCommandInput,
|
|
166
|
-
options?: __HttpHandlerOptions
|
|
157
|
+
options?: __HttpHandlerOptions,
|
|
167
158
|
): Promise<GetActionCommandOutput>;
|
|
168
159
|
getAction(
|
|
169
160
|
args: GetActionCommandInput,
|
|
170
|
-
cb: (err: any, data?: GetActionCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: GetActionCommandOutput) => void,
|
|
171
162
|
): void;
|
|
172
163
|
getAction(
|
|
173
164
|
args: GetActionCommandInput,
|
|
174
165
|
options: __HttpHandlerOptions,
|
|
175
|
-
cb: (err: any, data?: GetActionCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: GetActionCommandOutput) => void,
|
|
176
167
|
): void;
|
|
177
168
|
getExperiment(
|
|
178
169
|
args: GetExperimentCommandInput,
|
|
179
|
-
options?: __HttpHandlerOptions
|
|
170
|
+
options?: __HttpHandlerOptions,
|
|
180
171
|
): Promise<GetExperimentCommandOutput>;
|
|
181
172
|
getExperiment(
|
|
182
173
|
args: GetExperimentCommandInput,
|
|
183
|
-
cb: (err: any, data?: GetExperimentCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: GetExperimentCommandOutput) => void,
|
|
184
175
|
): void;
|
|
185
176
|
getExperiment(
|
|
186
177
|
args: GetExperimentCommandInput,
|
|
187
178
|
options: __HttpHandlerOptions,
|
|
188
|
-
cb: (err: any, data?: GetExperimentCommandOutput) => void
|
|
179
|
+
cb: (err: any, data?: GetExperimentCommandOutput) => void,
|
|
189
180
|
): void;
|
|
190
181
|
getExperimentTargetAccountConfiguration(
|
|
191
182
|
args: GetExperimentTargetAccountConfigurationCommandInput,
|
|
192
|
-
options?: __HttpHandlerOptions
|
|
183
|
+
options?: __HttpHandlerOptions,
|
|
193
184
|
): Promise<GetExperimentTargetAccountConfigurationCommandOutput>;
|
|
194
185
|
getExperimentTargetAccountConfiguration(
|
|
195
186
|
args: GetExperimentTargetAccountConfigurationCommandInput,
|
|
196
|
-
cb: (
|
|
197
|
-
err: any,
|
|
198
|
-
data?: GetExperimentTargetAccountConfigurationCommandOutput
|
|
199
|
-
) => void
|
|
187
|
+
cb: (err: any, data?: GetExperimentTargetAccountConfigurationCommandOutput) => void,
|
|
200
188
|
): void;
|
|
201
189
|
getExperimentTargetAccountConfiguration(
|
|
202
190
|
args: GetExperimentTargetAccountConfigurationCommandInput,
|
|
203
191
|
options: __HttpHandlerOptions,
|
|
204
|
-
cb: (
|
|
205
|
-
err: any,
|
|
206
|
-
data?: GetExperimentTargetAccountConfigurationCommandOutput
|
|
207
|
-
) => void
|
|
192
|
+
cb: (err: any, data?: GetExperimentTargetAccountConfigurationCommandOutput) => void,
|
|
208
193
|
): void;
|
|
209
194
|
getExperimentTemplate(
|
|
210
195
|
args: GetExperimentTemplateCommandInput,
|
|
211
|
-
options?: __HttpHandlerOptions
|
|
196
|
+
options?: __HttpHandlerOptions,
|
|
212
197
|
): Promise<GetExperimentTemplateCommandOutput>;
|
|
213
198
|
getExperimentTemplate(
|
|
214
199
|
args: GetExperimentTemplateCommandInput,
|
|
215
|
-
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void,
|
|
216
201
|
): void;
|
|
217
202
|
getExperimentTemplate(
|
|
218
203
|
args: GetExperimentTemplateCommandInput,
|
|
219
204
|
options: __HttpHandlerOptions,
|
|
220
|
-
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void,
|
|
221
206
|
): void;
|
|
222
207
|
getSafetyLever(
|
|
223
208
|
args: GetSafetyLeverCommandInput,
|
|
224
|
-
options?: __HttpHandlerOptions
|
|
209
|
+
options?: __HttpHandlerOptions,
|
|
225
210
|
): Promise<GetSafetyLeverCommandOutput>;
|
|
226
211
|
getSafetyLever(
|
|
227
212
|
args: GetSafetyLeverCommandInput,
|
|
228
|
-
cb: (err: any, data?: GetSafetyLeverCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: GetSafetyLeverCommandOutput) => void,
|
|
229
214
|
): void;
|
|
230
215
|
getSafetyLever(
|
|
231
216
|
args: GetSafetyLeverCommandInput,
|
|
232
217
|
options: __HttpHandlerOptions,
|
|
233
|
-
cb: (err: any, data?: GetSafetyLeverCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: GetSafetyLeverCommandOutput) => void,
|
|
234
219
|
): void;
|
|
235
220
|
getTargetAccountConfiguration(
|
|
236
221
|
args: GetTargetAccountConfigurationCommandInput,
|
|
237
|
-
options?: __HttpHandlerOptions
|
|
222
|
+
options?: __HttpHandlerOptions,
|
|
238
223
|
): Promise<GetTargetAccountConfigurationCommandOutput>;
|
|
239
224
|
getTargetAccountConfiguration(
|
|
240
225
|
args: GetTargetAccountConfigurationCommandInput,
|
|
241
|
-
cb: (err: any, data?: GetTargetAccountConfigurationCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: GetTargetAccountConfigurationCommandOutput) => void,
|
|
242
227
|
): void;
|
|
243
228
|
getTargetAccountConfiguration(
|
|
244
229
|
args: GetTargetAccountConfigurationCommandInput,
|
|
245
230
|
options: __HttpHandlerOptions,
|
|
246
|
-
cb: (err: any, data?: GetTargetAccountConfigurationCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: GetTargetAccountConfigurationCommandOutput) => void,
|
|
247
232
|
): void;
|
|
248
233
|
getTargetResourceType(
|
|
249
234
|
args: GetTargetResourceTypeCommandInput,
|
|
250
|
-
options?: __HttpHandlerOptions
|
|
235
|
+
options?: __HttpHandlerOptions,
|
|
251
236
|
): Promise<GetTargetResourceTypeCommandOutput>;
|
|
252
237
|
getTargetResourceType(
|
|
253
238
|
args: GetTargetResourceTypeCommandInput,
|
|
254
|
-
cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void,
|
|
255
240
|
): void;
|
|
256
241
|
getTargetResourceType(
|
|
257
242
|
args: GetTargetResourceTypeCommandInput,
|
|
258
243
|
options: __HttpHandlerOptions,
|
|
259
|
-
cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void,
|
|
260
245
|
): void;
|
|
261
246
|
listActions(): Promise<ListActionsCommandOutput>;
|
|
262
247
|
listActions(
|
|
263
248
|
args: ListActionsCommandInput,
|
|
264
|
-
options?: __HttpHandlerOptions
|
|
249
|
+
options?: __HttpHandlerOptions,
|
|
265
250
|
): Promise<ListActionsCommandOutput>;
|
|
266
251
|
listActions(
|
|
267
252
|
args: ListActionsCommandInput,
|
|
268
|
-
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
253
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void,
|
|
269
254
|
): void;
|
|
270
255
|
listActions(
|
|
271
256
|
args: ListActionsCommandInput,
|
|
272
257
|
options: __HttpHandlerOptions,
|
|
273
|
-
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void,
|
|
274
259
|
): void;
|
|
275
260
|
listExperimentResolvedTargets(
|
|
276
261
|
args: ListExperimentResolvedTargetsCommandInput,
|
|
277
|
-
options?: __HttpHandlerOptions
|
|
262
|
+
options?: __HttpHandlerOptions,
|
|
278
263
|
): Promise<ListExperimentResolvedTargetsCommandOutput>;
|
|
279
264
|
listExperimentResolvedTargets(
|
|
280
265
|
args: ListExperimentResolvedTargetsCommandInput,
|
|
281
|
-
cb: (err: any, data?: ListExperimentResolvedTargetsCommandOutput) => void
|
|
266
|
+
cb: (err: any, data?: ListExperimentResolvedTargetsCommandOutput) => void,
|
|
282
267
|
): void;
|
|
283
268
|
listExperimentResolvedTargets(
|
|
284
269
|
args: ListExperimentResolvedTargetsCommandInput,
|
|
285
270
|
options: __HttpHandlerOptions,
|
|
286
|
-
cb: (err: any, data?: ListExperimentResolvedTargetsCommandOutput) => void
|
|
271
|
+
cb: (err: any, data?: ListExperimentResolvedTargetsCommandOutput) => void,
|
|
287
272
|
): void;
|
|
288
273
|
listExperiments(): Promise<ListExperimentsCommandOutput>;
|
|
289
274
|
listExperiments(
|
|
290
275
|
args: ListExperimentsCommandInput,
|
|
291
|
-
options?: __HttpHandlerOptions
|
|
276
|
+
options?: __HttpHandlerOptions,
|
|
292
277
|
): Promise<ListExperimentsCommandOutput>;
|
|
293
278
|
listExperiments(
|
|
294
279
|
args: ListExperimentsCommandInput,
|
|
295
|
-
cb: (err: any, data?: ListExperimentsCommandOutput) => void
|
|
280
|
+
cb: (err: any, data?: ListExperimentsCommandOutput) => void,
|
|
296
281
|
): void;
|
|
297
282
|
listExperiments(
|
|
298
283
|
args: ListExperimentsCommandInput,
|
|
299
284
|
options: __HttpHandlerOptions,
|
|
300
|
-
cb: (err: any, data?: ListExperimentsCommandOutput) => void
|
|
285
|
+
cb: (err: any, data?: ListExperimentsCommandOutput) => void,
|
|
301
286
|
): void;
|
|
302
287
|
listExperimentTargetAccountConfigurations(
|
|
303
288
|
args: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
304
|
-
options?: __HttpHandlerOptions
|
|
289
|
+
options?: __HttpHandlerOptions,
|
|
305
290
|
): Promise<ListExperimentTargetAccountConfigurationsCommandOutput>;
|
|
306
291
|
listExperimentTargetAccountConfigurations(
|
|
307
292
|
args: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
308
|
-
cb: (
|
|
309
|
-
err: any,
|
|
310
|
-
data?: ListExperimentTargetAccountConfigurationsCommandOutput
|
|
311
|
-
) => void
|
|
293
|
+
cb: (err: any, data?: ListExperimentTargetAccountConfigurationsCommandOutput) => void,
|
|
312
294
|
): void;
|
|
313
295
|
listExperimentTargetAccountConfigurations(
|
|
314
296
|
args: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
315
297
|
options: __HttpHandlerOptions,
|
|
316
|
-
cb: (
|
|
317
|
-
err: any,
|
|
318
|
-
data?: ListExperimentTargetAccountConfigurationsCommandOutput
|
|
319
|
-
) => void
|
|
298
|
+
cb: (err: any, data?: ListExperimentTargetAccountConfigurationsCommandOutput) => void,
|
|
320
299
|
): void;
|
|
321
300
|
listExperimentTemplates(): Promise<ListExperimentTemplatesCommandOutput>;
|
|
322
301
|
listExperimentTemplates(
|
|
323
302
|
args: ListExperimentTemplatesCommandInput,
|
|
324
|
-
options?: __HttpHandlerOptions
|
|
303
|
+
options?: __HttpHandlerOptions,
|
|
325
304
|
): Promise<ListExperimentTemplatesCommandOutput>;
|
|
326
305
|
listExperimentTemplates(
|
|
327
306
|
args: ListExperimentTemplatesCommandInput,
|
|
328
|
-
cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void
|
|
307
|
+
cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void,
|
|
329
308
|
): void;
|
|
330
309
|
listExperimentTemplates(
|
|
331
310
|
args: ListExperimentTemplatesCommandInput,
|
|
332
311
|
options: __HttpHandlerOptions,
|
|
333
|
-
cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void
|
|
312
|
+
cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void,
|
|
334
313
|
): void;
|
|
335
314
|
listTagsForResource(
|
|
336
315
|
args: ListTagsForResourceCommandInput,
|
|
337
|
-
options?: __HttpHandlerOptions
|
|
316
|
+
options?: __HttpHandlerOptions,
|
|
338
317
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
339
318
|
listTagsForResource(
|
|
340
319
|
args: ListTagsForResourceCommandInput,
|
|
341
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
320
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
342
321
|
): void;
|
|
343
322
|
listTagsForResource(
|
|
344
323
|
args: ListTagsForResourceCommandInput,
|
|
345
324
|
options: __HttpHandlerOptions,
|
|
346
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
325
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
347
326
|
): void;
|
|
348
327
|
listTargetAccountConfigurations(
|
|
349
328
|
args: ListTargetAccountConfigurationsCommandInput,
|
|
350
|
-
options?: __HttpHandlerOptions
|
|
329
|
+
options?: __HttpHandlerOptions,
|
|
351
330
|
): Promise<ListTargetAccountConfigurationsCommandOutput>;
|
|
352
331
|
listTargetAccountConfigurations(
|
|
353
332
|
args: ListTargetAccountConfigurationsCommandInput,
|
|
354
|
-
cb: (err: any, data?: ListTargetAccountConfigurationsCommandOutput) => void
|
|
333
|
+
cb: (err: any, data?: ListTargetAccountConfigurationsCommandOutput) => void,
|
|
355
334
|
): void;
|
|
356
335
|
listTargetAccountConfigurations(
|
|
357
336
|
args: ListTargetAccountConfigurationsCommandInput,
|
|
358
337
|
options: __HttpHandlerOptions,
|
|
359
|
-
cb: (err: any, data?: ListTargetAccountConfigurationsCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: ListTargetAccountConfigurationsCommandOutput) => void,
|
|
360
339
|
): void;
|
|
361
340
|
listTargetResourceTypes(): Promise<ListTargetResourceTypesCommandOutput>;
|
|
362
341
|
listTargetResourceTypes(
|
|
363
342
|
args: ListTargetResourceTypesCommandInput,
|
|
364
|
-
options?: __HttpHandlerOptions
|
|
343
|
+
options?: __HttpHandlerOptions,
|
|
365
344
|
): Promise<ListTargetResourceTypesCommandOutput>;
|
|
366
345
|
listTargetResourceTypes(
|
|
367
346
|
args: ListTargetResourceTypesCommandInput,
|
|
368
|
-
cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void
|
|
347
|
+
cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void,
|
|
369
348
|
): void;
|
|
370
349
|
listTargetResourceTypes(
|
|
371
350
|
args: ListTargetResourceTypesCommandInput,
|
|
372
351
|
options: __HttpHandlerOptions,
|
|
373
|
-
cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void
|
|
352
|
+
cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void,
|
|
374
353
|
): void;
|
|
375
354
|
startExperiment(
|
|
376
355
|
args: StartExperimentCommandInput,
|
|
377
|
-
options?: __HttpHandlerOptions
|
|
356
|
+
options?: __HttpHandlerOptions,
|
|
378
357
|
): Promise<StartExperimentCommandOutput>;
|
|
379
358
|
startExperiment(
|
|
380
359
|
args: StartExperimentCommandInput,
|
|
381
|
-
cb: (err: any, data?: StartExperimentCommandOutput) => void
|
|
360
|
+
cb: (err: any, data?: StartExperimentCommandOutput) => void,
|
|
382
361
|
): void;
|
|
383
362
|
startExperiment(
|
|
384
363
|
args: StartExperimentCommandInput,
|
|
385
364
|
options: __HttpHandlerOptions,
|
|
386
|
-
cb: (err: any, data?: StartExperimentCommandOutput) => void
|
|
365
|
+
cb: (err: any, data?: StartExperimentCommandOutput) => void,
|
|
387
366
|
): void;
|
|
388
367
|
stopExperiment(
|
|
389
368
|
args: StopExperimentCommandInput,
|
|
390
|
-
options?: __HttpHandlerOptions
|
|
369
|
+
options?: __HttpHandlerOptions,
|
|
391
370
|
): Promise<StopExperimentCommandOutput>;
|
|
392
371
|
stopExperiment(
|
|
393
372
|
args: StopExperimentCommandInput,
|
|
394
|
-
cb: (err: any, data?: StopExperimentCommandOutput) => void
|
|
373
|
+
cb: (err: any, data?: StopExperimentCommandOutput) => void,
|
|
395
374
|
): void;
|
|
396
375
|
stopExperiment(
|
|
397
376
|
args: StopExperimentCommandInput,
|
|
398
377
|
options: __HttpHandlerOptions,
|
|
399
|
-
cb: (err: any, data?: StopExperimentCommandOutput) => void
|
|
378
|
+
cb: (err: any, data?: StopExperimentCommandOutput) => void,
|
|
400
379
|
): void;
|
|
401
380
|
tagResource(
|
|
402
381
|
args: TagResourceCommandInput,
|
|
403
|
-
options?: __HttpHandlerOptions
|
|
382
|
+
options?: __HttpHandlerOptions,
|
|
404
383
|
): Promise<TagResourceCommandOutput>;
|
|
405
384
|
tagResource(
|
|
406
385
|
args: TagResourceCommandInput,
|
|
407
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
386
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
408
387
|
): void;
|
|
409
388
|
tagResource(
|
|
410
389
|
args: TagResourceCommandInput,
|
|
411
390
|
options: __HttpHandlerOptions,
|
|
412
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
391
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
413
392
|
): void;
|
|
414
393
|
untagResource(
|
|
415
394
|
args: UntagResourceCommandInput,
|
|
416
|
-
options?: __HttpHandlerOptions
|
|
395
|
+
options?: __HttpHandlerOptions,
|
|
417
396
|
): Promise<UntagResourceCommandOutput>;
|
|
418
397
|
untagResource(
|
|
419
398
|
args: UntagResourceCommandInput,
|
|
420
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
399
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
421
400
|
): void;
|
|
422
401
|
untagResource(
|
|
423
402
|
args: UntagResourceCommandInput,
|
|
424
403
|
options: __HttpHandlerOptions,
|
|
425
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
404
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
426
405
|
): void;
|
|
427
406
|
updateExperimentTemplate(
|
|
428
407
|
args: UpdateExperimentTemplateCommandInput,
|
|
429
|
-
options?: __HttpHandlerOptions
|
|
408
|
+
options?: __HttpHandlerOptions,
|
|
430
409
|
): Promise<UpdateExperimentTemplateCommandOutput>;
|
|
431
410
|
updateExperimentTemplate(
|
|
432
411
|
args: UpdateExperimentTemplateCommandInput,
|
|
433
|
-
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void
|
|
412
|
+
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void,
|
|
434
413
|
): void;
|
|
435
414
|
updateExperimentTemplate(
|
|
436
415
|
args: UpdateExperimentTemplateCommandInput,
|
|
437
416
|
options: __HttpHandlerOptions,
|
|
438
|
-
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void
|
|
417
|
+
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void,
|
|
439
418
|
): void;
|
|
440
419
|
updateSafetyLeverState(
|
|
441
420
|
args: UpdateSafetyLeverStateCommandInput,
|
|
442
|
-
options?: __HttpHandlerOptions
|
|
421
|
+
options?: __HttpHandlerOptions,
|
|
443
422
|
): Promise<UpdateSafetyLeverStateCommandOutput>;
|
|
444
423
|
updateSafetyLeverState(
|
|
445
424
|
args: UpdateSafetyLeverStateCommandInput,
|
|
446
|
-
cb: (err: any, data?: UpdateSafetyLeverStateCommandOutput) => void
|
|
425
|
+
cb: (err: any, data?: UpdateSafetyLeverStateCommandOutput) => void,
|
|
447
426
|
): void;
|
|
448
427
|
updateSafetyLeverState(
|
|
449
428
|
args: UpdateSafetyLeverStateCommandInput,
|
|
450
429
|
options: __HttpHandlerOptions,
|
|
451
|
-
cb: (err: any, data?: UpdateSafetyLeverStateCommandOutput) => void
|
|
430
|
+
cb: (err: any, data?: UpdateSafetyLeverStateCommandOutput) => void,
|
|
452
431
|
): void;
|
|
453
432
|
updateTargetAccountConfiguration(
|
|
454
433
|
args: UpdateTargetAccountConfigurationCommandInput,
|
|
455
|
-
options?: __HttpHandlerOptions
|
|
434
|
+
options?: __HttpHandlerOptions,
|
|
456
435
|
): Promise<UpdateTargetAccountConfigurationCommandOutput>;
|
|
457
436
|
updateTargetAccountConfiguration(
|
|
458
437
|
args: UpdateTargetAccountConfigurationCommandInput,
|
|
459
|
-
cb: (err: any, data?: UpdateTargetAccountConfigurationCommandOutput) => void
|
|
438
|
+
cb: (err: any, data?: UpdateTargetAccountConfigurationCommandOutput) => void,
|
|
460
439
|
): void;
|
|
461
440
|
updateTargetAccountConfiguration(
|
|
462
441
|
args: UpdateTargetAccountConfigurationCommandInput,
|
|
463
442
|
options: __HttpHandlerOptions,
|
|
464
|
-
cb: (err: any, data?: UpdateTargetAccountConfigurationCommandOutput) => void
|
|
443
|
+
cb: (err: any, data?: UpdateTargetAccountConfigurationCommandOutput) => void,
|
|
465
444
|
): void;
|
|
466
445
|
paginateListActions(
|
|
467
446
|
args?: ListActionsCommandInput,
|
|
468
447
|
paginationConfig?: Pick<
|
|
469
448
|
PaginationConfiguration,
|
|
470
449
|
Exclude<keyof PaginationConfiguration, "client">
|
|
471
|
-
|
|
450
|
+
>,
|
|
472
451
|
): Paginator<ListActionsCommandOutput>;
|
|
473
452
|
paginateListExperimentResolvedTargets(
|
|
474
453
|
args: ListExperimentResolvedTargetsCommandInput,
|
|
475
454
|
paginationConfig?: Pick<
|
|
476
455
|
PaginationConfiguration,
|
|
477
456
|
Exclude<keyof PaginationConfiguration, "client">
|
|
478
|
-
|
|
457
|
+
>,
|
|
479
458
|
): Paginator<ListExperimentResolvedTargetsCommandOutput>;
|
|
480
459
|
paginateListExperiments(
|
|
481
460
|
args?: ListExperimentsCommandInput,
|
|
482
461
|
paginationConfig?: Pick<
|
|
483
462
|
PaginationConfiguration,
|
|
484
463
|
Exclude<keyof PaginationConfiguration, "client">
|
|
485
|
-
|
|
464
|
+
>,
|
|
486
465
|
): Paginator<ListExperimentsCommandOutput>;
|
|
487
466
|
paginateListExperimentTemplates(
|
|
488
467
|
args?: ListExperimentTemplatesCommandInput,
|
|
489
468
|
paginationConfig?: Pick<
|
|
490
469
|
PaginationConfiguration,
|
|
491
470
|
Exclude<keyof PaginationConfiguration, "client">
|
|
492
|
-
|
|
471
|
+
>,
|
|
493
472
|
): Paginator<ListExperimentTemplatesCommandOutput>;
|
|
494
473
|
paginateListTargetAccountConfigurations(
|
|
495
474
|
args: ListTargetAccountConfigurationsCommandInput,
|
|
496
475
|
paginationConfig?: Pick<
|
|
497
476
|
PaginationConfiguration,
|
|
498
477
|
Exclude<keyof PaginationConfiguration, "client">
|
|
499
|
-
|
|
478
|
+
>,
|
|
500
479
|
): Paginator<ListTargetAccountConfigurationsCommandOutput>;
|
|
501
480
|
paginateListTargetResourceTypes(
|
|
502
481
|
args?: ListTargetResourceTypesCommandInput,
|
|
503
482
|
paginationConfig?: Pick<
|
|
504
483
|
PaginationConfiguration,
|
|
505
484
|
Exclude<keyof PaginationConfiguration, "client">
|
|
506
|
-
|
|
485
|
+
>,
|
|
507
486
|
): Paginator<ListTargetResourceTypesCommandOutput>;
|
|
508
487
|
}
|
|
509
488
|
export declare class Fis extends FisClient implements Fis {}
|
|
@@ -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 {
|
|
@@ -52,10 +49,7 @@ import {
|
|
|
52
49
|
DeleteTargetAccountConfigurationCommandInput,
|
|
53
50
|
DeleteTargetAccountConfigurationCommandOutput,
|
|
54
51
|
} from "./commands/DeleteTargetAccountConfigurationCommand";
|
|
55
|
-
import {
|
|
56
|
-
GetActionCommandInput,
|
|
57
|
-
GetActionCommandOutput,
|
|
58
|
-
} from "./commands/GetActionCommand";
|
|
52
|
+
import { GetActionCommandInput, GetActionCommandOutput } from "./commands/GetActionCommand";
|
|
59
53
|
import {
|
|
60
54
|
GetExperimentCommandInput,
|
|
61
55
|
GetExperimentCommandOutput,
|
|
@@ -80,10 +74,7 @@ import {
|
|
|
80
74
|
GetTargetResourceTypeCommandInput,
|
|
81
75
|
GetTargetResourceTypeCommandOutput,
|
|
82
76
|
} from "./commands/GetTargetResourceTypeCommand";
|
|
83
|
-
import {
|
|
84
|
-
ListActionsCommandInput,
|
|
85
|
-
ListActionsCommandOutput,
|
|
86
|
-
} from "./commands/ListActionsCommand";
|
|
77
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "./commands/ListActionsCommand";
|
|
87
78
|
import {
|
|
88
79
|
ListExperimentResolvedTargetsCommandInput,
|
|
89
80
|
ListExperimentResolvedTargetsCommandOutput,
|
|
@@ -120,10 +111,7 @@ import {
|
|
|
120
111
|
StopExperimentCommandInput,
|
|
121
112
|
StopExperimentCommandOutput,
|
|
122
113
|
} from "./commands/StopExperimentCommand";
|
|
123
|
-
import {
|
|
124
|
-
TagResourceCommandInput,
|
|
125
|
-
TagResourceCommandOutput,
|
|
126
|
-
} from "./commands/TagResourceCommand";
|
|
114
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
127
115
|
import {
|
|
128
116
|
UntagResourceCommandInput,
|
|
129
117
|
UntagResourceCommandOutput,
|
|
@@ -201,8 +189,7 @@ export type ServiceOutputTypes =
|
|
|
201
189
|
| UpdateExperimentTemplateCommandOutput
|
|
202
190
|
| UpdateSafetyLeverStateCommandOutput
|
|
203
191
|
| UpdateTargetAccountConfigurationCommandOutput;
|
|
204
|
-
export interface ClientDefaults
|
|
205
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
192
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
206
193
|
requestHandler?: __HttpHandlerUserInput;
|
|
207
194
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
208
195
|
urlParser?: __UrlParser;
|
|
@@ -227,9 +214,7 @@ export interface ClientDefaults
|
|
|
227
214
|
extensions?: RuntimeExtension[];
|
|
228
215
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
229
216
|
}
|
|
230
|
-
export type FisClientConfigType = Partial<
|
|
231
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
232
|
-
> &
|
|
217
|
+
export type FisClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
233
218
|
ClientDefaults &
|
|
234
219
|
UserAgentInputConfig &
|
|
235
220
|
RetryInputConfig &
|
|
@@ -239,17 +224,16 @@ export type FisClientConfigType = Partial<
|
|
|
239
224
|
HttpAuthSchemeInputConfig &
|
|
240
225
|
ClientInputEndpointParameters;
|
|
241
226
|
export interface FisClientConfig extends FisClientConfigType {}
|
|
242
|
-
export type FisClientResolvedConfigType =
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
ClientResolvedEndpointParameters;
|
|
227
|
+
export type FisClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
228
|
+
Required<ClientDefaults> &
|
|
229
|
+
RuntimeExtensionsConfig &
|
|
230
|
+
UserAgentResolvedConfig &
|
|
231
|
+
RetryResolvedConfig &
|
|
232
|
+
RegionResolvedConfig &
|
|
233
|
+
HostHeaderResolvedConfig &
|
|
234
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
235
|
+
HttpAuthSchemeResolvedConfig &
|
|
236
|
+
ClientResolvedEndpointParameters;
|
|
253
237
|
export interface FisClientResolvedConfig extends FisClientResolvedConfigType {}
|
|
254
238
|
export declare class FisClient extends __Client<
|
|
255
239
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { FisHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: FisHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: FisHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): FisHttpAuthSchemeProvider;
|
|
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;
|