@aws-sdk/client-fis 3.928.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1541 -1069
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/FisClient.js +2 -0
- package/dist-es/commands/CreateExperimentTemplateCommand.js +3 -9
- package/dist-es/commands/CreateTargetAccountConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteExperimentTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteTargetAccountConfigurationCommand.js +3 -9
- package/dist-es/commands/GetActionCommand.js +3 -9
- package/dist-es/commands/GetExperimentCommand.js +3 -9
- package/dist-es/commands/GetExperimentTargetAccountConfigurationCommand.js +3 -9
- package/dist-es/commands/GetExperimentTemplateCommand.js +3 -9
- package/dist-es/commands/GetSafetyLeverCommand.js +3 -9
- package/dist-es/commands/GetTargetAccountConfigurationCommand.js +3 -9
- package/dist-es/commands/GetTargetResourceTypeCommand.js +3 -9
- package/dist-es/commands/ListActionsCommand.js +3 -9
- package/dist-es/commands/ListExperimentResolvedTargetsCommand.js +3 -9
- package/dist-es/commands/ListExperimentTargetAccountConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListExperimentTemplatesCommand.js +3 -9
- package/dist-es/commands/ListExperimentsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListTargetAccountConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTargetResourceTypesCommand.js +3 -9
- package/dist-es/commands/StartExperimentCommand.js +3 -9
- package/dist-es/commands/StopExperimentCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateExperimentTemplateCommand.js +3 -9
- package/dist-es/commands/UpdateSafetyLeverStateCommand.js +3 -9
- package/dist-es/commands/UpdateTargetAccountConfigurationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1495 -0
- package/dist-types/FisClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +200 -0
- package/dist-types/ts3.4/FisClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +206 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -881
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -317
|
@@ -1,236 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateExperimentTemplateCommandInput, CreateExperimentTemplateCommandOutput } from "../commands/CreateExperimentTemplateCommand";
|
|
4
|
-
import { CreateTargetAccountConfigurationCommandInput, CreateTargetAccountConfigurationCommandOutput } from "../commands/CreateTargetAccountConfigurationCommand";
|
|
5
|
-
import { DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOutput } from "../commands/DeleteExperimentTemplateCommand";
|
|
6
|
-
import { DeleteTargetAccountConfigurationCommandInput, DeleteTargetAccountConfigurationCommandOutput } from "../commands/DeleteTargetAccountConfigurationCommand";
|
|
7
|
-
import { GetActionCommandInput, GetActionCommandOutput } from "../commands/GetActionCommand";
|
|
8
|
-
import { GetExperimentCommandInput, GetExperimentCommandOutput } from "../commands/GetExperimentCommand";
|
|
9
|
-
import { GetExperimentTargetAccountConfigurationCommandInput, GetExperimentTargetAccountConfigurationCommandOutput } from "../commands/GetExperimentTargetAccountConfigurationCommand";
|
|
10
|
-
import { GetExperimentTemplateCommandInput, GetExperimentTemplateCommandOutput } from "../commands/GetExperimentTemplateCommand";
|
|
11
|
-
import { GetSafetyLeverCommandInput, GetSafetyLeverCommandOutput } from "../commands/GetSafetyLeverCommand";
|
|
12
|
-
import { GetTargetAccountConfigurationCommandInput, GetTargetAccountConfigurationCommandOutput } from "../commands/GetTargetAccountConfigurationCommand";
|
|
13
|
-
import { GetTargetResourceTypeCommandInput, GetTargetResourceTypeCommandOutput } from "../commands/GetTargetResourceTypeCommand";
|
|
14
|
-
import { ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand";
|
|
15
|
-
import { ListExperimentResolvedTargetsCommandInput, ListExperimentResolvedTargetsCommandOutput } from "../commands/ListExperimentResolvedTargetsCommand";
|
|
16
|
-
import { ListExperimentsCommandInput, ListExperimentsCommandOutput } from "../commands/ListExperimentsCommand";
|
|
17
|
-
import { ListExperimentTargetAccountConfigurationsCommandInput, ListExperimentTargetAccountConfigurationsCommandOutput } from "../commands/ListExperimentTargetAccountConfigurationsCommand";
|
|
18
|
-
import { ListExperimentTemplatesCommandInput, ListExperimentTemplatesCommandOutput } from "../commands/ListExperimentTemplatesCommand";
|
|
19
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
20
|
-
import { ListTargetAccountConfigurationsCommandInput, ListTargetAccountConfigurationsCommandOutput } from "../commands/ListTargetAccountConfigurationsCommand";
|
|
21
|
-
import { ListTargetResourceTypesCommandInput, ListTargetResourceTypesCommandOutput } from "../commands/ListTargetResourceTypesCommand";
|
|
22
|
-
import { StartExperimentCommandInput, StartExperimentCommandOutput } from "../commands/StartExperimentCommand";
|
|
23
|
-
import { StopExperimentCommandInput, StopExperimentCommandOutput } from "../commands/StopExperimentCommand";
|
|
24
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
25
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
26
|
-
import { UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput } from "../commands/UpdateExperimentTemplateCommand";
|
|
27
|
-
import { UpdateSafetyLeverStateCommandInput, UpdateSafetyLeverStateCommandOutput } from "../commands/UpdateSafetyLeverStateCommand";
|
|
28
|
-
import { UpdateTargetAccountConfigurationCommandInput, UpdateTargetAccountConfigurationCommandOutput } from "../commands/UpdateTargetAccountConfigurationCommand";
|
|
29
|
-
/**
|
|
30
|
-
* serializeAws_restJson1CreateExperimentTemplateCommand
|
|
31
|
-
*/
|
|
32
|
-
export declare const se_CreateExperimentTemplateCommand: (input: CreateExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_restJson1CreateTargetAccountConfigurationCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_CreateTargetAccountConfigurationCommand: (input: CreateTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1DeleteExperimentTemplateCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_DeleteExperimentTemplateCommand: (input: DeleteExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1DeleteTargetAccountConfigurationCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_DeleteTargetAccountConfigurationCommand: (input: DeleteTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1GetActionCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_GetActionCommand: (input: GetActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1GetExperimentCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_GetExperimentCommand: (input: GetExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1GetExperimentTargetAccountConfigurationCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_GetExperimentTargetAccountConfigurationCommand: (input: GetExperimentTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1GetExperimentTemplateCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_GetExperimentTemplateCommand: (input: GetExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1GetSafetyLeverCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_GetSafetyLeverCommand: (input: GetSafetyLeverCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1GetTargetAccountConfigurationCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_GetTargetAccountConfigurationCommand: (input: GetTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1GetTargetResourceTypeCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_GetTargetResourceTypeCommand: (input: GetTargetResourceTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1ListActionsCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_ListActionsCommand: (input: ListActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1ListExperimentResolvedTargetsCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_ListExperimentResolvedTargetsCommand: (input: ListExperimentResolvedTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1ListExperimentsCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_ListExperimentsCommand: (input: ListExperimentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1ListExperimentTargetAccountConfigurationsCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_ListExperimentTargetAccountConfigurationsCommand: (input: ListExperimentTargetAccountConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1ListExperimentTemplatesCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_ListExperimentTemplatesCommand: (input: ListExperimentTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1ListTargetAccountConfigurationsCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_ListTargetAccountConfigurationsCommand: (input: ListTargetAccountConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1ListTargetResourceTypesCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_ListTargetResourceTypesCommand: (input: ListTargetResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1StartExperimentCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_StartExperimentCommand: (input: StartExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1StopExperimentCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_StopExperimentCommand: (input: StopExperimentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* serializeAws_restJson1TagResourceCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
/**
|
|
118
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
/**
|
|
122
|
-
* serializeAws_restJson1UpdateExperimentTemplateCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const se_UpdateExperimentTemplateCommand: (input: UpdateExperimentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
/**
|
|
126
|
-
* serializeAws_restJson1UpdateSafetyLeverStateCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const se_UpdateSafetyLeverStateCommand: (input: UpdateSafetyLeverStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
/**
|
|
130
|
-
* serializeAws_restJson1UpdateTargetAccountConfigurationCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const se_UpdateTargetAccountConfigurationCommand: (input: UpdateTargetAccountConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
/**
|
|
134
|
-
* deserializeAws_restJson1CreateExperimentTemplateCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const de_CreateExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExperimentTemplateCommandOutput>;
|
|
137
|
-
/**
|
|
138
|
-
* deserializeAws_restJson1CreateTargetAccountConfigurationCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const de_CreateTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTargetAccountConfigurationCommandOutput>;
|
|
141
|
-
/**
|
|
142
|
-
* deserializeAws_restJson1DeleteExperimentTemplateCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const de_DeleteExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExperimentTemplateCommandOutput>;
|
|
145
|
-
/**
|
|
146
|
-
* deserializeAws_restJson1DeleteTargetAccountConfigurationCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const de_DeleteTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetAccountConfigurationCommandOutput>;
|
|
149
|
-
/**
|
|
150
|
-
* deserializeAws_restJson1GetActionCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const de_GetActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetActionCommandOutput>;
|
|
153
|
-
/**
|
|
154
|
-
* deserializeAws_restJson1GetExperimentCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const de_GetExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentCommandOutput>;
|
|
157
|
-
/**
|
|
158
|
-
* deserializeAws_restJson1GetExperimentTargetAccountConfigurationCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const de_GetExperimentTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentTargetAccountConfigurationCommandOutput>;
|
|
161
|
-
/**
|
|
162
|
-
* deserializeAws_restJson1GetExperimentTemplateCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const de_GetExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExperimentTemplateCommandOutput>;
|
|
165
|
-
/**
|
|
166
|
-
* deserializeAws_restJson1GetSafetyLeverCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const de_GetSafetyLeverCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSafetyLeverCommandOutput>;
|
|
169
|
-
/**
|
|
170
|
-
* deserializeAws_restJson1GetTargetAccountConfigurationCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const de_GetTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTargetAccountConfigurationCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_restJson1GetTargetResourceTypeCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_GetTargetResourceTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTargetResourceTypeCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_restJson1ListActionsCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_ListActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListActionsCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_restJson1ListExperimentResolvedTargetsCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_ListExperimentResolvedTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentResolvedTargetsCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_restJson1ListExperimentsCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_ListExperimentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentsCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_restJson1ListExperimentTargetAccountConfigurationsCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_ListExperimentTargetAccountConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentTargetAccountConfigurationsCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_restJson1ListExperimentTemplatesCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_ListExperimentTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExperimentTemplatesCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
201
|
-
/**
|
|
202
|
-
* deserializeAws_restJson1ListTargetAccountConfigurationsCommand
|
|
203
|
-
*/
|
|
204
|
-
export declare const de_ListTargetAccountConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetAccountConfigurationsCommandOutput>;
|
|
205
|
-
/**
|
|
206
|
-
* deserializeAws_restJson1ListTargetResourceTypesCommand
|
|
207
|
-
*/
|
|
208
|
-
export declare const de_ListTargetResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetResourceTypesCommandOutput>;
|
|
209
|
-
/**
|
|
210
|
-
* deserializeAws_restJson1StartExperimentCommand
|
|
211
|
-
*/
|
|
212
|
-
export declare const de_StartExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExperimentCommandOutput>;
|
|
213
|
-
/**
|
|
214
|
-
* deserializeAws_restJson1StopExperimentCommand
|
|
215
|
-
*/
|
|
216
|
-
export declare const de_StopExperimentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopExperimentCommandOutput>;
|
|
217
|
-
/**
|
|
218
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
219
|
-
*/
|
|
220
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
223
|
-
*/
|
|
224
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
225
|
-
/**
|
|
226
|
-
* deserializeAws_restJson1UpdateExperimentTemplateCommand
|
|
227
|
-
*/
|
|
228
|
-
export declare const de_UpdateExperimentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExperimentTemplateCommandOutput>;
|
|
229
|
-
/**
|
|
230
|
-
* deserializeAws_restJson1UpdateSafetyLeverStateCommand
|
|
231
|
-
*/
|
|
232
|
-
export declare const de_UpdateSafetyLeverStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSafetyLeverStateCommandOutput>;
|
|
233
|
-
/**
|
|
234
|
-
* deserializeAws_restJson1UpdateTargetAccountConfigurationCommand
|
|
235
|
-
*/
|
|
236
|
-
export declare const de_UpdateTargetAccountConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTargetAccountConfigurationCommandOutput>;
|
|
@@ -1,317 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateExperimentTemplateCommandInput,
|
|
8
|
-
CreateExperimentTemplateCommandOutput,
|
|
9
|
-
} from "../commands/CreateExperimentTemplateCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateTargetAccountConfigurationCommandInput,
|
|
12
|
-
CreateTargetAccountConfigurationCommandOutput,
|
|
13
|
-
} from "../commands/CreateTargetAccountConfigurationCommand";
|
|
14
|
-
import {
|
|
15
|
-
DeleteExperimentTemplateCommandInput,
|
|
16
|
-
DeleteExperimentTemplateCommandOutput,
|
|
17
|
-
} from "../commands/DeleteExperimentTemplateCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteTargetAccountConfigurationCommandInput,
|
|
20
|
-
DeleteTargetAccountConfigurationCommandOutput,
|
|
21
|
-
} from "../commands/DeleteTargetAccountConfigurationCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetActionCommandInput,
|
|
24
|
-
GetActionCommandOutput,
|
|
25
|
-
} from "../commands/GetActionCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetExperimentCommandInput,
|
|
28
|
-
GetExperimentCommandOutput,
|
|
29
|
-
} from "../commands/GetExperimentCommand";
|
|
30
|
-
import {
|
|
31
|
-
GetExperimentTargetAccountConfigurationCommandInput,
|
|
32
|
-
GetExperimentTargetAccountConfigurationCommandOutput,
|
|
33
|
-
} from "../commands/GetExperimentTargetAccountConfigurationCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetExperimentTemplateCommandInput,
|
|
36
|
-
GetExperimentTemplateCommandOutput,
|
|
37
|
-
} from "../commands/GetExperimentTemplateCommand";
|
|
38
|
-
import {
|
|
39
|
-
GetSafetyLeverCommandInput,
|
|
40
|
-
GetSafetyLeverCommandOutput,
|
|
41
|
-
} from "../commands/GetSafetyLeverCommand";
|
|
42
|
-
import {
|
|
43
|
-
GetTargetAccountConfigurationCommandInput,
|
|
44
|
-
GetTargetAccountConfigurationCommandOutput,
|
|
45
|
-
} from "../commands/GetTargetAccountConfigurationCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetTargetResourceTypeCommandInput,
|
|
48
|
-
GetTargetResourceTypeCommandOutput,
|
|
49
|
-
} from "../commands/GetTargetResourceTypeCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListActionsCommandInput,
|
|
52
|
-
ListActionsCommandOutput,
|
|
53
|
-
} from "../commands/ListActionsCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListExperimentResolvedTargetsCommandInput,
|
|
56
|
-
ListExperimentResolvedTargetsCommandOutput,
|
|
57
|
-
} from "../commands/ListExperimentResolvedTargetsCommand";
|
|
58
|
-
import {
|
|
59
|
-
ListExperimentsCommandInput,
|
|
60
|
-
ListExperimentsCommandOutput,
|
|
61
|
-
} from "../commands/ListExperimentsCommand";
|
|
62
|
-
import {
|
|
63
|
-
ListExperimentTargetAccountConfigurationsCommandInput,
|
|
64
|
-
ListExperimentTargetAccountConfigurationsCommandOutput,
|
|
65
|
-
} from "../commands/ListExperimentTargetAccountConfigurationsCommand";
|
|
66
|
-
import {
|
|
67
|
-
ListExperimentTemplatesCommandInput,
|
|
68
|
-
ListExperimentTemplatesCommandOutput,
|
|
69
|
-
} from "../commands/ListExperimentTemplatesCommand";
|
|
70
|
-
import {
|
|
71
|
-
ListTagsForResourceCommandInput,
|
|
72
|
-
ListTagsForResourceCommandOutput,
|
|
73
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
74
|
-
import {
|
|
75
|
-
ListTargetAccountConfigurationsCommandInput,
|
|
76
|
-
ListTargetAccountConfigurationsCommandOutput,
|
|
77
|
-
} from "../commands/ListTargetAccountConfigurationsCommand";
|
|
78
|
-
import {
|
|
79
|
-
ListTargetResourceTypesCommandInput,
|
|
80
|
-
ListTargetResourceTypesCommandOutput,
|
|
81
|
-
} from "../commands/ListTargetResourceTypesCommand";
|
|
82
|
-
import {
|
|
83
|
-
StartExperimentCommandInput,
|
|
84
|
-
StartExperimentCommandOutput,
|
|
85
|
-
} from "../commands/StartExperimentCommand";
|
|
86
|
-
import {
|
|
87
|
-
StopExperimentCommandInput,
|
|
88
|
-
StopExperimentCommandOutput,
|
|
89
|
-
} from "../commands/StopExperimentCommand";
|
|
90
|
-
import {
|
|
91
|
-
TagResourceCommandInput,
|
|
92
|
-
TagResourceCommandOutput,
|
|
93
|
-
} from "../commands/TagResourceCommand";
|
|
94
|
-
import {
|
|
95
|
-
UntagResourceCommandInput,
|
|
96
|
-
UntagResourceCommandOutput,
|
|
97
|
-
} from "../commands/UntagResourceCommand";
|
|
98
|
-
import {
|
|
99
|
-
UpdateExperimentTemplateCommandInput,
|
|
100
|
-
UpdateExperimentTemplateCommandOutput,
|
|
101
|
-
} from "../commands/UpdateExperimentTemplateCommand";
|
|
102
|
-
import {
|
|
103
|
-
UpdateSafetyLeverStateCommandInput,
|
|
104
|
-
UpdateSafetyLeverStateCommandOutput,
|
|
105
|
-
} from "../commands/UpdateSafetyLeverStateCommand";
|
|
106
|
-
import {
|
|
107
|
-
UpdateTargetAccountConfigurationCommandInput,
|
|
108
|
-
UpdateTargetAccountConfigurationCommandOutput,
|
|
109
|
-
} from "../commands/UpdateTargetAccountConfigurationCommand";
|
|
110
|
-
export declare const se_CreateExperimentTemplateCommand: (
|
|
111
|
-
input: CreateExperimentTemplateCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_CreateTargetAccountConfigurationCommand: (
|
|
115
|
-
input: CreateTargetAccountConfigurationCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_DeleteExperimentTemplateCommand: (
|
|
119
|
-
input: DeleteExperimentTemplateCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_DeleteTargetAccountConfigurationCommand: (
|
|
123
|
-
input: DeleteTargetAccountConfigurationCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_GetActionCommand: (
|
|
127
|
-
input: GetActionCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_GetExperimentCommand: (
|
|
131
|
-
input: GetExperimentCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_GetExperimentTargetAccountConfigurationCommand: (
|
|
135
|
-
input: GetExperimentTargetAccountConfigurationCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_GetExperimentTemplateCommand: (
|
|
139
|
-
input: GetExperimentTemplateCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_GetSafetyLeverCommand: (
|
|
143
|
-
input: GetSafetyLeverCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_GetTargetAccountConfigurationCommand: (
|
|
147
|
-
input: GetTargetAccountConfigurationCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_GetTargetResourceTypeCommand: (
|
|
151
|
-
input: GetTargetResourceTypeCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_ListActionsCommand: (
|
|
155
|
-
input: ListActionsCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_ListExperimentResolvedTargetsCommand: (
|
|
159
|
-
input: ListExperimentResolvedTargetsCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_ListExperimentsCommand: (
|
|
163
|
-
input: ListExperimentsCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_ListExperimentTargetAccountConfigurationsCommand: (
|
|
167
|
-
input: ListExperimentTargetAccountConfigurationsCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_ListExperimentTemplatesCommand: (
|
|
171
|
-
input: ListExperimentTemplatesCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
175
|
-
input: ListTagsForResourceCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_ListTargetAccountConfigurationsCommand: (
|
|
179
|
-
input: ListTargetAccountConfigurationsCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_ListTargetResourceTypesCommand: (
|
|
183
|
-
input: ListTargetResourceTypesCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_StartExperimentCommand: (
|
|
187
|
-
input: StartExperimentCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_StopExperimentCommand: (
|
|
191
|
-
input: StopExperimentCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_TagResourceCommand: (
|
|
195
|
-
input: TagResourceCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_UntagResourceCommand: (
|
|
199
|
-
input: UntagResourceCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_UpdateExperimentTemplateCommand: (
|
|
203
|
-
input: UpdateExperimentTemplateCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_UpdateSafetyLeverStateCommand: (
|
|
207
|
-
input: UpdateSafetyLeverStateCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_UpdateTargetAccountConfigurationCommand: (
|
|
211
|
-
input: UpdateTargetAccountConfigurationCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const de_CreateExperimentTemplateCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<CreateExperimentTemplateCommandOutput>;
|
|
218
|
-
export declare const de_CreateTargetAccountConfigurationCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<CreateTargetAccountConfigurationCommandOutput>;
|
|
222
|
-
export declare const de_DeleteExperimentTemplateCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<DeleteExperimentTemplateCommandOutput>;
|
|
226
|
-
export declare const de_DeleteTargetAccountConfigurationCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<DeleteTargetAccountConfigurationCommandOutput>;
|
|
230
|
-
export declare const de_GetActionCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<GetActionCommandOutput>;
|
|
234
|
-
export declare const de_GetExperimentCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<GetExperimentCommandOutput>;
|
|
238
|
-
export declare const de_GetExperimentTargetAccountConfigurationCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<GetExperimentTargetAccountConfigurationCommandOutput>;
|
|
242
|
-
export declare const de_GetExperimentTemplateCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<GetExperimentTemplateCommandOutput>;
|
|
246
|
-
export declare const de_GetSafetyLeverCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<GetSafetyLeverCommandOutput>;
|
|
250
|
-
export declare const de_GetTargetAccountConfigurationCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<GetTargetAccountConfigurationCommandOutput>;
|
|
254
|
-
export declare const de_GetTargetResourceTypeCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<GetTargetResourceTypeCommandOutput>;
|
|
258
|
-
export declare const de_ListActionsCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<ListActionsCommandOutput>;
|
|
262
|
-
export declare const de_ListExperimentResolvedTargetsCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<ListExperimentResolvedTargetsCommandOutput>;
|
|
266
|
-
export declare const de_ListExperimentsCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<ListExperimentsCommandOutput>;
|
|
270
|
-
export declare const de_ListExperimentTargetAccountConfigurationsCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<ListExperimentTargetAccountConfigurationsCommandOutput>;
|
|
274
|
-
export declare const de_ListExperimentTemplatesCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<ListExperimentTemplatesCommandOutput>;
|
|
278
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
282
|
-
export declare const de_ListTargetAccountConfigurationsCommand: (
|
|
283
|
-
output: __HttpResponse,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<ListTargetAccountConfigurationsCommandOutput>;
|
|
286
|
-
export declare const de_ListTargetResourceTypesCommand: (
|
|
287
|
-
output: __HttpResponse,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<ListTargetResourceTypesCommandOutput>;
|
|
290
|
-
export declare const de_StartExperimentCommand: (
|
|
291
|
-
output: __HttpResponse,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<StartExperimentCommandOutput>;
|
|
294
|
-
export declare const de_StopExperimentCommand: (
|
|
295
|
-
output: __HttpResponse,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<StopExperimentCommandOutput>;
|
|
298
|
-
export declare const de_TagResourceCommand: (
|
|
299
|
-
output: __HttpResponse,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<TagResourceCommandOutput>;
|
|
302
|
-
export declare const de_UntagResourceCommand: (
|
|
303
|
-
output: __HttpResponse,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
306
|
-
export declare const de_UpdateExperimentTemplateCommand: (
|
|
307
|
-
output: __HttpResponse,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<UpdateExperimentTemplateCommandOutput>;
|
|
310
|
-
export declare const de_UpdateSafetyLeverStateCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<UpdateSafetyLeverStateCommandOutput>;
|
|
314
|
-
export declare const de_UpdateTargetAccountConfigurationCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<UpdateTargetAccountConfigurationCommandOutput>;
|