@@ -38,6 +38,8 @@ import { VideoProjectSerialDubTaskCreateRequest } from './types/index';
3838import { VideoProjectSerialDubTaskCreateResponse } from './types/index' ;
3939import { VideoProjectSerialTaskCreateRequest } from './types/index' ;
4040import { VideoProjectSerialTaskCreateResponse } from './types/index' ;
41+ import { VideoProjectSuppressionStartRequest } from './types/index' ;
42+ import { VideoProjectSuppressionStartResponse } from './types/index' ;
4143import { VideoProjectTaskDetailRequest } from './types/index' ;
4244import { VideoProjectTaskDetailResponse } from './types/index' ;
4345import { VideoProjectTaskListRequest } from './types/index' ;
@@ -62,6 +64,7 @@ export type VideoProjectCreateCommandOutput = CommandOutput<VideoProjectCreateRe
6264export type VideoProjectListCommandOutput = CommandOutput < VideoProjectListResponse > ;
6365export type VideoProjectSerialDubTaskCreateCommandOutput = CommandOutput < VideoProjectSerialDubTaskCreateResponse > ;
6466export type VideoProjectSerialTaskCreateCommandOutput = CommandOutput < VideoProjectSerialTaskCreateResponse > ;
67+ export type VideoProjectSuppressionStartCommandOutput = CommandOutput < VideoProjectSuppressionStartResponse > ;
6568export type VideoProjectTaskDetailCommandOutput = CommandOutput < VideoProjectTaskDetailResponse > ;
6669export type VideoProjectTaskListCommandOutput = CommandOutput < VideoProjectTaskListResponse > ;
6770export type VideoResourceUploadCommandOutput = CommandOutput < VideoResourceUploadResponse > ;
@@ -260,6 +263,21 @@ export class VideoProjectSerialTaskCreateCommand extends Command<
260263 this . requestConfig = buildRequestConfigFromMetaPath ( VideoProjectSerialTaskCreateCommand . metaPath ) ;
261264 }
262265}
266+ /**
267+ * Command to VideoProjectSuppressionStart
268+ */
269+ export class VideoProjectSuppressionStartCommand extends Command <
270+ VideoProjectSuppressionStartRequest ,
271+ VideoProjectSuppressionStartCommandOutput ,
272+ 'VideoProjectSuppressionStartCommand'
273+ > {
274+ static readonly metaPath = '/VideoProjectSuppressionStart/2021-05-21/i18n_openapi/post/application_json/' ;
275+
276+ constructor ( input : VideoProjectSuppressionStartRequest ) {
277+ super ( input ) ;
278+ this . requestConfig = buildRequestConfigFromMetaPath ( VideoProjectSuppressionStartCommand . metaPath ) ;
279+ }
280+ }
263281/**
264282 * Command to VideoProjectTaskDetail
265283 */
@@ -335,6 +353,7 @@ export default {
335353 VideoProjectListCommand,
336354 VideoProjectSerialDubTaskCreateCommand,
337355 VideoProjectSerialTaskCreateCommand,
356+ VideoProjectSuppressionStartCommand,
338357 VideoProjectTaskDetailCommand,
339358 VideoProjectTaskListCommand,
340359 VideoResourceUploadCommand,
0 commit comments