@aws-sdk/client-fis 3.1087.0 → 3.1089.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
|
@@ -15,32 +15,29 @@ import { FisClientResolvedConfig } from "../FisClient";
|
|
|
15
15
|
export interface FisHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface FisHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface FisHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
FisClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
FisHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultFisHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: FisClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<FisHttpAuthSchemeParameters>;
|
|
30
|
-
export interface FisHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<FisHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface FisHttpAuthSchemeProvider extends HttpAuthSchemeProvider<FisHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultFisHttpAuthSchemeProvider: FisHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: FisHttpAuthSchemeProvider;
|
|
37
35
|
}
|
|
38
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
41
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
39
|
readonly httpAuthSchemeProvider: FisHttpAuthSchemeProvider;
|
|
43
40
|
}
|
|
44
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
46
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./FisClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./FisClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
FisClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateExperimentTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateExperimentTemplateCommandInput
|
|
8
|
-
extends CreateExperimentTemplateRequest {}
|
|
7
|
+
export interface CreateExperimentTemplateCommandInput extends CreateExperimentTemplateRequest {}
|
|
9
8
|
export interface CreateExperimentTemplateCommandOutput
|
|
10
|
-
extends CreateExperimentTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateExperimentTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateExperimentTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateExperimentTemplateCommandInput
|
|
12
|
+
input: CreateExperimentTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateExperimentTemplateCommandInput,
|
|
17
15
|
CreateExperimentTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateExperimentTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateExperimentTemplateCommandInput
|
|
21
|
+
input: CreateExperimentTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateExperimentTemplateCommandInput,
|
|
26
24
|
CreateExperimentTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateTargetAccountConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateTargetAccountConfigurationCommandInput
|
|
8
|
-
extends CreateTargetAccountConfigurationRequest {}
|
|
7
|
+
export interface CreateTargetAccountConfigurationCommandInput extends CreateTargetAccountConfigurationRequest {}
|
|
9
8
|
export interface CreateTargetAccountConfigurationCommandOutput
|
|
10
|
-
extends CreateTargetAccountConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateTargetAccountConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateTargetAccountConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateTargetAccountConfigurationCommandInput
|
|
12
|
+
input: CreateTargetAccountConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateTargetAccountConfigurationCommandInput,
|
|
17
15
|
CreateTargetAccountConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateTargetAccountConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateTargetAccountConfigurationCommandInput
|
|
21
|
+
input: CreateTargetAccountConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateTargetAccountConfigurationCommandInput,
|
|
26
24
|
CreateTargetAccountConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteExperimentTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteExperimentTemplateCommandInput
|
|
8
|
-
extends DeleteExperimentTemplateRequest {}
|
|
7
|
+
export interface DeleteExperimentTemplateCommandInput extends DeleteExperimentTemplateRequest {}
|
|
9
8
|
export interface DeleteExperimentTemplateCommandOutput
|
|
10
|
-
extends DeleteExperimentTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteExperimentTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteExperimentTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteExperimentTemplateCommandInput
|
|
12
|
+
input: DeleteExperimentTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteExperimentTemplateCommandInput,
|
|
17
15
|
DeleteExperimentTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteExperimentTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteExperimentTemplateCommandInput
|
|
21
|
+
input: DeleteExperimentTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteExperimentTemplateCommandInput,
|
|
26
24
|
DeleteExperimentTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteTargetAccountConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteTargetAccountConfigurationCommandInput
|
|
8
|
-
extends DeleteTargetAccountConfigurationRequest {}
|
|
7
|
+
export interface DeleteTargetAccountConfigurationCommandInput extends DeleteTargetAccountConfigurationRequest {}
|
|
9
8
|
export interface DeleteTargetAccountConfigurationCommandOutput
|
|
10
|
-
extends DeleteTargetAccountConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteTargetAccountConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteTargetAccountConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteTargetAccountConfigurationCommandInput
|
|
12
|
+
input: DeleteTargetAccountConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteTargetAccountConfigurationCommandInput,
|
|
17
15
|
DeleteTargetAccountConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteTargetAccountConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteTargetAccountConfigurationCommandInput
|
|
21
|
+
input: DeleteTargetAccountConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteTargetAccountConfigurationCommandInput,
|
|
26
24
|
DeleteTargetAccountConfigurationCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetActionRequest, GetActionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetActionCommandInput extends GetActionRequest {}
|
|
5
|
-
export interface GetActionCommandOutput
|
|
6
|
-
extends GetActionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetActionCommandOutput extends GetActionResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetActionCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetActionCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetActionCommandInput,
|
|
11
11
|
GetActionCommandOutput,
|
|
12
12
|
import("..").FisClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetActionCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetActionCommandInput,
|
|
18
20
|
GetActionCommandOutput,
|
|
19
21
|
import("..").FisClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetExperimentRequest,
|
|
4
|
-
GetExperimentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetExperimentRequest, GetExperimentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetExperimentCommandInput extends GetExperimentRequest {}
|
|
8
|
-
export interface GetExperimentCommandOutput
|
|
9
|
-
extends GetExperimentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetExperimentCommandOutput extends GetExperimentResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetExperimentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetExperimentCommandInput
|
|
8
|
+
input: GetExperimentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetExperimentCommandInput,
|
|
16
11
|
GetExperimentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetExperimentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetExperimentCommandInput
|
|
17
|
+
input: GetExperimentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetExperimentCommandInput,
|
|
25
20
|
GetExperimentCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetExperimentTargetAccountConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetExperimentTargetAccountConfigurationCommandInput
|
|
8
|
-
extends GetExperimentTargetAccountConfigurationRequest {}
|
|
7
|
+
export interface GetExperimentTargetAccountConfigurationCommandInput extends GetExperimentTargetAccountConfigurationRequest {}
|
|
9
8
|
export interface GetExperimentTargetAccountConfigurationCommandOutput
|
|
10
|
-
extends GetExperimentTargetAccountConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetExperimentTargetAccountConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetExperimentTargetAccountConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetExperimentTargetAccountConfigurationCommandInput
|
|
12
|
+
input: GetExperimentTargetAccountConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetExperimentTargetAccountConfigurationCommandInput,
|
|
17
15
|
GetExperimentTargetAccountConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetExperimentTargetAccountConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetExperimentTargetAccountConfigurationCommandInput
|
|
21
|
+
input: GetExperimentTargetAccountConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetExperimentTargetAccountConfigurationCommandInput,
|
|
26
24
|
GetExperimentTargetAccountConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetExperimentTemplateRequest,
|
|
4
|
-
GetExperimentTemplateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetExperimentTemplateRequest, GetExperimentTemplateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetExperimentTemplateCommandInput
|
|
8
|
-
extends GetExperimentTemplateRequest {}
|
|
4
|
+
export interface GetExperimentTemplateCommandInput extends GetExperimentTemplateRequest {}
|
|
9
5
|
export interface GetExperimentTemplateCommandOutput
|
|
10
|
-
extends GetExperimentTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetExperimentTemplateResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetExperimentTemplateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetExperimentTemplateCommandInput
|
|
9
|
+
input: GetExperimentTemplateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetExperimentTemplateCommandInput,
|
|
17
12
|
GetExperimentTemplateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetExperimentTemplateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetExperimentTemplateCommandInput
|
|
18
|
+
input: GetExperimentTemplateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetExperimentTemplateCommandInput,
|
|
26
21
|
GetExperimentTemplateCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSafetyLeverRequest,
|
|
4
|
-
GetSafetyLeverResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSafetyLeverRequest, GetSafetyLeverResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSafetyLeverCommandInput extends GetSafetyLeverRequest {}
|
|
8
|
-
export interface GetSafetyLeverCommandOutput
|
|
9
|
-
extends GetSafetyLeverResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSafetyLeverCommandOutput extends GetSafetyLeverResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetSafetyLeverCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSafetyLeverCommandInput
|
|
8
|
+
input: GetSafetyLeverCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSafetyLeverCommandInput,
|
|
16
11
|
GetSafetyLeverCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSafetyLeverCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSafetyLeverCommandInput
|
|
17
|
+
input: GetSafetyLeverCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSafetyLeverCommandInput,
|
|
25
20
|
GetSafetyLeverCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetTargetAccountConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTargetAccountConfigurationCommandInput
|
|
8
|
-
extends GetTargetAccountConfigurationRequest {}
|
|
7
|
+
export interface GetTargetAccountConfigurationCommandInput extends GetTargetAccountConfigurationRequest {}
|
|
9
8
|
export interface GetTargetAccountConfigurationCommandOutput
|
|
10
|
-
extends GetTargetAccountConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetTargetAccountConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetTargetAccountConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetTargetAccountConfigurationCommandInput
|
|
12
|
+
input: GetTargetAccountConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetTargetAccountConfigurationCommandInput,
|
|
17
15
|
GetTargetAccountConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetTargetAccountConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetTargetAccountConfigurationCommandInput
|
|
21
|
+
input: GetTargetAccountConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetTargetAccountConfigurationCommandInput,
|
|
26
24
|
GetTargetAccountConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetTargetResourceTypeRequest,
|
|
4
|
-
GetTargetResourceTypeResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetTargetResourceTypeRequest, GetTargetResourceTypeResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTargetResourceTypeCommandInput
|
|
8
|
-
extends GetTargetResourceTypeRequest {}
|
|
4
|
+
export interface GetTargetResourceTypeCommandInput extends GetTargetResourceTypeRequest {}
|
|
9
5
|
export interface GetTargetResourceTypeCommandOutput
|
|
10
|
-
extends GetTargetResourceTypeResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetTargetResourceTypeResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetTargetResourceTypeCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetTargetResourceTypeCommandInput
|
|
9
|
+
input: GetTargetResourceTypeCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetTargetResourceTypeCommandInput,
|
|
17
12
|
GetTargetResourceTypeCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetTargetResourceTypeCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetTargetResourceTypeCommandInput
|
|
18
|
+
input: GetTargetResourceTypeCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetTargetResourceTypeCommandInput,
|
|
26
21
|
GetTargetResourceTypeCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListActionsRequest, ListActionsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListActionsCommandInput extends ListActionsRequest {}
|
|
5
|
-
export interface ListActionsCommandOutput
|
|
6
|
-
extends ListActionsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListActionsCommandOutput extends ListActionsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListActionsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListActionsCommandInput
|
|
8
|
+
input: ListActionsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListActionsCommandInput,
|
|
13
11
|
ListActionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListExperimentResolvedTargetsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListExperimentResolvedTargetsCommandInput
|
|
8
|
-
extends ListExperimentResolvedTargetsRequest {}
|
|
7
|
+
export interface ListExperimentResolvedTargetsCommandInput extends ListExperimentResolvedTargetsRequest {}
|
|
9
8
|
export interface ListExperimentResolvedTargetsCommandOutput
|
|
10
|
-
extends ListExperimentResolvedTargetsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListExperimentResolvedTargetsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListExperimentResolvedTargetsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListExperimentResolvedTargetsCommandInput
|
|
12
|
+
input: ListExperimentResolvedTargetsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListExperimentResolvedTargetsCommandInput,
|
|
17
15
|
ListExperimentResolvedTargetsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListExperimentResolvedTargetsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListExperimentResolvedTargetsCommandInput
|
|
21
|
+
input: ListExperimentResolvedTargetsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListExperimentResolvedTargetsCommandInput,
|
|
26
24
|
ListExperimentResolvedTargetsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListExperimentTargetAccountConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListExperimentTargetAccountConfigurationsCommandInput
|
|
8
|
-
extends ListExperimentTargetAccountConfigurationsRequest {}
|
|
7
|
+
export interface ListExperimentTargetAccountConfigurationsCommandInput extends ListExperimentTargetAccountConfigurationsRequest {}
|
|
9
8
|
export interface ListExperimentTargetAccountConfigurationsCommandOutput
|
|
10
|
-
extends ListExperimentTargetAccountConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListExperimentTargetAccountConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListExperimentTargetAccountConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListExperimentTargetAccountConfigurationsCommandInput
|
|
12
|
+
input: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListExperimentTargetAccountConfigurationsCommandInput,
|
|
17
15
|
ListExperimentTargetAccountConfigurationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListExperimentTargetAccountConfigurationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListExperimentTargetAccountConfigurationsCommandInput
|
|
21
|
+
input: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListExperimentTargetAccountConfigurationsCommandInput,
|
|
26
24
|
ListExperimentTargetAccountConfigurationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListExperimentTemplatesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListExperimentTemplatesCommandInput
|
|
8
|
-
extends ListExperimentTemplatesRequest {}
|
|
7
|
+
export interface ListExperimentTemplatesCommandInput extends ListExperimentTemplatesRequest {}
|
|
9
8
|
export interface ListExperimentTemplatesCommandOutput
|
|
10
|
-
extends ListExperimentTemplatesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListExperimentTemplatesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListExperimentTemplatesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListExperimentTemplatesCommandInput
|
|
12
|
+
input: ListExperimentTemplatesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListExperimentTemplatesCommandInput,
|
|
17
15
|
ListExperimentTemplatesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListExperimentsRequest,
|
|
4
|
-
ListExperimentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListExperimentsCommandInput extends ListExperimentsRequest {}
|
|
8
|
-
export interface ListExperimentsCommandOutput
|
|
9
|
-
extends ListExperimentsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListExperimentsCommandOutput extends ListExperimentsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListExperimentsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListExperimentsCommandInput
|
|
8
|
+
input: ListExperimentsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListExperimentsCommandInput,
|
|
16
11
|
ListExperimentsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListTargetAccountConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTargetAccountConfigurationsCommandInput
|
|
8
|
-
extends ListTargetAccountConfigurationsRequest {}
|
|
7
|
+
export interface ListTargetAccountConfigurationsCommandInput extends ListTargetAccountConfigurationsRequest {}
|
|
9
8
|
export interface ListTargetAccountConfigurationsCommandOutput
|
|
10
|
-
extends ListTargetAccountConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListTargetAccountConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListTargetAccountConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListTargetAccountConfigurationsCommandInput
|
|
12
|
+
input: ListTargetAccountConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListTargetAccountConfigurationsCommandInput,
|
|
17
15
|
ListTargetAccountConfigurationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListTargetAccountConfigurationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListTargetAccountConfigurationsCommandInput
|
|
21
|
+
input: ListTargetAccountConfigurationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListTargetAccountConfigurationsCommandInput,
|
|
26
24
|
ListTargetAccountConfigurationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListTargetResourceTypesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTargetResourceTypesCommandInput
|
|
8
|
-
extends ListTargetResourceTypesRequest {}
|
|
7
|
+
export interface ListTargetResourceTypesCommandInput extends ListTargetResourceTypesRequest {}
|
|
9
8
|
export interface ListTargetResourceTypesCommandOutput
|
|
10
|
-
extends ListTargetResourceTypesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListTargetResourceTypesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListTargetResourceTypesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListTargetResourceTypesCommandInput
|
|
12
|
+
input: ListTargetResourceTypesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListTargetResourceTypesCommandInput,
|
|
17
15
|
ListTargetResourceTypesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartExperimentRequest,
|
|
4
|
-
StartExperimentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartExperimentRequest, StartExperimentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartExperimentCommandInput extends StartExperimentRequest {}
|
|
8
|
-
export interface StartExperimentCommandOutput
|
|
9
|
-
extends StartExperimentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartExperimentCommandOutput extends StartExperimentResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartExperimentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartExperimentCommandInput
|
|
8
|
+
input: StartExperimentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartExperimentCommandInput,
|
|
16
11
|
StartExperimentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartExperimentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartExperimentCommandInput
|
|
17
|
+
input: StartExperimentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartExperimentCommandInput,
|
|
25
20
|
StartExperimentCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopExperimentRequest,
|
|
4
|
-
StopExperimentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopExperimentRequest, StopExperimentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StopExperimentCommandInput extends StopExperimentRequest {}
|
|
8
|
-
export interface StopExperimentCommandOutput
|
|
9
|
-
extends StopExperimentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopExperimentCommandOutput extends StopExperimentResponse, __MetadataBearer {}
|
|
11
6
|
declare const StopExperimentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StopExperimentCommandInput
|
|
8
|
+
input: StopExperimentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StopExperimentCommandInput,
|
|
16
11
|
StopExperimentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StopExperimentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StopExperimentCommandInput
|
|
17
|
+
input: StopExperimentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StopExperimentCommandInput,
|
|
25
20
|
StopExperimentCommandOutput,
|