@aws-sdk/client-fis 3.458.0 → 3.459.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/README.md +64 -0
- package/dist-cjs/Fis.js +16 -0
- package/dist-cjs/commands/CreateTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetExperimentTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/ListExperimentResolvedTargetsCommand.js +51 -0
- package/dist-cjs/commands/ListExperimentTargetAccountConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/ListTargetAccountConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/UpdateTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +10 -1
- package/dist-cjs/pagination/ListExperimentResolvedTargetsPaginator.js +29 -0
- package/dist-cjs/pagination/ListTargetAccountConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +489 -1
- package/dist-es/Fis.js +16 -0
- package/dist-es/commands/CreateTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/GetExperimentTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/GetTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/ListExperimentResolvedTargetsCommand.js +47 -0
- package/dist-es/commands/ListExperimentTargetAccountConfigurationsCommand.js +47 -0
- package/dist-es/commands/ListTargetAccountConfigurationsCommand.js +47 -0
- package/dist-es/commands/UpdateTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +9 -0
- package/dist-es/pagination/ListExperimentResolvedTargetsPaginator.js +25 -0
- package/dist-es/pagination/ListTargetAccountConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +473 -1
- package/dist-types/Fis.d.ts +56 -0
- package/dist-types/FisClient.d.ts +10 -2
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +10 -1
- package/dist-types/commands/CreateTargetAccountConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +5 -0
- package/dist-types/commands/DeleteTargetAccountConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/GetExperimentCommand.d.ts +6 -1
- package/dist-types/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +5 -0
- package/dist-types/commands/GetTargetAccountConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/ListExperimentResolvedTargetsCommand.d.ts +91 -0
- package/dist-types/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +87 -0
- package/dist-types/commands/ListTargetAccountConfigurationsCommand.d.ts +88 -0
- package/dist-types/commands/StartExperimentCommand.d.ts +6 -1
- package/dist-types/commands/StopExperimentCommand.d.ts +6 -1
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +8 -0
- package/dist-types/commands/UpdateTargetAccountConfigurationCommand.d.ts +86 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +479 -0
- package/dist-types/pagination/ListExperimentResolvedTargetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTargetAccountConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/Fis.d.ts +148 -0
- package/dist-types/ts3.4/FisClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListExperimentResolvedTargetsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTargetAccountConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListExperimentResolvedTargetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTargetAccountConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/package.json +1 -1
|
@@ -7,10 +7,18 @@ import {
|
|
|
7
7
|
CreateExperimentTemplateCommandInput,
|
|
8
8
|
CreateExperimentTemplateCommandOutput,
|
|
9
9
|
} from "../commands/CreateExperimentTemplateCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateTargetAccountConfigurationCommandInput,
|
|
12
|
+
CreateTargetAccountConfigurationCommandOutput,
|
|
13
|
+
} from "../commands/CreateTargetAccountConfigurationCommand";
|
|
10
14
|
import {
|
|
11
15
|
DeleteExperimentTemplateCommandInput,
|
|
12
16
|
DeleteExperimentTemplateCommandOutput,
|
|
13
17
|
} from "../commands/DeleteExperimentTemplateCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteTargetAccountConfigurationCommandInput,
|
|
20
|
+
DeleteTargetAccountConfigurationCommandOutput,
|
|
21
|
+
} from "../commands/DeleteTargetAccountConfigurationCommand";
|
|
14
22
|
import {
|
|
15
23
|
GetActionCommandInput,
|
|
16
24
|
GetActionCommandOutput,
|
|
@@ -19,10 +27,18 @@ import {
|
|
|
19
27
|
GetExperimentCommandInput,
|
|
20
28
|
GetExperimentCommandOutput,
|
|
21
29
|
} from "../commands/GetExperimentCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetExperimentTargetAccountConfigurationCommandInput,
|
|
32
|
+
GetExperimentTargetAccountConfigurationCommandOutput,
|
|
33
|
+
} from "../commands/GetExperimentTargetAccountConfigurationCommand";
|
|
22
34
|
import {
|
|
23
35
|
GetExperimentTemplateCommandInput,
|
|
24
36
|
GetExperimentTemplateCommandOutput,
|
|
25
37
|
} from "../commands/GetExperimentTemplateCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetTargetAccountConfigurationCommandInput,
|
|
40
|
+
GetTargetAccountConfigurationCommandOutput,
|
|
41
|
+
} from "../commands/GetTargetAccountConfigurationCommand";
|
|
26
42
|
import {
|
|
27
43
|
GetTargetResourceTypeCommandInput,
|
|
28
44
|
GetTargetResourceTypeCommandOutput,
|
|
@@ -31,10 +47,18 @@ import {
|
|
|
31
47
|
ListActionsCommandInput,
|
|
32
48
|
ListActionsCommandOutput,
|
|
33
49
|
} from "../commands/ListActionsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListExperimentResolvedTargetsCommandInput,
|
|
52
|
+
ListExperimentResolvedTargetsCommandOutput,
|
|
53
|
+
} from "../commands/ListExperimentResolvedTargetsCommand";
|
|
34
54
|
import {
|
|
35
55
|
ListExperimentsCommandInput,
|
|
36
56
|
ListExperimentsCommandOutput,
|
|
37
57
|
} from "../commands/ListExperimentsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListExperimentTargetAccountConfigurationsCommandInput,
|
|
60
|
+
ListExperimentTargetAccountConfigurationsCommandOutput,
|
|
61
|
+
} from "../commands/ListExperimentTargetAccountConfigurationsCommand";
|
|
38
62
|
import {
|
|
39
63
|
ListExperimentTemplatesCommandInput,
|
|
40
64
|
ListExperimentTemplatesCommandOutput,
|
|
@@ -43,6 +67,10 @@ import {
|
|
|
43
67
|
ListTagsForResourceCommandInput,
|
|
44
68
|
ListTagsForResourceCommandOutput,
|
|
45
69
|
} from "../commands/ListTagsForResourceCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListTargetAccountConfigurationsCommandInput,
|
|
72
|
+
ListTargetAccountConfigurationsCommandOutput,
|
|
73
|
+
} from "../commands/ListTargetAccountConfigurationsCommand";
|
|
46
74
|
import {
|
|
47
75
|
ListTargetResourceTypesCommandInput,
|
|
48
76
|
ListTargetResourceTypesCommandOutput,
|
|
@@ -67,14 +95,26 @@ import {
|
|
|
67
95
|
UpdateExperimentTemplateCommandInput,
|
|
68
96
|
UpdateExperimentTemplateCommandOutput,
|
|
69
97
|
} from "../commands/UpdateExperimentTemplateCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateTargetAccountConfigurationCommandInput,
|
|
100
|
+
UpdateTargetAccountConfigurationCommandOutput,
|
|
101
|
+
} from "../commands/UpdateTargetAccountConfigurationCommand";
|
|
70
102
|
export declare const se_CreateExperimentTemplateCommand: (
|
|
71
103
|
input: CreateExperimentTemplateCommandInput,
|
|
72
104
|
context: __SerdeContext
|
|
73
105
|
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_CreateTargetAccountConfigurationCommand: (
|
|
107
|
+
input: CreateTargetAccountConfigurationCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
74
110
|
export declare const se_DeleteExperimentTemplateCommand: (
|
|
75
111
|
input: DeleteExperimentTemplateCommandInput,
|
|
76
112
|
context: __SerdeContext
|
|
77
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_DeleteTargetAccountConfigurationCommand: (
|
|
115
|
+
input: DeleteTargetAccountConfigurationCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
78
118
|
export declare const se_GetActionCommand: (
|
|
79
119
|
input: GetActionCommandInput,
|
|
80
120
|
context: __SerdeContext
|
|
@@ -83,10 +123,18 @@ export declare const se_GetExperimentCommand: (
|
|
|
83
123
|
input: GetExperimentCommandInput,
|
|
84
124
|
context: __SerdeContext
|
|
85
125
|
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_GetExperimentTargetAccountConfigurationCommand: (
|
|
127
|
+
input: GetExperimentTargetAccountConfigurationCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
86
130
|
export declare const se_GetExperimentTemplateCommand: (
|
|
87
131
|
input: GetExperimentTemplateCommandInput,
|
|
88
132
|
context: __SerdeContext
|
|
89
133
|
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_GetTargetAccountConfigurationCommand: (
|
|
135
|
+
input: GetTargetAccountConfigurationCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
90
138
|
export declare const se_GetTargetResourceTypeCommand: (
|
|
91
139
|
input: GetTargetResourceTypeCommandInput,
|
|
92
140
|
context: __SerdeContext
|
|
@@ -95,10 +143,18 @@ export declare const se_ListActionsCommand: (
|
|
|
95
143
|
input: ListActionsCommandInput,
|
|
96
144
|
context: __SerdeContext
|
|
97
145
|
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_ListExperimentResolvedTargetsCommand: (
|
|
147
|
+
input: ListExperimentResolvedTargetsCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
98
150
|
export declare const se_ListExperimentsCommand: (
|
|
99
151
|
input: ListExperimentsCommandInput,
|
|
100
152
|
context: __SerdeContext
|
|
101
153
|
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_ListExperimentTargetAccountConfigurationsCommand: (
|
|
155
|
+
input: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
102
158
|
export declare const se_ListExperimentTemplatesCommand: (
|
|
103
159
|
input: ListExperimentTemplatesCommandInput,
|
|
104
160
|
context: __SerdeContext
|
|
@@ -107,6 +163,10 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
107
163
|
input: ListTagsForResourceCommandInput,
|
|
108
164
|
context: __SerdeContext
|
|
109
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_ListTargetAccountConfigurationsCommand: (
|
|
167
|
+
input: ListTargetAccountConfigurationsCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
110
170
|
export declare const se_ListTargetResourceTypesCommand: (
|
|
111
171
|
input: ListTargetResourceTypesCommandInput,
|
|
112
172
|
context: __SerdeContext
|
|
@@ -131,14 +191,26 @@ export declare const se_UpdateExperimentTemplateCommand: (
|
|
|
131
191
|
input: UpdateExperimentTemplateCommandInput,
|
|
132
192
|
context: __SerdeContext
|
|
133
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_UpdateTargetAccountConfigurationCommand: (
|
|
195
|
+
input: UpdateTargetAccountConfigurationCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
134
198
|
export declare const de_CreateExperimentTemplateCommand: (
|
|
135
199
|
output: __HttpResponse,
|
|
136
200
|
context: __SerdeContext
|
|
137
201
|
) => Promise<CreateExperimentTemplateCommandOutput>;
|
|
202
|
+
export declare const de_CreateTargetAccountConfigurationCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<CreateTargetAccountConfigurationCommandOutput>;
|
|
138
206
|
export declare const de_DeleteExperimentTemplateCommand: (
|
|
139
207
|
output: __HttpResponse,
|
|
140
208
|
context: __SerdeContext
|
|
141
209
|
) => Promise<DeleteExperimentTemplateCommandOutput>;
|
|
210
|
+
export declare const de_DeleteTargetAccountConfigurationCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<DeleteTargetAccountConfigurationCommandOutput>;
|
|
142
214
|
export declare const de_GetActionCommand: (
|
|
143
215
|
output: __HttpResponse,
|
|
144
216
|
context: __SerdeContext
|
|
@@ -147,10 +219,18 @@ export declare const de_GetExperimentCommand: (
|
|
|
147
219
|
output: __HttpResponse,
|
|
148
220
|
context: __SerdeContext
|
|
149
221
|
) => Promise<GetExperimentCommandOutput>;
|
|
222
|
+
export declare const de_GetExperimentTargetAccountConfigurationCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<GetExperimentTargetAccountConfigurationCommandOutput>;
|
|
150
226
|
export declare const de_GetExperimentTemplateCommand: (
|
|
151
227
|
output: __HttpResponse,
|
|
152
228
|
context: __SerdeContext
|
|
153
229
|
) => Promise<GetExperimentTemplateCommandOutput>;
|
|
230
|
+
export declare const de_GetTargetAccountConfigurationCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<GetTargetAccountConfigurationCommandOutput>;
|
|
154
234
|
export declare const de_GetTargetResourceTypeCommand: (
|
|
155
235
|
output: __HttpResponse,
|
|
156
236
|
context: __SerdeContext
|
|
@@ -159,10 +239,18 @@ export declare const de_ListActionsCommand: (
|
|
|
159
239
|
output: __HttpResponse,
|
|
160
240
|
context: __SerdeContext
|
|
161
241
|
) => Promise<ListActionsCommandOutput>;
|
|
242
|
+
export declare const de_ListExperimentResolvedTargetsCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<ListExperimentResolvedTargetsCommandOutput>;
|
|
162
246
|
export declare const de_ListExperimentsCommand: (
|
|
163
247
|
output: __HttpResponse,
|
|
164
248
|
context: __SerdeContext
|
|
165
249
|
) => Promise<ListExperimentsCommandOutput>;
|
|
250
|
+
export declare const de_ListExperimentTargetAccountConfigurationsCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<ListExperimentTargetAccountConfigurationsCommandOutput>;
|
|
166
254
|
export declare const de_ListExperimentTemplatesCommand: (
|
|
167
255
|
output: __HttpResponse,
|
|
168
256
|
context: __SerdeContext
|
|
@@ -171,6 +259,10 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
171
259
|
output: __HttpResponse,
|
|
172
260
|
context: __SerdeContext
|
|
173
261
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
262
|
+
export declare const de_ListTargetAccountConfigurationsCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ListTargetAccountConfigurationsCommandOutput>;
|
|
174
266
|
export declare const de_ListTargetResourceTypesCommand: (
|
|
175
267
|
output: __HttpResponse,
|
|
176
268
|
context: __SerdeContext
|
|
@@ -195,3 +287,7 @@ export declare const de_UpdateExperimentTemplateCommand: (
|
|
|
195
287
|
output: __HttpResponse,
|
|
196
288
|
context: __SerdeContext
|
|
197
289
|
) => Promise<UpdateExperimentTemplateCommandOutput>;
|
|
290
|
+
export declare const de_UpdateTargetAccountConfigurationCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<UpdateTargetAccountConfigurationCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fis",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fis Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.459.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|