@aws-sdk/client-fis 3.296.0 → 3.298.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/commands/CreateExperimentTemplateCommand.js +2 -3
- package/dist-cjs/commands/DeleteExperimentTemplateCommand.js +2 -3
- package/dist-cjs/commands/GetActionCommand.js +2 -3
- package/dist-cjs/commands/GetExperimentCommand.js +2 -3
- package/dist-cjs/commands/GetExperimentTemplateCommand.js +2 -3
- package/dist-cjs/commands/GetTargetResourceTypeCommand.js +2 -3
- package/dist-cjs/commands/ListActionsCommand.js +2 -3
- package/dist-cjs/commands/ListExperimentTemplatesCommand.js +2 -3
- package/dist-cjs/commands/ListExperimentsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ListTargetResourceTypesCommand.js +2 -3
- package/dist-cjs/commands/StartExperimentCommand.js +2 -3
- package/dist-cjs/commands/StopExperimentCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateExperimentTemplateCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -282
- package/dist-es/commands/CreateExperimentTemplateCommand.js +2 -3
- package/dist-es/commands/DeleteExperimentTemplateCommand.js +2 -3
- package/dist-es/commands/GetActionCommand.js +2 -3
- package/dist-es/commands/GetExperimentCommand.js +2 -3
- package/dist-es/commands/GetExperimentTemplateCommand.js +2 -3
- package/dist-es/commands/GetTargetResourceTypeCommand.js +2 -3
- package/dist-es/commands/ListActionsCommand.js +2 -3
- package/dist-es/commands/ListExperimentTemplatesCommand.js +2 -3
- package/dist-es/commands/ListExperimentsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ListTargetResourceTypesCommand.js +2 -3
- package/dist-es/commands/StartExperimentCommand.js +2 -3
- package/dist-es/commands/StopExperimentCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateExperimentTemplateCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -210
- 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 -280
- 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/dist-types/ts3.4/models/models_0.d.ts +0 -204
- package/package.json +4 -3
|
@@ -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
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags for the specified resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
34
41
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, FisClientResolvedConfig> {
|
|
35
42
|
readonly input: ListTagsForResourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListTagsForResourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient";
|
|
5
5
|
import { ListTargetResourceTypesRequest, ListTargetResourceTypesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTargetResourceTypesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTargetResourceTypesCommandInput extends ListTargetResourceTypesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTargetResourceTypesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTargetResourceTypesCommandOutput extends ListTargetResourceTypesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the target resource types.</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 ListTargetResourceTypesCommandOutput extends ListTargetResource
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTargetResourceTypesCommandInput - {@link ListTargetResourceTypesCommandInput}
|
|
34
|
+
* @returns {@link ListTargetResourceTypesCommandOutput}
|
|
28
35
|
* @see {@link ListTargetResourceTypesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTargetResourceTypesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FisClientResolvedConfig | config} for FisClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListTargetResourceTypesCommandOutput extends ListTargetResource
|
|
|
37
44
|
export declare class ListTargetResourceTypesCommand extends $Command<ListTargetResourceTypesCommandInput, ListTargetResourceTypesCommandOutput, FisClientResolvedConfig> {
|
|
38
45
|
readonly input: ListTargetResourceTypesCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListTargetResourceTypesCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FisClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTargetResourceTypesCommandInput, ListTargetResourceTypesCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|