@@ -38,6 +38,11 @@ import {
38
38
GetExperimentTemplateCommandInput ,
39
39
GetExperimentTemplateCommandOutput ,
40
40
} from "./commands/GetExperimentTemplateCommand" ;
41
+ import {
42
+ GetSafetyLeverCommand ,
43
+ GetSafetyLeverCommandInput ,
44
+ GetSafetyLeverCommandOutput ,
45
+ } from "./commands/GetSafetyLeverCommand" ;
41
46
import {
42
47
GetTargetAccountConfigurationCommand ,
43
48
GetTargetAccountConfigurationCommandInput ,
@@ -105,6 +110,11 @@ import {
105
110
UpdateExperimentTemplateCommandInput ,
106
111
UpdateExperimentTemplateCommandOutput ,
107
112
} from "./commands/UpdateExperimentTemplateCommand" ;
113
+ import {
114
+ UpdateSafetyLeverStateCommand ,
115
+ UpdateSafetyLeverStateCommandInput ,
116
+ UpdateSafetyLeverStateCommandOutput ,
117
+ } from "./commands/UpdateSafetyLeverStateCommand" ;
108
118
import {
109
119
UpdateTargetAccountConfigurationCommand ,
110
120
UpdateTargetAccountConfigurationCommandInput ,
@@ -121,6 +131,7 @@ const commands = {
121
131
GetExperimentCommand,
122
132
GetExperimentTargetAccountConfigurationCommand,
123
133
GetExperimentTemplateCommand,
134
+ GetSafetyLeverCommand,
124
135
GetTargetAccountConfigurationCommand,
125
136
GetTargetResourceTypeCommand,
126
137
ListActionsCommand,
@@ -136,6 +147,7 @@ const commands = {
136
147
TagResourceCommand,
137
148
UntagResourceCommand,
138
149
UpdateExperimentTemplateCommand,
150
+ UpdateSafetyLeverStateCommand,
139
151
UpdateTargetAccountConfigurationCommand,
140
152
} ;
141
153
@@ -264,6 +276,20 @@ export interface Fis {
264
276
cb : ( err : any , data ?: GetExperimentTemplateCommandOutput ) => void
265
277
) : void ;
266
278
279
+ /**
280
+ * @see {@link GetSafetyLeverCommand }
281
+ */
282
+ getSafetyLever (
283
+ args : GetSafetyLeverCommandInput ,
284
+ options ?: __HttpHandlerOptions
285
+ ) : Promise < GetSafetyLeverCommandOutput > ;
286
+ getSafetyLever ( args : GetSafetyLeverCommandInput , cb : ( err : any , data ?: GetSafetyLeverCommandOutput ) => void ) : void ;
287
+ getSafetyLever (
288
+ args : GetSafetyLeverCommandInput ,
289
+ options : __HttpHandlerOptions ,
290
+ cb : ( err : any , data ?: GetSafetyLeverCommandOutput ) => void
291
+ ) : void ;
292
+
267
293
/**
268
294
* @see {@link GetTargetAccountConfigurationCommand }
269
295
*/
@@ -496,6 +522,23 @@ export interface Fis {
496
522
cb : ( err : any , data ?: UpdateExperimentTemplateCommandOutput ) => void
497
523
) : void ;
498
524
525
+ /**
526
+ * @see {@link UpdateSafetyLeverStateCommand }
527
+ */
528
+ updateSafetyLeverState (
529
+ args : UpdateSafetyLeverStateCommandInput ,
530
+ options ?: __HttpHandlerOptions
531
+ ) : Promise < UpdateSafetyLeverStateCommandOutput > ;
532
+ updateSafetyLeverState (
533
+ args : UpdateSafetyLeverStateCommandInput ,
534
+ cb : ( err : any , data ?: UpdateSafetyLeverStateCommandOutput ) => void
535
+ ) : void ;
536
+ updateSafetyLeverState (
537
+ args : UpdateSafetyLeverStateCommandInput ,
538
+ options : __HttpHandlerOptions ,
539
+ cb : ( err : any , data ?: UpdateSafetyLeverStateCommandOutput ) => void
540
+ ) : void ;
541
+
499
542
/**
500
543
* @see {@link UpdateTargetAccountConfigurationCommand }
501
544
*/
0 commit comments