@aws-sdk/client-fis 3.53.0 → 3.55.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 +13 -13
- package/dist-cjs/commands/CreateExperimentTemplateCommand.js +3 -3
- package/dist-cjs/commands/DeleteExperimentTemplateCommand.js +3 -3
- package/dist-cjs/commands/GetActionCommand.js +3 -3
- package/dist-cjs/commands/GetExperimentCommand.js +3 -3
- package/dist-cjs/commands/GetExperimentTemplateCommand.js +3 -3
- package/dist-cjs/commands/GetTargetResourceTypeCommand.js +3 -3
- package/dist-cjs/commands/ListActionsCommand.js +3 -3
- package/dist-cjs/commands/ListExperimentTemplatesCommand.js +3 -3
- package/dist-cjs/commands/ListExperimentsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListTargetResourceTypesCommand.js +3 -3
- package/dist-cjs/commands/StartExperimentCommand.js +3 -3
- package/dist-cjs/commands/StopExperimentCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateExperimentTemplateCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/models/models_0.js +62 -2
- package/dist-cjs/protocols/Aws_restJson1.js +214 -117
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/Fis.js +16 -16
- package/dist-es/models/models_0.js +40 -0
- package/dist-es/pagination/ListActionsPaginator.js +4 -4
- package/dist-es/pagination/ListExperimentTemplatesPaginator.js +4 -4
- package/dist-es/pagination/ListExperimentsPaginator.js +4 -4
- package/dist-es/pagination/ListTargetResourceTypesPaginator.js +4 -4
- package/dist-es/protocols/Aws_restJson1.js +103 -21
- package/dist-types/FisClient.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +210 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/FisClient.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +120 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +34 -34
|
@@ -91,6 +91,39 @@ export declare namespace CreateExperimentTemplateActionInput {
|
|
|
91
91
|
const filterSensitiveLog: (obj: CreateExperimentTemplateActionInput) => any;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
export interface ExperimentTemplateCloudWatchLogsLogConfigurationInput {
|
|
95
|
+
|
|
96
|
+
logGroupArn: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export declare namespace ExperimentTemplateCloudWatchLogsLogConfigurationInput {
|
|
99
|
+
|
|
100
|
+
const filterSensitiveLog: (obj: ExperimentTemplateCloudWatchLogsLogConfigurationInput) => any;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export interface ExperimentTemplateS3LogConfigurationInput {
|
|
104
|
+
|
|
105
|
+
bucketName: string | undefined;
|
|
106
|
+
|
|
107
|
+
prefix?: string;
|
|
108
|
+
}
|
|
109
|
+
export declare namespace ExperimentTemplateS3LogConfigurationInput {
|
|
110
|
+
|
|
111
|
+
const filterSensitiveLog: (obj: ExperimentTemplateS3LogConfigurationInput) => any;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface CreateExperimentTemplateLogConfigurationInput {
|
|
115
|
+
|
|
116
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
117
|
+
|
|
118
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
119
|
+
|
|
120
|
+
logSchemaVersion: number | undefined;
|
|
121
|
+
}
|
|
122
|
+
export declare namespace CreateExperimentTemplateLogConfigurationInput {
|
|
123
|
+
|
|
124
|
+
const filterSensitiveLog: (obj: CreateExperimentTemplateLogConfigurationInput) => any;
|
|
125
|
+
}
|
|
126
|
+
|
|
94
127
|
export interface CreateExperimentTemplateStopConditionInput {
|
|
95
128
|
|
|
96
129
|
source: string | undefined;
|
|
@@ -156,6 +189,8 @@ export interface CreateExperimentTemplateRequest {
|
|
|
156
189
|
tags?: {
|
|
157
190
|
[key: string]: string;
|
|
158
191
|
};
|
|
192
|
+
|
|
193
|
+
logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
|
|
159
194
|
}
|
|
160
195
|
export declare namespace CreateExperimentTemplateRequest {
|
|
161
196
|
|
|
@@ -183,6 +218,39 @@ export declare namespace ExperimentTemplateAction {
|
|
|
183
218
|
const filterSensitiveLog: (obj: ExperimentTemplateAction) => any;
|
|
184
219
|
}
|
|
185
220
|
|
|
221
|
+
export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
222
|
+
|
|
223
|
+
logGroupArn?: string;
|
|
224
|
+
}
|
|
225
|
+
export declare namespace ExperimentTemplateCloudWatchLogsLogConfiguration {
|
|
226
|
+
|
|
227
|
+
const filterSensitiveLog: (obj: ExperimentTemplateCloudWatchLogsLogConfiguration) => any;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export interface ExperimentTemplateS3LogConfiguration {
|
|
231
|
+
|
|
232
|
+
bucketName?: string;
|
|
233
|
+
|
|
234
|
+
prefix?: string;
|
|
235
|
+
}
|
|
236
|
+
export declare namespace ExperimentTemplateS3LogConfiguration {
|
|
237
|
+
|
|
238
|
+
const filterSensitiveLog: (obj: ExperimentTemplateS3LogConfiguration) => any;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export interface ExperimentTemplateLogConfiguration {
|
|
242
|
+
|
|
243
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
|
|
244
|
+
|
|
245
|
+
s3Configuration?: ExperimentTemplateS3LogConfiguration;
|
|
246
|
+
|
|
247
|
+
logSchemaVersion?: number;
|
|
248
|
+
}
|
|
249
|
+
export declare namespace ExperimentTemplateLogConfiguration {
|
|
250
|
+
|
|
251
|
+
const filterSensitiveLog: (obj: ExperimentTemplateLogConfiguration) => any;
|
|
252
|
+
}
|
|
253
|
+
|
|
186
254
|
export interface ExperimentTemplateStopCondition {
|
|
187
255
|
|
|
188
256
|
source?: string;
|
|
@@ -253,6 +321,8 @@ export interface ExperimentTemplate {
|
|
|
253
321
|
tags?: {
|
|
254
322
|
[key: string]: string;
|
|
255
323
|
};
|
|
324
|
+
|
|
325
|
+
logConfiguration?: ExperimentTemplateLogConfiguration;
|
|
256
326
|
}
|
|
257
327
|
export declare namespace ExperimentTemplate {
|
|
258
328
|
|
|
@@ -351,6 +421,39 @@ export declare namespace ExperimentAction {
|
|
|
351
421
|
|
|
352
422
|
const filterSensitiveLog: (obj: ExperimentAction) => any;
|
|
353
423
|
}
|
|
424
|
+
|
|
425
|
+
export interface ExperimentCloudWatchLogsLogConfiguration {
|
|
426
|
+
|
|
427
|
+
logGroupArn?: string;
|
|
428
|
+
}
|
|
429
|
+
export declare namespace ExperimentCloudWatchLogsLogConfiguration {
|
|
430
|
+
|
|
431
|
+
const filterSensitiveLog: (obj: ExperimentCloudWatchLogsLogConfiguration) => any;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
export interface ExperimentS3LogConfiguration {
|
|
435
|
+
|
|
436
|
+
bucketName?: string;
|
|
437
|
+
|
|
438
|
+
prefix?: string;
|
|
439
|
+
}
|
|
440
|
+
export declare namespace ExperimentS3LogConfiguration {
|
|
441
|
+
|
|
442
|
+
const filterSensitiveLog: (obj: ExperimentS3LogConfiguration) => any;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export interface ExperimentLogConfiguration {
|
|
446
|
+
|
|
447
|
+
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
|
|
448
|
+
|
|
449
|
+
s3Configuration?: ExperimentS3LogConfiguration;
|
|
450
|
+
|
|
451
|
+
logSchemaVersion?: number;
|
|
452
|
+
}
|
|
453
|
+
export declare namespace ExperimentLogConfiguration {
|
|
454
|
+
|
|
455
|
+
const filterSensitiveLog: (obj: ExperimentLogConfiguration) => any;
|
|
456
|
+
}
|
|
354
457
|
export declare enum ExperimentStatus {
|
|
355
458
|
completed = "completed",
|
|
356
459
|
failed = "failed",
|
|
@@ -446,6 +549,8 @@ export interface Experiment {
|
|
|
446
549
|
tags?: {
|
|
447
550
|
[key: string]: string;
|
|
448
551
|
};
|
|
552
|
+
|
|
553
|
+
logConfiguration?: ExperimentLogConfiguration;
|
|
449
554
|
}
|
|
450
555
|
export declare namespace Experiment {
|
|
451
556
|
|
|
@@ -782,6 +887,19 @@ export declare namespace UpdateExperimentTemplateActionInputItem {
|
|
|
782
887
|
const filterSensitiveLog: (obj: UpdateExperimentTemplateActionInputItem) => any;
|
|
783
888
|
}
|
|
784
889
|
|
|
890
|
+
export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
891
|
+
|
|
892
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
893
|
+
|
|
894
|
+
s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
|
|
895
|
+
|
|
896
|
+
logSchemaVersion?: number;
|
|
897
|
+
}
|
|
898
|
+
export declare namespace UpdateExperimentTemplateLogConfigurationInput {
|
|
899
|
+
|
|
900
|
+
const filterSensitiveLog: (obj: UpdateExperimentTemplateLogConfigurationInput) => any;
|
|
901
|
+
}
|
|
902
|
+
|
|
785
903
|
export interface UpdateExperimentTemplateStopConditionInput {
|
|
786
904
|
|
|
787
905
|
source: string | undefined;
|
|
@@ -832,6 +950,8 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
832
950
|
};
|
|
833
951
|
|
|
834
952
|
roleArn?: string;
|
|
953
|
+
|
|
954
|
+
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
|
|
835
955
|
}
|
|
836
956
|
export declare namespace UpdateExperimentTemplateRequest {
|
|
837
957
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
21
|
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
27
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
28
|
tls?: boolean | undefined;
|
|
29
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
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.55.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,41 +18,41 @@
|
|
|
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-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
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.
|
|
51
|
-
"tslib": "^2.3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.55.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.55.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.55.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.55.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.55.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.55.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.55.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.55.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.55.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.55.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.55.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.55.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.55.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.55.0",
|
|
39
|
+
"@aws-sdk/types": "3.55.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.55.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.55.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.55.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.55.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.55.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.55.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
|
+
"tslib": "^2.3.1",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.55.0",
|
|
56
56
|
"@tsconfig/recommended": "1.0.1",
|
|
57
57
|
"@types/node": "^12.7.5",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"downlevel-dts": "0.7.0",
|
|
61
61
|
"rimraf": "3.0.2",
|
|
62
62
|
"typedoc": "0.19.2",
|
|
63
|
-
"typescript": "~4.
|
|
63
|
+
"typescript": "~4.6.2"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=12.0.0"
|