@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
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateExperimentTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateExperimentTemplateCommandInput
|
|
8
|
-
extends UpdateExperimentTemplateRequest {}
|
|
7
|
+
export interface UpdateExperimentTemplateCommandInput extends UpdateExperimentTemplateRequest {}
|
|
9
8
|
export interface UpdateExperimentTemplateCommandOutput
|
|
10
|
-
extends UpdateExperimentTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateExperimentTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateExperimentTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateExperimentTemplateCommandInput
|
|
12
|
+
input: UpdateExperimentTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateExperimentTemplateCommandInput,
|
|
17
15
|
UpdateExperimentTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateExperimentTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateExperimentTemplateCommandInput
|
|
21
|
+
input: UpdateExperimentTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateExperimentTemplateCommandInput,
|
|
26
24
|
UpdateExperimentTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSafetyLeverStateRequest,
|
|
4
|
-
UpdateSafetyLeverStateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSafetyLeverStateRequest, UpdateSafetyLeverStateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSafetyLeverStateCommandInput
|
|
8
|
-
extends UpdateSafetyLeverStateRequest {}
|
|
4
|
+
export interface UpdateSafetyLeverStateCommandInput extends UpdateSafetyLeverStateRequest {}
|
|
9
5
|
export interface UpdateSafetyLeverStateCommandOutput
|
|
10
|
-
extends UpdateSafetyLeverStateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSafetyLeverStateResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSafetyLeverStateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSafetyLeverStateCommandInput
|
|
9
|
+
input: UpdateSafetyLeverStateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSafetyLeverStateCommandInput,
|
|
17
12
|
UpdateSafetyLeverStateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSafetyLeverStateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSafetyLeverStateCommandInput
|
|
18
|
+
input: UpdateSafetyLeverStateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSafetyLeverStateCommandInput,
|
|
26
21
|
UpdateSafetyLeverStateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateTargetAccountConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateTargetAccountConfigurationCommandInput
|
|
8
|
-
extends UpdateTargetAccountConfigurationRequest {}
|
|
7
|
+
export interface UpdateTargetAccountConfigurationCommandInput extends UpdateTargetAccountConfigurationRequest {}
|
|
9
8
|
export interface UpdateTargetAccountConfigurationCommandOutput
|
|
10
|
-
extends UpdateTargetAccountConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateTargetAccountConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateTargetAccountConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateTargetAccountConfigurationCommandInput
|
|
12
|
+
input: UpdateTargetAccountConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateTargetAccountConfigurationCommandInput,
|
|
17
15
|
UpdateTargetAccountConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateTargetAccountConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateTargetAccountConfigurationCommandInput
|
|
21
|
+
input: UpdateTargetAccountConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateTargetAccountConfigurationCommandInput,
|
|
26
24
|
UpdateTargetAccountConfigurationCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface FisExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -2,8 +2,7 @@ export declare const AccountTargeting: {
|
|
|
2
2
|
readonly MULTI_ACCOUNT: "multi-account";
|
|
3
3
|
readonly SINGLE_ACCOUNT: "single-account";
|
|
4
4
|
};
|
|
5
|
-
export type AccountTargeting =
|
|
6
|
-
(typeof AccountTargeting)[keyof typeof AccountTargeting];
|
|
5
|
+
export type AccountTargeting = (typeof AccountTargeting)[keyof typeof AccountTargeting];
|
|
7
6
|
export declare const ActionsMode: {
|
|
8
7
|
readonly RUN_ALL: "run-all";
|
|
9
8
|
readonly SKIP_ALL: "skip-all";
|
|
@@ -47,15 +46,13 @@ export declare const ExperimentStatus: {
|
|
|
47
46
|
readonly stopped: "stopped";
|
|
48
47
|
readonly stopping: "stopping";
|
|
49
48
|
};
|
|
50
|
-
export type ExperimentStatus =
|
|
51
|
-
(typeof ExperimentStatus)[keyof typeof ExperimentStatus];
|
|
49
|
+
export type ExperimentStatus = (typeof ExperimentStatus)[keyof typeof ExperimentStatus];
|
|
52
50
|
export declare const SafetyLeverStatus: {
|
|
53
51
|
readonly DISENGAGED: "disengaged";
|
|
54
52
|
readonly ENGAGED: "engaged";
|
|
55
53
|
readonly ENGAGING: "engaging";
|
|
56
54
|
};
|
|
57
|
-
export type SafetyLeverStatus =
|
|
58
|
-
(typeof SafetyLeverStatus)[keyof typeof SafetyLeverStatus];
|
|
55
|
+
export type SafetyLeverStatus = (typeof SafetyLeverStatus)[keyof typeof SafetyLeverStatus];
|
|
59
56
|
export declare const SafetyLeverStatusInput: {
|
|
60
57
|
readonly DISENGAGED: "disengaged";
|
|
61
58
|
readonly ENGAGED: "engaged";
|
|
@@ -8,21 +8,15 @@ export declare class ConflictException extends __BaseException {
|
|
|
8
8
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
9
9
|
readonly name: "ResourceNotFoundException";
|
|
10
10
|
readonly $fault: "client";
|
|
11
|
-
constructor(
|
|
12
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
13
|
-
);
|
|
11
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
14
12
|
}
|
|
15
13
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
16
14
|
readonly name: "ServiceQuotaExceededException";
|
|
17
15
|
readonly $fault: "client";
|
|
18
|
-
constructor(
|
|
19
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
20
|
-
);
|
|
16
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
21
17
|
}
|
|
22
18
|
export declare class ValidationException extends __BaseException {
|
|
23
19
|
readonly name: "ValidationException";
|
|
24
20
|
readonly $fault: "client";
|
|
25
|
-
constructor(
|
|
26
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
27
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
28
22
|
}
|
|
@@ -45,9 +45,7 @@ export interface ReportConfigurationCloudWatchDashboardInput {
|
|
|
45
45
|
dashboardIdentifier?: string | undefined;
|
|
46
46
|
}
|
|
47
47
|
export interface ExperimentTemplateReportConfigurationDataSourcesInput {
|
|
48
|
-
cloudWatchDashboards?:
|
|
49
|
-
| ReportConfigurationCloudWatchDashboardInput[]
|
|
50
|
-
| undefined;
|
|
48
|
+
cloudWatchDashboards?: ReportConfigurationCloudWatchDashboardInput[] | undefined;
|
|
51
49
|
}
|
|
52
50
|
export interface ReportConfigurationS3OutputInput {
|
|
53
51
|
bucketName?: string | undefined;
|
|
@@ -58,9 +56,7 @@ export interface ExperimentTemplateReportConfigurationOutputsInput {
|
|
|
58
56
|
}
|
|
59
57
|
export interface CreateExperimentTemplateReportConfigurationInput {
|
|
60
58
|
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
61
|
-
dataSources?:
|
|
62
|
-
| ExperimentTemplateReportConfigurationDataSourcesInput
|
|
63
|
-
| undefined;
|
|
59
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput | undefined;
|
|
64
60
|
preExperimentDuration?: string | undefined;
|
|
65
61
|
postExperimentDuration?: string | undefined;
|
|
66
62
|
}
|
|
@@ -72,9 +68,7 @@ export interface ExperimentTemplateS3LogConfigurationInput {
|
|
|
72
68
|
prefix?: string | undefined;
|
|
73
69
|
}
|
|
74
70
|
export interface CreateExperimentTemplateLogConfigurationInput {
|
|
75
|
-
cloudWatchLogsConfiguration?:
|
|
76
|
-
| ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
77
|
-
| undefined;
|
|
71
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput | undefined;
|
|
78
72
|
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
79
73
|
logSchemaVersion: number | undefined;
|
|
80
74
|
}
|
|
@@ -103,12 +97,8 @@ export interface CreateExperimentTemplateRequest {
|
|
|
103
97
|
roleArn: string | undefined;
|
|
104
98
|
tags?: Record<string, string> | undefined;
|
|
105
99
|
logConfiguration?: CreateExperimentTemplateLogConfigurationInput | undefined;
|
|
106
|
-
experimentOptions?:
|
|
107
|
-
|
|
108
|
-
| undefined;
|
|
109
|
-
experimentReportConfiguration?:
|
|
110
|
-
| CreateExperimentTemplateReportConfigurationInput
|
|
111
|
-
| undefined;
|
|
100
|
+
experimentOptions?: CreateExperimentTemplateExperimentOptionsInput | undefined;
|
|
101
|
+
experimentReportConfiguration?: CreateExperimentTemplateReportConfigurationInput | undefined;
|
|
112
102
|
}
|
|
113
103
|
export interface ExperimentTemplateAction {
|
|
114
104
|
actionId?: string | undefined;
|
|
@@ -125,9 +115,7 @@ export interface ExperimentTemplateReportConfigurationCloudWatchDashboard {
|
|
|
125
115
|
dashboardIdentifier?: string | undefined;
|
|
126
116
|
}
|
|
127
117
|
export interface ExperimentTemplateReportConfigurationDataSources {
|
|
128
|
-
cloudWatchDashboards?:
|
|
129
|
-
| ExperimentTemplateReportConfigurationCloudWatchDashboard[]
|
|
130
|
-
| undefined;
|
|
118
|
+
cloudWatchDashboards?: ExperimentTemplateReportConfigurationCloudWatchDashboard[] | undefined;
|
|
131
119
|
}
|
|
132
120
|
export interface ReportConfigurationS3Output {
|
|
133
121
|
bucketName?: string | undefined;
|
|
@@ -150,9 +138,7 @@ export interface ExperimentTemplateS3LogConfiguration {
|
|
|
150
138
|
prefix?: string | undefined;
|
|
151
139
|
}
|
|
152
140
|
export interface ExperimentTemplateLogConfiguration {
|
|
153
|
-
cloudWatchLogsConfiguration?:
|
|
154
|
-
| ExperimentTemplateCloudWatchLogsLogConfiguration
|
|
155
|
-
| undefined;
|
|
141
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration | undefined;
|
|
156
142
|
s3Configuration?: ExperimentTemplateS3LogConfiguration | undefined;
|
|
157
143
|
logSchemaVersion?: number | undefined;
|
|
158
144
|
}
|
|
@@ -186,9 +172,7 @@ export interface ExperimentTemplate {
|
|
|
186
172
|
logConfiguration?: ExperimentTemplateLogConfiguration | undefined;
|
|
187
173
|
experimentOptions?: ExperimentTemplateExperimentOptions | undefined;
|
|
188
174
|
targetAccountConfigurationsCount?: number | undefined;
|
|
189
|
-
experimentReportConfiguration?:
|
|
190
|
-
| ExperimentTemplateReportConfiguration
|
|
191
|
-
| undefined;
|
|
175
|
+
experimentReportConfiguration?: ExperimentTemplateReportConfiguration | undefined;
|
|
192
176
|
}
|
|
193
177
|
export interface CreateExperimentTemplateResponse {
|
|
194
178
|
experimentTemplate?: ExperimentTemplate | undefined;
|
|
@@ -260,18 +244,14 @@ export interface ExperimentReportConfigurationCloudWatchDashboard {
|
|
|
260
244
|
dashboardIdentifier?: string | undefined;
|
|
261
245
|
}
|
|
262
246
|
export interface ExperimentReportConfigurationDataSources {
|
|
263
|
-
cloudWatchDashboards?:
|
|
264
|
-
| ExperimentReportConfigurationCloudWatchDashboard[]
|
|
265
|
-
| undefined;
|
|
247
|
+
cloudWatchDashboards?: ExperimentReportConfigurationCloudWatchDashboard[] | undefined;
|
|
266
248
|
}
|
|
267
249
|
export interface ExperimentReportConfigurationOutputsS3Configuration {
|
|
268
250
|
bucketName?: string | undefined;
|
|
269
251
|
prefix?: string | undefined;
|
|
270
252
|
}
|
|
271
253
|
export interface ExperimentReportConfigurationOutputs {
|
|
272
|
-
s3Configuration?:
|
|
273
|
-
| ExperimentReportConfigurationOutputsS3Configuration
|
|
274
|
-
| undefined;
|
|
254
|
+
s3Configuration?: ExperimentReportConfigurationOutputsS3Configuration | undefined;
|
|
275
255
|
}
|
|
276
256
|
export interface ExperimentReportConfiguration {
|
|
277
257
|
outputs?: ExperimentReportConfigurationOutputs | undefined;
|
|
@@ -287,9 +267,7 @@ export interface ExperimentS3LogConfiguration {
|
|
|
287
267
|
prefix?: string | undefined;
|
|
288
268
|
}
|
|
289
269
|
export interface ExperimentLogConfiguration {
|
|
290
|
-
cloudWatchLogsConfiguration?:
|
|
291
|
-
| ExperimentCloudWatchLogsLogConfiguration
|
|
292
|
-
| undefined;
|
|
270
|
+
cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration | undefined;
|
|
293
271
|
s3Configuration?: ExperimentS3LogConfiguration | undefined;
|
|
294
272
|
logSchemaVersion?: number | undefined;
|
|
295
273
|
}
|
|
@@ -464,9 +442,7 @@ export interface ListExperimentTargetAccountConfigurationsRequest {
|
|
|
464
442
|
nextToken?: string | undefined;
|
|
465
443
|
}
|
|
466
444
|
export interface ListExperimentTargetAccountConfigurationsResponse {
|
|
467
|
-
targetAccountConfigurations?:
|
|
468
|
-
| ExperimentTargetAccountConfigurationSummary[]
|
|
469
|
-
| undefined;
|
|
445
|
+
targetAccountConfigurations?: ExperimentTargetAccountConfigurationSummary[] | undefined;
|
|
470
446
|
nextToken?: string | undefined;
|
|
471
447
|
}
|
|
472
448
|
export interface ListExperimentTemplatesRequest {
|
|
@@ -549,16 +525,12 @@ export interface UpdateExperimentTemplateExperimentOptionsInput {
|
|
|
549
525
|
}
|
|
550
526
|
export interface UpdateExperimentTemplateReportConfigurationInput {
|
|
551
527
|
outputs?: ExperimentTemplateReportConfigurationOutputsInput | undefined;
|
|
552
|
-
dataSources?:
|
|
553
|
-
| ExperimentTemplateReportConfigurationDataSourcesInput
|
|
554
|
-
| undefined;
|
|
528
|
+
dataSources?: ExperimentTemplateReportConfigurationDataSourcesInput | undefined;
|
|
555
529
|
preExperimentDuration?: string | undefined;
|
|
556
530
|
postExperimentDuration?: string | undefined;
|
|
557
531
|
}
|
|
558
532
|
export interface UpdateExperimentTemplateLogConfigurationInput {
|
|
559
|
-
cloudWatchLogsConfiguration?:
|
|
560
|
-
| ExperimentTemplateCloudWatchLogsLogConfigurationInput
|
|
561
|
-
| undefined;
|
|
533
|
+
cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput | undefined;
|
|
562
534
|
s3Configuration?: ExperimentTemplateS3LogConfigurationInput | undefined;
|
|
563
535
|
logSchemaVersion?: number | undefined;
|
|
564
536
|
}
|
|
@@ -582,12 +554,8 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
582
554
|
actions?: Record<string, UpdateExperimentTemplateActionInputItem> | undefined;
|
|
583
555
|
roleArn?: string | undefined;
|
|
584
556
|
logConfiguration?: UpdateExperimentTemplateLogConfigurationInput | undefined;
|
|
585
|
-
experimentOptions?:
|
|
586
|
-
|
|
587
|
-
| undefined;
|
|
588
|
-
experimentReportConfiguration?:
|
|
589
|
-
| UpdateExperimentTemplateReportConfigurationInput
|
|
590
|
-
| undefined;
|
|
557
|
+
experimentOptions?: UpdateExperimentTemplateExperimentOptionsInput | undefined;
|
|
558
|
+
experimentReportConfiguration?: UpdateExperimentTemplateReportConfigurationInput | undefined;
|
|
591
559
|
}
|
|
592
560
|
export interface UpdateExperimentTemplateResponse {
|
|
593
561
|
experimentTemplate?: ExperimentTemplate | undefined;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListActionsCommandInput,
|
|
4
|
-
ListActionsCommandOutput,
|
|
5
|
-
} from "../commands/ListActionsCommand";
|
|
2
|
+
import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
|
|
6
3
|
import { FisPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListActions: (
|
|
8
5
|
config: FisPaginationConfiguration,
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").FisHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var FisServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var ConflictException$: StaticErrorSchema;
|
|
9
5
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|