@@ -38,6 +38,11 @@ import {
3838 GetExperimentTemplateCommandInput ,
3939 GetExperimentTemplateCommandOutput ,
4040} from "./commands/GetExperimentTemplateCommand" ;
41+ import {
42+ GetSafetyLeverCommand ,
43+ GetSafetyLeverCommandInput ,
44+ GetSafetyLeverCommandOutput ,
45+ } from "./commands/GetSafetyLeverCommand" ;
4146import {
4247 GetTargetAccountConfigurationCommand ,
4348 GetTargetAccountConfigurationCommandInput ,
@@ -105,6 +110,11 @@ import {
105110 UpdateExperimentTemplateCommandInput ,
106111 UpdateExperimentTemplateCommandOutput ,
107112} from "./commands/UpdateExperimentTemplateCommand" ;
113+ import {
114+ UpdateSafetyLeverStateCommand ,
115+ UpdateSafetyLeverStateCommandInput ,
116+ UpdateSafetyLeverStateCommandOutput ,
117+ } from "./commands/UpdateSafetyLeverStateCommand" ;
108118import {
109119 UpdateTargetAccountConfigurationCommand ,
110120 UpdateTargetAccountConfigurationCommandInput ,
@@ -121,6 +131,7 @@ const commands = {
121131 GetExperimentCommand,
122132 GetExperimentTargetAccountConfigurationCommand,
123133 GetExperimentTemplateCommand,
134+ GetSafetyLeverCommand,
124135 GetTargetAccountConfigurationCommand,
125136 GetTargetResourceTypeCommand,
126137 ListActionsCommand,
@@ -136,6 +147,7 @@ const commands = {
136147 TagResourceCommand,
137148 UntagResourceCommand,
138149 UpdateExperimentTemplateCommand,
150+ UpdateSafetyLeverStateCommand,
139151 UpdateTargetAccountConfigurationCommand,
140152} ;
141153
@@ -264,6 +276,20 @@ export interface Fis {
264276 cb : ( err : any , data ?: GetExperimentTemplateCommandOutput ) => void
265277 ) : void ;
266278
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+
267293 /**
268294 * @see {@link GetTargetAccountConfigurationCommand }
269295 */
@@ -496,6 +522,23 @@ export interface Fis {
496522 cb : ( err : any , data ?: UpdateExperimentTemplateCommandOutput ) => void
497523 ) : void ;
498524
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+
499542 /**
500543 * @see {@link UpdateTargetAccountConfigurationCommand }
501544 */
0 commit comments