@aws-sdk/client-fis 3.168.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Fis.d.ts +292 -85
- package/dist-types/ts3.4/FisClient.d.ts +224 -89
- package/dist-types/ts3.4/commands/CreateExperimentTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteExperimentTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetActionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetExperimentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetExperimentTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetTargetResourceTypeCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListExperimentTemplatesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListExperimentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTargetResourceTypesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartExperimentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopExperimentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateExperimentTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +16 -16
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/FisServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +821 -751
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListActionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListExperimentTemplatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListExperimentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTargetResourceTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -50
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
@@ -1,85 +1,292 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateExperimentTemplateCommandInput,
|
|
4
|
+
CreateExperimentTemplateCommandOutput,
|
|
5
|
+
} from "./commands/CreateExperimentTemplateCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteExperimentTemplateCommandInput,
|
|
8
|
+
DeleteExperimentTemplateCommandOutput,
|
|
9
|
+
} from "./commands/DeleteExperimentTemplateCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetActionCommandInput,
|
|
12
|
+
GetActionCommandOutput,
|
|
13
|
+
} from "./commands/GetActionCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetExperimentCommandInput,
|
|
16
|
+
GetExperimentCommandOutput,
|
|
17
|
+
} from "./commands/GetExperimentCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetExperimentTemplateCommandInput,
|
|
20
|
+
GetExperimentTemplateCommandOutput,
|
|
21
|
+
} from "./commands/GetExperimentTemplateCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetTargetResourceTypeCommandInput,
|
|
24
|
+
GetTargetResourceTypeCommandOutput,
|
|
25
|
+
} from "./commands/GetTargetResourceTypeCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListActionsCommandInput,
|
|
28
|
+
ListActionsCommandOutput,
|
|
29
|
+
} from "./commands/ListActionsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListExperimentsCommandInput,
|
|
32
|
+
ListExperimentsCommandOutput,
|
|
33
|
+
} from "./commands/ListExperimentsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListExperimentTemplatesCommandInput,
|
|
36
|
+
ListExperimentTemplatesCommandOutput,
|
|
37
|
+
} from "./commands/ListExperimentTemplatesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTagsForResourceCommandInput,
|
|
40
|
+
ListTagsForResourceCommandOutput,
|
|
41
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTargetResourceTypesCommandInput,
|
|
44
|
+
ListTargetResourceTypesCommandOutput,
|
|
45
|
+
} from "./commands/ListTargetResourceTypesCommand";
|
|
46
|
+
import {
|
|
47
|
+
StartExperimentCommandInput,
|
|
48
|
+
StartExperimentCommandOutput,
|
|
49
|
+
} from "./commands/StartExperimentCommand";
|
|
50
|
+
import {
|
|
51
|
+
StopExperimentCommandInput,
|
|
52
|
+
StopExperimentCommandOutput,
|
|
53
|
+
} from "./commands/StopExperimentCommand";
|
|
54
|
+
import {
|
|
55
|
+
TagResourceCommandInput,
|
|
56
|
+
TagResourceCommandOutput,
|
|
57
|
+
} from "./commands/TagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UntagResourceCommandInput,
|
|
60
|
+
UntagResourceCommandOutput,
|
|
61
|
+
} from "./commands/UntagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateExperimentTemplateCommandInput,
|
|
64
|
+
UpdateExperimentTemplateCommandOutput,
|
|
65
|
+
} from "./commands/UpdateExperimentTemplateCommand";
|
|
66
|
+
import { FisClient } from "./FisClient";
|
|
67
|
+
|
|
68
|
+
export declare class Fis extends FisClient {
|
|
69
|
+
createExperimentTemplate(
|
|
70
|
+
args: CreateExperimentTemplateCommandInput,
|
|
71
|
+
options?: __HttpHandlerOptions
|
|
72
|
+
): Promise<CreateExperimentTemplateCommandOutput>;
|
|
73
|
+
createExperimentTemplate(
|
|
74
|
+
args: CreateExperimentTemplateCommandInput,
|
|
75
|
+
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void
|
|
76
|
+
): void;
|
|
77
|
+
createExperimentTemplate(
|
|
78
|
+
args: CreateExperimentTemplateCommandInput,
|
|
79
|
+
options: __HttpHandlerOptions,
|
|
80
|
+
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void
|
|
81
|
+
): void;
|
|
82
|
+
|
|
83
|
+
deleteExperimentTemplate(
|
|
84
|
+
args: DeleteExperimentTemplateCommandInput,
|
|
85
|
+
options?: __HttpHandlerOptions
|
|
86
|
+
): Promise<DeleteExperimentTemplateCommandOutput>;
|
|
87
|
+
deleteExperimentTemplate(
|
|
88
|
+
args: DeleteExperimentTemplateCommandInput,
|
|
89
|
+
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void
|
|
90
|
+
): void;
|
|
91
|
+
deleteExperimentTemplate(
|
|
92
|
+
args: DeleteExperimentTemplateCommandInput,
|
|
93
|
+
options: __HttpHandlerOptions,
|
|
94
|
+
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void
|
|
95
|
+
): void;
|
|
96
|
+
|
|
97
|
+
getAction(
|
|
98
|
+
args: GetActionCommandInput,
|
|
99
|
+
options?: __HttpHandlerOptions
|
|
100
|
+
): Promise<GetActionCommandOutput>;
|
|
101
|
+
getAction(
|
|
102
|
+
args: GetActionCommandInput,
|
|
103
|
+
cb: (err: any, data?: GetActionCommandOutput) => void
|
|
104
|
+
): void;
|
|
105
|
+
getAction(
|
|
106
|
+
args: GetActionCommandInput,
|
|
107
|
+
options: __HttpHandlerOptions,
|
|
108
|
+
cb: (err: any, data?: GetActionCommandOutput) => void
|
|
109
|
+
): void;
|
|
110
|
+
|
|
111
|
+
getExperiment(
|
|
112
|
+
args: GetExperimentCommandInput,
|
|
113
|
+
options?: __HttpHandlerOptions
|
|
114
|
+
): Promise<GetExperimentCommandOutput>;
|
|
115
|
+
getExperiment(
|
|
116
|
+
args: GetExperimentCommandInput,
|
|
117
|
+
cb: (err: any, data?: GetExperimentCommandOutput) => void
|
|
118
|
+
): void;
|
|
119
|
+
getExperiment(
|
|
120
|
+
args: GetExperimentCommandInput,
|
|
121
|
+
options: __HttpHandlerOptions,
|
|
122
|
+
cb: (err: any, data?: GetExperimentCommandOutput) => void
|
|
123
|
+
): void;
|
|
124
|
+
|
|
125
|
+
getExperimentTemplate(
|
|
126
|
+
args: GetExperimentTemplateCommandInput,
|
|
127
|
+
options?: __HttpHandlerOptions
|
|
128
|
+
): Promise<GetExperimentTemplateCommandOutput>;
|
|
129
|
+
getExperimentTemplate(
|
|
130
|
+
args: GetExperimentTemplateCommandInput,
|
|
131
|
+
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void
|
|
132
|
+
): void;
|
|
133
|
+
getExperimentTemplate(
|
|
134
|
+
args: GetExperimentTemplateCommandInput,
|
|
135
|
+
options: __HttpHandlerOptions,
|
|
136
|
+
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void
|
|
137
|
+
): void;
|
|
138
|
+
|
|
139
|
+
getTargetResourceType(
|
|
140
|
+
args: GetTargetResourceTypeCommandInput,
|
|
141
|
+
options?: __HttpHandlerOptions
|
|
142
|
+
): Promise<GetTargetResourceTypeCommandOutput>;
|
|
143
|
+
getTargetResourceType(
|
|
144
|
+
args: GetTargetResourceTypeCommandInput,
|
|
145
|
+
cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void
|
|
146
|
+
): void;
|
|
147
|
+
getTargetResourceType(
|
|
148
|
+
args: GetTargetResourceTypeCommandInput,
|
|
149
|
+
options: __HttpHandlerOptions,
|
|
150
|
+
cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
|
|
153
|
+
listActions(
|
|
154
|
+
args: ListActionsCommandInput,
|
|
155
|
+
options?: __HttpHandlerOptions
|
|
156
|
+
): Promise<ListActionsCommandOutput>;
|
|
157
|
+
listActions(
|
|
158
|
+
args: ListActionsCommandInput,
|
|
159
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
160
|
+
): void;
|
|
161
|
+
listActions(
|
|
162
|
+
args: ListActionsCommandInput,
|
|
163
|
+
options: __HttpHandlerOptions,
|
|
164
|
+
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
165
|
+
): void;
|
|
166
|
+
|
|
167
|
+
listExperiments(
|
|
168
|
+
args: ListExperimentsCommandInput,
|
|
169
|
+
options?: __HttpHandlerOptions
|
|
170
|
+
): Promise<ListExperimentsCommandOutput>;
|
|
171
|
+
listExperiments(
|
|
172
|
+
args: ListExperimentsCommandInput,
|
|
173
|
+
cb: (err: any, data?: ListExperimentsCommandOutput) => void
|
|
174
|
+
): void;
|
|
175
|
+
listExperiments(
|
|
176
|
+
args: ListExperimentsCommandInput,
|
|
177
|
+
options: __HttpHandlerOptions,
|
|
178
|
+
cb: (err: any, data?: ListExperimentsCommandOutput) => void
|
|
179
|
+
): void;
|
|
180
|
+
|
|
181
|
+
listExperimentTemplates(
|
|
182
|
+
args: ListExperimentTemplatesCommandInput,
|
|
183
|
+
options?: __HttpHandlerOptions
|
|
184
|
+
): Promise<ListExperimentTemplatesCommandOutput>;
|
|
185
|
+
listExperimentTemplates(
|
|
186
|
+
args: ListExperimentTemplatesCommandInput,
|
|
187
|
+
cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void
|
|
188
|
+
): void;
|
|
189
|
+
listExperimentTemplates(
|
|
190
|
+
args: ListExperimentTemplatesCommandInput,
|
|
191
|
+
options: __HttpHandlerOptions,
|
|
192
|
+
cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void
|
|
193
|
+
): void;
|
|
194
|
+
|
|
195
|
+
listTagsForResource(
|
|
196
|
+
args: ListTagsForResourceCommandInput,
|
|
197
|
+
options?: __HttpHandlerOptions
|
|
198
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
199
|
+
listTagsForResource(
|
|
200
|
+
args: ListTagsForResourceCommandInput,
|
|
201
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
listTagsForResource(
|
|
204
|
+
args: ListTagsForResourceCommandInput,
|
|
205
|
+
options: __HttpHandlerOptions,
|
|
206
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
207
|
+
): void;
|
|
208
|
+
|
|
209
|
+
listTargetResourceTypes(
|
|
210
|
+
args: ListTargetResourceTypesCommandInput,
|
|
211
|
+
options?: __HttpHandlerOptions
|
|
212
|
+
): Promise<ListTargetResourceTypesCommandOutput>;
|
|
213
|
+
listTargetResourceTypes(
|
|
214
|
+
args: ListTargetResourceTypesCommandInput,
|
|
215
|
+
cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void
|
|
216
|
+
): void;
|
|
217
|
+
listTargetResourceTypes(
|
|
218
|
+
args: ListTargetResourceTypesCommandInput,
|
|
219
|
+
options: __HttpHandlerOptions,
|
|
220
|
+
cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void
|
|
221
|
+
): void;
|
|
222
|
+
|
|
223
|
+
startExperiment(
|
|
224
|
+
args: StartExperimentCommandInput,
|
|
225
|
+
options?: __HttpHandlerOptions
|
|
226
|
+
): Promise<StartExperimentCommandOutput>;
|
|
227
|
+
startExperiment(
|
|
228
|
+
args: StartExperimentCommandInput,
|
|
229
|
+
cb: (err: any, data?: StartExperimentCommandOutput) => void
|
|
230
|
+
): void;
|
|
231
|
+
startExperiment(
|
|
232
|
+
args: StartExperimentCommandInput,
|
|
233
|
+
options: __HttpHandlerOptions,
|
|
234
|
+
cb: (err: any, data?: StartExperimentCommandOutput) => void
|
|
235
|
+
): void;
|
|
236
|
+
|
|
237
|
+
stopExperiment(
|
|
238
|
+
args: StopExperimentCommandInput,
|
|
239
|
+
options?: __HttpHandlerOptions
|
|
240
|
+
): Promise<StopExperimentCommandOutput>;
|
|
241
|
+
stopExperiment(
|
|
242
|
+
args: StopExperimentCommandInput,
|
|
243
|
+
cb: (err: any, data?: StopExperimentCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
stopExperiment(
|
|
246
|
+
args: StopExperimentCommandInput,
|
|
247
|
+
options: __HttpHandlerOptions,
|
|
248
|
+
cb: (err: any, data?: StopExperimentCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
|
|
251
|
+
tagResource(
|
|
252
|
+
args: TagResourceCommandInput,
|
|
253
|
+
options?: __HttpHandlerOptions
|
|
254
|
+
): Promise<TagResourceCommandOutput>;
|
|
255
|
+
tagResource(
|
|
256
|
+
args: TagResourceCommandInput,
|
|
257
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
258
|
+
): void;
|
|
259
|
+
tagResource(
|
|
260
|
+
args: TagResourceCommandInput,
|
|
261
|
+
options: __HttpHandlerOptions,
|
|
262
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
263
|
+
): void;
|
|
264
|
+
|
|
265
|
+
untagResource(
|
|
266
|
+
args: UntagResourceCommandInput,
|
|
267
|
+
options?: __HttpHandlerOptions
|
|
268
|
+
): Promise<UntagResourceCommandOutput>;
|
|
269
|
+
untagResource(
|
|
270
|
+
args: UntagResourceCommandInput,
|
|
271
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
272
|
+
): void;
|
|
273
|
+
untagResource(
|
|
274
|
+
args: UntagResourceCommandInput,
|
|
275
|
+
options: __HttpHandlerOptions,
|
|
276
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
277
|
+
): void;
|
|
278
|
+
|
|
279
|
+
updateExperimentTemplate(
|
|
280
|
+
args: UpdateExperimentTemplateCommandInput,
|
|
281
|
+
options?: __HttpHandlerOptions
|
|
282
|
+
): Promise<UpdateExperimentTemplateCommandOutput>;
|
|
283
|
+
updateExperimentTemplate(
|
|
284
|
+
args: UpdateExperimentTemplateCommandInput,
|
|
285
|
+
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void
|
|
286
|
+
): void;
|
|
287
|
+
updateExperimentTemplate(
|
|
288
|
+
args: UpdateExperimentTemplateCommandInput,
|
|
289
|
+
options: __HttpHandlerOptions,
|
|
290
|
+
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void
|
|
291
|
+
): void;
|
|
292
|
+
}
|