@@ -163,6 +163,11 @@ import {
163
163
RestoreVolumeFromSnapshotCommandInput ,
164
164
RestoreVolumeFromSnapshotCommandOutput ,
165
165
} from "./commands/RestoreVolumeFromSnapshotCommand" ;
166
+ import {
167
+ StartMisconfiguredStateRecoveryCommand ,
168
+ StartMisconfiguredStateRecoveryCommandInput ,
169
+ StartMisconfiguredStateRecoveryCommandOutput ,
170
+ } from "./commands/StartMisconfiguredStateRecoveryCommand" ;
166
171
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
167
172
import {
168
173
UntagResourceCommand ,
@@ -235,6 +240,7 @@ const commands = {
235
240
ListTagsForResourceCommand,
236
241
ReleaseFileSystemNfsV3LocksCommand,
237
242
RestoreVolumeFromSnapshotCommand,
243
+ StartMisconfiguredStateRecoveryCommand,
238
244
TagResourceCommand,
239
245
UntagResourceCommand,
240
246
UpdateDataRepositoryAssociationCommand,
@@ -759,6 +765,23 @@ export interface FSx {
759
765
cb : ( err : any , data ?: RestoreVolumeFromSnapshotCommandOutput ) => void
760
766
) : void ;
761
767
768
+ /**
769
+ * @see {@link StartMisconfiguredStateRecoveryCommand }
770
+ */
771
+ startMisconfiguredStateRecovery (
772
+ args : StartMisconfiguredStateRecoveryCommandInput ,
773
+ options ?: __HttpHandlerOptions
774
+ ) : Promise < StartMisconfiguredStateRecoveryCommandOutput > ;
775
+ startMisconfiguredStateRecovery (
776
+ args : StartMisconfiguredStateRecoveryCommandInput ,
777
+ cb : ( err : any , data ?: StartMisconfiguredStateRecoveryCommandOutput ) => void
778
+ ) : void ;
779
+ startMisconfiguredStateRecovery (
780
+ args : StartMisconfiguredStateRecoveryCommandInput ,
781
+ options : __HttpHandlerOptions ,
782
+ cb : ( err : any , data ?: StartMisconfiguredStateRecoveryCommandOutput ) => void
783
+ ) : void ;
784
+
762
785
/**
763
786
* @see {@link TagResourceCommand }
764
787
*/
0 commit comments