@aws-sdk/client-fis 3.296.0 → 3.297.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-types/Fis.d.ts +17 -0
- package/dist-types/FisClient.d.ts +24 -4
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetActionCommand.d.ts +16 -0
- package/dist-types/commands/GetExperimentCommand.d.ts +16 -0
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetTargetResourceTypeCommand.d.ts +16 -0
- package/dist-types/commands/ListActionsCommand.d.ts +16 -0
- package/dist-types/commands/ListExperimentTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListExperimentsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTargetResourceTypesCommand.d.ts +16 -0
- package/dist-types/commands/StartExperimentCommand.d.ts +16 -0
- package/dist-types/commands/StopExperimentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +16 -0
- package/dist-types/models/FisServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +144 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListActionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExperimentTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExperimentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTargetResourceTypesPaginator.d.ts +3 -0
- package/package.json +3 -3
package/dist-types/Fis.d.ts
CHANGED
|
@@ -17,11 +17,13 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
17
17
|
import { UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput } from "./commands/UpdateExperimentTemplateCommand";
|
|
18
18
|
import { FisClient } from "./FisClient";
|
|
19
19
|
/**
|
|
20
|
+
* @public
|
|
20
21
|
* <p>Fault Injection Simulator is a managed service that enables you to perform fault injection
|
|
21
22
|
* experiments on your Amazon Web Services workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">Fault Injection Simulator User Guide</a>.</p>
|
|
22
23
|
*/
|
|
23
24
|
export declare class Fis extends FisClient {
|
|
24
25
|
/**
|
|
26
|
+
* @public
|
|
25
27
|
* <p>Creates an experiment template. </p>
|
|
26
28
|
* <p>An experiment template includes the following components:</p>
|
|
27
29
|
* <ul>
|
|
@@ -50,90 +52,105 @@ export declare class Fis extends FisClient {
|
|
|
50
52
|
createExperimentTemplate(args: CreateExperimentTemplateCommandInput, cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void): void;
|
|
51
53
|
createExperimentTemplate(args: CreateExperimentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void): void;
|
|
52
54
|
/**
|
|
55
|
+
* @public
|
|
53
56
|
* <p>Deletes the specified experiment template.</p>
|
|
54
57
|
*/
|
|
55
58
|
deleteExperimentTemplate(args: DeleteExperimentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExperimentTemplateCommandOutput>;
|
|
56
59
|
deleteExperimentTemplate(args: DeleteExperimentTemplateCommandInput, cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void): void;
|
|
57
60
|
deleteExperimentTemplate(args: DeleteExperimentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void): void;
|
|
58
61
|
/**
|
|
62
|
+
* @public
|
|
59
63
|
* <p>Gets information about the specified FIS action.</p>
|
|
60
64
|
*/
|
|
61
65
|
getAction(args: GetActionCommandInput, options?: __HttpHandlerOptions): Promise<GetActionCommandOutput>;
|
|
62
66
|
getAction(args: GetActionCommandInput, cb: (err: any, data?: GetActionCommandOutput) => void): void;
|
|
63
67
|
getAction(args: GetActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetActionCommandOutput) => void): void;
|
|
64
68
|
/**
|
|
69
|
+
* @public
|
|
65
70
|
* <p>Gets information about the specified experiment.</p>
|
|
66
71
|
*/
|
|
67
72
|
getExperiment(args: GetExperimentCommandInput, options?: __HttpHandlerOptions): Promise<GetExperimentCommandOutput>;
|
|
68
73
|
getExperiment(args: GetExperimentCommandInput, cb: (err: any, data?: GetExperimentCommandOutput) => void): void;
|
|
69
74
|
getExperiment(args: GetExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExperimentCommandOutput) => void): void;
|
|
70
75
|
/**
|
|
76
|
+
* @public
|
|
71
77
|
* <p>Gets information about the specified experiment template.</p>
|
|
72
78
|
*/
|
|
73
79
|
getExperimentTemplate(args: GetExperimentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetExperimentTemplateCommandOutput>;
|
|
74
80
|
getExperimentTemplate(args: GetExperimentTemplateCommandInput, cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void): void;
|
|
75
81
|
getExperimentTemplate(args: GetExperimentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void): void;
|
|
76
82
|
/**
|
|
83
|
+
* @public
|
|
77
84
|
* <p>Gets information about the specified resource type.</p>
|
|
78
85
|
*/
|
|
79
86
|
getTargetResourceType(args: GetTargetResourceTypeCommandInput, options?: __HttpHandlerOptions): Promise<GetTargetResourceTypeCommandOutput>;
|
|
80
87
|
getTargetResourceType(args: GetTargetResourceTypeCommandInput, cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void): void;
|
|
81
88
|
getTargetResourceType(args: GetTargetResourceTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTargetResourceTypeCommandOutput) => void): void;
|
|
82
89
|
/**
|
|
90
|
+
* @public
|
|
83
91
|
* <p>Lists the available FIS actions.</p>
|
|
84
92
|
*/
|
|
85
93
|
listActions(args: ListActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListActionsCommandOutput>;
|
|
86
94
|
listActions(args: ListActionsCommandInput, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
|
|
87
95
|
listActions(args: ListActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
|
|
88
96
|
/**
|
|
97
|
+
* @public
|
|
89
98
|
* <p>Lists your experiments.</p>
|
|
90
99
|
*/
|
|
91
100
|
listExperiments(args: ListExperimentsCommandInput, options?: __HttpHandlerOptions): Promise<ListExperimentsCommandOutput>;
|
|
92
101
|
listExperiments(args: ListExperimentsCommandInput, cb: (err: any, data?: ListExperimentsCommandOutput) => void): void;
|
|
93
102
|
listExperiments(args: ListExperimentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExperimentsCommandOutput) => void): void;
|
|
94
103
|
/**
|
|
104
|
+
* @public
|
|
95
105
|
* <p>Lists your experiment templates.</p>
|
|
96
106
|
*/
|
|
97
107
|
listExperimentTemplates(args: ListExperimentTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListExperimentTemplatesCommandOutput>;
|
|
98
108
|
listExperimentTemplates(args: ListExperimentTemplatesCommandInput, cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void): void;
|
|
99
109
|
listExperimentTemplates(args: ListExperimentTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExperimentTemplatesCommandOutput) => void): void;
|
|
100
110
|
/**
|
|
111
|
+
* @public
|
|
101
112
|
* <p>Lists the tags for the specified resource.</p>
|
|
102
113
|
*/
|
|
103
114
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
104
115
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
105
116
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
106
117
|
/**
|
|
118
|
+
* @public
|
|
107
119
|
* <p>Lists the target resource types.</p>
|
|
108
120
|
*/
|
|
109
121
|
listTargetResourceTypes(args: ListTargetResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListTargetResourceTypesCommandOutput>;
|
|
110
122
|
listTargetResourceTypes(args: ListTargetResourceTypesCommandInput, cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void): void;
|
|
111
123
|
listTargetResourceTypes(args: ListTargetResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTargetResourceTypesCommandOutput) => void): void;
|
|
112
124
|
/**
|
|
125
|
+
* @public
|
|
113
126
|
* <p>Starts running an experiment from the specified experiment template.</p>
|
|
114
127
|
*/
|
|
115
128
|
startExperiment(args: StartExperimentCommandInput, options?: __HttpHandlerOptions): Promise<StartExperimentCommandOutput>;
|
|
116
129
|
startExperiment(args: StartExperimentCommandInput, cb: (err: any, data?: StartExperimentCommandOutput) => void): void;
|
|
117
130
|
startExperiment(args: StartExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartExperimentCommandOutput) => void): void;
|
|
118
131
|
/**
|
|
132
|
+
* @public
|
|
119
133
|
* <p>Stops the specified experiment.</p>
|
|
120
134
|
*/
|
|
121
135
|
stopExperiment(args: StopExperimentCommandInput, options?: __HttpHandlerOptions): Promise<StopExperimentCommandOutput>;
|
|
122
136
|
stopExperiment(args: StopExperimentCommandInput, cb: (err: any, data?: StopExperimentCommandOutput) => void): void;
|
|
123
137
|
stopExperiment(args: StopExperimentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopExperimentCommandOutput) => void): void;
|
|
124
138
|
/**
|
|
139
|
+
* @public
|
|
125
140
|
* <p>Applies the specified tags to the specified resource.</p>
|
|
126
141
|
*/
|
|
127
142
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
128
143
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
129
144
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
130
145
|
/**
|
|
146
|
+
* @public
|
|
131
147
|
* <p>Removes the specified tags from the specified resource.</p>
|
|
132
148
|
*/
|
|
133
149
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
134
150
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
135
151
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
136
152
|
/**
|
|
153
|
+
* @public
|
|
137
154
|
* <p>Updates the specified experiment template.</p>
|
|
138
155
|
*/
|
|
139
156
|
updateExperimentTemplate(args: UpdateExperimentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExperimentTemplateCommandOutput>;
|
|
@@ -24,15 +24,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
24
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
25
|
import { UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput } from "./commands/UpdateExperimentTemplateCommand";
|
|
26
26
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
27
30
|
export type ServiceInputTypes = CreateExperimentTemplateCommandInput | DeleteExperimentTemplateCommandInput | GetActionCommandInput | GetExperimentCommandInput | GetExperimentTemplateCommandInput | GetTargetResourceTypeCommandInput | ListActionsCommandInput | ListExperimentTemplatesCommandInput | ListExperimentsCommandInput | ListTagsForResourceCommandInput | ListTargetResourceTypesCommandInput | StartExperimentCommandInput | StopExperimentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateExperimentTemplateCommandInput;
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
28
34
|
export type ServiceOutputTypes = CreateExperimentTemplateCommandOutput | DeleteExperimentTemplateCommandOutput | GetActionCommandOutput | GetExperimentCommandOutput | GetExperimentTemplateCommandOutput | GetTargetResourceTypeCommandOutput | ListActionsCommandOutput | ListExperimentTemplatesCommandOutput | ListExperimentsCommandOutput | ListTagsForResourceCommandOutput | ListTargetResourceTypesCommandOutput | StartExperimentCommandOutput | StopExperimentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateExperimentTemplateCommandOutput;
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
29
38
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
30
39
|
/**
|
|
31
40
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
32
41
|
*/
|
|
33
42
|
requestHandler?: __HttpHandler;
|
|
34
43
|
/**
|
|
35
|
-
* A constructor for a class implementing the {@link
|
|
44
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
36
45
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
37
46
|
* @internal
|
|
38
47
|
*/
|
|
@@ -122,23 +131,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
122
131
|
*/
|
|
123
132
|
logger?: __Logger;
|
|
124
133
|
/**
|
|
125
|
-
* The {@link
|
|
134
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
126
135
|
*/
|
|
127
136
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
128
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
129
141
|
type FisClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
130
142
|
/**
|
|
131
|
-
*
|
|
143
|
+
* @public
|
|
144
|
+
*
|
|
145
|
+
* The configuration interface of FisClient class constructor that set the region, credentials and other options.
|
|
132
146
|
*/
|
|
133
147
|
export interface FisClientConfig extends FisClientConfigType {
|
|
134
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
135
152
|
type FisClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
136
153
|
/**
|
|
137
|
-
*
|
|
154
|
+
* @public
|
|
155
|
+
*
|
|
156
|
+
* The resolved configuration interface of FisClient class. This is resolved and normalized from the {@link FisClientConfig | constructor configuration interface}.
|
|
138
157
|
*/
|
|
139
158
|
export interface FisClientResolvedConfig extends FisClientResolvedConfigType {
|
|
140
159
|
}
|
|
141
160
|
/**
|
|
161
|
+
* @public
|
|
142
162
|
* <p>Fault Injection Simulator is a managed service that enables you to perform fault injection
|
|
143
163
|
* experiments on your Amazon Web Services workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">Fault Injection Simulator User Guide</a>.</p>
|
|
144
164
|
*/
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { CreateExperimentTemplateRequest, CreateExperimentTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateExperimentTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateExperimentTemplateCommandInput extends CreateExperimentTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateExperimentTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateExperimentTemplateCommandOutput extends CreateExperimentTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an experiment template. </p>
|
|
18
23
|
* <p>An experiment template includes the following components:</p>
|
|
19
24
|
* <ul>
|
|
@@ -47,6 +52,8 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param CreateExperimentTemplateCommandInput - {@link CreateExperimentTemplateCommandInput}
|
|
56
|
+
* @returns {@link CreateExperimentTemplateCommandOutput}
|
|
50
57
|
* @see {@link CreateExperimentTemplateCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link CreateExperimentTemplateCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
|
|
|
68
75
|
export declare class CreateExperimentTemplateCommand extends $Command<CreateExperimentTemplateCommandInput, CreateExperimentTemplateCommandOutput, FisClientResolvedConfig> {
|
|
69
76
|
readonly input: CreateExperimentTemplateCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: CreateExperimentTemplateCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExperimentTemplateCommandInput, CreateExperimentTemplateCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { DeleteExperimentTemplateRequest, DeleteExperimentTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteExperimentTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteExperimentTemplateCommandInput extends DeleteExperimentTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteExperimentTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteExperimentTemplateCommandOutput extends DeleteExperimentTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified experiment template.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteExperimentTemplateCommandOutput extends DeleteExperimentT
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteExperimentTemplateCommandInput - {@link DeleteExperimentTemplateCommandInput}
|
|
34
|
+
* @returns {@link DeleteExperimentTemplateCommandOutput}
|
|
28
35
|
* @see {@link DeleteExperimentTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteExperimentTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteExperimentTemplateCommandOutput extends DeleteExperimentT
|
|
|
40
47
|
export declare class DeleteExperimentTemplateCommand extends $Command<DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOutput, FisClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteExperimentTemplateCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteExperimentTemplateCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { GetActionRequest, GetActionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetActionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetActionCommandInput extends GetActionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetActionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetActionCommandOutput extends GetActionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified FIS action.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetActionCommandOutput extends GetActionResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetActionCommandInput - {@link GetActionCommandInput}
|
|
34
|
+
* @returns {@link GetActionCommandOutput}
|
|
28
35
|
* @see {@link GetActionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetActionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetActionCommandOutput extends GetActionResponse, __MetadataBea
|
|
|
40
47
|
export declare class GetActionCommand extends $Command<GetActionCommandInput, GetActionCommandOutput, FisClientResolvedConfig> {
|
|
41
48
|
readonly input: GetActionCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetActionCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetActionCommandInput, GetActionCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { GetExperimentRequest, GetExperimentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetExperimentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetExperimentCommandInput extends GetExperimentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetExperimentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetExperimentCommandOutput extends GetExperimentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified experiment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetExperimentCommandOutput extends GetExperimentResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetExperimentCommandInput - {@link GetExperimentCommandInput}
|
|
34
|
+
* @returns {@link GetExperimentCommandOutput}
|
|
28
35
|
* @see {@link GetExperimentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetExperimentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetExperimentCommandOutput extends GetExperimentResponse, __Met
|
|
|
40
47
|
export declare class GetExperimentCommand extends $Command<GetExperimentCommandInput, GetExperimentCommandOutput, FisClientResolvedConfig> {
|
|
41
48
|
readonly input: GetExperimentCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetExperimentCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExperimentCommandInput, GetExperimentCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { GetExperimentTemplateRequest, GetExperimentTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetExperimentTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetExperimentTemplateCommandInput extends GetExperimentTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetExperimentTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetExperimentTemplateCommandOutput extends GetExperimentTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified experiment template.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetExperimentTemplateCommandOutput extends GetExperimentTemplat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetExperimentTemplateCommandInput - {@link GetExperimentTemplateCommandInput}
|
|
34
|
+
* @returns {@link GetExperimentTemplateCommandOutput}
|
|
28
35
|
* @see {@link GetExperimentTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetExperimentTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetExperimentTemplateCommandOutput extends GetExperimentTemplat
|
|
|
40
47
|
export declare class GetExperimentTemplateCommand extends $Command<GetExperimentTemplateCommandInput, GetExperimentTemplateCommandOutput, FisClientResolvedConfig> {
|
|
41
48
|
readonly input: GetExperimentTemplateCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetExperimentTemplateCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExperimentTemplateCommandInput, GetExperimentTemplateCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { GetTargetResourceTypeRequest, GetTargetResourceTypeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTargetResourceTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTargetResourceTypeCommandInput extends GetTargetResourceTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTargetResourceTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTargetResourceTypeCommandOutput extends GetTargetResourceTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified resource type.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetTargetResourceTypeCommandOutput extends GetTargetResourceTyp
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTargetResourceTypeCommandInput - {@link GetTargetResourceTypeCommandInput}
|
|
34
|
+
* @returns {@link GetTargetResourceTypeCommandOutput}
|
|
28
35
|
* @see {@link GetTargetResourceTypeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTargetResourceTypeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetTargetResourceTypeCommandOutput extends GetTargetResourceTyp
|
|
|
40
47
|
export declare class GetTargetResourceTypeCommand extends $Command<GetTargetResourceTypeCommandInput, GetTargetResourceTypeCommandOutput, FisClientResolvedConfig> {
|
|
41
48
|
readonly input: GetTargetResourceTypeCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetTargetResourceTypeCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTargetResourceTypeCommandInput, GetTargetResourceTypeCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { ListActionsRequest, ListActionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListActionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListActionsCommandInput extends ListActionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListActionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListActionsCommandOutput extends ListActionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the available FIS actions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListActionsCommandOutput extends ListActionsResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListActionsCommandInput - {@link ListActionsCommandInput}
|
|
34
|
+
* @returns {@link ListActionsCommandOutput}
|
|
28
35
|
* @see {@link ListActionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListActionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListActionsCommandOutput extends ListActionsResponse, __Metadat
|
|
|
37
44
|
export declare class ListActionsCommand extends $Command<ListActionsCommandInput, ListActionsCommandOutput, FisClientResolvedConfig> {
|
|
38
45
|
readonly input: ListActionsCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListActionsCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActionsCommandInput, ListActionsCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { ListExperimentTemplatesRequest, ListExperimentTemplatesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListExperimentTemplatesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListExperimentTemplatesCommandInput extends ListExperimentTemplatesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListExperimentTemplatesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListExperimentTemplatesCommandOutput extends ListExperimentTemplatesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists your experiment templates.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListExperimentTemplatesCommandOutput extends ListExperimentTemp
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListExperimentTemplatesCommandInput - {@link ListExperimentTemplatesCommandInput}
|
|
34
|
+
* @returns {@link ListExperimentTemplatesCommandOutput}
|
|
28
35
|
* @see {@link ListExperimentTemplatesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListExperimentTemplatesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListExperimentTemplatesCommandOutput extends ListExperimentTemp
|
|
|
37
44
|
export declare class ListExperimentTemplatesCommand extends $Command<ListExperimentTemplatesCommandInput, ListExperimentTemplatesCommandOutput, FisClientResolvedConfig> {
|
|
38
45
|
readonly input: ListExperimentTemplatesCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListExperimentTemplatesCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExperimentTemplatesCommandInput, ListExperimentTemplatesCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListExperimentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListExperimentsCommandInput extends ListExperimentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListExperimentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListExperimentsCommandOutput extends ListExperimentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists your experiments.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListExperimentsCommandOutput extends ListExperimentsResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListExperimentsCommandInput - {@link ListExperimentsCommandInput}
|
|
34
|
+
* @returns {@link ListExperimentsCommandOutput}
|
|
28
35
|
* @see {@link ListExperimentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListExperimentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListExperimentsCommandOutput extends ListExperimentsResponse, _
|
|
|
37
44
|
export declare class ListExperimentsCommand extends $Command<ListExperimentsCommandInput, ListExperimentsCommandOutput, FisClientResolvedConfig> {
|
|
38
45
|
readonly input: ListExperimentsCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListExperimentsCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExperimentsCommandInput, ListExperimentsCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|