tencentcloud-sdk-nodejs-intl-en 3.0.1400 → 3.0.1401

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.
@@ -378,7 +378,7 @@ class CreateAigcVideoRedrawTaskRequest extends AbstractModel {
378
378
  this.SubAppId = null;
379
379
 
380
380
  /**
381
- * <p>Input video file information for the AIGC video conversion task.</p>
381
+ * <p>File information of the input video for the AIGC video conversion task. The input video duration should be less than 90 seconds, and the size should be within 2GB.</p>
382
382
  * @type {AigcVideoRedrawTaskInputFileInfo || null}
383
383
  */
384
384
  this.FileInfo = null;
@@ -1563,32 +1563,32 @@ class LiveRealTimeClipResponse extends AbstractModel {
1563
1563
  super();
1564
1564
 
1565
1565
  /**
1566
- * Edited Video Playback URL
1566
+ * <p>Edited Video Playback URL.</p>
1567
1567
  * @type {string || null}
1568
1568
  */
1569
1569
  this.Url = null;
1570
1570
 
1571
1571
  /**
1572
- * Unique identifier of media file for post-editing solidified video.
1572
+ * <p>Unique identifier of media file for post-editing solidified video.</p>
1573
1573
  * @type {string || null}
1574
1574
  */
1575
1575
  this.FileId = null;
1576
1576
 
1577
1577
  /**
1578
- * Edited video task flow ID after solidification.
1578
+ * <p>ID of the edited video task flow after solidification.</p>
1579
1579
  * @type {string || null}
1580
1580
  */
1581
1581
  this.VodTaskId = null;
1582
1582
 
1583
1583
  /**
1584
- * Edited Video Metadata
1584
+ * <p>Edited video metadata.</p>
1585
1585
  Note: This field may return null, indicating that no valid values can be obtained.
1586
1586
  * @type {MediaMetaData || null}
1587
1587
  */
1588
1588
  this.MetaData = null;
1589
1589
 
1590
1590
  /**
1591
- * <span id="p_segmentset">Edited video clip information.</span>
1591
+ * <p><span id="p_segmentset">Edited video clip information.</span></p>
1592
1592
  * @type {Array.<LiveRealTimeClipMediaSegmentInfo> || null}
1593
1593
  */
1594
1594
  this.SegmentSet = null;
@@ -4263,30 +4263,55 @@ class AiSampleWord extends AbstractModel {
4263
4263
  }
4264
4264
 
4265
4265
  /**
4266
- * Path cache cache configuration (select one of the three cache modes)
4266
+ * Custom video transcoding parameters.
4267
4267
  * @class
4268
4268
  */
4269
- class RuleCacheConfig extends AbstractModel {
4269
+ class OverrideTranscodeParameter extends AbstractModel {
4270
4270
  constructor(){
4271
4271
  super();
4272
4272
 
4273
4273
  /**
4274
- * Cache configuration.
4275
- * @type {CacheConfigCache || null}
4274
+ * Container format. Valid values: mp4, flv, hls, mp3, flac, ogg, m4a, and wav. Among them, mp3, flac, ogg, m4a, and wav are for audio-only files.
4275
+ * @type {string || null}
4276
4276
  */
4277
- this.Cache = null;
4277
+ this.Container = null;
4278
4278
 
4279
4279
  /**
4280
- * No cache configuration.
4281
- * @type {CacheConfigNoCache || null}
4280
+ * Indicates whether to remove video data. Valid values:
4281
+ <li>`0`: reserved;</li>
4282
+ <li>1: Remove.</li>
4283
+ * @type {number || null}
4282
4284
  */
4283
- this.NoCache = null;
4285
+ this.RemoveVideo = null;
4284
4286
 
4285
4287
  /**
4286
- * Follow the origin site.
4287
- * @type {CacheConfigFollowOrigin || null}
4288
+ * Indicates whether to remove audio data. Valid values:
4289
+ <li>`0`: reserved;</li>
4290
+ <li>1: Remove.</li>
4291
+ * @type {number || null}
4288
4292
  */
4289
- this.FollowOrigin = null;
4293
+ this.RemoveAudio = null;
4294
+
4295
+ /**
4296
+ * Video stream configuration parameters.
4297
+ Note: This field may return null, indicating that no valid values can be obtained.
4298
+ * @type {VideoTemplateInfoForUpdate || null}
4299
+ */
4300
+ this.VideoTemplate = null;
4301
+
4302
+ /**
4303
+ * Audio stream configuration parameters.
4304
+ Note: This field may return null, indicating that no valid values can be obtained.
4305
+ * @type {AudioTemplateInfoForUpdate || null}
4306
+ */
4307
+ this.AudioTemplate = null;
4308
+
4309
+ /**
4310
+ * Top Speed Codec transcoding configuration parameters.
4311
+ Note: This field may return null, indicating that no valid values can be obtained.
4312
+ * @type {TEHDConfigForUpdate || null}
4313
+ */
4314
+ this.TEHDConfig = null;
4290
4315
 
4291
4316
  }
4292
4317
 
@@ -4297,23 +4322,26 @@ class RuleCacheConfig extends AbstractModel {
4297
4322
  if (!params) {
4298
4323
  return;
4299
4324
  }
4325
+ this.Container = 'Container' in params ? params.Container : null;
4326
+ this.RemoveVideo = 'RemoveVideo' in params ? params.RemoveVideo : null;
4327
+ this.RemoveAudio = 'RemoveAudio' in params ? params.RemoveAudio : null;
4300
4328
 
4301
- if (params.Cache) {
4302
- let obj = new CacheConfigCache();
4303
- obj.deserialize(params.Cache)
4304
- this.Cache = obj;
4329
+ if (params.VideoTemplate) {
4330
+ let obj = new VideoTemplateInfoForUpdate();
4331
+ obj.deserialize(params.VideoTemplate)
4332
+ this.VideoTemplate = obj;
4305
4333
  }
4306
4334
 
4307
- if (params.NoCache) {
4308
- let obj = new CacheConfigNoCache();
4309
- obj.deserialize(params.NoCache)
4310
- this.NoCache = obj;
4335
+ if (params.AudioTemplate) {
4336
+ let obj = new AudioTemplateInfoForUpdate();
4337
+ obj.deserialize(params.AudioTemplate)
4338
+ this.AudioTemplate = obj;
4311
4339
  }
4312
4340
 
4313
- if (params.FollowOrigin) {
4314
- let obj = new CacheConfigFollowOrigin();
4315
- obj.deserialize(params.FollowOrigin)
4316
- this.FollowOrigin = obj;
4341
+ if (params.TEHDConfig) {
4342
+ let obj = new TEHDConfigForUpdate();
4343
+ obj.deserialize(params.TEHDConfig)
4344
+ this.TEHDConfig = obj;
4317
4345
  }
4318
4346
 
4319
4347
  }
@@ -6374,56 +6402,35 @@ class AudioTemplateInfoForUpdate extends AbstractModel {
6374
6402
  super();
6375
6403
 
6376
6404
  /**
6377
- * The audio codec.
6378
- If `Container` is `mp3`, the valid value is:
6379
- <li>`libmp3lame`</li>
6380
- If `Container` is `ogg` or `flac`, the valid value is:
6381
- <li>`flac`</li>
6382
- If `Container` is `m4a`, the valid values are:
6383
- <li>`libfdk_aac`</li>
6384
- <li>`libmp3lame`</li>
6385
- <li>`ac3`</li>
6386
- If `Container` is `mp4` or `flv`, the valid values are:
6387
- <li>`libfdk_aac` (Recommended for MP4)</li>
6388
- <li>`libmp3lame` (Recommended for FLV)</li>
6389
- <li>`mp2`</li>
6390
- If `Container` is `hls`, the valid value is:
6391
- <li>`libfdk_aac`</li>
6392
- If `Format` is `HLS` or `MPEG-DASH`, the valid value is:
6393
- <li>`libfdk_aac`</li>
6394
- If `Container` is `wav`, the valid value is:
6395
- <li>`pcm16`</li>
6405
+ * <p>Audio stream encoding format.<br>When the outer parameter Container is mp3, the valid value is:</p><li>libmp3lame.</li>When the outer parameter Container is ogg or flac, the valid value is:<li>flac.</li>When the outer parameter Container is m4a, the valid values are:<li>libfdk_aac;</li><li>libmp3lame;</li><li>ac3.</li>When the outer parameter Container is mp4 or flv, the valid values are:<li>libfdk_aac: suitable for mp4.</li><li>libmp3lame: suitable for flv.</li><li>mp2.</li>When the outer parameter Container is hls, the valid value is:<li>libfdk_aac.</li>When the outer parameter Format is HLS or MPEG-DASH, the valid value is:<li>libfdk_aac.</li>When the outer parameter Container is wav, the valid value is:<li>pcm16.</li>
6396
6406
  * @type {string || null}
6397
6407
  */
6398
6408
  this.Codec = null;
6399
6409
 
6400
6410
  /**
6401
- * Bitrate of the audio stream, value ranges from 0 to [26, 256], measurement unit: kbps. When value is 0, it means VOD automatically sets bitrate.
6411
+ * <p>Audio stream bitrate, in kbps. Value range: 0 and [26, 256]. When the value is 0, it means the bitrate is set automatically by VOD.</p>
6402
6412
  * @type {number || null}
6403
6413
  */
6404
6414
  this.Bitrate = null;
6405
6415
 
6406
6416
  /**
6407
- * The audio sample rate. Valid values:
6408
- <li>`16000` (valid only if `Codec` is `pcm16`)</li>
6409
- <li>`32000`</li>
6410
- <li>`44100`</li>
6411
- <li>`48000`</li>
6412
- Unit: Hz.
6417
+ * <p>Sampling rate of the audio stream. Available values:</p><li>16000. Available only when Codec is pcm16.</li><li>32000</li><li>44100</li><li>48000</li>Unit: Hz.
6413
6418
  * @type {number || null}
6414
6419
  */
6415
6420
  this.SampleRate = null;
6416
6421
 
6417
6422
  /**
6418
- * Audio channel system. Valid values:
6419
- <li>1: mono-channel</li>
6420
- <li>2: dual-channel</li>
6421
- <li>6: stereo</li>
6422
- You cannot set the sound channel as stereo for media files in container formats for audios (FLAC, OGG, MP3, M4A).
6423
+ * <p>Audio channel. Available values:</p><li>1: Single channel.</li><li>2: Two channels.</li><li>6: Stereo.</li><li>0: The number of audio channels remains the same as the original audio.</li>When the media container format is an audio format (flac, ogg, mp3, m4a), the number of audio channels cannot be set to stereo.
6423
6424
  * @type {number || null}
6424
6425
  */
6425
6426
  this.AudioChannel = null;
6426
6427
 
6428
+ /**
6429
+ * <p>Specifies the retained audio tracks for output. All source tracks are retained. </p><p>This parameter is valid only when specified in the OverrideParameter parameter and is disabled in other cases.</p>
6430
+ * @type {Array.<number> || null}
6431
+ */
6432
+ this.StreamSelects = null;
6433
+
6427
6434
  }
6428
6435
 
6429
6436
  /**
@@ -6437,6 +6444,7 @@ You cannot set the sound channel as stereo for media files in container formats
6437
6444
  this.Bitrate = 'Bitrate' in params ? params.Bitrate : null;
6438
6445
  this.SampleRate = 'SampleRate' in params ? params.SampleRate : null;
6439
6446
  this.AudioChannel = 'AudioChannel' in params ? params.AudioChannel : null;
6447
+ this.StreamSelects = 'StreamSelects' in params ? params.StreamSelects : null;
6440
6448
 
6441
6449
  }
6442
6450
  }
@@ -11403,6 +11411,67 @@ and will be deleted after `PicUrlExpireTime`).
11403
11411
  }
11404
11412
  }
11405
11413
 
11414
+ /**
11415
+ * Information of output audio stream
11416
+ * @class
11417
+ */
11418
+ class OutputAudioStream extends AbstractModel {
11419
+ constructor(){
11420
+ super();
11421
+
11422
+ /**
11423
+ * Audio stream encoder. Valid values:
11424
+ <li>libfdk_aac: suitable for mp4 files.</li>
11425
+ Default value: libfdk_aac.
11426
+ * @type {string || null}
11427
+ */
11428
+ this.Codec = null;
11429
+
11430
+ /**
11431
+ * Audio stream sample rate. Valid values:
11432
+ <li>16,000</li>
11433
+ <li>32,000</li>
11434
+ <li>44,100</li>
11435
+ <li>48,000</li>
11436
+ In Hz.
11437
+ Default value: 16,000.
11438
+ * @type {number || null}
11439
+ */
11440
+ this.SampleRate = null;
11441
+
11442
+ /**
11443
+ * Number of sound channels. Valid values:
11444
+ <li>1: mono.</li>
11445
+ <li>2: dual</li>
11446
+ Default value: 2.
11447
+ * @type {number || null}
11448
+ */
11449
+ this.AudioChannel = null;
11450
+
11451
+ /**
11452
+ * The bit rate of the audio stream, value range: 0 and [26, 256], unit: kbps.
11453
+ When the value is 0, the audio bitrate will be automatically set.
11454
+ * @type {number || null}
11455
+ */
11456
+ this.Bitrate = null;
11457
+
11458
+ }
11459
+
11460
+ /**
11461
+ * @private
11462
+ */
11463
+ deserialize(params) {
11464
+ if (!params) {
11465
+ return;
11466
+ }
11467
+ this.Codec = 'Codec' in params ? params.Codec : null;
11468
+ this.SampleRate = 'SampleRate' in params ? params.SampleRate : null;
11469
+ this.AudioChannel = 'AudioChannel' in params ? params.AudioChannel : null;
11470
+ this.Bitrate = 'Bitrate' in params ? params.Bitrate : null;
11471
+
11472
+ }
11473
+ }
11474
+
11406
11475
  /**
11407
11476
  * ModifyLLMComprehendTemplate response structure.
11408
11477
  * @class
@@ -11793,19 +11862,25 @@ class AigcImageSceneInfo extends AbstractModel {
11793
11862
  super();
11794
11863
 
11795
11864
  /**
11796
- * <p>AI image generation scenario type. Available values:</p><ul><li>change_clothes: Change clothes in regular scenes.</li><li>change_clothes_under: Change clothes in special scenarios.</li><li>change_clothes_top_wear: Change upper body clothes.</li><li>change_clothes_bottom_wear: Change lower body clothes.</li><li>change_clothes_full_wear: Change full body clothes.</li><li>product_image: AI-generated product image.</li><li>outpainting: AI image outpainting.</li></ul>
11865
+ * <p>AI image generation scenario type, available values:</p><ul><li><code>ai_try_on</code>: AI dress up.</li><li><code>product_image</code>: AI product image.</li><li><code>outpainting</code>: AI outpainting.</li></ul><p>The following <code>Type</code> are abandoned and no longer updated subsequently:</p><ul><li><code>change_clothes</code></li><li><code>change_clothes_under</code></li><li><code>change_clothes_top_wear</code></li><li><code>change_clothes_bottom_wear</code></li><li><code>change_clothes_full_wear</code></li></ul>
11797
11866
  * @type {string || null}
11798
11867
  */
11799
11868
  this.Type = null;
11800
11869
 
11801
11870
  /**
11802
- * <p>When the Type is one of the following column types, this item is required and represents the AI clothing change image generation config:</p><ul><li>change_clothes</li><li>change_clothes_under</li><li>change_clothes_full_wear</li><li>change_clothes_top_wear</li><li>change_clothes_bottom_wear</li></ul>
11871
+ * <p>Required when Type is ai_try_on. Represents AI dress up config.</p>
11872
+ * @type {AiTryOnConfig || null}
11873
+ */
11874
+ this.AiTryOnConfig = null;
11875
+
11876
+ /**
11877
+ * <p><strong>Abandoned, please use AiTryOnConfig.</strong> When Type is one of the following column types, this item is required and represents AI try-on image generation configuration parameters:</p><ul><li>change_clothes</li><li>change_clothes_under</li></ul>
11803
11878
  * @type {ChangeClothesConfig || null}
11804
11879
  */
11805
11880
  this.ChangeClothesConfig = null;
11806
11881
 
11807
11882
  /**
11808
- * <p>Valid when Type is product_image, indicating AI-generated product image config.</p>
11883
+ * <p>Required when Type is product_image. It represents the AI product image config.</p>
11809
11884
  * @type {ProductImageConfig || null}
11810
11885
  */
11811
11886
  this.ProductImageConfig = null;
@@ -11821,6 +11896,12 @@ class AigcImageSceneInfo extends AbstractModel {
11821
11896
  }
11822
11897
  this.Type = 'Type' in params ? params.Type : null;
11823
11898
 
11899
+ if (params.AiTryOnConfig) {
11900
+ let obj = new AiTryOnConfig();
11901
+ obj.deserialize(params.AiTryOnConfig)
11902
+ this.AiTryOnConfig = obj;
11903
+ }
11904
+
11824
11905
  if (params.ChangeClothesConfig) {
11825
11906
  let obj = new ChangeClothesConfig();
11826
11907
  obj.deserialize(params.ChangeClothesConfig)
@@ -17561,89 +17642,85 @@ class LiveRealTimeClipRequest extends AbstractModel {
17561
17642
  super();
17562
17643
 
17563
17644
  /**
17564
- * Push stream live code.
17645
+ * <p>Push stream live code.</p>
17565
17646
  * @type {string || null}
17566
17647
  */
17567
17648
  this.StreamId = null;
17568
17649
 
17569
17650
  /**
17570
- * Start time of stream clipping. Format reference [ISO date format description](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I).
17651
+ * <p>Start time of stream clipping. Format reference: <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO date format description</a>.</p>
17571
17652
  * @type {string || null}
17572
17653
  */
17573
17654
  this.StartTime = null;
17574
17655
 
17575
17656
  /**
17576
- * End time of stream clipping. Format reference [ISO date format description](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I).
17657
+ * <p>The end time of stream clipping. Format reference <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO date format description</a>.</p>
17577
17658
  * @type {string || null}
17578
17659
  */
17579
17660
  this.EndTime = null;
17580
17661
 
17581
17662
  /**
17582
- * <b>VOD [app](https://www.tencentcloud.com/document/product/266/14574?from_cn_redirect=1) ID. For customers who have enabled VOD since December 25, 2023, to access resources in an VOD application (whether it is a default application or a newly created application), this field must be filled in as the application ID. </b>
17663
+ * <p><b>Video-on-demand (VOD) <a href="/document/product/266/14574">application</a> ID. Customers who activate on-demand services from December 25, 2023 must fill this field with the app ID when accessing resources in on-demand applications (whether it is the default application or a newly created application).</b></p>
17583
17664
  * @type {number || null}
17584
17665
  */
17585
17666
  this.SubAppId = null;
17586
17667
 
17587
17668
  /**
17588
- * Whether solidified. 0 not solidified, 1 solidified. Default non-permanent.
17669
+ * <p>Whether solidified. 0 for default non-permanent, 1 for solidified. Default non-permanent.</p>
17589
17670
  * @type {number || null}
17590
17671
  */
17591
17672
  this.IsPersistence = null;
17592
17673
 
17593
17674
  /**
17594
- * Video storage expiry time after editing solidification. Format reference [ISO date format](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I). Enter "9999-12-31T23:59:59Z" to indicate the video never expires. After expiry, the media file and its related resources (transcoding result, sprites) will be permanently deleted. Valid at that time only when IsPersistence is 1. The default video editing never expires.
17675
+ * <p>Video storage expiry time after editing solidification. Format reference <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO date format</a>. Enter "9999-12-31T23:59:59Z" to indicate the video never expires. After expiry, the media file and its related resources (transcoding result, sprites) will be permanently deleted. Valid at that time only when IsPersistence is 1. The default video editing never expires.</p>
17595
17676
  * @type {string || null}
17596
17677
  */
17597
17678
  this.ExpireTime = null;
17598
17679
 
17599
17680
  /**
17600
- * Post-editing Solidified Video On-demand Task Flow Processing. For details, see [upload specified task flow](https://www.tencentcloud.com/document/product/266/9759?from_cn_redirect=1). Valid only when IsPersistence is 1.
17681
+ * <p>Post-editing Solidified Video On-demand Task Flow Processing. For details, see <a href="https://www.tencentcloud.com/document/product/266/9759?from_cn_redirect=1">upload specified task flow</a>. Valid when IsPersistence is 1.</p>
17601
17682
  * @type {string || null}
17602
17683
  */
17603
17684
  this.Procedure = null;
17604
17685
 
17605
17686
  /**
17606
- * Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the [Create Category](https://www.tencentcloud.com/document/product/266/31772?from_cn_redirect=1) API.
17607
- <li>Default value: 0, indicating other categories.</li>
17608
- Valid when IsPersistence is 1.
17687
+ * <p>Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the <a href="/document/product/266/31772">Create Category</a> API.</p><li>Default value: 0, indicating other categories.</li>Valid at that time only when IsPersistence is 1.
17609
17688
  * @type {number || null}
17610
17689
  */
17611
17690
  this.ClassId = null;
17612
17691
 
17613
17692
  /**
17614
- * Source context, used for passing through user request information. The [callback on upload completion](https://www.tencentcloud.com/document/product/266/7830?from_cn_redirect=1) will return the value of this field, up to 250 characters. Valid only when IsPersistence is 1.
17693
+ * <p>Source context. This is used to pass user request information. The <a href="/document/product/266/7830">upload completion callback</a> returns the value of this field. The maximum length is 250 characters. Valid only when IsPersistence is 1.</p>
17615
17694
  * @type {string || null}
17616
17695
  */
17617
17696
  this.SourceContext = null;
17618
17697
 
17619
17698
  /**
17620
- * Session context, used to pass through user request information. When specifying the Procedure parameter, the [task flow status change callback](https://www.tencentcloud.com/document/product/266/9636?from_cn_redirect=1) will return the value of this field, up to 1000 characters. Valid at that time only when IsPersistence is 1.
17699
+ * <p>Session context. This is used to pass through user request information. When specifying the Procedure parameter, the <a href="/document/product/266/9636">task flow status change callback</a> returns the value of this field. The maximum length is 1000 characters. Valid only when IsPersistence is 1.</p>
17621
17700
  * @type {string || null}
17622
17701
  */
17623
17702
  this.SessionContext = null;
17624
17703
 
17625
17704
  /**
17626
- * Whether to return edited video metadata. 0: not required, 1: required. By default, does not need.
17705
+ * <p>Whether to return edited video metadata. 0: not required, 1: required. By default, does not need.</p>
17627
17706
  * @type {number || null}
17628
17707
  */
17629
17708
  this.MetaDataRequired = null;
17630
17709
 
17631
17710
  /**
17632
- * The domain name added in VOD for time shift playback must be associated with a recording template and have the time-shift service enabled in Cloud Streaming Services (https://www.tencentcloud.com/document/product/266/52220?from_cn_redirect=1#.E6.AD.A5.E9.AA.A43.EF.BC.9A.E5.85.B3.E8.81.94.E5.BD.95.E5.88.B6.E6.A8.A1.E6.9D.BF.3Ca-id.3D.22step3.22.3E.3C.2Fa.3E). **If the first call time of this interface is after 2021-01-01T00:00:00Z, this field is a required field.**
17711
+ * <p>The domain name added in VOD for time-shifting playback must have <a href="https://www.tencentcloud.com/document/product/266/52220?from_cn_redirect=1#.E6.AD.A5.E9.AA.A43.EF.BC.9A.E5.85.B3.E8.81.94.E5.BD.95.E5.88.B6.E6.A8.A1.E6.9D.BF.3Ca-id.3D.22step3.22.3E.3C.2Fa.3E">recording template binding and time-shift service enabled</a> in Cloud Streaming Services. <strong>If the first call time of this interface is after 2021-01-01T00:00:00Z, this field is a required field.</strong></p>
17633
17712
  * @type {string || null}
17634
17713
  */
17635
17714
  this.Host = null;
17636
17715
 
17637
17716
  /**
17638
- * Edited live stream information
17639
- <li>Default video editing for the original stream.</li>
17640
- <li>When the Type specified in StreamInfo is Transcoding, edit the live streaming transcoding stream corresponding to TemplateId.</li>
17717
+ * <p>Live stream information for editing:</p><li>Edit the original stream by default.</li><li>When the Type specified in StreamInfo is Transcoding, edit the live streaming transcoding corresponding to TemplateId.</li>
17641
17718
  * @type {LiveRealTimeClipStreamInfo || null}
17642
17719
  */
17643
17720
  this.StreamInfo = null;
17644
17721
 
17645
17722
  /**
17646
- * System reserved field. Do not fill in.
17723
+ * <p>System reserved field. Do not fill in.</p>
17647
17724
  * @type {string || null}
17648
17725
  */
17649
17726
  this.ExtInfo = null;
@@ -18463,25 +18540,25 @@ class SimpleHlsClipResponse extends AbstractModel {
18463
18540
  super();
18464
18541
 
18465
18542
  /**
18466
- * Trimmed video address
18543
+ * <p>Trimmed video address.</p>
18467
18544
  * @type {string || null}
18468
18545
  */
18469
18546
  this.Url = null;
18470
18547
 
18471
18548
  /**
18472
- * Cropped video metadata. Currently, the `Size`, `Rotate`, `VideoDuration`, and `AudioDuration` fields are temporarily default with no real data.
18549
+ * <p>Cropped video metadata. Currently, the <code>Size</code>, <code>Rotate</code>, <code>VideoDuration</code>, and <code>AudioDuration</code> fields are temporarily default with no real data.</p>
18473
18550
  * @type {MediaMetaData || null}
18474
18551
  */
18475
18552
  this.MetaData = null;
18476
18553
 
18477
18554
  /**
18478
- * Unique identifier of the media file for post-editing solidified video.
18555
+ * <p>Unique identifier of media file for post-editing solidified video.</p>
18479
18556
  * @type {string || null}
18480
18557
  */
18481
18558
  this.FileId = null;
18482
18559
 
18483
18560
  /**
18484
- * Edited video task flow ID after solidification.
18561
+ * <p>ID of the edited video task flow after solidification.</p>
18485
18562
  * @type {string || null}
18486
18563
  */
18487
18564
  this.TaskId = null;
@@ -19099,7 +19176,7 @@ class LicenseUsageDataItem extends AbstractModel {
19099
19176
  }
19100
19177
 
19101
19178
  /**
19102
- * Image async processing configuration
19179
+ * Image async processing configuration.
19103
19180
  * @class
19104
19181
  */
19105
19182
  class ProcessImageAsyncTask extends AbstractModel {
@@ -19107,19 +19184,26 @@ class ProcessImageAsyncTask extends AbstractModel {
19107
19184
  super();
19108
19185
 
19109
19186
  /**
19110
- * Image transcoding output configuration.
19187
+ * <p>Image transcoding output configuration.</p>
19111
19188
  Note: This field may return null, indicating that no valid values can be obtained.
19112
19189
  * @type {ImageEncodeConfig || null}
19113
19190
  */
19114
19191
  this.EncodeConfig = null;
19115
19192
 
19116
19193
  /**
19117
- * Image enhancement configuration.
19194
+ * <p>Image enhancement configuration.</p>
19118
19195
  Note: This field may return null, indicating that no valid values can be obtained.
19119
19196
  * @type {ImageEnhanceConfig || null}
19120
19197
  */
19121
19198
  this.EnhanceConfig = null;
19122
19199
 
19200
+ /**
19201
+ * <p>Image beauty effect configuration.</p>
19202
+ Note: This field may return null, indicating that no valid values can be obtained.
19203
+ * @type {ImageBeautyConfig || null}
19204
+ */
19205
+ this.BeautyConfig = null;
19206
+
19123
19207
  }
19124
19208
 
19125
19209
  /**
@@ -19142,6 +19226,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
19142
19226
  this.EnhanceConfig = obj;
19143
19227
  }
19144
19228
 
19229
+ if (params.BeautyConfig) {
19230
+ let obj = new ImageBeautyConfig();
19231
+ obj.deserialize(params.BeautyConfig)
19232
+ this.BeautyConfig = obj;
19233
+ }
19234
+
19145
19235
  }
19146
19236
  }
19147
19237
 
@@ -22366,6 +22456,63 @@ class ModifyCDNDomainConfigResponse extends AbstractModel {
22366
22456
  }
22367
22457
  }
22368
22458
 
22459
+ /**
22460
+ * Path cache cache configuration (select one of the three cache modes)
22461
+ * @class
22462
+ */
22463
+ class RuleCacheConfig extends AbstractModel {
22464
+ constructor(){
22465
+ super();
22466
+
22467
+ /**
22468
+ * Cache configuration.
22469
+ * @type {CacheConfigCache || null}
22470
+ */
22471
+ this.Cache = null;
22472
+
22473
+ /**
22474
+ * No cache configuration.
22475
+ * @type {CacheConfigNoCache || null}
22476
+ */
22477
+ this.NoCache = null;
22478
+
22479
+ /**
22480
+ * Follow the origin site.
22481
+ * @type {CacheConfigFollowOrigin || null}
22482
+ */
22483
+ this.FollowOrigin = null;
22484
+
22485
+ }
22486
+
22487
+ /**
22488
+ * @private
22489
+ */
22490
+ deserialize(params) {
22491
+ if (!params) {
22492
+ return;
22493
+ }
22494
+
22495
+ if (params.Cache) {
22496
+ let obj = new CacheConfigCache();
22497
+ obj.deserialize(params.Cache)
22498
+ this.Cache = obj;
22499
+ }
22500
+
22501
+ if (params.NoCache) {
22502
+ let obj = new CacheConfigNoCache();
22503
+ obj.deserialize(params.NoCache)
22504
+ this.NoCache = obj;
22505
+ }
22506
+
22507
+ if (params.FollowOrigin) {
22508
+ let obj = new CacheConfigFollowOrigin();
22509
+ obj.deserialize(params.FollowOrigin)
22510
+ this.FollowOrigin = obj;
22511
+ }
22512
+
22513
+ }
22514
+ }
22515
+
22369
22516
  /**
22370
22517
  * Result for OCR-based recognition of pornographic content
22371
22518
  * @class
@@ -23650,6 +23797,12 @@ class KnowledgeBasesInfo extends AbstractModel {
23650
23797
  */
23651
23798
  this.Bases = null;
23652
23799
 
23800
+ /**
23801
+ * <p>Media analysis information in the knowledge base</p>
23802
+ * @type {Array.<KnowledgeAnalysisInfo> || null}
23803
+ */
23804
+ this.KnowledgeAnalysisInfos = null;
23805
+
23653
23806
  }
23654
23807
 
23655
23808
  /**
@@ -23661,6 +23814,15 @@ class KnowledgeBasesInfo extends AbstractModel {
23661
23814
  }
23662
23815
  this.Bases = 'Bases' in params ? params.Bases : null;
23663
23816
 
23817
+ if (params.KnowledgeAnalysisInfos) {
23818
+ this.KnowledgeAnalysisInfos = new Array();
23819
+ for (let z in params.KnowledgeAnalysisInfos) {
23820
+ let obj = new KnowledgeAnalysisInfo();
23821
+ obj.deserialize(params.KnowledgeAnalysisInfos[z]);
23822
+ this.KnowledgeAnalysisInfos.push(obj);
23823
+ }
23824
+ }
23825
+
23664
23826
  }
23665
23827
  }
23666
23828
 
@@ -24613,7 +24775,7 @@ class DescribeAigcApiTokensRequest extends AbstractModel {
24613
24775
  super();
24614
24776
 
24615
24777
  /**
24616
- * <b>The VOD [application](https://www.tencentcloud.com/document/product/266/14574?from_cn_redirect=1) ID. customers who activate vod services after december 25, 2023 must fill this field with the application ID when accessing resources in on-demand applications (whether default or newly created).</b>.
24778
+ * <p><b>Video-on-demand (VOD) <a href="/document/product/266/14574">application</a> ID. For customers who activate on-demand services from December 25, 2023, to access resources in on-demand applications (whether the default application or a newly created application), you must fill this <b>field</b> with the application ID.</b></p>
24617
24779
  * @type {number || null}
24618
24780
  */
24619
24781
  this.SubAppId = null;
@@ -25830,6 +25992,50 @@ class DescribeCLSTopicsResponse extends AbstractModel {
25830
25992
  }
25831
25993
  }
25832
25994
 
25995
+ /**
25996
+ * Control parameter of prohibited information detection in text task
25997
+ * @class
25998
+ */
25999
+ class ProhibitedOcrReviewTemplateInfo extends AbstractModel {
26000
+ constructor(){
26001
+ super();
26002
+
26003
+ /**
26004
+ * Switch of prohibited information detection in text task. Valid values:
26005
+ <li>ON: enables prohibited information detection in text task;</li>
26006
+ <li>OFF: disables prohibited information detection in text task.</li>
26007
+ * @type {string || null}
26008
+ */
26009
+ this.Switch = null;
26010
+
26011
+ /**
26012
+ * Confidence score threshold for determining that something should be blocked. If this threshold is reached, VOD will suggest that the content be blocked. If this parameter is left empty, `100` will be used by default. Value range: 0-100
26013
+ * @type {number || null}
26014
+ */
26015
+ this.BlockConfidence = null;
26016
+
26017
+ /**
26018
+ * Confidence score threshold for human review. If this threshold is reached, human review is needed. If this parameter is left empty, `75` will be used by default. Value range: 0-100
26019
+ * @type {number || null}
26020
+ */
26021
+ this.ReviewConfidence = null;
26022
+
26023
+ }
26024
+
26025
+ /**
26026
+ * @private
26027
+ */
26028
+ deserialize(params) {
26029
+ if (!params) {
26030
+ return;
26031
+ }
26032
+ this.Switch = 'Switch' in params ? params.Switch : null;
26033
+ this.BlockConfidence = 'BlockConfidence' in params ? params.BlockConfidence : null;
26034
+ this.ReviewConfidence = 'ReviewConfidence' in params ? params.ReviewConfidence : null;
26035
+
26036
+ }
26037
+ }
26038
+
25833
26039
  /**
25834
26040
  * MPS specific task query result type.
25835
26041
  * @class
@@ -26107,24 +26313,30 @@ class ImageUnderstandingItem extends AbstractModel {
26107
26313
  }
26108
26314
 
26109
26315
  /**
26110
- * Custom tone information.
26316
+ * AIGC human face input file information
26111
26317
  * @class
26112
26318
  */
26113
- class CustomVoiceInfo extends AbstractModel {
26319
+ class AigcFaceInputFileInfo extends AbstractModel {
26114
26320
  constructor(){
26115
26321
  super();
26116
26322
 
26117
26323
  /**
26118
- * <p>Voice ID.</p>
26324
+ * Input video file type. Valid values: <li>File: On-demand media file;</li> <li>Url: Accessible URL;</li>
26119
26325
  * @type {string || null}
26120
26326
  */
26121
- this.VoiceId = null;
26327
+ this.Type = null;
26122
26328
 
26123
26329
  /**
26124
- * <p>Tone information.</p>
26330
+ * Media file ID, the globally unique identifier of this file in VOD, is assigned by the VOD backend after successful upload. You can obtain this field in the [video upload completion event notification](https://www.tencentcloud.com/document/product/266/7830?from_cn_redirect=1) or [VOD console](https://console.cloud.tencent.com/vod/media). This parameter is valid when Type value is File.
26125
26331
  * @type {string || null}
26126
26332
  */
26127
- this.VoiceInfo = null;
26333
+ this.FileId = null;
26334
+
26335
+ /**
26336
+ * Accessible file URL. This parameter is valid when the Type value is Url.
26337
+ * @type {string || null}
26338
+ */
26339
+ this.Url = null;
26128
26340
 
26129
26341
  }
26130
26342
 
@@ -26135,8 +26347,9 @@ class CustomVoiceInfo extends AbstractModel {
26135
26347
  if (!params) {
26136
26348
  return;
26137
26349
  }
26138
- this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
26139
- this.VoiceInfo = 'VoiceInfo' in params ? params.VoiceInfo : null;
26350
+ this.Type = 'Type' in params ? params.Type : null;
26351
+ this.FileId = 'FileId' in params ? params.FileId : null;
26352
+ this.Url = 'Url' in params ? params.Url : null;
26140
26353
 
26141
26354
  }
26142
26355
  }
@@ -26279,6 +26492,49 @@ class ModifyWordSampleResponse extends AbstractModel {
26279
26492
  }
26280
26493
  }
26281
26494
 
26495
+ /**
26496
+ * Knowledge base media analysis information.
26497
+ * @class
26498
+ */
26499
+ class KnowledgeAnalysisInfo extends AbstractModel {
26500
+ constructor(){
26501
+ super();
26502
+
26503
+ /**
26504
+ * <p>Large model parsing template ID</p>
26505
+ * @type {number || null}
26506
+ */
26507
+ this.Definition = null;
26508
+
26509
+ /**
26510
+ * <p>Parsing result of large model</p>
26511
+ * @type {Array.<KnowledgeAnalysisResult> || null}
26512
+ */
26513
+ this.AnalysisResults = null;
26514
+
26515
+ }
26516
+
26517
+ /**
26518
+ * @private
26519
+ */
26520
+ deserialize(params) {
26521
+ if (!params) {
26522
+ return;
26523
+ }
26524
+ this.Definition = 'Definition' in params ? params.Definition : null;
26525
+
26526
+ if (params.AnalysisResults) {
26527
+ this.AnalysisResults = new Array();
26528
+ for (let z in params.AnalysisResults) {
26529
+ let obj = new KnowledgeAnalysisResult();
26530
+ obj.deserialize(params.AnalysisResults[z]);
26531
+ this.AnalysisResults.push(obj);
26532
+ }
26533
+ }
26534
+
26535
+ }
26536
+ }
26537
+
26282
26538
  /**
26283
26539
  * ModifyWatermarkTemplate response structure.
26284
26540
  * @class
@@ -28583,30 +28839,24 @@ Note: this field may return null, indicating that no valid values can be obtaine
28583
28839
  }
28584
28840
 
28585
28841
  /**
28586
- * AIGC human face input file information
28842
+ * Custom tone information.
28587
28843
  * @class
28588
28844
  */
28589
- class AigcFaceInputFileInfo extends AbstractModel {
28845
+ class CustomVoiceInfo extends AbstractModel {
28590
28846
  constructor(){
28591
28847
  super();
28592
28848
 
28593
28849
  /**
28594
- * Input video file type. Valid values: <li>File: On-demand media file;</li> <li>Url: Accessible URL;</li>
28595
- * @type {string || null}
28596
- */
28597
- this.Type = null;
28598
-
28599
- /**
28600
- * Media file ID, the globally unique identifier of this file in VOD, is assigned by the VOD backend after successful upload. You can obtain this field in the [video upload completion event notification](https://www.tencentcloud.com/document/product/266/7830?from_cn_redirect=1) or [VOD console](https://console.cloud.tencent.com/vod/media). This parameter is valid when Type value is File.
28850
+ * <p>Voice ID.</p>
28601
28851
  * @type {string || null}
28602
28852
  */
28603
- this.FileId = null;
28853
+ this.VoiceId = null;
28604
28854
 
28605
28855
  /**
28606
- * Accessible file URL. This parameter is valid when the Type value is Url.
28856
+ * <p>Tone information.</p>
28607
28857
  * @type {string || null}
28608
28858
  */
28609
- this.Url = null;
28859
+ this.VoiceInfo = null;
28610
28860
 
28611
28861
  }
28612
28862
 
@@ -28617,9 +28867,8 @@ class AigcFaceInputFileInfo extends AbstractModel {
28617
28867
  if (!params) {
28618
28868
  return;
28619
28869
  }
28620
- this.Type = 'Type' in params ? params.Type : null;
28621
- this.FileId = 'FileId' in params ? params.FileId : null;
28622
- this.Url = 'Url' in params ? params.Url : null;
28870
+ this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
28871
+ this.VoiceInfo = 'VoiceInfo' in params ? params.VoiceInfo : null;
28623
28872
 
28624
28873
  }
28625
28874
  }
@@ -31221,6 +31470,62 @@ class ModifyJustInTimeTranscodeTemplateResponse extends AbstractModel {
31221
31470
  }
31222
31471
  }
31223
31472
 
31473
+ /**
31474
+ * Image beauty effect item.
31475
+ * @class
31476
+ */
31477
+ class BeautyEffectItem extends AbstractModel {
31478
+ constructor(){
31479
+ super();
31480
+
31481
+ /**
31482
+ * <p>Whether to enable beauty effects.</p><p>Enumeration value:</p><ul><li>ON: On</li><li>OFF: Off</li></ul>
31483
+ * @type {string || null}
31484
+ */
31485
+ this.Switch = null;
31486
+
31487
+ /**
31488
+ * <p>Beauty option.</p>
31489
+ * @type {string || null}
31490
+ */
31491
+ this.Type = null;
31492
+
31493
+ /**
31494
+ * <p>Intensity of beauty effects.</p>
31495
+ * @type {number || null}
31496
+ */
31497
+ this.Value = null;
31498
+
31499
+ /**
31500
+ * <p>Attach the resource path.</p>
31501
+ * @type {string || null}
31502
+ */
31503
+ this.ResourcePath = null;
31504
+
31505
+ /**
31506
+ * <p>Additional information.</p>
31507
+ * @type {string || null}
31508
+ */
31509
+ this.ExtInfo = null;
31510
+
31511
+ }
31512
+
31513
+ /**
31514
+ * @private
31515
+ */
31516
+ deserialize(params) {
31517
+ if (!params) {
31518
+ return;
31519
+ }
31520
+ this.Switch = 'Switch' in params ? params.Switch : null;
31521
+ this.Type = 'Type' in params ? params.Type : null;
31522
+ this.Value = 'Value' in params ? params.Value : null;
31523
+ this.ResourcePath = 'ResourcePath' in params ? params.ResourcePath : null;
31524
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
31525
+
31526
+ }
31527
+ }
31528
+
31224
31529
  /**
31225
31530
  * Information of video stream in VOD file
31226
31531
  * @class
@@ -33660,19 +33965,25 @@ class ProcessImageAsyncInput extends AbstractModel {
33660
33965
  super();
33661
33966
 
33662
33967
  /**
33663
- * FileId for image processing.
33968
+ * <p>FileId of image processing.</p>
33664
33969
  * @type {string || null}
33665
33970
  */
33666
33971
  this.FileId = null;
33667
33972
 
33668
33973
  /**
33669
- * Image processing parameter.
33974
+ * <p>Image URL.</p>
33975
+ * @type {string || null}
33976
+ */
33977
+ this.Url = null;
33978
+
33979
+ /**
33980
+ * <p>Image processing parameter.</p>
33670
33981
  * @type {ProcessImageAsyncTaskInput || null}
33671
33982
  */
33672
33983
  this.ImageTaskInput = null;
33673
33984
 
33674
33985
  /**
33675
- * Output media file configuration for image processing tasks.
33986
+ * <p>Output media file configuration for the image processing task.</p>
33676
33987
  * @type {ProcessImageAsyncOutputConfig || null}
33677
33988
  */
33678
33989
  this.OutputConfig = null;
@@ -33687,6 +33998,7 @@ class ProcessImageAsyncInput extends AbstractModel {
33687
33998
  return;
33688
33999
  }
33689
34000
  this.FileId = 'FileId' in params ? params.FileId : null;
34001
+ this.Url = 'Url' in params ? params.Url : null;
33690
34002
 
33691
34003
  if (params.ImageTaskInput) {
33692
34004
  let obj = new ProcessImageAsyncTaskInput();
@@ -36301,6 +36613,12 @@ class AigcVideoTaskOutput extends AbstractModel {
36301
36613
  */
36302
36614
  this.ProcedureTaskIds = null;
36303
36615
 
36616
+ /**
36617
+ * <p>Usage information for AIGC video tasks.</p>
36618
+ * @type {AigcVideoTaskUsage || null}
36619
+ */
36620
+ this.Usage = null;
36621
+
36304
36622
  }
36305
36623
 
36306
36624
  /**
@@ -36321,6 +36639,12 @@ class AigcVideoTaskOutput extends AbstractModel {
36321
36639
  }
36322
36640
  this.ProcedureTaskIds = 'ProcedureTaskIds' in params ? params.ProcedureTaskIds : null;
36323
36641
 
36642
+ if (params.Usage) {
36643
+ let obj = new AigcVideoTaskUsage();
36644
+ obj.deserialize(params.Usage)
36645
+ this.Usage = obj;
36646
+ }
36647
+
36324
36648
  }
36325
36649
  }
36326
36650
 
@@ -39477,7 +39801,7 @@ class SceneAigcImageOutputConfig extends AbstractModel {
39477
39801
  this.AspectRatio = null;
39478
39802
 
39479
39803
  /**
39480
- * <p>Output image encoding format parameters. <strong>Valid only for AI clothing change scenarios.</strong></p>
39804
+ * <p>Output image encoding format parameters.</p>
39481
39805
  * @type {ImageSceneAigcEncodeConfig || null}
39482
39806
  */
39483
39807
  this.EncodeConfig = null;
@@ -39495,7 +39819,7 @@ class SceneAigcImageOutputConfig extends AbstractModel {
39495
39819
  this.ImageHeight = null;
39496
39820
 
39497
39821
  /**
39498
- * <p>Output resolution. Only valid for change_clothes and change_clothes_under scenarios. Available values: 1K, 2K, 4K.</p>
39822
+ * <p>Output resolution. Only valid for <code>ai_try_on</code> scenarios. Value range: 1K, 2K, 4K.</p>
39499
39823
  * @type {string || null}
39500
39824
  */
39501
39825
  this.Resolution = null;
@@ -39827,6 +40151,56 @@ class TrtcRecordInfo extends AbstractModel {
39827
40151
  }
39828
40152
  }
39829
40153
 
40154
+ /**
40155
+ * AI dress up configuration message.
40156
+ * @class
40157
+ */
40158
+ class AiTryOnConfig extends AbstractModel {
40159
+ constructor(){
40160
+ super();
40161
+
40162
+ /**
40163
+ * <p>Dress up model.</p><p>Enumeration value:</p><ul><li>WAND-tryon-1.0-lite: Lightweight tier, prioritizing speed.</li><li>WAND-tryon-1.0-flash: Balanced tier, taking into account effect and latency.</li><li>WAND-tryon-1.0-pro: High-quality tier, prioritizing effect.</li></ul>
40164
+ * @type {string || null}
40165
+ */
40166
+ this.Model = null;
40167
+
40168
+ /**
40169
+ * <p>Input the image list of clothing that needs to be replaced. 1-4 images are supported.</p>
40170
+ * @type {Array.<SceneAigcImageTaskInputFileInfo> || null}
40171
+ */
40172
+ this.ClothesFileInfos = null;
40173
+
40174
+ /**
40175
+ * <p>Dress up command Prompt.</p>
40176
+ * @type {string || null}
40177
+ */
40178
+ this.Prompt = null;
40179
+
40180
+ }
40181
+
40182
+ /**
40183
+ * @private
40184
+ */
40185
+ deserialize(params) {
40186
+ if (!params) {
40187
+ return;
40188
+ }
40189
+ this.Model = 'Model' in params ? params.Model : null;
40190
+
40191
+ if (params.ClothesFileInfos) {
40192
+ this.ClothesFileInfos = new Array();
40193
+ for (let z in params.ClothesFileInfos) {
40194
+ let obj = new SceneAigcImageTaskInputFileInfo();
40195
+ obj.deserialize(params.ClothesFileInfos[z]);
40196
+ this.ClothesFileInfos.push(obj);
40197
+ }
40198
+ }
40199
+ this.Prompt = 'Prompt' in params ? params.Prompt : null;
40200
+
40201
+ }
40202
+ }
40203
+
39830
40204
  /**
39831
40205
  * DescribeReviewDetails request structure.
39832
40206
  * @class
@@ -40417,6 +40791,12 @@ class AigcVideoRedrawTaskInput extends AbstractModel {
40417
40791
  */
40418
40792
  this.FileInfo = null;
40419
40793
 
40794
+ /**
40795
+ * <p>AIGC video conversion task parameter information.</p>
40796
+ * @type {AigcVideoRedrawTaskInfo || null}
40797
+ */
40798
+ this.TaskInfo = null;
40799
+
40420
40800
  /**
40421
40801
  * <p>AIGC video conversion output configuration.</p>
40422
40802
  * @type {AigcVideoRedrawOutputConfig || null}
@@ -40439,6 +40819,12 @@ class AigcVideoRedrawTaskInput extends AbstractModel {
40439
40819
  this.FileInfo = obj;
40440
40820
  }
40441
40821
 
40822
+ if (params.TaskInfo) {
40823
+ let obj = new AigcVideoRedrawTaskInfo();
40824
+ obj.deserialize(params.TaskInfo)
40825
+ this.TaskInfo = obj;
40826
+ }
40827
+
40442
40828
  if (params.OutputConfig) {
40443
40829
  let obj = new AigcVideoRedrawOutputConfig();
40444
40830
  obj.deserialize(params.OutputConfig)
@@ -41302,6 +41688,12 @@ class TranscodeTaskInput extends AbstractModel {
41302
41688
  */
41303
41689
  this.EndTimeOffset = null;
41304
41690
 
41691
+ /**
41692
+ * <p>Custom video transcoding parameters.</p>
41693
+ * @type {OverrideTranscodeParameter || null}
41694
+ */
41695
+ this.OverrideParameter = null;
41696
+
41305
41697
  /**
41306
41698
  * <p>List of subtitle suppression information. Up to 2 are supported.</p>
41307
41699
  * @type {Array.<SubtitleInfoInput> || null}
@@ -41366,6 +41758,12 @@ class TranscodeTaskInput extends AbstractModel {
41366
41758
  this.StartTimeOffset = 'StartTimeOffset' in params ? params.StartTimeOffset : null;
41367
41759
  this.EndTimeOffset = 'EndTimeOffset' in params ? params.EndTimeOffset : null;
41368
41760
 
41761
+ if (params.OverrideParameter) {
41762
+ let obj = new OverrideTranscodeParameter();
41763
+ obj.deserialize(params.OverrideParameter)
41764
+ this.OverrideParameter = obj;
41765
+ }
41766
+
41369
41767
  if (params.SubtitleInfoSet) {
41370
41768
  this.SubtitleInfoSet = new Array();
41371
41769
  for (let z in params.SubtitleInfoSet) {
@@ -43010,270 +43408,260 @@ class EventContent extends AbstractModel {
43010
43408
  super();
43011
43409
 
43012
43410
  /**
43013
- * Event handler. The caller must call ConfirmEvents to acknowledge the message has been received. Confirmed Valid Time is 30 seconds. After expiration, the event can be retrieved again.
43411
+ * <p>Event handler. The caller must call ConfirmEvents to acknowledge the message has been received. Confirmed Valid Time is 30 seconds. After expiration, the event can be retrieved again.</p>
43014
43412
  * @type {string || null}
43015
43413
  */
43016
43414
  this.EventHandle = null;
43017
43415
 
43018
43416
  /**
43019
- * <b>Supported event types:</b>
43020
- <li>NewFileUpload: Video upload completed;</li>
43021
- <li>ProcedureStateChanged: Task flow status change.</li>
43022
- <li>FileDeleted: Video deletion completed;</li>
43023
- <li>RestoreMediaComplete: Video retrieval completion;</li>
43024
- <li>PullComplete: Video conversion pull completed.</li>
43025
- <li>EditMediaComplete: Video editing completed;</li>
43026
- <li>SplitMediaComplete: Video splitting completed;</li>
43027
- <li>ComposeMediaComplete: Media file creation completion;</li>
43028
- <li>WechatMiniProgramPublishComplete: WeChat Mini Program Publishing Completed.</li>
43029
- <li>RemoveWatermark: Intelligent watermark removal completion.</li>
43030
- <li>RebuildMediaComplete: Audio and video quality rebirth completion event (This is not recommended).</li>
43031
- <li>ReviewAudioVideoComplete: Audio/video moderation completed;</li>
43032
- <li>ExtractTraceWatermarkComplete: Traceability watermark extraction completed;</li>
43033
- <li>ExtractCopyRightWatermarkComplete: Extracting copyright watermark completion.</li>
43034
- <li>DescribeFileAttributesComplete: File attribute acquisition completion.</li>
43035
- <li>QualityInspectComplete: Audio and video quality inspection completed;</li>
43036
- <li>QualityEnhanceComplete: Audio and video quality rebirth task completion;</li>
43037
- <li>PersistenceComplete: Edit completed.</li>
43038
- <li>ComplexAdaptiveDynamicStreamingComplete: complex adaptive bitstream task completed.</li>
43039
- <li>ProcessMediaByMPSComplete: MPS video processing is completed.</li>
43040
- <li>AigcImageTaskComplete: AIGC image generation task complete.</li>
43041
- <li>AigcVideoTaskComplete: AIGC video generation task completed.</li>
43042
- <b>Event types compatible with the 2017 version:</b>
43043
- <li>TranscodeComplete: video transcoding completion;</li>
43044
- <li>ConcatComplete: Video splicing completion.</li>
43045
- <li>ClipComplete: Video editing completed;</li>
43046
- <li>CreateImageSpriteComplete: Video thumbnail capture completion.</li>
43047
- <li>CreateSnapshotByTimeOffsetComplete: Video screenshot by time point.</li>
43417
+ * <p><b>Supported event types:</b></p><li>NewFileUpload: Video upload complete;</li><li>ProcedureStateChanged: Task flow status change;</li><li>FileDeleted: Video deletion completed;</li><li>RestoreMediaComplete: Video retrieval completion;</li><li>PullComplete: Video conversion completed;</li><li>EditMediaComplete: Video editing completed;</li><li>SplitMediaComplete: Video splitting completed;</li><li>ComposeMediaComplete: Media file creation completion;</li><li>WechatMiniProgramPublishComplete: WeChat Mini Program Publishing Completed.</li><li>RemoveWatermark: Intelligent watermark removal completion.</li><li>RebuildMediaComplete: Audio and video quality rebirth completion event (not recommended).</li><li>ReviewAudioVideoComplete: Audio/video moderation completed;</li><li>ExtractTraceWatermarkComplete: Traceability watermark extraction completed;</li><li>ExtractCopyRightWatermarkComplete: Extracting copyright watermark completion;</li><li>DescribeFileAttributesComplete: File attribute acquisition completion;</li><li>QualityInspectComplete: Audio and video quality inspection completed;</li><li>QualityEnhanceComplete: Audio and video quality rebirth task completion;</li><li>PersistenceComplete: Edit persistence completed;</li><li>ComplexAdaptiveDynamicStreamingComplete: Complex adaptive bitstream task completion.</li><li>ProcessMediaByMPSComplete: MPS video processing completed.</li><li>AigcImageTaskComplete: AIGC image generation task completed.</li><li>AigcVideoTaskComplete: AIGC video generation task completed.</li><li>DescribeAigcFaceInfoAsyncComplete: Asynchronously fetch AIGC human face information task completed.</li><b>Event types compatible with the 2017 version:</b><li>TranscodeComplete: Video transcoding completion;</li><li>ConcatComplete: Video splicing completion;</li><li>ClipComplete: Video editing completed;</li><li>CreateImageSpriteComplete: Video thumbnail capture completion;</li><li>CreateSnapshotByTimeOffsetComplete: Video screenshot by time point.</li>
43048
43418
  * @type {string || null}
43049
43419
  */
43050
43420
  this.EventType = null;
43051
43421
 
43052
43422
  /**
43053
- * Video upload completion event. Valid when the event type is NewFileUpload.
43423
+ * <p>Video upload completion event. Valid when the event type is NewFileUpload.</p>
43054
43424
  Note: This field may return null, indicating that no valid values can be obtained.
43055
43425
  * @type {FileUploadTask || null}
43056
43426
  */
43057
43427
  this.FileUploadEvent = null;
43058
43428
 
43059
43429
  /**
43060
- * Task flow status change event. Valid when the event type is ProcedureStateChanged.
43430
+ * <p>Task flow status change event. Valid when the event type is ProcedureStateChanged.</p>
43061
43431
  Note: This field may return null, indicating that no valid values can be obtained.
43062
43432
  * @type {ProcedureTask || null}
43063
43433
  */
43064
43434
  this.ProcedureStateChangeEvent = null;
43065
43435
 
43066
43436
  /**
43067
- * File deletion event. Valid when the event type is FileDeleted.
43437
+ * <p>File deletion event. Valid when the event type is FileDeleted.</p>
43068
43438
  Note: This field may return null, indicating that no valid values can be obtained.
43069
43439
  * @type {FileDeleteTask || null}
43070
43440
  */
43071
43441
  this.FileDeleteEvent = null;
43072
43442
 
43073
43443
  /**
43074
- * Video pull completion event. Valid when the event type is PullComplete.
43444
+ * <p>Video pull completion event. Valid when the event type is PullComplete.</p>
43075
43445
  Note: This field may return null, indicating that no valid values can be obtained.
43076
43446
  * @type {PullUploadTask || null}
43077
43447
  */
43078
43448
  this.PullCompleteEvent = null;
43079
43449
 
43080
43450
  /**
43081
- * Video editing completion event. Valid when the event type is EditMediaComplete.
43451
+ * <p>Video editing completion event. Valid when the event type is EditMediaComplete.</p>
43082
43452
  Note: This field may return null, indicating that no valid values can be obtained.
43083
43453
  * @type {EditMediaTask || null}
43084
43454
  */
43085
43455
  this.EditMediaCompleteEvent = null;
43086
43456
 
43087
43457
  /**
43088
- * Video splitting completion event. Valid when the event type is SplitMediaComplete.
43458
+ * <p>Video splitting completion event. Valid when the event type is SplitMediaComplete.</p>
43089
43459
  Note: This field may return null, indicating that no valid values can be obtained.
43090
43460
  * @type {SplitMediaTask || null}
43091
43461
  */
43092
43462
  this.SplitMediaCompleteEvent = null;
43093
43463
 
43094
43464
  /**
43095
- * Media file creation task completion event. Valid when the event type is ComposeMediaComplete.
43465
+ * <p>Media file creation task completion event. Valid when the event type is ComposeMediaComplete.</p>
43096
43466
  Note: This field may return null, indicating that no valid values can be obtained.
43097
43467
  * @type {ComposeMediaTask || null}
43098
43468
  */
43099
43469
  this.ComposeMediaCompleteEvent = null;
43100
43470
 
43101
43471
  /**
43102
- * Video editing completion event. Valid when the event type is ClipComplete.
43472
+ * <p>Video editing completion event. Valid when the event type is ClipComplete.</p>
43103
43473
  Note: This field may return null, indicating that no valid values can be obtained.
43104
43474
  * @type {ClipTask2017 || null}
43105
43475
  */
43106
43476
  this.ClipCompleteEvent = null;
43107
43477
 
43108
43478
  /**
43109
- * Video transcoding completion event, valid when the event type is TranscodeComplete.
43479
+ * <p>Video transcoding completion event. Valid when the event type is TranscodeComplete.</p>
43110
43480
  Note: This field may return null, indicating that no valid values can be obtained.
43111
43481
  * @type {TranscodeTask2017 || null}
43112
43482
  */
43113
43483
  this.TranscodeCompleteEvent = null;
43114
43484
 
43115
43485
  /**
43116
- * Video thumbnail capture completion event. Valid when the event type is CreateImageSpriteComplete.
43486
+ * <p>Video thumbnail capture completion event. Valid when the event type is CreateImageSpriteComplete.</p>
43117
43487
  Note: This field may return null, indicating that no valid values can be obtained.
43118
43488
  * @type {CreateImageSpriteTask2017 || null}
43119
43489
  */
43120
43490
  this.CreateImageSpriteCompleteEvent = null;
43121
43491
 
43122
43492
  /**
43123
- * Video splicing completion event. Valid when the event type is ConcatComplete.
43493
+ * <p>Video splicing completion event. Valid when the event type is ConcatComplete.</p>
43124
43494
  Note: This field may return null, indicating that no valid values can be obtained.
43125
43495
  * @type {ConcatTask2017 || null}
43126
43496
  */
43127
43497
  this.ConcatCompleteEvent = null;
43128
43498
 
43129
43499
  /**
43130
- * Video screenshot by time point completion event. Valid when the event type is CreateSnapshotByTimeOffsetComplete.
43500
+ * <p>Video screenshot by time point completion event. Valid when the event type is CreateSnapshotByTimeOffsetComplete.</p>
43131
43501
  Note: This field may return null, indicating that no valid values can be obtained.
43132
43502
  * @type {SnapshotByTimeOffsetTask2017 || null}
43133
43503
  */
43134
43504
  this.SnapshotByTimeOffsetCompleteEvent = null;
43135
43505
 
43136
43506
  /**
43137
- * WeChat Publishing Completion Event. Valid when the event type is WechatPublishComplete.
43507
+ * <p>WeChat Publishing Completion Event. Valid when the event type is WechatPublishComplete.</p>
43138
43508
  Note: This field may return null, indicating that no valid values can be obtained.
43139
43509
  * @type {WechatPublishTask || null}
43140
43510
  */
43141
43511
  this.WechatPublishCompleteEvent = null;
43142
43512
 
43143
43513
  /**
43144
- * WeChat Mini Program Publishing Task Completion Event. Valid when the event type is WechatMiniProgramPublishComplete.
43514
+ * <p>WeChat Mini Program Publishing Task Completion Event. Valid when the event type is WechatMiniProgramPublishComplete.</p>
43145
43515
  Note: This field may return null, indicating that no valid values can be obtained.
43146
43516
  * @type {WechatMiniProgramPublishTask || null}
43147
43517
  */
43148
43518
  this.WechatMiniProgramPublishCompleteEvent = null;
43149
43519
 
43150
43520
  /**
43151
- * Intelligent Watermark Removal Completion Event is valid when the event type is RemoveWatermark.
43521
+ * <p>Intelligent Watermark Removal Completion Event. Valid when the event type is RemoveWatermark.</p>
43152
43522
  Note: This field may return null, indicating that no valid values can be obtained.
43153
43523
  * @type {RemoveWatermarkTask || null}
43154
43524
  */
43155
43525
  this.RemoveWatermarkCompleteEvent = null;
43156
43526
 
43157
43527
  /**
43158
- * Video retrieval completion event. Valid when the event type is RestoreMediaComplete.
43528
+ * <p>Video retrieval completion event. Valid when the event type is RestoreMediaComplete.</p>
43159
43529
  Note: This field may return null, indicating that no valid values can be obtained.
43160
43530
  * @type {RestoreMediaTask || null}
43161
43531
  */
43162
43532
  this.RestoreMediaCompleteEvent = null;
43163
43533
 
43164
43534
  /**
43165
- * Audio and video quality rebirth completion event. Valid when the event type is RebuildMediaComplete.
43535
+ * <p>Audio and video quality rebirth completion event. Valid when the event type is RebuildMediaComplete.</p>
43166
43536
  Note: This field may return null, indicating that no valid values can be obtained.
43167
43537
  * @type {RebuildMediaTask || null}
43168
43538
  */
43169
43539
  this.RebuildMediaCompleteEvent = null;
43170
43540
 
43171
43541
  /**
43172
- * Traceability watermark extraction completion event. Valid when the event type is ExtractTraceWatermarkComplete.
43542
+ * <p>Traceability watermark extraction completion event. Valid when the event type is ExtractTraceWatermarkComplete.</p>
43173
43543
  Note: This field may return null, indicating that no valid values can be obtained.
43174
43544
  * @type {ExtractTraceWatermarkTask || null}
43175
43545
  */
43176
43546
  this.ExtractTraceWatermarkCompleteEvent = null;
43177
43547
 
43178
43548
  /**
43179
- * Copyright watermark extraction completion event. Valid when the event type is ExtractCopyRightWatermarkComplete.
43549
+ * <p>Copyright watermark extraction completion event. Valid when the event type is ExtractCopyRightWatermarkComplete.</p>
43180
43550
  Note: This field may return null, indicating that no valid values can be obtained.
43181
43551
  * @type {ExtractCopyRightWatermarkTask || null}
43182
43552
  */
43183
43553
  this.ExtractCopyRightWatermarkCompleteEvent = null;
43184
43554
 
43185
43555
  /**
43186
- * Audio/video moderation completed event. Valid when the event type is ReviewAudioVideoComplete.
43556
+ * <p>Audio/video moderation completed event. Valid when the event type is ReviewAudioVideoComplete.</p>
43187
43557
  Note: This field may return null, indicating that no valid values can be obtained.
43188
43558
  * @type {ReviewAudioVideoTask || null}
43189
43559
  */
43190
43560
  this.ReviewAudioVideoCompleteEvent = null;
43191
43561
 
43192
43562
  /**
43193
- * This field is invalid.
43563
+ * <p>This field is invalid.</p>
43194
43564
  Note: This field may return null, indicating that no valid values can be obtained.
43195
43565
  * @type {ReduceMediaBitrateTask || null}
43196
43566
  */
43197
43567
  this.ReduceMediaBitrateCompleteEvent = null;
43198
43568
 
43199
43569
  /**
43200
- * File attribute acquisition completion event. Valid when the event type is DescribeFileAttributesComplete.
43570
+ * <p>File attribute acquisition completion event. Valid when the event type is DescribeFileAttributesComplete.</p>
43201
43571
  Note: This field may return null, indicating that no valid values can be obtained.
43202
43572
  * @type {DescribeFileAttributesTask || null}
43203
43573
  */
43204
43574
  this.DescribeFileAttributesCompleteEvent = null;
43205
43575
 
43206
43576
  /**
43207
- * Audio and video quality detection completion event. Valid when the event type is QualityInspectComplete.
43577
+ * <p>Audio and video quality detection completion event. Valid when the event type is QualityInspectComplete.</p>
43208
43578
  Note: This field may return null, indicating that no valid values can be obtained.
43209
43579
  * @type {QualityInspectTask || null}
43210
43580
  */
43211
43581
  this.QualityInspectCompleteEvent = null;
43212
43582
 
43213
43583
  /**
43214
- * Audio and video quality rebirth completion event. Valid when the event type is QualityEnhanceComplete.
43584
+ * <p>Audio and video quality rebirth completion event. Valid when the event type is QualityEnhanceComplete.</p>
43215
43585
  Note: This field may return null, indicating that no valid values can be obtained.
43216
43586
  * @type {QualityEnhanceTask || null}
43217
43587
  */
43218
43588
  this.QualityEnhanceCompleteEvent = null;
43219
43589
 
43220
43590
  /**
43221
- * MediaCastStatus changed event, valid when the event type is MediaCastStatusChanged.
43222
- Pay attention to: this field may return null, indicating that no valid value can be obtained.
43591
+ * <p>Media forwarding status change event. Valid when the event type is MediaCastStatusChanged.</p>
43592
+ Note: This field may return null, indicating that no valid values can be obtained.
43223
43593
  * @type {MediaCastEvent || null}
43224
43594
  */
43225
43595
  this.MediaCastStatusChangedEvent = null;
43226
43596
 
43227
43597
  /**
43228
- * Editing solidification completion event. Valid when the event type is PersistenceComplete.
43598
+ * <p>Editing solidification completion event. Valid when the event type is PersistenceComplete.</p>
43229
43599
  Note: This field may return null, indicating that no valid values can be obtained.
43230
43600
  * @type {PersistenceCompleteTask || null}
43231
43601
  */
43232
43602
  this.PersistenceCompleteEvent = null;
43233
43603
 
43234
43604
  /**
43235
- * Adaptive bitrate task information, valid only when EventType is ComplexAdaptiveDynamicStreamingComplete.
43605
+ * <p>Adaptive bitrate task information. Valid only when EventType is ComplexAdaptiveDynamicStreamingComplete.</p>
43236
43606
  Note: This field may return null, indicating that no valid values can be obtained.
43237
43607
  * @type {ComplexAdaptiveDynamicStreamingTask || null}
43238
43608
  */
43239
43609
  this.ComplexAdaptiveDynamicStreamingCompleteEvent = null;
43240
43610
 
43241
43611
  /**
43242
- * MPS video processing task information. Valid only when EventType is ProcessMediaByMPSComplete.
43612
+ * <p>MPS video processing task information. Valid only when EventType is ProcessMediaByMPSComplete.</p>
43243
43613
  * @type {ProcessMediaByMPS || null}
43244
43614
  */
43245
43615
  this.ProcessMediaByMPSCompleteEvent = null;
43246
43616
 
43247
43617
  /**
43248
- * AIGC image generation task info. Valid only when EventType is AigcImageTaskComplete.
43618
+ * <p>AIGC image generation task info, valid only when EventType is AigcImageTaskComplete.</p>
43249
43619
  * @type {AigcImageTask || null}
43250
43620
  */
43251
43621
  this.AigcImageCompleteEvent = null;
43252
43622
 
43253
43623
  /**
43254
- * AIGC video task info. Valid only when EventType is AigcVideoTaskComplete.
43624
+ * <p>AIGC video task info, valid only when EventType is AigcVideoTaskComplete.</p>
43255
43625
  * @type {AigcVideoTask || null}
43256
43626
  */
43257
43627
  this.AigcVideoCompleteEvent = null;
43258
43628
 
43259
43629
  /**
43260
- * Extract digital watermark information. Valid at that time only when EventType is ExtractBlindWatermarkComplete.
43630
+ * <p>Extract digital watermark info, valid only when EventType is ExtractBlindWatermarkComplete.</p>
43261
43631
  * @type {ExtractBlindWatermarkTask || null}
43262
43632
  */
43263
43633
  this.ExtractBlindWatermarkComplete = null;
43264
43634
 
43265
43635
  /**
43266
- * AIGC scenario-based image generation task info, valid only when EventType is SceneAigcImageCompleteEvent.
43636
+ * <p>Scenario-based AIGC image generation task info. Valid only when EventType is SceneAigcImageCompleteEvent.</p>
43267
43637
  * @type {SceneAigcImageTask || null}
43268
43638
  */
43269
43639
  this.SceneAigcImageCompleteEvent = null;
43270
43640
 
43271
43641
  /**
43272
- * Image asynchronous task processing info, valid only when EventType is ProcessImageAsyncCompleteEvent.
43642
+ * <p>Image asynchronous task processing information. Valid only when EventType is ProcessImageAsyncCompleteEvent.</p>
43273
43643
  * @type {ProcessImageAsyncTask || null}
43274
43644
  */
43275
43645
  this.ProcessImageAsyncCompleteEvent = null;
43276
43646
 
43647
+ /**
43648
+ * <p>AIGC custom entity information, valid only when EventType is CreateAigcAdvancedCustomElementCompleteEvent and this field has a value.</p>
43649
+ * @type {CreateAigcAdvancedCustomElementTask || null}
43650
+ */
43651
+ this.CreateAigcAdvancedCustomElementCompleteEvent = null;
43652
+
43653
+ /**
43654
+ * <p>AIGC custom tone information. This field has a value only when EventType is CreateAigcCustomVoiceCompleteEvent.</p>
43655
+ * @type {CreateAigcCustomVoiceTask || null}
43656
+ */
43657
+ this.CreateAigcCustomVoiceCompleteEvent = null;
43658
+
43659
+ /**
43660
+ * <p>Asynchronously fetch AIGC face information. This field has a value only when EventType is DescribeAigcFaceInfoAsyncComplete.</p>
43661
+ * @type {DescribeAigcFaceInfoAsyncTask || null}
43662
+ */
43663
+ this.DescribeAigcFaceInfoAsyncCompleteEvent = null;
43664
+
43277
43665
  }
43278
43666
 
43279
43667
  /**
@@ -43484,6 +43872,24 @@ Note: This field may return null, indicating that no valid values can be obtaine
43484
43872
  this.ProcessImageAsyncCompleteEvent = obj;
43485
43873
  }
43486
43874
 
43875
+ if (params.CreateAigcAdvancedCustomElementCompleteEvent) {
43876
+ let obj = new CreateAigcAdvancedCustomElementTask();
43877
+ obj.deserialize(params.CreateAigcAdvancedCustomElementCompleteEvent)
43878
+ this.CreateAigcAdvancedCustomElementCompleteEvent = obj;
43879
+ }
43880
+
43881
+ if (params.CreateAigcCustomVoiceCompleteEvent) {
43882
+ let obj = new CreateAigcCustomVoiceTask();
43883
+ obj.deserialize(params.CreateAigcCustomVoiceCompleteEvent)
43884
+ this.CreateAigcCustomVoiceCompleteEvent = obj;
43885
+ }
43886
+
43887
+ if (params.DescribeAigcFaceInfoAsyncCompleteEvent) {
43888
+ let obj = new DescribeAigcFaceInfoAsyncTask();
43889
+ obj.deserialize(params.DescribeAigcFaceInfoAsyncCompleteEvent)
43890
+ this.DescribeAigcFaceInfoAsyncCompleteEvent = obj;
43891
+ }
43892
+
43487
43893
  }
43488
43894
  }
43489
43895
 
@@ -43803,48 +44209,24 @@ class AiReviewPoliticalAsrTaskOutput extends AbstractModel {
43803
44209
  }
43804
44210
 
43805
44211
  /**
43806
- * Information of output audio stream
44212
+ * Knowledge base media analysis result.
43807
44213
  * @class
43808
44214
  */
43809
- class OutputAudioStream extends AbstractModel {
44215
+ class KnowledgeAnalysisResult extends AbstractModel {
43810
44216
  constructor(){
43811
44217
  super();
43812
44218
 
43813
44219
  /**
43814
- * Audio stream encoder. Valid values:
43815
- <li>libfdk_aac: suitable for mp4 files.</li>
43816
- Default value: libfdk_aac.
44220
+ * <p>Process task type</p><p>Enumeration value:</p><ul><li>AiAnalysis.DescriptionTask: Intelligent summary task</li><li>AiAnalysis.VideoComprehensionTask: Video understanding task</li><li>SmartSubtitle.AsrFullTextTask: Intelligent speech full-text recognition task</li></ul>
43817
44221
  * @type {string || null}
43818
44222
  */
43819
- this.Codec = null;
43820
-
43821
- /**
43822
- * Audio stream sample rate. Valid values:
43823
- <li>16,000</li>
43824
- <li>32,000</li>
43825
- <li>44,100</li>
43826
- <li>48,000</li>
43827
- In Hz.
43828
- Default value: 16,000.
43829
- * @type {number || null}
43830
- */
43831
- this.SampleRate = null;
43832
-
43833
- /**
43834
- * Number of sound channels. Valid values:
43835
- <li>1: mono.</li>
43836
- <li>2: dual</li>
43837
- Default value: 2.
43838
- * @type {number || null}
43839
- */
43840
- this.AudioChannel = null;
44223
+ this.TaskType = null;
43841
44224
 
43842
44225
  /**
43843
- * The bit rate of the audio stream, value range: 0 and [26, 256], unit: kbps.
43844
- When the value is 0, the audio bitrate will be automatically set.
43845
- * @type {number || null}
44226
+ * <p>Task output file collection</p>
44227
+ * @type {MPSOutputFileInfo || null}
43846
44228
  */
43847
- this.Bitrate = null;
44229
+ this.File = null;
43848
44230
 
43849
44231
  }
43850
44232
 
@@ -43855,10 +44237,13 @@ When the value is 0, the audio bitrate will be automatically set.
43855
44237
  if (!params) {
43856
44238
  return;
43857
44239
  }
43858
- this.Codec = 'Codec' in params ? params.Codec : null;
43859
- this.SampleRate = 'SampleRate' in params ? params.SampleRate : null;
43860
- this.AudioChannel = 'AudioChannel' in params ? params.AudioChannel : null;
43861
- this.Bitrate = 'Bitrate' in params ? params.Bitrate : null;
44240
+ this.TaskType = 'TaskType' in params ? params.TaskType : null;
44241
+
44242
+ if (params.File) {
44243
+ let obj = new MPSOutputFileInfo();
44244
+ obj.deserialize(params.File)
44245
+ this.File = obj;
44246
+ }
43862
44247
 
43863
44248
  }
43864
44249
  }
@@ -45278,96 +45663,91 @@ class PullUploadRequest extends AbstractModel {
45278
45663
  super();
45279
45664
 
45280
45665
  /**
45281
- * Media URL to be pulled. Temporary not support pull Dash format (support HLS).
45282
- Supported extensions are listed in [Media type](https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E5.AA.92.E4.BD.93.E7.B1.BB.E5.9E.8B). Please ensure the media URL can access.
45666
+ * <p>Media URL to be pulled. Dash format is not currently supported (HLS is supported).<br>For supported extensions, see <a href="https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E5.AA.92.E4.BD.93.E7.B1.BB.E5.9E.8B">media type</a>. Please ensure the media URL can be accessed.</p>
45283
45667
  * @type {string || null}
45284
45668
  */
45285
45669
  this.MediaUrl = null;
45286
45670
 
45287
45671
  /**
45288
- * Media type (extension). Supported types are detailed in [media type](https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E5.AA.92.E4.BD.93.E7.B1.BB.E5.9E.8B).
45289
- If MediaType is not filled in or takes an empty string, the file type will be automatically obtained based on MediaUrl.
45672
+ * <p>Media type (extension). For supported types, see <a href="https://www.tencentcloud.com/document/product/266/9760?from_cn_redirect=1#.E5.AA.92.E4.BD.93.E7.B1.BB.E5.9E.8B">media type</a>.<br>If MediaType is not specified or set to an empty string, the file type will be obtained automatically based on MediaUrl.</p>
45290
45673
  * @type {string || null}
45291
45674
  */
45292
45675
  this.MediaType = null;
45293
45676
 
45294
45677
  /**
45295
- * <b>On-demand [application](https://www.tencentcloud.com/document/product/266/14574?from_cn_redirect=1) ID. Customers who activate on-demand services from December 25, 2023 must fill this field with the app ID when accessing resources in on-demand applications (whether default or newly created).</b>
45678
+ * <p><b>Video-on-demand (VOD) <a href="/document/product/266/14574">application</a> ID. Customers who activate on-demand services after December 25, 2023 must fill this field with the app ID when accessing resources in on-demand applications (whether the default application or a newly created application).</b></p>
45296
45679
  * @type {number || null}
45297
45680
  */
45298
45681
  this.SubAppId = null;
45299
45682
 
45300
45683
  /**
45301
- * Media name.
45684
+ * <p>Media name.</p>
45302
45685
  * @type {string || null}
45303
45686
  */
45304
45687
  this.MediaName = null;
45305
45688
 
45306
45689
  /**
45307
- * Video cover URL to pull. Supported file formats: gif, jpeg (jpg), png.
45690
+ * <p>Video cover URL to pull. Supported file formats: gif, jpeg (jpg), png.</p>
45308
45691
  * @type {string || null}
45309
45692
  */
45310
45693
  this.CoverUrl = null;
45311
45694
 
45312
45695
  /**
45313
- * Media subsequent task operation. For details, see [Upload Specified Task Flow](https://www.tencentcloud.com/document/product/266/9759?from_cn_redirect=1).
45696
+ * <p>For media subsequent task operation, see <a href="https://www.tencentcloud.com/document/product/266/9759?from_cn_redirect=1">upload specified task flow</a>.</p>
45314
45697
  * @type {string || null}
45315
45698
  */
45316
45699
  this.Procedure = null;
45317
45700
 
45318
45701
  /**
45319
- * The media file expiry time, format according to ISO 8601. For details, see [ISO date format description](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I).
45702
+ * <p>Media file expiry time, format according to ISO 8601 standard representation. For details, see <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO date format description</a>.</p>
45320
45703
  * @type {string || null}
45321
45704
  */
45322
45705
  this.ExpireTime = null;
45323
45706
 
45324
45707
  /**
45325
- * Designate the upload park, applicable only to the user with special requirement for upload target region.
45326
- <li>If left blank, files will be uploaded to your [default region](https://www.tencentcloud.com/zh/document/product/266/18874?has_map=1#.E5.AD.98.E5.82.A8.E5.9C.B0.E5.9F.9F.E6.AD.A5.E9.AA.A4) by default.</li>
45327
- <li>If a designated upload park is specified, please confirm the [upload storage settings](https://www.tencentcloud.com/zh/document/product/266/18874) have already enabled corresponding storage regions.</li>
45708
+ * <p>Designated upload park, applicable only to the user with special requirement for upload target region:</p><li>By default if left blank, upload to your [default region](https://www.tencentcloud.com/document/product/266/14059?from=11329?from_cn_redirect=1#.E5.AD.98.E5.82.A8.E5.9C.B0.E5.9F.9F.E6.AD.A5.E9.AA.A4).</li><li>If you designate an upload park, please confirm the [upload storage settings](https://www.tencentcloud.com/document/product/266/14059?from=11329?from_cn_redirect=1#.E5.AD.98.E5.82.A8.E5.9C.B0.E5.9F.9F.E6.AD.A5.E9.AA.A4) have already enabled corresponding storage regions.</li>
45328
45709
  * @type {string || null}
45329
45710
  */
45330
45711
  this.StorageRegion = null;
45331
45712
 
45332
45713
  /**
45333
- * Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the [create category](https://www.tencentcloud.com/document/product/266/31772?from_cn_redirect=1) API.
45714
+ * <p>Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the <a href="https://www.tencentcloud.com/document/product/266/31772?from_cn_redirect=1">Create Category</a> API.</p>
45334
45715
  * @type {number || null}
45335
45716
  */
45336
45717
  this.ClassId = null;
45337
45718
 
45338
45719
  /**
45339
- * Task priority. The higher the value, the higher the priority. The value ranges from -10 to 10. If left blank, the default value is 0.
45720
+ * <p>Task priority. The higher the value, the higher the priority. The value ranges from -10 to 10. If this is not specified, the default value is 0.</p>
45340
45721
  * @type {number || null}
45341
45722
  */
45342
45723
  this.TasksPriority = null;
45343
45724
 
45344
45725
  /**
45345
- * Source context, used for passing through user request information. When specifying a Procedure task, the task flow status change callback will return the value of this field, up to 1000 characters.
45726
+ * <p>Source context. This is used to pass through user request information. When specifying a Procedure task, the task flow status change callback returns the value of this field. The maximum length is 1000 characters.</p>
45346
45727
  * @type {string || null}
45347
45728
  */
45348
45729
  this.SessionContext = null;
45349
45730
 
45350
45731
  /**
45351
- * Identifier for deduplication. If a request with the same identifier has been sent within the past three days, an error is returned for the current request. The maximum length is 50 characters. If this is not specified or left empty, deduplication is not performed.
45732
+ * <p>Identifier for deduplication. If a request with the same identifier has been sent within the past three days, an error is returned for the current request. The maximum length is 50 characters. If this is not specified or left empty, deduplication is not performed.</p>
45352
45733
  * @type {string || null}
45353
45734
  */
45354
45735
  this.SessionId = null;
45355
45736
 
45356
45737
  /**
45357
- * Reserved field, used when special purpose.
45738
+ * <p>Reserved field, used for special purpose.</p>
45358
45739
  * @type {string || null}
45359
45740
  */
45360
45741
  this.ExtInfo = null;
45361
45742
 
45362
45743
  /**
45363
- * Source context, used to pass through user request information. The [callback on upload completion](https://www.tencentcloud.com/document/product/266/7830?from_cn_redirect=1) will return the value of this field, up to 250 characters.
45744
+ * <p>Source context. This is used to pass through user request information. The <a href="/document/product/266/7830">upload completion callback</a> returns the value of this field. The maximum length is 250 characters.</p>
45364
45745
  * @type {string || null}
45365
45746
  */
45366
45747
  this.SourceContext = null;
45367
45748
 
45368
45749
  /**
45369
- * Media storage path, starting with /.
45370
- Only sub-apps in [FileID + Path mode](https://www.tencentcloud.com/document/product/266/126825?from_cn_redirect=1) can specify the storage path.
45750
+ * <p>Media storage path, starting with /. <br>Only sub-apps in <a href="https://www.tencentcloud.com/document/product/266/126825?from_cn_redirect=1">FileID + Path mode</a> can specify the storage path.</p>
45371
45751
  * @type {string || null}
45372
45752
  */
45373
45753
  this.MediaStoragePath = null;
@@ -46739,32 +47119,36 @@ class LiveRealTimeClipStreamInfo extends AbstractModel {
46739
47119
  }
46740
47120
 
46741
47121
  /**
46742
- * Control parameter of prohibited information detection in text task
47122
+ * Access authentication for Huawei Cloud OBS origin
46743
47123
  * @class
46744
47124
  */
46745
- class ProhibitedOcrReviewTemplateInfo extends AbstractModel {
47125
+ class HwPrivateAccess extends AbstractModel {
46746
47126
  constructor(){
46747
47127
  super();
46748
47128
 
46749
47129
  /**
46750
- * Switch of prohibited information detection in text task. Valid values:
46751
- <li>ON: enables prohibited information detection in text task;</li>
46752
- <li>OFF: disables prohibited information detection in text task.</li>
47130
+ * Huawei Cloud Object Storage back-to-origin authentication configuration switch, the value is: <li>on: on; </li> <li>off: off. </li>
46753
47131
  * @type {string || null}
46754
47132
  */
46755
47133
  this.Switch = null;
46756
47134
 
46757
47135
  /**
46758
- * Confidence score threshold for determining that something should be blocked. If this threshold is reached, VOD will suggest that the content be blocked. If this parameter is left empty, `100` will be used by default. Value range: 0-100
46759
- * @type {number || null}
47136
+ * Access ID
47137
+ * @type {string || null}
46760
47138
  */
46761
- this.BlockConfidence = null;
47139
+ this.AccessKey = null;
46762
47140
 
46763
47141
  /**
46764
- * Confidence score threshold for human review. If this threshold is reached, human review is needed. If this parameter is left empty, `75` will be used by default. Value range: 0-100
46765
- * @type {number || null}
47142
+ * Key
47143
+ * @type {string || null}
46766
47144
  */
46767
- this.ReviewConfidence = null;
47145
+ this.SecretKey = null;
47146
+
47147
+ /**
47148
+ * BucketName
47149
+ * @type {string || null}
47150
+ */
47151
+ this.Bucket = null;
46768
47152
 
46769
47153
  }
46770
47154
 
@@ -46776,8 +47160,9 @@ class ProhibitedOcrReviewTemplateInfo extends AbstractModel {
46776
47160
  return;
46777
47161
  }
46778
47162
  this.Switch = 'Switch' in params ? params.Switch : null;
46779
- this.BlockConfidence = 'BlockConfidence' in params ? params.BlockConfidence : null;
46780
- this.ReviewConfidence = 'ReviewConfidence' in params ? params.ReviewConfidence : null;
47163
+ this.AccessKey = 'AccessKey' in params ? params.AccessKey : null;
47164
+ this.SecretKey = 'SecretKey' in params ? params.SecretKey : null;
47165
+ this.Bucket = 'Bucket' in params ? params.Bucket : null;
46781
47166
 
46782
47167
  }
46783
47168
  }
@@ -49468,81 +49853,79 @@ class SimpleHlsClipRequest extends AbstractModel {
49468
49853
  super();
49469
49854
 
49470
49855
  /**
49471
- * Tencent Cloud VOD HLS video URL that needs to be cropped.
49856
+ * <p>Tencent Cloud Video on Demand (VOD) HLS video URL that needs to crop.</p>
49472
49857
  * @type {string || null}
49473
49858
  */
49474
49859
  this.Url = null;
49475
49860
 
49476
49861
  /**
49477
- * <b>On-demand [application](https://www.tencentcloud.com/document/product/266/14574?from_cn_redirect=1) ID. Customers who activate on-demand services from December 25, 2023 must fill this field with the app ID when accessing resources in on-demand applications (whether default or newly created).</b>
49862
+ * <p><b>Video-on-demand (VOD) <a href="/document/product/266/14574">application</a> ID. Customers who activate on-demand services from December 25, 2023 must fill this field with the app ID when accessing resources in on-demand applications (whether it is the default application or a newly created application).</b></p>
49478
49863
  * @type {number || null}
49479
49864
  */
49480
49865
  this.SubAppId = null;
49481
49866
 
49482
49867
  /**
49483
- * Crop start offset time, in seconds. Default 0, crop from the beginning of the video. Negative numbers indicate how many seconds from the end of the video to start cropping. For example, -10 means start trimming from 10 seconds before the end.
49868
+ * <p>Crop start offset time in seconds. Default is 0, crop from the beginning of the video. Negative numbers indicate how many seconds from the end of the video to start cropping. For example, -10 means start trimming from 10 seconds before the end.</p>
49484
49869
  * @type {number || null}
49485
49870
  */
49486
49871
  this.StartTimeOffset = null;
49487
49872
 
49488
49873
  /**
49489
- * Crop end offset time in seconds. Default is 0, which means crop to the end of the video. Negative numbers indicate how many seconds from the end of the video to end cropping. For example, -10 means end cropping at 10 seconds before the end.
49874
+ * <p>Crop end offset time in seconds. Default is 0, which means crop to the end of the video. Negative numbers indicate how many seconds from the end of the video to end trimming. For example, -10 means end trimming at 10 seconds before the end.</p>
49490
49875
  * @type {number || null}
49491
49876
  */
49492
49877
  this.EndTimeOffset = null;
49493
49878
 
49494
49879
  /**
49495
- * Whether solidified. 0: not solidified, 1: solidified. Default non-permanent.
49880
+ * <p>Whether solidified. 0 for default non-permanent, 1 for solidified. Default non-permanent.</p>
49496
49881
  * @type {number || null}
49497
49882
  */
49498
49883
  this.IsPersistence = null;
49499
49884
 
49500
49885
  /**
49501
- * Video storage expiry time after editing solidification. Format reference [ISO date format](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I). Enter "9999-12-31T23:59:59Z" to indicate the video never expires. After expiry, the media file and its related resources (transcoding result, sprites) will be permanently deleted. Valid at that time only when IsPersistence is 1. The default video editing never expires.
49886
+ * <p>Video storage expiry time after editing solidification. Format reference <a href="https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#I">ISO date format</a>. Enter "9999-12-31T23:59:59Z" to indicate the video never expires. After expiry, the media file and its related resources (transcoding result, sprites) will be permanently deleted. Valid at that time only when IsPersistence is 1. The default video editing never expires.</p>
49502
49887
  * @type {string || null}
49503
49888
  */
49504
49889
  this.ExpireTime = null;
49505
49890
 
49506
49891
  /**
49507
- * Post-editing Solidified Video On-demand Task Flow Processing. For details, see upload specified task flow (https://www.tencentcloud.com/document/product/266/9759?from_cn_redirect=1). Valid only when IsPersistence is 1.
49892
+ * <p>Post-editing Solidified Video On-demand Task Flow Processing. For details, see <a href="https://www.tencentcloud.com/document/product/266/9759?from_cn_redirect=1">upload specified task flow</a>. Valid only when IsPersistence is 1.</p>
49508
49893
  * @type {string || null}
49509
49894
  */
49510
49895
  this.Procedure = null;
49511
49896
 
49512
49897
  /**
49513
- * Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the [create category](https://www.tencentcloud.com/document/product/266/31772?from_cn_redirect=1) API.
49514
- <li>Default value: 0, indicating other categories.</li>
49515
- Valid when IsPersistence is 1.
49898
+ * <p>Category ID, used to categorize and manage media. You can create a category and obtain the category ID via the <a href="/document/product/266/31772">create category</a> API.</p><li>Default value: 0, indicating other categories.</li>Valid only when IsPersistence is 1.
49516
49899
  * @type {number || null}
49517
49900
  */
49518
49901
  this.ClassId = null;
49519
49902
 
49520
49903
  /**
49521
- * Source context, used to pass through user request information. The [callback on upload completion](https://www.tencentcloud.com/document/product/266/7830?from_cn_redirect=1) will return the value of this field, up to 250 characters. Valid when IsPersistence is 1.
49904
+ * <p>Source context. This is used to pass through user request information. The <a href="/document/product/266/7830">upload completion callback</a> returns the value of this field. The maximum length is 250 characters. Valid when IsPersistence is 1.</p>
49522
49905
  * @type {string || null}
49523
49906
  */
49524
49907
  this.SourceContext = null;
49525
49908
 
49526
49909
  /**
49527
- * Session context, used to pass through user request information. When specifying the Procedure parameter, the [task flow status change callback](https://www.tencentcloud.com/document/product/266/9636?from_cn_redirect=1) will return the value of this field, up to 1000 characters. Valid only when IsPersistence is 1.
49910
+ * <p>Session context. This is used to pass through user request information. When specifying the Procedure parameter, the <a href="/document/product/266/9636">task flow status change callback</a> returns the value of this field. The maximum length is 1000 characters. Valid only when IsPersistence is 1.</p>
49528
49911
  * @type {string || null}
49529
49912
  */
49530
49913
  this.SessionContext = null;
49531
49914
 
49532
49915
  /**
49533
- * Deprecated.
49916
+ * <p>Deprecated.</p>
49534
49917
  * @type {string || null}
49535
49918
  */
49536
49919
  this.Precision = null;
49537
49920
 
49538
49921
  /**
49539
- * Output video type. Valid values: <li>hls: Output hls file.</li>Default value hls.
49922
+ * <p>Output video type. Valid values: <li>hls: Output hls file.</li>Default value hls.</p>
49540
49923
  * @type {string || null}
49541
49924
  */
49542
49925
  this.OutputMediaType = null;
49543
49926
 
49544
49927
  /**
49545
- * Reserved field, used when special purpose. Example value: ""
49928
+ * <p>Reserved field, used for special purpose. Example value: ""</p>
49546
49929
  * @type {string || null}
49547
49930
  */
49548
49931
  this.ExtInfo = null;
@@ -50365,7 +50748,7 @@ class DescribeAigcUsageDataRequest extends AbstractModel {
50365
50748
  this.EndTime = null;
50366
50749
 
50367
50750
  /**
50368
- * <p>AIGC type.</p><p>Enumeration value:</p><ul><li>Video: video</li><li>Image: image</li><li>Text: text</li><li>Audio: audio</li><li>SceneAigcVideo: scenario-based video processing</li><li>SceneAigcImage: scenario-based image processing</li><li>SceneAigcTime: scenario-based processing times</li></ul>
50751
+ * <p>AIGC type.</p><p>Enumeration values:</p><ul><li>Video: Video</li><li>Image: Image</li><li>Text: Text</li><li>Audio: Audio</li><li>SceneAigcVideo: Scenario-based video processing</li><li>SceneAigcImage: Scenario-based image processing</li><li>SceneAigcTime: Scenario-based processing times</li><li>TextDetail: Text detailed record</li></ul>
50369
50752
  * @type {string || null}
50370
50753
  */
50371
50754
  this.AigcType = null;
@@ -50388,6 +50771,24 @@ class DescribeAigcUsageDataRequest extends AbstractModel {
50388
50771
  */
50389
50772
  this.APIKeys = null;
50390
50773
 
50774
+ /**
50775
+ * <p>Query cursor</p>
50776
+ * @type {string || null}
50777
+ */
50778
+ this.ScrollToken = null;
50779
+
50780
+ /**
50781
+ * <p>Size per page, maximum 200, it will be truncated to 200</p>
50782
+ * @type {number || null}
50783
+ */
50784
+ this.PageSize = null;
50785
+
50786
+ /**
50787
+ * <p>RequestId of the raw text. Valid at that time when AigcType is TextDetail.</p>
50788
+ * @type {string || null}
50789
+ */
50790
+ this.ReqId = null;
50791
+
50391
50792
  }
50392
50793
 
50393
50794
  /**
@@ -50403,6 +50804,9 @@ class DescribeAigcUsageDataRequest extends AbstractModel {
50403
50804
  this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
50404
50805
  this.APIKey = 'APIKey' in params ? params.APIKey : null;
50405
50806
  this.APIKeys = 'APIKeys' in params ? params.APIKeys : null;
50807
+ this.ScrollToken = 'ScrollToken' in params ? params.ScrollToken : null;
50808
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
50809
+ this.ReqId = 'ReqId' in params ? params.ReqId : null;
50406
50810
 
50407
50811
  }
50408
50812
  }
@@ -51997,11 +52401,17 @@ class DescribeAigcApiTokensResponse extends AbstractModel {
51997
52401
  super();
51998
52402
 
51999
52403
  /**
52000
- * API Token list.
52404
+ * <p>API Token list</p>
52001
52405
  * @type {Array.<string> || null}
52002
52406
  */
52003
52407
  this.ApiTokens = null;
52004
52408
 
52409
+ /**
52410
+ * <p>ExtInfo info, which corresponds one-to-one to the API Token list</p>
52411
+ * @type {Array.<string> || null}
52412
+ */
52413
+ this.ExtInfos = null;
52414
+
52005
52415
  /**
52006
52416
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
52007
52417
  * @type {string || null}
@@ -52018,6 +52428,7 @@ class DescribeAigcApiTokensResponse extends AbstractModel {
52018
52428
  return;
52019
52429
  }
52020
52430
  this.ApiTokens = 'ApiTokens' in params ? params.ApiTokens : null;
52431
+ this.ExtInfos = 'ExtInfos' in params ? params.ExtInfos : null;
52021
52432
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
52022
52433
 
52023
52434
  }
@@ -52427,6 +52838,34 @@ class ProhibitedOcrReviewTemplateInfoForUpdate extends AbstractModel {
52427
52838
  }
52428
52839
  }
52429
52840
 
52841
+ /**
52842
+ * AIGC video conversion figure parameter information.
52843
+ * @class
52844
+ */
52845
+ class AigcVideoRedrawTaskInfo extends AbstractModel {
52846
+ constructor(){
52847
+ super();
52848
+
52849
+ /**
52850
+ * <p>For description of style. Limited to 50 characters.</p>
52851
+ * @type {string || null}
52852
+ */
52853
+ this.Style = null;
52854
+
52855
+ }
52856
+
52857
+ /**
52858
+ * @private
52859
+ */
52860
+ deserialize(params) {
52861
+ if (!params) {
52862
+ return;
52863
+ }
52864
+ this.Style = 'Style' in params ? params.Style : null;
52865
+
52866
+ }
52867
+ }
52868
+
52430
52869
  /**
52431
52870
  * The output of a task to get file attributes.
52432
52871
  * @class
@@ -52613,6 +53052,57 @@ class DescribeReviewDetailsResponse extends AbstractModel {
52613
53052
  }
52614
53053
  }
52615
53054
 
53055
+ /**
53056
+ * Image beauty effect configuration.
53057
+ * @class
53058
+ */
53059
+ class ImageBeautyConfig extends AbstractModel {
53060
+ constructor(){
53061
+ super();
53062
+
53063
+ /**
53064
+ * <p>Beauty effect item.</p>
53065
+ * @type {Array.<BeautyEffectItem> || null}
53066
+ */
53067
+ this.BeautyEffectItems = null;
53068
+
53069
+ /**
53070
+ * <p>Beauty filter item.</p>
53071
+ * @type {Array.<BeautyFilterItem> || null}
53072
+ */
53073
+ this.BeautyFilterItems = null;
53074
+
53075
+ }
53076
+
53077
+ /**
53078
+ * @private
53079
+ */
53080
+ deserialize(params) {
53081
+ if (!params) {
53082
+ return;
53083
+ }
53084
+
53085
+ if (params.BeautyEffectItems) {
53086
+ this.BeautyEffectItems = new Array();
53087
+ for (let z in params.BeautyEffectItems) {
53088
+ let obj = new BeautyEffectItem();
53089
+ obj.deserialize(params.BeautyEffectItems[z]);
53090
+ this.BeautyEffectItems.push(obj);
53091
+ }
53092
+ }
53093
+
53094
+ if (params.BeautyFilterItems) {
53095
+ this.BeautyFilterItems = new Array();
53096
+ for (let z in params.BeautyFilterItems) {
53097
+ let obj = new BeautyFilterItem();
53098
+ obj.deserialize(params.BeautyFilterItems[z]);
53099
+ this.BeautyFilterItems.push(obj);
53100
+ }
53101
+ }
53102
+
53103
+ }
53104
+ }
53105
+
52616
53106
  /**
52617
53107
  * CreateTranscodeTemplate response structure.
52618
53108
  * @class
@@ -52890,6 +53380,34 @@ class CreateAIAnalysisTemplateRequest extends AbstractModel {
52890
53380
  }
52891
53381
  }
52892
53382
 
53383
+ /**
53384
+ * UpdateAigcApiToken response structure.
53385
+ * @class
53386
+ */
53387
+ class UpdateAigcApiTokenResponse extends AbstractModel {
53388
+ constructor(){
53389
+ super();
53390
+
53391
+ /**
53392
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
53393
+ * @type {string || null}
53394
+ */
53395
+ this.RequestId = null;
53396
+
53397
+ }
53398
+
53399
+ /**
53400
+ * @private
53401
+ */
53402
+ deserialize(params) {
53403
+ if (!params) {
53404
+ return;
53405
+ }
53406
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
53407
+
53408
+ }
53409
+ }
53410
+
52893
53411
  /**
52894
53412
  * Input parameters for intelligent recognition of terrorism content
52895
53413
  * @class
@@ -56281,6 +56799,55 @@ class DescribeRoundPlaysResponse extends AbstractModel {
56281
56799
  }
56282
56800
  }
56283
56801
 
56802
+ /**
56803
+ * UpdateAigcApiToken request structure.
56804
+ * @class
56805
+ */
56806
+ class UpdateAigcApiTokenRequest extends AbstractModel {
56807
+ constructor(){
56808
+ super();
56809
+
56810
+ /**
56811
+ * <p><b>Video-on-demand (VOD) <a href="/document/product/266/14574">application</a> ID. For customers who activate on-demand services from December 25, 2023, to access resources in on-demand applications (whether it is the default application or a newly created application), you must fill in this field with the application ID.</b></p>
56812
+ * @type {number || null}
56813
+ */
56814
+ this.SubAppId = null;
56815
+
56816
+ /**
56817
+ * <p>To refresh the Api Key</p>
56818
+ * @type {string || null}
56819
+ */
56820
+ this.ApiToken = null;
56821
+
56822
+ /**
56823
+ * <p>Merge (default, merges ExtInfo JSON by top-level key), Overwrite (directly overwrite)</p>
56824
+ * @type {string || null}
56825
+ */
56826
+ this.ActionType = null;
56827
+
56828
+ /**
56829
+ * <p>Extended information of the token</p>
56830
+ * @type {string || null}
56831
+ */
56832
+ this.ExtInfo = null;
56833
+
56834
+ }
56835
+
56836
+ /**
56837
+ * @private
56838
+ */
56839
+ deserialize(params) {
56840
+ if (!params) {
56841
+ return;
56842
+ }
56843
+ this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
56844
+ this.ApiToken = 'ApiToken' in params ? params.ApiToken : null;
56845
+ this.ActionType = 'ActionType' in params ? params.ActionType : null;
56846
+ this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
56847
+
56848
+ }
56849
+ }
56850
+
56284
56851
  /**
56285
56852
  * Operation such as image rotation and flipping
56286
56853
  * @class
@@ -57208,6 +57775,56 @@ class DeleteTranscodeTemplateResponse extends AbstractModel {
57208
57775
  }
57209
57776
  }
57210
57777
 
57778
+ /**
57779
+ * AIGC Text Detail
57780
+ * @class
57781
+ */
57782
+ class AigcTextDetail extends AbstractModel {
57783
+ constructor(){
57784
+ super();
57785
+
57786
+ /**
57787
+ * <p>Entries per page</p>
57788
+ * @type {number || null}
57789
+ */
57790
+ this.PageSize = null;
57791
+
57792
+ /**
57793
+ * <p>The scroll_token returned in response on the previous page is used to turn to the next page</p>
57794
+ * @type {string || null}
57795
+ */
57796
+ this.ScrollToken = null;
57797
+
57798
+ /**
57799
+ * <p>Raw data details</p>
57800
+ * @type {Array.<AigcTextDetailData> || null}
57801
+ */
57802
+ this.Data = null;
57803
+
57804
+ }
57805
+
57806
+ /**
57807
+ * @private
57808
+ */
57809
+ deserialize(params) {
57810
+ if (!params) {
57811
+ return;
57812
+ }
57813
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
57814
+ this.ScrollToken = 'ScrollToken' in params ? params.ScrollToken : null;
57815
+
57816
+ if (params.Data) {
57817
+ this.Data = new Array();
57818
+ for (let z in params.Data) {
57819
+ let obj = new AigcTextDetailData();
57820
+ obj.deserialize(params.Data[z]);
57821
+ this.Data.push(obj);
57822
+ }
57823
+ }
57824
+
57825
+ }
57826
+ }
57827
+
57211
57828
  /**
57212
57829
  * The video remaster parameters.
57213
57830
  * @class
@@ -59695,7 +60312,7 @@ class PullUploadResponse extends AbstractModel {
59695
60312
  super();
59696
60313
 
59697
60314
  /**
59698
- * Pull Upload Task ID. The status of the pull upload task can be queried through this ID.
60315
+ * <p>Pull upload video task ID. This can be used to query the task status.</p>
59699
60316
  * @type {string || null}
59700
60317
  */
59701
60318
  this.TaskId = null;
@@ -60370,6 +60987,139 @@ class AiReviewPoliticalOcrTaskOutput extends AbstractModel {
60370
60987
  }
60371
60988
  }
60372
60989
 
60990
+ /**
60991
+ * Aigc Text Detail Data
60992
+ * @class
60993
+ */
60994
+ class AigcTextDetailData extends AbstractModel {
60995
+ constructor(){
60996
+ super();
60997
+
60998
+ /**
60999
+ * <p>Request start time (RFC3339)</p>
61000
+ * @type {string || null}
61001
+ */
61002
+ this.Timestamp = null;
61003
+
61004
+ /**
61005
+ * <p>Gateway layer request ID</p>
61006
+ * @type {string || null}
61007
+ */
61008
+ this.ReqId = null;
61009
+
61010
+ /**
61011
+ * <p>Dialogue ID returned by the backend model</p>
61012
+ * @type {string || null}
61013
+ */
61014
+ this.ChatId = null;
61015
+
61016
+ /**
61017
+ * <p>HTTP status code returned to client</p>
61018
+ * @type {number || null}
61019
+ */
61020
+ this.StatusCode = null;
61021
+
61022
+ /**
61023
+ * <p>Model name</p>
61024
+ * @type {string || null}
61025
+ */
61026
+ this.Model = null;
61027
+
61028
+ /**
61029
+ * <p>Application ID</p>
61030
+ * @type {number || null}
61031
+ */
61032
+ this.SubAppId = null;
61033
+
61034
+ /**
61035
+ * <p>api_key after masking: first 8 digits + **** (return without modification when length ≤ 8)</p>
61036
+ * @type {string || null}
61037
+ */
61038
+ this.ApiKey = null;
61039
+
61040
+ /**
61041
+ * <p>Whether to return in streaming mode</p>
61042
+ * @type {boolean || null}
61043
+ */
61044
+ this.Stream = null;
61045
+
61046
+ /**
61047
+ * <p>Number of input tokens</p>
61048
+ * @type {number || null}
61049
+ */
61050
+ this.InputTokens = null;
61051
+
61052
+ /**
61053
+ * <p>Number of output tokens</p>
61054
+ * @type {number || null}
61055
+ */
61056
+ this.OutputTokens = null;
61057
+
61058
+ /**
61059
+ * <p>Number of tokens with prompt cache hit</p>
61060
+ * @type {number || null}
61061
+ */
61062
+ this.CacheInputTokens = null;
61063
+
61064
+ /**
61065
+ * <p>Total tokens</p>
61066
+ * @type {number || null}
61067
+ */
61068
+ this.TotalTokens = null;
61069
+
61070
+ /**
61071
+ * <p>tokens per second in the generation stage</p>
61072
+ * @type {number || null}
61073
+ */
61074
+ this.TPS = null;
61075
+
61076
+ /**
61077
+ * <p>Time To First Token</p><p>Measurement unit: seconds</p>
61078
+ * @type {number || null}
61079
+ */
61080
+ this.TTFT = null;
61081
+
61082
+ /**
61083
+ * <p>End-to-end total time</p><p>Unit: seconds</p>
61084
+ * @type {number || null}
61085
+ */
61086
+ this.Total = null;
61087
+
61088
+ /**
61089
+ * <p>Entry protocol:completions / responses / anthropic</p>
61090
+ * @type {string || null}
61091
+ */
61092
+ this.ApiType = null;
61093
+
61094
+ }
61095
+
61096
+ /**
61097
+ * @private
61098
+ */
61099
+ deserialize(params) {
61100
+ if (!params) {
61101
+ return;
61102
+ }
61103
+ this.Timestamp = 'Timestamp' in params ? params.Timestamp : null;
61104
+ this.ReqId = 'ReqId' in params ? params.ReqId : null;
61105
+ this.ChatId = 'ChatId' in params ? params.ChatId : null;
61106
+ this.StatusCode = 'StatusCode' in params ? params.StatusCode : null;
61107
+ this.Model = 'Model' in params ? params.Model : null;
61108
+ this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
61109
+ this.ApiKey = 'ApiKey' in params ? params.ApiKey : null;
61110
+ this.Stream = 'Stream' in params ? params.Stream : null;
61111
+ this.InputTokens = 'InputTokens' in params ? params.InputTokens : null;
61112
+ this.OutputTokens = 'OutputTokens' in params ? params.OutputTokens : null;
61113
+ this.CacheInputTokens = 'CacheInputTokens' in params ? params.CacheInputTokens : null;
61114
+ this.TotalTokens = 'TotalTokens' in params ? params.TotalTokens : null;
61115
+ this.TPS = 'TPS' in params ? params.TPS : null;
61116
+ this.TTFT = 'TTFT' in params ? params.TTFT : null;
61117
+ this.Total = 'Total' in params ? params.Total : null;
61118
+ this.ApiType = 'ApiType' in params ? params.ApiType : null;
61119
+
61120
+ }
61121
+ }
61122
+
60373
61123
  /**
60374
61124
  * The result of file deletion.
60375
61125
  * @class
@@ -61041,6 +61791,13 @@ class DescribeAigcUsageDataResponse extends AbstractModel {
61041
61791
  */
61042
61792
  this.AigcUsageDataSet = null;
61043
61793
 
61794
+ /**
61795
+ * <p>Detailed log</p>
61796
+ Note: This field may return null, indicating that no valid values can be obtained.
61797
+ * @type {AigcTextDetail || null}
61798
+ */
61799
+ this.AigcTextDetails = null;
61800
+
61044
61801
  /**
61045
61802
  * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
61046
61803
  * @type {string || null}
@@ -61065,6 +61822,12 @@ class DescribeAigcUsageDataResponse extends AbstractModel {
61065
61822
  this.AigcUsageDataSet.push(obj);
61066
61823
  }
61067
61824
  }
61825
+
61826
+ if (params.AigcTextDetails) {
61827
+ let obj = new AigcTextDetail();
61828
+ obj.deserialize(params.AigcTextDetails)
61829
+ this.AigcTextDetails = obj;
61830
+ }
61068
61831
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
61069
61832
 
61070
61833
  }
@@ -61537,6 +62300,48 @@ Default value: All, i.e., both default and custom object libraries will be used.
61537
62300
  }
61538
62301
  }
61539
62302
 
62303
+ /**
62304
+ * Beauty filter item.
62305
+ * @class
62306
+ */
62307
+ class BeautyFilterItem extends AbstractModel {
62308
+ constructor(){
62309
+ super();
62310
+
62311
+ /**
62312
+ * <p>Whether to enable filters.</p><p>Enumeration value:</p><ul><li>ON: On</li><li>OFF: Off</li></ul>
62313
+ * @type {string || null}
62314
+ */
62315
+ this.Switch = null;
62316
+
62317
+ /**
62318
+ * <p>Filter item.</p>
62319
+ * @type {string || null}
62320
+ */
62321
+ this.Type = null;
62322
+
62323
+ /**
62324
+ * <p>Filter strength.</p>
62325
+ * @type {number || null}
62326
+ */
62327
+ this.Value = null;
62328
+
62329
+ }
62330
+
62331
+ /**
62332
+ * @private
62333
+ */
62334
+ deserialize(params) {
62335
+ if (!params) {
62336
+ return;
62337
+ }
62338
+ this.Switch = 'Switch' in params ? params.Switch : null;
62339
+ this.Type = 'Type' in params ? params.Type : null;
62340
+ this.Value = 'Value' in params ? params.Value : null;
62341
+
62342
+ }
62343
+ }
62344
+
61540
62345
  /**
61541
62346
  * DescribeHeadTailTemplates response structure.
61542
62347
  * @class
@@ -61940,36 +62745,24 @@ class CreateAnimatedGraphicsTemplateResponse extends AbstractModel {
61940
62745
  }
61941
62746
 
61942
62747
  /**
61943
- * Access authentication for Huawei Cloud OBS origin
62748
+ * Usage amount for AIGC video tasks.
61944
62749
  * @class
61945
62750
  */
61946
- class HwPrivateAccess extends AbstractModel {
62751
+ class AigcVideoTaskUsage extends AbstractModel {
61947
62752
  constructor(){
61948
62753
  super();
61949
62754
 
61950
62755
  /**
61951
- * Huawei Cloud Object Storage back-to-origin authentication configuration switch, the value is: <li>on: on; </li> <li>off: off. </li>
61952
- * @type {string || null}
61953
- */
61954
- this.Switch = null;
61955
-
61956
- /**
61957
- * Access ID
61958
- * @type {string || null}
61959
- */
61960
- this.AccessKey = null;
61961
-
61962
- /**
61963
- * Key
61964
- * @type {string || null}
62756
+ * <p>Manually input the number of tokens.</p>
62757
+ * @type {number || null}
61965
62758
  */
61966
- this.SecretKey = null;
62759
+ this.InputTokens = null;
61967
62760
 
61968
62761
  /**
61969
- * BucketName
61970
- * @type {string || null}
62762
+ * <p>Number of tokens generated by thinking.</p>
62763
+ * @type {number || null}
61971
62764
  */
61972
- this.Bucket = null;
62765
+ this.ThoughtTokens = null;
61973
62766
 
61974
62767
  }
61975
62768
 
@@ -61980,10 +62773,8 @@ class HwPrivateAccess extends AbstractModel {
61980
62773
  if (!params) {
61981
62774
  return;
61982
62775
  }
61983
- this.Switch = 'Switch' in params ? params.Switch : null;
61984
- this.AccessKey = 'AccessKey' in params ? params.AccessKey : null;
61985
- this.SecretKey = 'SecretKey' in params ? params.SecretKey : null;
61986
- this.Bucket = 'Bucket' in params ? params.Bucket : null;
62776
+ this.InputTokens = 'InputTokens' in params ? params.InputTokens : null;
62777
+ this.ThoughtTokens = 'ThoughtTokens' in params ? params.ThoughtTokens : null;
61987
62778
 
61988
62779
  }
61989
62780
  }
@@ -64448,7 +65239,7 @@ module.exports = {
64448
65239
  AiReviewTaskPoliticalOcrResult: AiReviewTaskPoliticalOcrResult,
64449
65240
  QualityEnhanceTask: QualityEnhanceTask,
64450
65241
  AiSampleWord: AiSampleWord,
64451
- RuleCacheConfig: RuleCacheConfig,
65242
+ OverrideTranscodeParameter: OverrideTranscodeParameter,
64452
65243
  PoliticalOcrReviewTemplateInfo: PoliticalOcrReviewTemplateInfo,
64453
65244
  CreateImageSpriteTemplateRequest: CreateImageSpriteTemplateRequest,
64454
65245
  AigcAudioReferenceAudioInfo: AigcAudioReferenceAudioInfo,
@@ -64569,6 +65360,7 @@ module.exports = {
64569
65360
  LLMComprehendFaceRecognitionForUpdate: LLMComprehendFaceRecognitionForUpdate,
64570
65361
  DescribeEventConfigRequest: DescribeEventConfigRequest,
64571
65362
  MediaContentReviewOcrTextSegmentItem: MediaContentReviewOcrTextSegmentItem,
65363
+ OutputAudioStream: OutputAudioStream,
64572
65364
  ModifyLLMComprehendTemplateResponse: ModifyLLMComprehendTemplateResponse,
64573
65365
  DescribeAigcFaceInfoAsyncInput: DescribeAigcFaceInfoAsyncInput,
64574
65366
  AiAnalysisTaskClassificationOutput: AiAnalysisTaskClassificationOutput,
@@ -64754,6 +65546,7 @@ module.exports = {
64754
65546
  VideoTemplateInfo: VideoTemplateInfo,
64755
65547
  AigcVideoTask: AigcVideoTask,
64756
65548
  ModifyCDNDomainConfigResponse: ModifyCDNDomainConfigResponse,
65549
+ RuleCacheConfig: RuleCacheConfig,
64757
65550
  AiReviewTaskPornOcrResult: AiReviewTaskPornOcrResult,
64758
65551
  ModifyContentReviewTemplateResponse: ModifyContentReviewTemplateResponse,
64759
65552
  DescribeWatermarkTemplatesRequest: DescribeWatermarkTemplatesRequest,
@@ -64817,15 +65610,17 @@ module.exports = {
64817
65610
  CreateBlindWatermarkTemplateResponse: CreateBlindWatermarkTemplateResponse,
64818
65611
  AiRecognitionTaskOcrFullTextResult: AiRecognitionTaskOcrFullTextResult,
64819
65612
  DescribeCLSTopicsResponse: DescribeCLSTopicsResponse,
65613
+ ProhibitedOcrReviewTemplateInfo: ProhibitedOcrReviewTemplateInfo,
64820
65614
  MPSSubTaskResult: MPSSubTaskResult,
64821
65615
  HeadTailTemplate: HeadTailTemplate,
64822
65616
  ImportMediaKnowledgeResponse: ImportMediaKnowledgeResponse,
64823
65617
  RestoreMediaResponse: RestoreMediaResponse,
64824
65618
  ImageUnderstandingItem: ImageUnderstandingItem,
64825
- CustomVoiceInfo: CustomVoiceInfo,
65619
+ AigcFaceInputFileInfo: AigcFaceInputFileInfo,
64826
65620
  RuleCache: RuleCache,
64827
65621
  CreateAigcAudioCloneOutput: CreateAigcAudioCloneOutput,
64828
65622
  ModifyWordSampleResponse: ModifyWordSampleResponse,
65623
+ KnowledgeAnalysisInfo: KnowledgeAnalysisInfo,
64829
65624
  ModifyWatermarkTemplateResponse: ModifyWatermarkTemplateResponse,
64830
65625
  EnhanceMediaByTemplateResponse: EnhanceMediaByTemplateResponse,
64831
65626
  CreateJustInTimeTranscodeTemplateRequest: CreateJustInTimeTranscodeTemplateRequest,
@@ -64866,7 +65661,7 @@ module.exports = {
64866
65661
  PoliticalImageResult: PoliticalImageResult,
64867
65662
  AiSamplePerson: AiSamplePerson,
64868
65663
  MediaAdaptiveDynamicStreamingInfo: MediaAdaptiveDynamicStreamingInfo,
64869
- AigcFaceInputFileInfo: AigcFaceInputFileInfo,
65664
+ CustomVoiceInfo: CustomVoiceInfo,
64870
65665
  DescribeDailyPlayStatFileListRequest: DescribeDailyPlayStatFileListRequest,
64871
65666
  AiReviewTaskTerrorismResult: AiReviewTaskTerrorismResult,
64872
65667
  DescribeSuperPlayerConfigsResponse: DescribeSuperPlayerConfigsResponse,
@@ -64915,6 +65710,7 @@ module.exports = {
64915
65710
  HeadTailConfigureInfoForUpdate: HeadTailConfigureInfoForUpdate,
64916
65711
  ImageScale: ImageScale,
64917
65712
  ModifyJustInTimeTranscodeTemplateResponse: ModifyJustInTimeTranscodeTemplateResponse,
65713
+ BeautyEffectItem: BeautyEffectItem,
64918
65714
  MediaVideoStreamItem: MediaVideoStreamItem,
64919
65715
  ExecuteFunctionResponse: ExecuteFunctionResponse,
64920
65716
  TranscodePlayInfo2017: TranscodePlayInfo2017,
@@ -65060,6 +65856,7 @@ module.exports = {
65060
65856
  AiReviewTaskPoliticalAsrResult: AiReviewTaskPoliticalAsrResult,
65061
65857
  CreateProcessImageAsyncTemplateResponse: CreateProcessImageAsyncTemplateResponse,
65062
65858
  TrtcRecordInfo: TrtcRecordInfo,
65859
+ AiTryOnConfig: AiTryOnConfig,
65063
65860
  DescribeReviewDetailsRequest: DescribeReviewDetailsRequest,
65064
65861
  ModifySubAppIdInfoResponse: ModifySubAppIdInfoResponse,
65065
65862
  AiReviewProhibitedAsrTaskInput: AiReviewProhibitedAsrTaskInput,
@@ -65126,7 +65923,7 @@ module.exports = {
65126
65923
  TerrorismConfigureInfo: TerrorismConfigureInfo,
65127
65924
  ExtractTraceWatermarkTaskInput: ExtractTraceWatermarkTaskInput,
65128
65925
  AiReviewPoliticalAsrTaskOutput: AiReviewPoliticalAsrTaskOutput,
65129
- OutputAudioStream: OutputAudioStream,
65926
+ KnowledgeAnalysisResult: KnowledgeAnalysisResult,
65130
65927
  ModifyClassRequest: ModifyClassRequest,
65131
65928
  QRCodeConfigureInfoForUpdate: QRCodeConfigureInfoForUpdate,
65132
65929
  SceneAigcImageTaskInputFileInfo: SceneAigcImageTaskInputFileInfo,
@@ -65178,7 +65975,7 @@ module.exports = {
65178
65975
  AdaptiveDynamicStreamingInfoItem: AdaptiveDynamicStreamingInfoItem,
65179
65976
  CreateMPSTemplateRequest: CreateMPSTemplateRequest,
65180
65977
  LiveRealTimeClipStreamInfo: LiveRealTimeClipStreamInfo,
65181
- ProhibitedOcrReviewTemplateInfo: ProhibitedOcrReviewTemplateInfo,
65978
+ HwPrivateAccess: HwPrivateAccess,
65182
65979
  DeleteClassResponse: DeleteClassResponse,
65183
65980
  MaxAge: MaxAge,
65184
65981
  ModifyTranscodeTemplateResponse: ModifyTranscodeTemplateResponse,
@@ -65266,15 +66063,18 @@ module.exports = {
65266
66063
  SnapshotByTimeOffsetTemplate: SnapshotByTimeOffsetTemplate,
65267
66064
  DeleteSnapshotByTimeOffsetTemplateResponse: DeleteSnapshotByTimeOffsetTemplateResponse,
65268
66065
  ProhibitedOcrReviewTemplateInfoForUpdate: ProhibitedOcrReviewTemplateInfoForUpdate,
66066
+ AigcVideoRedrawTaskInfo: AigcVideoRedrawTaskInfo,
65269
66067
  DescribeFileAttributesTaskOutput: DescribeFileAttributesTaskOutput,
65270
66068
  DescribeTasksRequest: DescribeTasksRequest,
65271
66069
  DescribeReviewDetailsResponse: DescribeReviewDetailsResponse,
66070
+ ImageBeautyConfig: ImageBeautyConfig,
65272
66071
  CreateTranscodeTemplateResponse: CreateTranscodeTemplateResponse,
65273
66072
  AudioDenoiseInfo: AudioDenoiseInfo,
65274
66073
  AiRecognitionTaskAsrWordsResultInput: AiRecognitionTaskAsrWordsResultInput,
65275
66074
  PornAsrReviewTemplateInfoForUpdate: PornAsrReviewTemplateInfoForUpdate,
65276
66075
  ModifySubAppIdStatusResponse: ModifySubAppIdStatusResponse,
65277
66076
  CreateAIAnalysisTemplateRequest: CreateAIAnalysisTemplateRequest,
66077
+ UpdateAigcApiTokenResponse: UpdateAigcApiTokenResponse,
65278
66078
  AiReviewTerrorismTaskInput: AiReviewTerrorismTaskInput,
65279
66079
  Quic: Quic,
65280
66080
  ComplexAdaptiveDynamicStreamingTaskStreamPara: ComplexAdaptiveDynamicStreamingTaskStreamPara,
@@ -65330,6 +66130,7 @@ module.exports = {
65330
66130
  MosaicConfigureInfoForUpdate: MosaicConfigureInfoForUpdate,
65331
66131
  DescribeWatermarkTemplatesResponse: DescribeWatermarkTemplatesResponse,
65332
66132
  DescribeRoundPlaysResponse: DescribeRoundPlaysResponse,
66133
+ UpdateAigcApiTokenRequest: UpdateAigcApiTokenRequest,
65333
66134
  ImageTransform: ImageTransform,
65334
66135
  CreateAnimatedGraphicsTemplateRequest: CreateAnimatedGraphicsTemplateRequest,
65335
66136
  AigcVideoRedrawTaskOutput: AigcVideoRedrawTaskOutput,
@@ -65346,6 +66147,7 @@ module.exports = {
65346
66147
  VideoDenoiseInfo: VideoDenoiseInfo,
65347
66148
  DescribeLicenseUsageDataRequest: DescribeLicenseUsageDataRequest,
65348
66149
  DeleteTranscodeTemplateResponse: DeleteTranscodeTemplateResponse,
66150
+ AigcTextDetail: AigcTextDetail,
65349
66151
  RebuildVideoInfo: RebuildVideoInfo,
65350
66152
  MediaTranscodeItem: MediaTranscodeItem,
65351
66153
  CLSLogsetInfo: CLSLogsetInfo,
@@ -65392,6 +66194,7 @@ module.exports = {
65392
66194
  PornImgReviewTemplateInfo: PornImgReviewTemplateInfo,
65393
66195
  QualityInspectTemplateItem: QualityInspectTemplateItem,
65394
66196
  AiReviewPoliticalOcrTaskOutput: AiReviewPoliticalOcrTaskOutput,
66197
+ AigcTextDetailData: AigcTextDetailData,
65395
66198
  FileDeleteResultItem: FileDeleteResultItem,
65396
66199
  CommitUploadRequest: CommitUploadRequest,
65397
66200
  WatermarkCycleConfigForUpdate: WatermarkCycleConfigForUpdate,
@@ -65413,6 +66216,7 @@ module.exports = {
65413
66216
  SampleSnapshotTaskInput: SampleSnapshotTaskInput,
65414
66217
  ReviewImageRequest: ReviewImageRequest,
65415
66218
  ObjectConfigureInfo: ObjectConfigureInfo,
66219
+ BeautyFilterItem: BeautyFilterItem,
65416
66220
  DescribeHeadTailTemplatesResponse: DescribeHeadTailTemplatesResponse,
65417
66221
  HandleCurrentPlaylistRequest: HandleCurrentPlaylistRequest,
65418
66222
  RebuildMediaByTemplateResponse: RebuildMediaByTemplateResponse,
@@ -65421,7 +66225,7 @@ module.exports = {
65421
66225
  LLMComprehendAsr: LLMComprehendAsr,
65422
66226
  SceneAigcImageTaskInput: SceneAigcImageTaskInput,
65423
66227
  CreateAnimatedGraphicsTemplateResponse: CreateAnimatedGraphicsTemplateResponse,
65424
- HwPrivateAccess: HwPrivateAccess,
66228
+ AigcVideoTaskUsage: AigcVideoTaskUsage,
65425
66229
  AigcVideoTaskInput: AigcVideoTaskInput,
65426
66230
  ComplexAdaptiveDynamicStreamingTaskInput: ComplexAdaptiveDynamicStreamingTaskInput,
65427
66231
  AudioEnhanceConfig: AudioEnhanceConfig,