@aws-sdk/client-fis 3.454.0 → 3.459.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/README.md +80 -16
- package/dist-cjs/Fis.js +16 -0
- package/dist-cjs/commands/CreateTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/DeleteTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetExperimentTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/GetTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/ListExperimentResolvedTargetsCommand.js +51 -0
- package/dist-cjs/commands/ListExperimentTargetAccountConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/ListTargetAccountConfigurationsCommand.js +51 -0
- package/dist-cjs/commands/UpdateTargetAccountConfigurationCommand.js +51 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +10 -1
- package/dist-cjs/pagination/ListExperimentResolvedTargetsPaginator.js +29 -0
- package/dist-cjs/pagination/ListTargetAccountConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +489 -1
- package/dist-es/Fis.js +16 -0
- package/dist-es/commands/CreateTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/DeleteTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/GetExperimentTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/GetTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/ListExperimentResolvedTargetsCommand.js +47 -0
- package/dist-es/commands/ListExperimentTargetAccountConfigurationsCommand.js +47 -0
- package/dist-es/commands/ListTargetAccountConfigurationsCommand.js +47 -0
- package/dist-es/commands/UpdateTargetAccountConfigurationCommand.js +47 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +9 -0
- package/dist-es/pagination/ListExperimentResolvedTargetsPaginator.js +25 -0
- package/dist-es/pagination/ListTargetAccountConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +473 -1
- package/dist-types/Fis.d.ts +56 -0
- package/dist-types/FisClient.d.ts +10 -2
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +10 -1
- package/dist-types/commands/CreateTargetAccountConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/DeleteExperimentTemplateCommand.d.ts +5 -0
- package/dist-types/commands/DeleteTargetAccountConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/GetExperimentCommand.d.ts +6 -1
- package/dist-types/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/GetExperimentTemplateCommand.d.ts +5 -0
- package/dist-types/commands/GetTargetAccountConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/ListExperimentResolvedTargetsCommand.d.ts +91 -0
- package/dist-types/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +87 -0
- package/dist-types/commands/ListTargetAccountConfigurationsCommand.d.ts +88 -0
- package/dist-types/commands/StartExperimentCommand.d.ts +6 -1
- package/dist-types/commands/StopExperimentCommand.d.ts +6 -1
- package/dist-types/commands/UpdateExperimentTemplateCommand.d.ts +8 -0
- package/dist-types/commands/UpdateTargetAccountConfigurationCommand.d.ts +86 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +479 -0
- package/dist-types/pagination/ListExperimentResolvedTargetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTargetAccountConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/Fis.d.ts +148 -0
- package/dist-types/ts3.4/FisClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetExperimentTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListExperimentResolvedTargetsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListExperimentTargetAccountConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTargetAccountConfigurationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateTargetAccountConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListExperimentResolvedTargetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTargetAccountConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/package.json +3 -3
|
@@ -1,29 +1,45 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { CreateExperimentTemplateCommandInput, CreateExperimentTemplateCommandOutput } from "../commands/CreateExperimentTemplateCommand";
|
|
4
|
+
import { CreateTargetAccountConfigurationCommandInput, CreateTargetAccountConfigurationCommandOutput } from "../commands/CreateTargetAccountConfigurationCommand";
|
|
4
5
|
import { DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOutput } from "../commands/DeleteExperimentTemplateCommand";
|
|
6
|
+
import { DeleteTargetAccountConfigurationCommandInput, DeleteTargetAccountConfigurationCommandOutput } from "../commands/DeleteTargetAccountConfigurationCommand";
|
|
5
7
|
import { GetActionCommandInput, GetActionCommandOutput } from "../commands/GetActionCommand";
|
|
6
8
|
import { GetExperimentCommandInput, GetExperimentCommandOutput } from "../commands/GetExperimentCommand";
|
|
9
|
+
import { GetExperimentTargetAccountConfigurationCommandInput, GetExperimentTargetAccountConfigurationCommandOutput } from "../commands/GetExperimentTargetAccountConfigurationCommand";
|
|
7
10
|
import { GetExperimentTemplateCommandInput, GetExperimentTemplateCommandOutput } from "../commands/GetExperimentTemplateCommand";
|
|
11
|
+
import { GetTargetAccountConfigurationCommandInput, GetTargetAccountConfigurationCommandOutput } from "../commands/GetTargetAccountConfigurationCommand";
|
|
8
12
|
import { GetTargetResourceTypeCommandInput, GetTargetResourceTypeCommandOutput } from "../commands/GetTargetResourceTypeCommand";
|
|
9
13
|
import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
|
|
14
|
+
import { ListExperimentResolvedTargetsCommandInput, ListExperimentResolvedTargetsCommandOutput } from "../commands/ListExperimentResolvedTargetsCommand";
|
|
10
15
|
import { ListExperimentsCommandInput, ListExperimentsCommandOutput } from "../commands/ListExperimentsCommand";
|
|
16
|
+
import { ListExperimentTargetAccountConfigurationsCommandInput, ListExperimentTargetAccountConfigurationsCommandOutput } from "../commands/ListExperimentTargetAccountConfigurationsCommand";
|
|
11
17
|
import { ListExperimentTemplatesCommandInput, ListExperimentTemplatesCommandOutput } from "../commands/ListExperimentTemplatesCommand";
|
|
12
18
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
19
|
+
import { ListTargetAccountConfigurationsCommandInput, ListTargetAccountConfigurationsCommandOutput } from "../commands/ListTargetAccountConfigurationsCommand";
|
|
13
20
|
import { ListTargetResourceTypesCommandInput, ListTargetResourceTypesCommandOutput } from "../commands/ListTargetResourceTypesCommand";
|
|
14
21
|
import { StartExperimentCommandInput, StartExperimentCommandOutput } from "../commands/StartExperimentCommand";
|
|
15
22
|
import { StopExperimentCommandInput, StopExperimentCommandOutput } from "../commands/StopExperimentCommand";
|
|
16
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
25
|
import { UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput } from "../commands/UpdateExperimentTemplateCommand";
|
|
26
|
+
import { UpdateTargetAccountConfigurationCommandInput, UpdateTargetAccountConfigurationCommandOutput } from "../commands/UpdateTargetAccountConfigurationCommand";
|
|
19
27
|
/**
|
|
20
28
|
* serializeAws_restJson1CreateExperimentTemplateCommand
|
|
21
29
|
*/
|
|
22
30
|
export declare const se_CreateExperimentTemplateCommand: (input: CreateExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_restJson1CreateTargetAccountConfigurationCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_CreateTargetAccountConfigurationCommand: (input: CreateTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
35
|
/**
|
|
24
36
|
* serializeAws_restJson1DeleteExperimentTemplateCommand
|
|
25
37
|
*/
|
|
26
38
|
export declare const se_DeleteExperimentTemplateCommand: (input: DeleteExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
/**
|
|
40
|
+
* serializeAws_restJson1DeleteTargetAccountConfigurationCommand
|
|
41
|
+
*/
|
|
42
|
+
export declare const se_DeleteTargetAccountConfigurationCommand: (input: DeleteTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
43
|
/**
|
|
28
44
|
* serializeAws_restJson1GetActionCommand
|
|
29
45
|
*/
|
|
@@ -32,10 +48,18 @@ export declare const se_GetActionCommand: (input: GetActionCommandInput, context
|
|
|
32
48
|
* serializeAws_restJson1GetExperimentCommand
|
|
33
49
|
*/
|
|
34
50
|
export declare const se_GetExperimentCommand: (input: GetExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* serializeAws_restJson1GetExperimentTargetAccountConfigurationCommand
|
|
53
|
+
*/
|
|
54
|
+
export declare const se_GetExperimentTargetAccountConfigurationCommand: (input: GetExperimentTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
55
|
/**
|
|
36
56
|
* serializeAws_restJson1GetExperimentTemplateCommand
|
|
37
57
|
*/
|
|
38
58
|
export declare const se_GetExperimentTemplateCommand: (input: GetExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1GetTargetAccountConfigurationCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_GetTargetAccountConfigurationCommand: (input: GetTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
63
|
/**
|
|
40
64
|
* serializeAws_restJson1GetTargetResourceTypeCommand
|
|
41
65
|
*/
|
|
@@ -44,10 +68,18 @@ export declare const se_GetTargetResourceTypeCommand: (input: GetTargetResourceT
|
|
|
44
68
|
* serializeAws_restJson1ListActionsCommand
|
|
45
69
|
*/
|
|
46
70
|
export declare const se_ListActionsCommand: (input: ListActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_restJson1ListExperimentResolvedTargetsCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_ListExperimentResolvedTargetsCommand: (input: ListExperimentResolvedTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
75
|
/**
|
|
48
76
|
* serializeAws_restJson1ListExperimentsCommand
|
|
49
77
|
*/
|
|
50
78
|
export declare const se_ListExperimentsCommand: (input: ListExperimentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
/**
|
|
80
|
+
* serializeAws_restJson1ListExperimentTargetAccountConfigurationsCommand
|
|
81
|
+
*/
|
|
82
|
+
export declare const se_ListExperimentTargetAccountConfigurationsCommand: (input: ListExperimentTargetAccountConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
83
|
/**
|
|
52
84
|
* serializeAws_restJson1ListExperimentTemplatesCommand
|
|
53
85
|
*/
|
|
@@ -56,6 +88,10 @@ export declare const se_ListExperimentTemplatesCommand: (input: ListExperimentTe
|
|
|
56
88
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
57
89
|
*/
|
|
58
90
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
+
/**
|
|
92
|
+
* serializeAws_restJson1ListTargetAccountConfigurationsCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const se_ListTargetAccountConfigurationsCommand: (input: ListTargetAccountConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
95
|
/**
|
|
60
96
|
* serializeAws_restJson1ListTargetResourceTypesCommand
|
|
61
97
|
*/
|
|
@@ -80,14 +116,26 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
80
116
|
* serializeAws_restJson1UpdateExperimentTemplateCommand
|
|
81
117
|
*/
|
|
82
118
|
export declare const se_UpdateExperimentTemplateCommand: (input: UpdateExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
/**
|
|
120
|
+
* serializeAws_restJson1UpdateTargetAccountConfigurationCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const se_UpdateTargetAccountConfigurationCommand: (input: UpdateTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
123
|
/**
|
|
84
124
|
* deserializeAws_restJson1CreateExperimentTemplateCommand
|
|
85
125
|
*/
|
|
86
126
|
export declare const de_CreateExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExperimentTemplateCommandOutput>;
|
|
127
|
+
/**
|
|
128
|
+
* deserializeAws_restJson1CreateTargetAccountConfigurationCommand
|
|
129
|
+
*/
|
|
130
|
+
export declare const de_CreateTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTargetAccountConfigurationCommandOutput>;
|
|
87
131
|
/**
|
|
88
132
|
* deserializeAws_restJson1DeleteExperimentTemplateCommand
|
|
89
133
|
*/
|
|
90
134
|
export declare const de_DeleteExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExperimentTemplateCommandOutput>;
|
|
135
|
+
/**
|
|
136
|
+
* deserializeAws_restJson1DeleteTargetAccountConfigurationCommand
|
|
137
|
+
*/
|
|
138
|
+
export declare const de_DeleteTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetAccountConfigurationCommandOutput>;
|
|
91
139
|
/**
|
|
92
140
|
* deserializeAws_restJson1GetActionCommand
|
|
93
141
|
*/
|
|
@@ -96,10 +144,18 @@ export declare const de_GetActionCommand: (output: __HttpResponse, context: __Se
|
|
|
96
144
|
* deserializeAws_restJson1GetExperimentCommand
|
|
97
145
|
*/
|
|
98
146
|
export declare const de_GetExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentCommandOutput>;
|
|
147
|
+
/**
|
|
148
|
+
* deserializeAws_restJson1GetExperimentTargetAccountConfigurationCommand
|
|
149
|
+
*/
|
|
150
|
+
export declare const de_GetExperimentTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentTargetAccountConfigurationCommandOutput>;
|
|
99
151
|
/**
|
|
100
152
|
* deserializeAws_restJson1GetExperimentTemplateCommand
|
|
101
153
|
*/
|
|
102
154
|
export declare const de_GetExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentTemplateCommandOutput>;
|
|
155
|
+
/**
|
|
156
|
+
* deserializeAws_restJson1GetTargetAccountConfigurationCommand
|
|
157
|
+
*/
|
|
158
|
+
export declare const de_GetTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTargetAccountConfigurationCommandOutput>;
|
|
103
159
|
/**
|
|
104
160
|
* deserializeAws_restJson1GetTargetResourceTypeCommand
|
|
105
161
|
*/
|
|
@@ -108,10 +164,18 @@ export declare const de_GetTargetResourceTypeCommand: (output: __HttpResponse, c
|
|
|
108
164
|
* deserializeAws_restJson1ListActionsCommand
|
|
109
165
|
*/
|
|
110
166
|
export declare const de_ListActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListActionsCommandOutput>;
|
|
167
|
+
/**
|
|
168
|
+
* deserializeAws_restJson1ListExperimentResolvedTargetsCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const de_ListExperimentResolvedTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentResolvedTargetsCommandOutput>;
|
|
111
171
|
/**
|
|
112
172
|
* deserializeAws_restJson1ListExperimentsCommand
|
|
113
173
|
*/
|
|
114
174
|
export declare const de_ListExperimentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentsCommandOutput>;
|
|
175
|
+
/**
|
|
176
|
+
* deserializeAws_restJson1ListExperimentTargetAccountConfigurationsCommand
|
|
177
|
+
*/
|
|
178
|
+
export declare const de_ListExperimentTargetAccountConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentTargetAccountConfigurationsCommandOutput>;
|
|
115
179
|
/**
|
|
116
180
|
* deserializeAws_restJson1ListExperimentTemplatesCommand
|
|
117
181
|
*/
|
|
@@ -120,6 +184,10 @@ export declare const de_ListExperimentTemplatesCommand: (output: __HttpResponse,
|
|
|
120
184
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
121
185
|
*/
|
|
122
186
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
187
|
+
/**
|
|
188
|
+
* deserializeAws_restJson1ListTargetAccountConfigurationsCommand
|
|
189
|
+
*/
|
|
190
|
+
export declare const de_ListTargetAccountConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetAccountConfigurationsCommandOutput>;
|
|
123
191
|
/**
|
|
124
192
|
* deserializeAws_restJson1ListTargetResourceTypesCommand
|
|
125
193
|
*/
|
|
@@ -144,3 +212,7 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
144
212
|
* deserializeAws_restJson1UpdateExperimentTemplateCommand
|
|
145
213
|
*/
|
|
146
214
|
export declare const de_UpdateExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExperimentTemplateCommandOutput>;
|
|
215
|
+
/**
|
|
216
|
+
* deserializeAws_restJson1UpdateTargetAccountConfigurationCommand
|
|
217
|
+
*/
|
|
218
|
+
export declare const de_UpdateTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTargetAccountConfigurationCommandOutput>;
|
|
@@ -3,10 +3,18 @@ import {
|
|
|
3
3
|
CreateExperimentTemplateCommandInput,
|
|
4
4
|
CreateExperimentTemplateCommandOutput,
|
|
5
5
|
} from "./commands/CreateExperimentTemplateCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateTargetAccountConfigurationCommandInput,
|
|
8
|
+
CreateTargetAccountConfigurationCommandOutput,
|
|
9
|
+
} from "./commands/CreateTargetAccountConfigurationCommand";
|
|
6
10
|
import {
|
|
7
11
|
DeleteExperimentTemplateCommandInput,
|
|
8
12
|
DeleteExperimentTemplateCommandOutput,
|
|
9
13
|
} from "./commands/DeleteExperimentTemplateCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteTargetAccountConfigurationCommandInput,
|
|
16
|
+
DeleteTargetAccountConfigurationCommandOutput,
|
|
17
|
+
} from "./commands/DeleteTargetAccountConfigurationCommand";
|
|
10
18
|
import {
|
|
11
19
|
GetActionCommandInput,
|
|
12
20
|
GetActionCommandOutput,
|
|
@@ -15,10 +23,18 @@ import {
|
|
|
15
23
|
GetExperimentCommandInput,
|
|
16
24
|
GetExperimentCommandOutput,
|
|
17
25
|
} from "./commands/GetExperimentCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetExperimentTargetAccountConfigurationCommandInput,
|
|
28
|
+
GetExperimentTargetAccountConfigurationCommandOutput,
|
|
29
|
+
} from "./commands/GetExperimentTargetAccountConfigurationCommand";
|
|
18
30
|
import {
|
|
19
31
|
GetExperimentTemplateCommandInput,
|
|
20
32
|
GetExperimentTemplateCommandOutput,
|
|
21
33
|
} from "./commands/GetExperimentTemplateCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetTargetAccountConfigurationCommandInput,
|
|
36
|
+
GetTargetAccountConfigurationCommandOutput,
|
|
37
|
+
} from "./commands/GetTargetAccountConfigurationCommand";
|
|
22
38
|
import {
|
|
23
39
|
GetTargetResourceTypeCommandInput,
|
|
24
40
|
GetTargetResourceTypeCommandOutput,
|
|
@@ -27,10 +43,18 @@ import {
|
|
|
27
43
|
ListActionsCommandInput,
|
|
28
44
|
ListActionsCommandOutput,
|
|
29
45
|
} from "./commands/ListActionsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListExperimentResolvedTargetsCommandInput,
|
|
48
|
+
ListExperimentResolvedTargetsCommandOutput,
|
|
49
|
+
} from "./commands/ListExperimentResolvedTargetsCommand";
|
|
30
50
|
import {
|
|
31
51
|
ListExperimentsCommandInput,
|
|
32
52
|
ListExperimentsCommandOutput,
|
|
33
53
|
} from "./commands/ListExperimentsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListExperimentTargetAccountConfigurationsCommandInput,
|
|
56
|
+
ListExperimentTargetAccountConfigurationsCommandOutput,
|
|
57
|
+
} from "./commands/ListExperimentTargetAccountConfigurationsCommand";
|
|
34
58
|
import {
|
|
35
59
|
ListExperimentTemplatesCommandInput,
|
|
36
60
|
ListExperimentTemplatesCommandOutput,
|
|
@@ -39,6 +63,10 @@ import {
|
|
|
39
63
|
ListTagsForResourceCommandInput,
|
|
40
64
|
ListTagsForResourceCommandOutput,
|
|
41
65
|
} from "./commands/ListTagsForResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListTargetAccountConfigurationsCommandInput,
|
|
68
|
+
ListTargetAccountConfigurationsCommandOutput,
|
|
69
|
+
} from "./commands/ListTargetAccountConfigurationsCommand";
|
|
42
70
|
import {
|
|
43
71
|
ListTargetResourceTypesCommandInput,
|
|
44
72
|
ListTargetResourceTypesCommandOutput,
|
|
@@ -63,6 +91,10 @@ import {
|
|
|
63
91
|
UpdateExperimentTemplateCommandInput,
|
|
64
92
|
UpdateExperimentTemplateCommandOutput,
|
|
65
93
|
} from "./commands/UpdateExperimentTemplateCommand";
|
|
94
|
+
import {
|
|
95
|
+
UpdateTargetAccountConfigurationCommandInput,
|
|
96
|
+
UpdateTargetAccountConfigurationCommandOutput,
|
|
97
|
+
} from "./commands/UpdateTargetAccountConfigurationCommand";
|
|
66
98
|
import { FisClient } from "./FisClient";
|
|
67
99
|
export interface Fis {
|
|
68
100
|
createExperimentTemplate(
|
|
@@ -78,6 +110,19 @@ export interface Fis {
|
|
|
78
110
|
options: __HttpHandlerOptions,
|
|
79
111
|
cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void
|
|
80
112
|
): void;
|
|
113
|
+
createTargetAccountConfiguration(
|
|
114
|
+
args: CreateTargetAccountConfigurationCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<CreateTargetAccountConfigurationCommandOutput>;
|
|
117
|
+
createTargetAccountConfiguration(
|
|
118
|
+
args: CreateTargetAccountConfigurationCommandInput,
|
|
119
|
+
cb: (err: any, data?: CreateTargetAccountConfigurationCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
createTargetAccountConfiguration(
|
|
122
|
+
args: CreateTargetAccountConfigurationCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: CreateTargetAccountConfigurationCommandOutput) => void
|
|
125
|
+
): void;
|
|
81
126
|
deleteExperimentTemplate(
|
|
82
127
|
args: DeleteExperimentTemplateCommandInput,
|
|
83
128
|
options?: __HttpHandlerOptions
|
|
@@ -91,6 +136,19 @@ export interface Fis {
|
|
|
91
136
|
options: __HttpHandlerOptions,
|
|
92
137
|
cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void
|
|
93
138
|
): void;
|
|
139
|
+
deleteTargetAccountConfiguration(
|
|
140
|
+
args: DeleteTargetAccountConfigurationCommandInput,
|
|
141
|
+
options?: __HttpHandlerOptions
|
|
142
|
+
): Promise<DeleteTargetAccountConfigurationCommandOutput>;
|
|
143
|
+
deleteTargetAccountConfiguration(
|
|
144
|
+
args: DeleteTargetAccountConfigurationCommandInput,
|
|
145
|
+
cb: (err: any, data?: DeleteTargetAccountConfigurationCommandOutput) => void
|
|
146
|
+
): void;
|
|
147
|
+
deleteTargetAccountConfiguration(
|
|
148
|
+
args: DeleteTargetAccountConfigurationCommandInput,
|
|
149
|
+
options: __HttpHandlerOptions,
|
|
150
|
+
cb: (err: any, data?: DeleteTargetAccountConfigurationCommandOutput) => void
|
|
151
|
+
): void;
|
|
94
152
|
getAction(
|
|
95
153
|
args: GetActionCommandInput,
|
|
96
154
|
options?: __HttpHandlerOptions
|
|
@@ -117,6 +175,25 @@ export interface Fis {
|
|
|
117
175
|
options: __HttpHandlerOptions,
|
|
118
176
|
cb: (err: any, data?: GetExperimentCommandOutput) => void
|
|
119
177
|
): void;
|
|
178
|
+
getExperimentTargetAccountConfiguration(
|
|
179
|
+
args: GetExperimentTargetAccountConfigurationCommandInput,
|
|
180
|
+
options?: __HttpHandlerOptions
|
|
181
|
+
): Promise<GetExperimentTargetAccountConfigurationCommandOutput>;
|
|
182
|
+
getExperimentTargetAccountConfiguration(
|
|
183
|
+
args: GetExperimentTargetAccountConfigurationCommandInput,
|
|
184
|
+
cb: (
|
|
185
|
+
err: any,
|
|
186
|
+
data?: GetExperimentTargetAccountConfigurationCommandOutput
|
|
187
|
+
) => void
|
|
188
|
+
): void;
|
|
189
|
+
getExperimentTargetAccountConfiguration(
|
|
190
|
+
args: GetExperimentTargetAccountConfigurationCommandInput,
|
|
191
|
+
options: __HttpHandlerOptions,
|
|
192
|
+
cb: (
|
|
193
|
+
err: any,
|
|
194
|
+
data?: GetExperimentTargetAccountConfigurationCommandOutput
|
|
195
|
+
) => void
|
|
196
|
+
): void;
|
|
120
197
|
getExperimentTemplate(
|
|
121
198
|
args: GetExperimentTemplateCommandInput,
|
|
122
199
|
options?: __HttpHandlerOptions
|
|
@@ -130,6 +207,19 @@ export interface Fis {
|
|
|
130
207
|
options: __HttpHandlerOptions,
|
|
131
208
|
cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void
|
|
132
209
|
): void;
|
|
210
|
+
getTargetAccountConfiguration(
|
|
211
|
+
args: GetTargetAccountConfigurationCommandInput,
|
|
212
|
+
options?: __HttpHandlerOptions
|
|
213
|
+
): Promise<GetTargetAccountConfigurationCommandOutput>;
|
|
214
|
+
getTargetAccountConfiguration(
|
|
215
|
+
args: GetTargetAccountConfigurationCommandInput,
|
|
216
|
+
cb: (err: any, data?: GetTargetAccountConfigurationCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
getTargetAccountConfiguration(
|
|
219
|
+
args: GetTargetAccountConfigurationCommandInput,
|
|
220
|
+
options: __HttpHandlerOptions,
|
|
221
|
+
cb: (err: any, data?: GetTargetAccountConfigurationCommandOutput) => void
|
|
222
|
+
): void;
|
|
133
223
|
getTargetResourceType(
|
|
134
224
|
args: GetTargetResourceTypeCommandInput,
|
|
135
225
|
options?: __HttpHandlerOptions
|
|
@@ -156,6 +246,19 @@ export interface Fis {
|
|
|
156
246
|
options: __HttpHandlerOptions,
|
|
157
247
|
cb: (err: any, data?: ListActionsCommandOutput) => void
|
|
158
248
|
): void;
|
|
249
|
+
listExperimentResolvedTargets(
|
|
250
|
+
args: ListExperimentResolvedTargetsCommandInput,
|
|
251
|
+
options?: __HttpHandlerOptions
|
|
252
|
+
): Promise<ListExperimentResolvedTargetsCommandOutput>;
|
|
253
|
+
listExperimentResolvedTargets(
|
|
254
|
+
args: ListExperimentResolvedTargetsCommandInput,
|
|
255
|
+
cb: (err: any, data?: ListExperimentResolvedTargetsCommandOutput) => void
|
|
256
|
+
): void;
|
|
257
|
+
listExperimentResolvedTargets(
|
|
258
|
+
args: ListExperimentResolvedTargetsCommandInput,
|
|
259
|
+
options: __HttpHandlerOptions,
|
|
260
|
+
cb: (err: any, data?: ListExperimentResolvedTargetsCommandOutput) => void
|
|
261
|
+
): void;
|
|
159
262
|
listExperiments(
|
|
160
263
|
args: ListExperimentsCommandInput,
|
|
161
264
|
options?: __HttpHandlerOptions
|
|
@@ -169,6 +272,25 @@ export interface Fis {
|
|
|
169
272
|
options: __HttpHandlerOptions,
|
|
170
273
|
cb: (err: any, data?: ListExperimentsCommandOutput) => void
|
|
171
274
|
): void;
|
|
275
|
+
listExperimentTargetAccountConfigurations(
|
|
276
|
+
args: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
277
|
+
options?: __HttpHandlerOptions
|
|
278
|
+
): Promise<ListExperimentTargetAccountConfigurationsCommandOutput>;
|
|
279
|
+
listExperimentTargetAccountConfigurations(
|
|
280
|
+
args: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
281
|
+
cb: (
|
|
282
|
+
err: any,
|
|
283
|
+
data?: ListExperimentTargetAccountConfigurationsCommandOutput
|
|
284
|
+
) => void
|
|
285
|
+
): void;
|
|
286
|
+
listExperimentTargetAccountConfigurations(
|
|
287
|
+
args: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
288
|
+
options: __HttpHandlerOptions,
|
|
289
|
+
cb: (
|
|
290
|
+
err: any,
|
|
291
|
+
data?: ListExperimentTargetAccountConfigurationsCommandOutput
|
|
292
|
+
) => void
|
|
293
|
+
): void;
|
|
172
294
|
listExperimentTemplates(
|
|
173
295
|
args: ListExperimentTemplatesCommandInput,
|
|
174
296
|
options?: __HttpHandlerOptions
|
|
@@ -195,6 +317,19 @@ export interface Fis {
|
|
|
195
317
|
options: __HttpHandlerOptions,
|
|
196
318
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
197
319
|
): void;
|
|
320
|
+
listTargetAccountConfigurations(
|
|
321
|
+
args: ListTargetAccountConfigurationsCommandInput,
|
|
322
|
+
options?: __HttpHandlerOptions
|
|
323
|
+
): Promise<ListTargetAccountConfigurationsCommandOutput>;
|
|
324
|
+
listTargetAccountConfigurations(
|
|
325
|
+
args: ListTargetAccountConfigurationsCommandInput,
|
|
326
|
+
cb: (err: any, data?: ListTargetAccountConfigurationsCommandOutput) => void
|
|
327
|
+
): void;
|
|
328
|
+
listTargetAccountConfigurations(
|
|
329
|
+
args: ListTargetAccountConfigurationsCommandInput,
|
|
330
|
+
options: __HttpHandlerOptions,
|
|
331
|
+
cb: (err: any, data?: ListTargetAccountConfigurationsCommandOutput) => void
|
|
332
|
+
): void;
|
|
198
333
|
listTargetResourceTypes(
|
|
199
334
|
args: ListTargetResourceTypesCommandInput,
|
|
200
335
|
options?: __HttpHandlerOptions
|
|
@@ -273,5 +408,18 @@ export interface Fis {
|
|
|
273
408
|
options: __HttpHandlerOptions,
|
|
274
409
|
cb: (err: any, data?: UpdateExperimentTemplateCommandOutput) => void
|
|
275
410
|
): void;
|
|
411
|
+
updateTargetAccountConfiguration(
|
|
412
|
+
args: UpdateTargetAccountConfigurationCommandInput,
|
|
413
|
+
options?: __HttpHandlerOptions
|
|
414
|
+
): Promise<UpdateTargetAccountConfigurationCommandOutput>;
|
|
415
|
+
updateTargetAccountConfiguration(
|
|
416
|
+
args: UpdateTargetAccountConfigurationCommandInput,
|
|
417
|
+
cb: (err: any, data?: UpdateTargetAccountConfigurationCommandOutput) => void
|
|
418
|
+
): void;
|
|
419
|
+
updateTargetAccountConfiguration(
|
|
420
|
+
args: UpdateTargetAccountConfigurationCommandInput,
|
|
421
|
+
options: __HttpHandlerOptions,
|
|
422
|
+
cb: (err: any, data?: UpdateTargetAccountConfigurationCommandOutput) => void
|
|
423
|
+
): void;
|
|
276
424
|
}
|
|
277
425
|
export declare class Fis extends FisClient implements Fis {}
|
|
@@ -49,10 +49,18 @@ import {
|
|
|
49
49
|
CreateExperimentTemplateCommandInput,
|
|
50
50
|
CreateExperimentTemplateCommandOutput,
|
|
51
51
|
} from "./commands/CreateExperimentTemplateCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateTargetAccountConfigurationCommandInput,
|
|
54
|
+
CreateTargetAccountConfigurationCommandOutput,
|
|
55
|
+
} from "./commands/CreateTargetAccountConfigurationCommand";
|
|
52
56
|
import {
|
|
53
57
|
DeleteExperimentTemplateCommandInput,
|
|
54
58
|
DeleteExperimentTemplateCommandOutput,
|
|
55
59
|
} from "./commands/DeleteExperimentTemplateCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeleteTargetAccountConfigurationCommandInput,
|
|
62
|
+
DeleteTargetAccountConfigurationCommandOutput,
|
|
63
|
+
} from "./commands/DeleteTargetAccountConfigurationCommand";
|
|
56
64
|
import {
|
|
57
65
|
GetActionCommandInput,
|
|
58
66
|
GetActionCommandOutput,
|
|
@@ -61,10 +69,18 @@ import {
|
|
|
61
69
|
GetExperimentCommandInput,
|
|
62
70
|
GetExperimentCommandOutput,
|
|
63
71
|
} from "./commands/GetExperimentCommand";
|
|
72
|
+
import {
|
|
73
|
+
GetExperimentTargetAccountConfigurationCommandInput,
|
|
74
|
+
GetExperimentTargetAccountConfigurationCommandOutput,
|
|
75
|
+
} from "./commands/GetExperimentTargetAccountConfigurationCommand";
|
|
64
76
|
import {
|
|
65
77
|
GetExperimentTemplateCommandInput,
|
|
66
78
|
GetExperimentTemplateCommandOutput,
|
|
67
79
|
} from "./commands/GetExperimentTemplateCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetTargetAccountConfigurationCommandInput,
|
|
82
|
+
GetTargetAccountConfigurationCommandOutput,
|
|
83
|
+
} from "./commands/GetTargetAccountConfigurationCommand";
|
|
68
84
|
import {
|
|
69
85
|
GetTargetResourceTypeCommandInput,
|
|
70
86
|
GetTargetResourceTypeCommandOutput,
|
|
@@ -73,10 +89,18 @@ import {
|
|
|
73
89
|
ListActionsCommandInput,
|
|
74
90
|
ListActionsCommandOutput,
|
|
75
91
|
} from "./commands/ListActionsCommand";
|
|
92
|
+
import {
|
|
93
|
+
ListExperimentResolvedTargetsCommandInput,
|
|
94
|
+
ListExperimentResolvedTargetsCommandOutput,
|
|
95
|
+
} from "./commands/ListExperimentResolvedTargetsCommand";
|
|
76
96
|
import {
|
|
77
97
|
ListExperimentsCommandInput,
|
|
78
98
|
ListExperimentsCommandOutput,
|
|
79
99
|
} from "./commands/ListExperimentsCommand";
|
|
100
|
+
import {
|
|
101
|
+
ListExperimentTargetAccountConfigurationsCommandInput,
|
|
102
|
+
ListExperimentTargetAccountConfigurationsCommandOutput,
|
|
103
|
+
} from "./commands/ListExperimentTargetAccountConfigurationsCommand";
|
|
80
104
|
import {
|
|
81
105
|
ListExperimentTemplatesCommandInput,
|
|
82
106
|
ListExperimentTemplatesCommandOutput,
|
|
@@ -85,6 +109,10 @@ import {
|
|
|
85
109
|
ListTagsForResourceCommandInput,
|
|
86
110
|
ListTagsForResourceCommandOutput,
|
|
87
111
|
} from "./commands/ListTagsForResourceCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListTargetAccountConfigurationsCommandInput,
|
|
114
|
+
ListTargetAccountConfigurationsCommandOutput,
|
|
115
|
+
} from "./commands/ListTargetAccountConfigurationsCommand";
|
|
88
116
|
import {
|
|
89
117
|
ListTargetResourceTypesCommandInput,
|
|
90
118
|
ListTargetResourceTypesCommandOutput,
|
|
@@ -109,6 +137,10 @@ import {
|
|
|
109
137
|
UpdateExperimentTemplateCommandInput,
|
|
110
138
|
UpdateExperimentTemplateCommandOutput,
|
|
111
139
|
} from "./commands/UpdateExperimentTemplateCommand";
|
|
140
|
+
import {
|
|
141
|
+
UpdateTargetAccountConfigurationCommandInput,
|
|
142
|
+
UpdateTargetAccountConfigurationCommandOutput,
|
|
143
|
+
} from "./commands/UpdateTargetAccountConfigurationCommand";
|
|
112
144
|
import {
|
|
113
145
|
ClientInputEndpointParameters,
|
|
114
146
|
ClientResolvedEndpointParameters,
|
|
@@ -118,38 +150,54 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
118
150
|
export { __Client };
|
|
119
151
|
export type ServiceInputTypes =
|
|
120
152
|
| CreateExperimentTemplateCommandInput
|
|
153
|
+
| CreateTargetAccountConfigurationCommandInput
|
|
121
154
|
| DeleteExperimentTemplateCommandInput
|
|
155
|
+
| DeleteTargetAccountConfigurationCommandInput
|
|
122
156
|
| GetActionCommandInput
|
|
123
157
|
| GetExperimentCommandInput
|
|
158
|
+
| GetExperimentTargetAccountConfigurationCommandInput
|
|
124
159
|
| GetExperimentTemplateCommandInput
|
|
160
|
+
| GetTargetAccountConfigurationCommandInput
|
|
125
161
|
| GetTargetResourceTypeCommandInput
|
|
126
162
|
| ListActionsCommandInput
|
|
163
|
+
| ListExperimentResolvedTargetsCommandInput
|
|
164
|
+
| ListExperimentTargetAccountConfigurationsCommandInput
|
|
127
165
|
| ListExperimentTemplatesCommandInput
|
|
128
166
|
| ListExperimentsCommandInput
|
|
129
167
|
| ListTagsForResourceCommandInput
|
|
168
|
+
| ListTargetAccountConfigurationsCommandInput
|
|
130
169
|
| ListTargetResourceTypesCommandInput
|
|
131
170
|
| StartExperimentCommandInput
|
|
132
171
|
| StopExperimentCommandInput
|
|
133
172
|
| TagResourceCommandInput
|
|
134
173
|
| UntagResourceCommandInput
|
|
135
|
-
| UpdateExperimentTemplateCommandInput
|
|
174
|
+
| UpdateExperimentTemplateCommandInput
|
|
175
|
+
| UpdateTargetAccountConfigurationCommandInput;
|
|
136
176
|
export type ServiceOutputTypes =
|
|
137
177
|
| CreateExperimentTemplateCommandOutput
|
|
178
|
+
| CreateTargetAccountConfigurationCommandOutput
|
|
138
179
|
| DeleteExperimentTemplateCommandOutput
|
|
180
|
+
| DeleteTargetAccountConfigurationCommandOutput
|
|
139
181
|
| GetActionCommandOutput
|
|
140
182
|
| GetExperimentCommandOutput
|
|
183
|
+
| GetExperimentTargetAccountConfigurationCommandOutput
|
|
141
184
|
| GetExperimentTemplateCommandOutput
|
|
185
|
+
| GetTargetAccountConfigurationCommandOutput
|
|
142
186
|
| GetTargetResourceTypeCommandOutput
|
|
143
187
|
| ListActionsCommandOutput
|
|
188
|
+
| ListExperimentResolvedTargetsCommandOutput
|
|
189
|
+
| ListExperimentTargetAccountConfigurationsCommandOutput
|
|
144
190
|
| ListExperimentTemplatesCommandOutput
|
|
145
191
|
| ListExperimentsCommandOutput
|
|
146
192
|
| ListTagsForResourceCommandOutput
|
|
193
|
+
| ListTargetAccountConfigurationsCommandOutput
|
|
147
194
|
| ListTargetResourceTypesCommandOutput
|
|
148
195
|
| StartExperimentCommandOutput
|
|
149
196
|
| StopExperimentCommandOutput
|
|
150
197
|
| TagResourceCommandOutput
|
|
151
198
|
| UntagResourceCommandOutput
|
|
152
|
-
| UpdateExperimentTemplateCommandOutput
|
|
199
|
+
| UpdateExperimentTemplateCommandOutput
|
|
200
|
+
| UpdateTargetAccountConfigurationCommandOutput;
|
|
153
201
|
export interface ClientDefaults
|
|
154
202
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
155
203
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
FisClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FisClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateTargetAccountConfigurationRequest,
|
|
16
|
+
CreateTargetAccountConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateTargetAccountConfigurationCommandInput
|
|
20
|
+
extends CreateTargetAccountConfigurationRequest {}
|
|
21
|
+
export interface CreateTargetAccountConfigurationCommandOutput
|
|
22
|
+
extends CreateTargetAccountConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateTargetAccountConfigurationCommand extends $Command<
|
|
25
|
+
CreateTargetAccountConfigurationCommandInput,
|
|
26
|
+
CreateTargetAccountConfigurationCommandOutput,
|
|
27
|
+
FisClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateTargetAccountConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateTargetAccountConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FisClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateTargetAccountConfigurationCommandInput,
|
|
38
|
+
CreateTargetAccountConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
FisClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FisClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteTargetAccountConfigurationRequest,
|
|
16
|
+
DeleteTargetAccountConfigurationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteTargetAccountConfigurationCommandInput
|
|
20
|
+
extends DeleteTargetAccountConfigurationRequest {}
|
|
21
|
+
export interface DeleteTargetAccountConfigurationCommandOutput
|
|
22
|
+
extends DeleteTargetAccountConfigurationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteTargetAccountConfigurationCommand extends $Command<
|
|
25
|
+
DeleteTargetAccountConfigurationCommandInput,
|
|
26
|
+
DeleteTargetAccountConfigurationCommandOutput,
|
|
27
|
+
FisClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteTargetAccountConfigurationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteTargetAccountConfigurationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: FisClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeleteTargetAccountConfigurationCommandInput,
|
|
38
|
+
DeleteTargetAccountConfigurationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|