@aws-sdk/client-fis 3.100.0 → 3.110.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 +27 -0
- package/dist-cjs/FisClient.js +2 -0
- package/dist-es/FisClient.js +2 -0
- package/dist-types/models/models_0.d.ts +38 -114
- package/dist-types/ts3.4/models/models_0.d.ts +38 -114
- package/package.json +29 -28
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-fis
|
package/dist-cjs/FisClient.js
CHANGED
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class FisClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
package/dist-es/FisClient.js
CHANGED
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var FisClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -50,21 +50,15 @@ export interface Action {
|
|
|
50
50
|
/**
|
|
51
51
|
* <p>The action parameters, if applicable.</p>
|
|
52
52
|
*/
|
|
53
|
-
parameters?:
|
|
54
|
-
[key: string]: ActionParameter;
|
|
55
|
-
};
|
|
53
|
+
parameters?: Record<string, ActionParameter>;
|
|
56
54
|
/**
|
|
57
55
|
* <p>The supported targets for the action.</p>
|
|
58
56
|
*/
|
|
59
|
-
targets?:
|
|
60
|
-
[key: string]: ActionTarget;
|
|
61
|
-
};
|
|
57
|
+
targets?: Record<string, ActionTarget>;
|
|
62
58
|
/**
|
|
63
59
|
* <p>The tags for the action.</p>
|
|
64
60
|
*/
|
|
65
|
-
tags?:
|
|
66
|
-
[key: string]: string;
|
|
67
|
-
};
|
|
61
|
+
tags?: Record<string, string>;
|
|
68
62
|
}
|
|
69
63
|
export declare namespace Action {
|
|
70
64
|
/**
|
|
@@ -87,15 +81,11 @@ export interface ActionSummary {
|
|
|
87
81
|
/**
|
|
88
82
|
* <p>The targets for the action.</p>
|
|
89
83
|
*/
|
|
90
|
-
targets?:
|
|
91
|
-
[key: string]: ActionTarget;
|
|
92
|
-
};
|
|
84
|
+
targets?: Record<string, ActionTarget>;
|
|
93
85
|
/**
|
|
94
86
|
* <p>The tags for the action.</p>
|
|
95
87
|
*/
|
|
96
|
-
tags?:
|
|
97
|
-
[key: string]: string;
|
|
98
|
-
};
|
|
88
|
+
tags?: Record<string, string>;
|
|
99
89
|
}
|
|
100
90
|
export declare namespace ActionSummary {
|
|
101
91
|
/**
|
|
@@ -131,15 +121,11 @@ export interface CreateExperimentTemplateActionInput {
|
|
|
131
121
|
/**
|
|
132
122
|
* <p>The parameters for the action, if applicable.</p>
|
|
133
123
|
*/
|
|
134
|
-
parameters?:
|
|
135
|
-
[key: string]: string;
|
|
136
|
-
};
|
|
124
|
+
parameters?: Record<string, string>;
|
|
137
125
|
/**
|
|
138
126
|
* <p>The targets for the action.</p>
|
|
139
127
|
*/
|
|
140
|
-
targets?:
|
|
141
|
-
[key: string]: string;
|
|
142
|
-
};
|
|
128
|
+
targets?: Record<string, string>;
|
|
143
129
|
/**
|
|
144
130
|
* <p>The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.</p>
|
|
145
131
|
*/
|
|
@@ -269,9 +255,7 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
269
255
|
/**
|
|
270
256
|
* <p>The tags for the target resources.</p>
|
|
271
257
|
*/
|
|
272
|
-
resourceTags?:
|
|
273
|
-
[key: string]: string;
|
|
274
|
-
};
|
|
258
|
+
resourceTags?: Record<string, string>;
|
|
275
259
|
/**
|
|
276
260
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
277
261
|
*/
|
|
@@ -296,9 +280,7 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
296
280
|
/**
|
|
297
281
|
* <p>The resource type parameters.</p>
|
|
298
282
|
*/
|
|
299
|
-
parameters?:
|
|
300
|
-
[key: string]: string;
|
|
301
|
-
};
|
|
283
|
+
parameters?: Record<string, string>;
|
|
302
284
|
}
|
|
303
285
|
export declare namespace CreateExperimentTemplateTargetInput {
|
|
304
286
|
/**
|
|
@@ -322,15 +304,11 @@ export interface CreateExperimentTemplateRequest {
|
|
|
322
304
|
/**
|
|
323
305
|
* <p>The targets for the experiment.</p>
|
|
324
306
|
*/
|
|
325
|
-
targets?:
|
|
326
|
-
[key: string]: CreateExperimentTemplateTargetInput;
|
|
327
|
-
};
|
|
307
|
+
targets?: Record<string, CreateExperimentTemplateTargetInput>;
|
|
328
308
|
/**
|
|
329
309
|
* <p>The actions for the experiment.</p>
|
|
330
310
|
*/
|
|
331
|
-
actions:
|
|
332
|
-
[key: string]: CreateExperimentTemplateActionInput;
|
|
333
|
-
} | undefined;
|
|
311
|
+
actions: Record<string, CreateExperimentTemplateActionInput> | undefined;
|
|
334
312
|
/**
|
|
335
313
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
336
314
|
*/
|
|
@@ -338,9 +316,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
338
316
|
/**
|
|
339
317
|
* <p>The tags to apply to the experiment template.</p>
|
|
340
318
|
*/
|
|
341
|
-
tags?:
|
|
342
|
-
[key: string]: string;
|
|
343
|
-
};
|
|
319
|
+
tags?: Record<string, string>;
|
|
344
320
|
/**
|
|
345
321
|
* <p>The configuration for experiment logging.</p>
|
|
346
322
|
*/
|
|
@@ -367,15 +343,11 @@ export interface ExperimentTemplateAction {
|
|
|
367
343
|
/**
|
|
368
344
|
* <p>The parameters for the action.</p>
|
|
369
345
|
*/
|
|
370
|
-
parameters?:
|
|
371
|
-
[key: string]: string;
|
|
372
|
-
};
|
|
346
|
+
parameters?: Record<string, string>;
|
|
373
347
|
/**
|
|
374
348
|
* <p>The targets for the action.</p>
|
|
375
349
|
*/
|
|
376
|
-
targets?:
|
|
377
|
-
[key: string]: string;
|
|
378
|
-
};
|
|
350
|
+
targets?: Record<string, string>;
|
|
379
351
|
/**
|
|
380
352
|
* <p>The name of the action that must be completed before the current action starts.</p>
|
|
381
353
|
*/
|
|
@@ -497,9 +469,7 @@ export interface ExperimentTemplateTarget {
|
|
|
497
469
|
/**
|
|
498
470
|
* <p>The tags for the target resources.</p>
|
|
499
471
|
*/
|
|
500
|
-
resourceTags?:
|
|
501
|
-
[key: string]: string;
|
|
502
|
-
};
|
|
472
|
+
resourceTags?: Record<string, string>;
|
|
503
473
|
/**
|
|
504
474
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
505
475
|
*/
|
|
@@ -511,9 +481,7 @@ export interface ExperimentTemplateTarget {
|
|
|
511
481
|
/**
|
|
512
482
|
* <p>The resource type parameters.</p>
|
|
513
483
|
*/
|
|
514
|
-
parameters?:
|
|
515
|
-
[key: string]: string;
|
|
516
|
-
};
|
|
484
|
+
parameters?: Record<string, string>;
|
|
517
485
|
}
|
|
518
486
|
export declare namespace ExperimentTemplateTarget {
|
|
519
487
|
/**
|
|
@@ -536,15 +504,11 @@ export interface ExperimentTemplate {
|
|
|
536
504
|
/**
|
|
537
505
|
* <p>The targets for the experiment.</p>
|
|
538
506
|
*/
|
|
539
|
-
targets?:
|
|
540
|
-
[key: string]: ExperimentTemplateTarget;
|
|
541
|
-
};
|
|
507
|
+
targets?: Record<string, ExperimentTemplateTarget>;
|
|
542
508
|
/**
|
|
543
509
|
* <p>The actions for the experiment.</p>
|
|
544
510
|
*/
|
|
545
|
-
actions?:
|
|
546
|
-
[key: string]: ExperimentTemplateAction;
|
|
547
|
-
};
|
|
511
|
+
actions?: Record<string, ExperimentTemplateAction>;
|
|
548
512
|
/**
|
|
549
513
|
* <p>The stop conditions for the experiment.</p>
|
|
550
514
|
*/
|
|
@@ -564,9 +528,7 @@ export interface ExperimentTemplate {
|
|
|
564
528
|
/**
|
|
565
529
|
* <p>The tags for the experiment template.</p>
|
|
566
530
|
*/
|
|
567
|
-
tags?:
|
|
568
|
-
[key: string]: string;
|
|
569
|
-
};
|
|
531
|
+
tags?: Record<string, string>;
|
|
570
532
|
/**
|
|
571
533
|
* <p>The configuration for experiment logging.</p>
|
|
572
534
|
*/
|
|
@@ -691,15 +653,11 @@ export interface ExperimentAction {
|
|
|
691
653
|
/**
|
|
692
654
|
* <p>The parameters for the action.</p>
|
|
693
655
|
*/
|
|
694
|
-
parameters?:
|
|
695
|
-
[key: string]: string;
|
|
696
|
-
};
|
|
656
|
+
parameters?: Record<string, string>;
|
|
697
657
|
/**
|
|
698
658
|
* <p>The targets for the action.</p>
|
|
699
659
|
*/
|
|
700
|
-
targets?:
|
|
701
|
-
[key: string]: string;
|
|
702
|
-
};
|
|
660
|
+
targets?: Record<string, string>;
|
|
703
661
|
/**
|
|
704
662
|
* <p>The name of the action that must be completed before this action starts.</p>
|
|
705
663
|
*/
|
|
@@ -861,9 +819,7 @@ export interface ExperimentTarget {
|
|
|
861
819
|
/**
|
|
862
820
|
* <p>The tags for the target resources.</p>
|
|
863
821
|
*/
|
|
864
|
-
resourceTags?:
|
|
865
|
-
[key: string]: string;
|
|
866
|
-
};
|
|
822
|
+
resourceTags?: Record<string, string>;
|
|
867
823
|
/**
|
|
868
824
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
869
825
|
*/
|
|
@@ -875,9 +831,7 @@ export interface ExperimentTarget {
|
|
|
875
831
|
/**
|
|
876
832
|
* <p>The resource type parameters.</p>
|
|
877
833
|
*/
|
|
878
|
-
parameters?:
|
|
879
|
-
[key: string]: string;
|
|
880
|
-
};
|
|
834
|
+
parameters?: Record<string, string>;
|
|
881
835
|
}
|
|
882
836
|
export declare namespace ExperimentTarget {
|
|
883
837
|
/**
|
|
@@ -908,15 +862,11 @@ export interface Experiment {
|
|
|
908
862
|
/**
|
|
909
863
|
* <p>The targets for the experiment.</p>
|
|
910
864
|
*/
|
|
911
|
-
targets?:
|
|
912
|
-
[key: string]: ExperimentTarget;
|
|
913
|
-
};
|
|
865
|
+
targets?: Record<string, ExperimentTarget>;
|
|
914
866
|
/**
|
|
915
867
|
* <p>The actions for the experiment.</p>
|
|
916
868
|
*/
|
|
917
|
-
actions?:
|
|
918
|
-
[key: string]: ExperimentAction;
|
|
919
|
-
};
|
|
869
|
+
actions?: Record<string, ExperimentAction>;
|
|
920
870
|
/**
|
|
921
871
|
* <p>The stop conditions for the experiment.</p>
|
|
922
872
|
*/
|
|
@@ -936,9 +886,7 @@ export interface Experiment {
|
|
|
936
886
|
/**
|
|
937
887
|
* <p>The tags for the experiment.</p>
|
|
938
888
|
*/
|
|
939
|
-
tags?:
|
|
940
|
-
[key: string]: string;
|
|
941
|
-
};
|
|
889
|
+
tags?: Record<string, string>;
|
|
942
890
|
/**
|
|
943
891
|
* <p>The configuration for experiment logging.</p>
|
|
944
892
|
*/
|
|
@@ -973,9 +921,7 @@ export interface ExperimentSummary {
|
|
|
973
921
|
/**
|
|
974
922
|
* <p>The tags for the experiment.</p>
|
|
975
923
|
*/
|
|
976
|
-
tags?:
|
|
977
|
-
[key: string]: string;
|
|
978
|
-
};
|
|
924
|
+
tags?: Record<string, string>;
|
|
979
925
|
}
|
|
980
926
|
export declare namespace ExperimentSummary {
|
|
981
927
|
/**
|
|
@@ -1006,9 +952,7 @@ export interface ExperimentTemplateSummary {
|
|
|
1006
952
|
/**
|
|
1007
953
|
* <p>The tags for the experiment template.</p>
|
|
1008
954
|
*/
|
|
1009
|
-
tags?:
|
|
1010
|
-
[key: string]: string;
|
|
1011
|
-
};
|
|
955
|
+
tags?: Record<string, string>;
|
|
1012
956
|
}
|
|
1013
957
|
export declare namespace ExperimentTemplateSummary {
|
|
1014
958
|
/**
|
|
@@ -1135,9 +1079,7 @@ export interface TargetResourceType {
|
|
|
1135
1079
|
/**
|
|
1136
1080
|
* <p>The parameters for the resource type.</p>
|
|
1137
1081
|
*/
|
|
1138
|
-
parameters?:
|
|
1139
|
-
[key: string]: TargetResourceTypeParameter;
|
|
1140
|
-
};
|
|
1082
|
+
parameters?: Record<string, TargetResourceTypeParameter>;
|
|
1141
1083
|
}
|
|
1142
1084
|
export declare namespace TargetResourceType {
|
|
1143
1085
|
/**
|
|
@@ -1269,9 +1211,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1269
1211
|
/**
|
|
1270
1212
|
* <p>The tags for the resource.</p>
|
|
1271
1213
|
*/
|
|
1272
|
-
tags?:
|
|
1273
|
-
[key: string]: string;
|
|
1274
|
-
};
|
|
1214
|
+
tags?: Record<string, string>;
|
|
1275
1215
|
}
|
|
1276
1216
|
export declare namespace ListTagsForResourceResponse {
|
|
1277
1217
|
/**
|
|
@@ -1342,9 +1282,7 @@ export interface StartExperimentRequest {
|
|
|
1342
1282
|
/**
|
|
1343
1283
|
* <p>The tags to apply to the experiment.</p>
|
|
1344
1284
|
*/
|
|
1345
|
-
tags?:
|
|
1346
|
-
[key: string]: string;
|
|
1347
|
-
};
|
|
1285
|
+
tags?: Record<string, string>;
|
|
1348
1286
|
}
|
|
1349
1287
|
export declare namespace StartExperimentRequest {
|
|
1350
1288
|
/**
|
|
@@ -1396,9 +1334,7 @@ export interface TagResourceRequest {
|
|
|
1396
1334
|
/**
|
|
1397
1335
|
* <p>The tags for the resource.</p>
|
|
1398
1336
|
*/
|
|
1399
|
-
tags:
|
|
1400
|
-
[key: string]: string;
|
|
1401
|
-
} | undefined;
|
|
1337
|
+
tags: Record<string, string> | undefined;
|
|
1402
1338
|
}
|
|
1403
1339
|
export declare namespace TagResourceRequest {
|
|
1404
1340
|
/**
|
|
@@ -1453,15 +1389,11 @@ export interface UpdateExperimentTemplateActionInputItem {
|
|
|
1453
1389
|
/**
|
|
1454
1390
|
* <p>The parameters for the action, if applicable.</p>
|
|
1455
1391
|
*/
|
|
1456
|
-
parameters?:
|
|
1457
|
-
[key: string]: string;
|
|
1458
|
-
};
|
|
1392
|
+
parameters?: Record<string, string>;
|
|
1459
1393
|
/**
|
|
1460
1394
|
* <p>The targets for the action.</p>
|
|
1461
1395
|
*/
|
|
1462
|
-
targets?:
|
|
1463
|
-
[key: string]: string;
|
|
1464
|
-
};
|
|
1396
|
+
targets?: Record<string, string>;
|
|
1465
1397
|
/**
|
|
1466
1398
|
* <p>The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.</p>
|
|
1467
1399
|
*/
|
|
@@ -1532,9 +1464,7 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
1532
1464
|
/**
|
|
1533
1465
|
* <p>The tags for the target resources.</p>
|
|
1534
1466
|
*/
|
|
1535
|
-
resourceTags?:
|
|
1536
|
-
[key: string]: string;
|
|
1537
|
-
};
|
|
1467
|
+
resourceTags?: Record<string, string>;
|
|
1538
1468
|
/**
|
|
1539
1469
|
* <p>The filters to apply to identify target resources using specific attributes.</p>
|
|
1540
1470
|
*/
|
|
@@ -1546,9 +1476,7 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
1546
1476
|
/**
|
|
1547
1477
|
* <p>The resource type parameters.</p>
|
|
1548
1478
|
*/
|
|
1549
|
-
parameters?:
|
|
1550
|
-
[key: string]: string;
|
|
1551
|
-
};
|
|
1479
|
+
parameters?: Record<string, string>;
|
|
1552
1480
|
}
|
|
1553
1481
|
export declare namespace UpdateExperimentTemplateTargetInput {
|
|
1554
1482
|
/**
|
|
@@ -1572,15 +1500,11 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
1572
1500
|
/**
|
|
1573
1501
|
* <p>The targets for the experiment.</p>
|
|
1574
1502
|
*/
|
|
1575
|
-
targets?:
|
|
1576
|
-
[key: string]: UpdateExperimentTemplateTargetInput;
|
|
1577
|
-
};
|
|
1503
|
+
targets?: Record<string, UpdateExperimentTemplateTargetInput>;
|
|
1578
1504
|
/**
|
|
1579
1505
|
* <p>The actions for the experiment.</p>
|
|
1580
1506
|
*/
|
|
1581
|
-
actions?:
|
|
1582
|
-
[key: string]: UpdateExperimentTemplateActionInputItem;
|
|
1583
|
-
};
|
|
1507
|
+
actions?: Record<string, UpdateExperimentTemplateActionInputItem>;
|
|
1584
1508
|
/**
|
|
1585
1509
|
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
1586
1510
|
*/
|
|
@@ -27,17 +27,11 @@ export interface Action {
|
|
|
27
27
|
|
|
28
28
|
description?: string;
|
|
29
29
|
|
|
30
|
-
parameters?:
|
|
31
|
-
[key: string]: ActionParameter;
|
|
32
|
-
};
|
|
30
|
+
parameters?: Record<string, ActionParameter>;
|
|
33
31
|
|
|
34
|
-
targets?:
|
|
35
|
-
[key: string]: ActionTarget;
|
|
36
|
-
};
|
|
32
|
+
targets?: Record<string, ActionTarget>;
|
|
37
33
|
|
|
38
|
-
tags?:
|
|
39
|
-
[key: string]: string;
|
|
40
|
-
};
|
|
34
|
+
tags?: Record<string, string>;
|
|
41
35
|
}
|
|
42
36
|
export declare namespace Action {
|
|
43
37
|
|
|
@@ -50,13 +44,9 @@ export interface ActionSummary {
|
|
|
50
44
|
|
|
51
45
|
description?: string;
|
|
52
46
|
|
|
53
|
-
targets?:
|
|
54
|
-
[key: string]: ActionTarget;
|
|
55
|
-
};
|
|
47
|
+
targets?: Record<string, ActionTarget>;
|
|
56
48
|
|
|
57
|
-
tags?:
|
|
58
|
-
[key: string]: string;
|
|
59
|
-
};
|
|
49
|
+
tags?: Record<string, string>;
|
|
60
50
|
}
|
|
61
51
|
export declare namespace ActionSummary {
|
|
62
52
|
|
|
@@ -76,13 +66,9 @@ export interface CreateExperimentTemplateActionInput {
|
|
|
76
66
|
|
|
77
67
|
description?: string;
|
|
78
68
|
|
|
79
|
-
parameters?:
|
|
80
|
-
[key: string]: string;
|
|
81
|
-
};
|
|
69
|
+
parameters?: Record<string, string>;
|
|
82
70
|
|
|
83
|
-
targets?:
|
|
84
|
-
[key: string]: string;
|
|
85
|
-
};
|
|
71
|
+
targets?: Record<string, string>;
|
|
86
72
|
|
|
87
73
|
startAfter?: string[];
|
|
88
74
|
}
|
|
@@ -152,17 +138,13 @@ export interface CreateExperimentTemplateTargetInput {
|
|
|
152
138
|
|
|
153
139
|
resourceArns?: string[];
|
|
154
140
|
|
|
155
|
-
resourceTags?:
|
|
156
|
-
[key: string]: string;
|
|
157
|
-
};
|
|
141
|
+
resourceTags?: Record<string, string>;
|
|
158
142
|
|
|
159
143
|
filters?: ExperimentTemplateTargetInputFilter[];
|
|
160
144
|
|
|
161
145
|
selectionMode: string | undefined;
|
|
162
146
|
|
|
163
|
-
parameters?:
|
|
164
|
-
[key: string]: string;
|
|
165
|
-
};
|
|
147
|
+
parameters?: Record<string, string>;
|
|
166
148
|
}
|
|
167
149
|
export declare namespace CreateExperimentTemplateTargetInput {
|
|
168
150
|
|
|
@@ -176,19 +158,13 @@ export interface CreateExperimentTemplateRequest {
|
|
|
176
158
|
|
|
177
159
|
stopConditions: CreateExperimentTemplateStopConditionInput[] | undefined;
|
|
178
160
|
|
|
179
|
-
targets?:
|
|
180
|
-
[key: string]: CreateExperimentTemplateTargetInput;
|
|
181
|
-
};
|
|
161
|
+
targets?: Record<string, CreateExperimentTemplateTargetInput>;
|
|
182
162
|
|
|
183
|
-
actions:
|
|
184
|
-
[key: string]: CreateExperimentTemplateActionInput;
|
|
185
|
-
} | undefined;
|
|
163
|
+
actions: Record<string, CreateExperimentTemplateActionInput> | undefined;
|
|
186
164
|
|
|
187
165
|
roleArn: string | undefined;
|
|
188
166
|
|
|
189
|
-
tags?:
|
|
190
|
-
[key: string]: string;
|
|
191
|
-
};
|
|
167
|
+
tags?: Record<string, string>;
|
|
192
168
|
|
|
193
169
|
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
194
170
|
}
|
|
@@ -203,13 +179,9 @@ export interface ExperimentTemplateAction {
|
|
|
203
179
|
|
|
204
180
|
description?: string;
|
|
205
181
|
|
|
206
|
-
parameters?:
|
|
207
|
-
[key: string]: string;
|
|
208
|
-
};
|
|
182
|
+
parameters?: Record<string, string>;
|
|
209
183
|
|
|
210
|
-
targets?:
|
|
211
|
-
[key: string]: string;
|
|
212
|
-
};
|
|
184
|
+
targets?: Record<string, string>;
|
|
213
185
|
|
|
214
186
|
startAfter?: string[];
|
|
215
187
|
}
|
|
@@ -279,17 +251,13 @@ export interface ExperimentTemplateTarget {
|
|
|
279
251
|
|
|
280
252
|
resourceArns?: string[];
|
|
281
253
|
|
|
282
|
-
resourceTags?:
|
|
283
|
-
[key: string]: string;
|
|
284
|
-
};
|
|
254
|
+
resourceTags?: Record<string, string>;
|
|
285
255
|
|
|
286
256
|
filters?: ExperimentTemplateTargetFilter[];
|
|
287
257
|
|
|
288
258
|
selectionMode?: string;
|
|
289
259
|
|
|
290
|
-
parameters?:
|
|
291
|
-
[key: string]: string;
|
|
292
|
-
};
|
|
260
|
+
parameters?: Record<string, string>;
|
|
293
261
|
}
|
|
294
262
|
export declare namespace ExperimentTemplateTarget {
|
|
295
263
|
|
|
@@ -302,13 +270,9 @@ export interface ExperimentTemplate {
|
|
|
302
270
|
|
|
303
271
|
description?: string;
|
|
304
272
|
|
|
305
|
-
targets?:
|
|
306
|
-
[key: string]: ExperimentTemplateTarget;
|
|
307
|
-
};
|
|
273
|
+
targets?: Record<string, ExperimentTemplateTarget>;
|
|
308
274
|
|
|
309
|
-
actions?:
|
|
310
|
-
[key: string]: ExperimentTemplateAction;
|
|
311
|
-
};
|
|
275
|
+
actions?: Record<string, ExperimentTemplateAction>;
|
|
312
276
|
|
|
313
277
|
stopConditions?: ExperimentTemplateStopCondition[];
|
|
314
278
|
|
|
@@ -318,9 +282,7 @@ export interface ExperimentTemplate {
|
|
|
318
282
|
|
|
319
283
|
roleArn?: string;
|
|
320
284
|
|
|
321
|
-
tags?:
|
|
322
|
-
[key: string]: string;
|
|
323
|
-
};
|
|
285
|
+
tags?: Record<string, string>;
|
|
324
286
|
|
|
325
287
|
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
326
288
|
}
|
|
@@ -401,13 +363,9 @@ export interface ExperimentAction {
|
|
|
401
363
|
|
|
402
364
|
description?: string;
|
|
403
365
|
|
|
404
|
-
parameters?:
|
|
405
|
-
[key: string]: string;
|
|
406
|
-
};
|
|
366
|
+
parameters?: Record<string, string>;
|
|
407
367
|
|
|
408
|
-
targets?:
|
|
409
|
-
[key: string]: string;
|
|
410
|
-
};
|
|
368
|
+
targets?: Record<string, string>;
|
|
411
369
|
|
|
412
370
|
startAfter?: string[];
|
|
413
371
|
|
|
@@ -503,17 +461,13 @@ export interface ExperimentTarget {
|
|
|
503
461
|
|
|
504
462
|
resourceArns?: string[];
|
|
505
463
|
|
|
506
|
-
resourceTags?:
|
|
507
|
-
[key: string]: string;
|
|
508
|
-
};
|
|
464
|
+
resourceTags?: Record<string, string>;
|
|
509
465
|
|
|
510
466
|
filters?: ExperimentTargetFilter[];
|
|
511
467
|
|
|
512
468
|
selectionMode?: string;
|
|
513
469
|
|
|
514
|
-
parameters?:
|
|
515
|
-
[key: string]: string;
|
|
516
|
-
};
|
|
470
|
+
parameters?: Record<string, string>;
|
|
517
471
|
}
|
|
518
472
|
export declare namespace ExperimentTarget {
|
|
519
473
|
|
|
@@ -530,13 +484,9 @@ export interface Experiment {
|
|
|
530
484
|
|
|
531
485
|
state?: ExperimentState;
|
|
532
486
|
|
|
533
|
-
targets?:
|
|
534
|
-
[key: string]: ExperimentTarget;
|
|
535
|
-
};
|
|
487
|
+
targets?: Record<string, ExperimentTarget>;
|
|
536
488
|
|
|
537
|
-
actions?:
|
|
538
|
-
[key: string]: ExperimentAction;
|
|
539
|
-
};
|
|
489
|
+
actions?: Record<string, ExperimentAction>;
|
|
540
490
|
|
|
541
491
|
stopConditions?: ExperimentStopCondition[];
|
|
542
492
|
|
|
@@ -546,9 +496,7 @@ export interface Experiment {
|
|
|
546
496
|
|
|
547
497
|
endTime?: Date;
|
|
548
498
|
|
|
549
|
-
tags?:
|
|
550
|
-
[key: string]: string;
|
|
551
|
-
};
|
|
499
|
+
tags?: Record<string, string>;
|
|
552
500
|
|
|
553
501
|
logConfiguration?: ExperimentLogConfiguration;
|
|
554
502
|
}
|
|
@@ -567,9 +515,7 @@ export interface ExperimentSummary {
|
|
|
567
515
|
|
|
568
516
|
creationTime?: Date;
|
|
569
517
|
|
|
570
|
-
tags?:
|
|
571
|
-
[key: string]: string;
|
|
572
|
-
};
|
|
518
|
+
tags?: Record<string, string>;
|
|
573
519
|
}
|
|
574
520
|
export declare namespace ExperimentSummary {
|
|
575
521
|
|
|
@@ -586,9 +532,7 @@ export interface ExperimentTemplateSummary {
|
|
|
586
532
|
|
|
587
533
|
lastUpdateTime?: Date;
|
|
588
534
|
|
|
589
|
-
tags?:
|
|
590
|
-
[key: string]: string;
|
|
591
|
-
};
|
|
535
|
+
tags?: Record<string, string>;
|
|
592
536
|
}
|
|
593
537
|
export declare namespace ExperimentTemplateSummary {
|
|
594
538
|
|
|
@@ -668,9 +612,7 @@ export interface TargetResourceType {
|
|
|
668
612
|
|
|
669
613
|
description?: string;
|
|
670
614
|
|
|
671
|
-
parameters?:
|
|
672
|
-
[key: string]: TargetResourceTypeParameter;
|
|
673
|
-
};
|
|
615
|
+
parameters?: Record<string, TargetResourceTypeParameter>;
|
|
674
616
|
}
|
|
675
617
|
export declare namespace TargetResourceType {
|
|
676
618
|
|
|
@@ -754,9 +696,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
754
696
|
}
|
|
755
697
|
export interface ListTagsForResourceResponse {
|
|
756
698
|
|
|
757
|
-
tags?:
|
|
758
|
-
[key: string]: string;
|
|
759
|
-
};
|
|
699
|
+
tags?: Record<string, string>;
|
|
760
700
|
}
|
|
761
701
|
export declare namespace ListTagsForResourceResponse {
|
|
762
702
|
|
|
@@ -799,9 +739,7 @@ export interface StartExperimentRequest {
|
|
|
799
739
|
|
|
800
740
|
experimentTemplateId: string | undefined;
|
|
801
741
|
|
|
802
|
-
tags?:
|
|
803
|
-
[key: string]: string;
|
|
804
|
-
};
|
|
742
|
+
tags?: Record<string, string>;
|
|
805
743
|
}
|
|
806
744
|
export declare namespace StartExperimentRequest {
|
|
807
745
|
|
|
@@ -835,9 +773,7 @@ export interface TagResourceRequest {
|
|
|
835
773
|
|
|
836
774
|
resourceArn: string | undefined;
|
|
837
775
|
|
|
838
|
-
tags:
|
|
839
|
-
[key: string]: string;
|
|
840
|
-
} | undefined;
|
|
776
|
+
tags: Record<string, string> | undefined;
|
|
841
777
|
}
|
|
842
778
|
export declare namespace TagResourceRequest {
|
|
843
779
|
|
|
@@ -872,13 +808,9 @@ export interface UpdateExperimentTemplateActionInputItem {
|
|
|
872
808
|
|
|
873
809
|
description?: string;
|
|
874
810
|
|
|
875
|
-
parameters?:
|
|
876
|
-
[key: string]: string;
|
|
877
|
-
};
|
|
811
|
+
parameters?: Record<string, string>;
|
|
878
812
|
|
|
879
|
-
targets?:
|
|
880
|
-
[key: string]: string;
|
|
881
|
-
};
|
|
813
|
+
targets?: Record<string, string>;
|
|
882
814
|
|
|
883
815
|
startAfter?: string[];
|
|
884
816
|
}
|
|
@@ -917,17 +849,13 @@ export interface UpdateExperimentTemplateTargetInput {
|
|
|
917
849
|
|
|
918
850
|
resourceArns?: string[];
|
|
919
851
|
|
|
920
|
-
resourceTags?:
|
|
921
|
-
[key: string]: string;
|
|
922
|
-
};
|
|
852
|
+
resourceTags?: Record<string, string>;
|
|
923
853
|
|
|
924
854
|
filters?: ExperimentTemplateTargetInputFilter[];
|
|
925
855
|
|
|
926
856
|
selectionMode: string | undefined;
|
|
927
857
|
|
|
928
|
-
parameters?:
|
|
929
|
-
[key: string]: string;
|
|
930
|
-
};
|
|
858
|
+
parameters?: Record<string, string>;
|
|
931
859
|
}
|
|
932
860
|
export declare namespace UpdateExperimentTemplateTargetInput {
|
|
933
861
|
|
|
@@ -941,13 +869,9 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
941
869
|
|
|
942
870
|
stopConditions?: UpdateExperimentTemplateStopConditionInput[];
|
|
943
871
|
|
|
944
|
-
targets?:
|
|
945
|
-
[key: string]: UpdateExperimentTemplateTargetInput;
|
|
946
|
-
};
|
|
872
|
+
targets?: Record<string, UpdateExperimentTemplateTargetInput>;
|
|
947
873
|
|
|
948
|
-
actions?:
|
|
949
|
-
[key: string]: UpdateExperimentTemplateActionInputItem;
|
|
950
|
-
};
|
|
874
|
+
actions?: Record<string, UpdateExperimentTemplateActionInputItem>;
|
|
951
875
|
|
|
952
876
|
roleArn?: string;
|
|
953
877
|
|
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.110.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",
|
|
@@ -18,36 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.110.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.110.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1",
|
|
52
53
|
"uuid": "^8.3.2"
|
|
53
54
|
},
|