tencentcloud-sdk-nodejs-intl-en 3.0.1387 → 3.0.1388
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.
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cwp/v20180228/models.js +1 -1
- package/tencentcloud/monitor/v20180724/models.js +291 -0
- package/tencentcloud/monitor/v20180724/monitor_client.js +58 -0
- package/tencentcloud/trtc/v20190722/models.js +17 -50
- package/tencentcloud/vod/v20180717/models.js +495 -107
- package/tencentcloud/vod/v20180717/vod_client.js +78 -17
|
@@ -6822,6 +6822,36 @@ Default value: 1.
|
|
|
6822
6822
|
}
|
|
6823
6823
|
}
|
|
6824
6824
|
|
|
6825
|
+
/**
|
|
6826
|
+
* Control parameter of video splitting recognition task
|
|
6827
|
+
* @class
|
|
6828
|
+
*/
|
|
6829
|
+
class SegmentConfigureInfoForUpdate extends AbstractModel {
|
|
6830
|
+
constructor(){
|
|
6831
|
+
super();
|
|
6832
|
+
|
|
6833
|
+
/**
|
|
6834
|
+
* Switch of video splitting recognition task. Valid values:
|
|
6835
|
+
<li>ON: enables intelligent video splitting recognition task;</li>
|
|
6836
|
+
<li>OFF: disables intelligent video splitting recognition task.</li>
|
|
6837
|
+
* @type {string || null}
|
|
6838
|
+
*/
|
|
6839
|
+
this.Switch = null;
|
|
6840
|
+
|
|
6841
|
+
}
|
|
6842
|
+
|
|
6843
|
+
/**
|
|
6844
|
+
* @private
|
|
6845
|
+
*/
|
|
6846
|
+
deserialize(params) {
|
|
6847
|
+
if (!params) {
|
|
6848
|
+
return;
|
|
6849
|
+
}
|
|
6850
|
+
this.Switch = 'Switch' in params ? params.Switch : null;
|
|
6851
|
+
|
|
6852
|
+
}
|
|
6853
|
+
}
|
|
6854
|
+
|
|
6825
6855
|
/**
|
|
6826
6856
|
* Control parameters for video quality evaluation.
|
|
6827
6857
|
* @class
|
|
@@ -9239,6 +9269,34 @@ class ModifyMediaStorageClassResponse extends AbstractModel {
|
|
|
9239
9269
|
}
|
|
9240
9270
|
}
|
|
9241
9271
|
|
|
9272
|
+
/**
|
|
9273
|
+
* CreateAigcQuota response structure.
|
|
9274
|
+
* @class
|
|
9275
|
+
*/
|
|
9276
|
+
class CreateAigcQuotaResponse extends AbstractModel {
|
|
9277
|
+
constructor(){
|
|
9278
|
+
super();
|
|
9279
|
+
|
|
9280
|
+
/**
|
|
9281
|
+
* 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.
|
|
9282
|
+
* @type {string || null}
|
|
9283
|
+
*/
|
|
9284
|
+
this.RequestId = null;
|
|
9285
|
+
|
|
9286
|
+
}
|
|
9287
|
+
|
|
9288
|
+
/**
|
|
9289
|
+
* @private
|
|
9290
|
+
*/
|
|
9291
|
+
deserialize(params) {
|
|
9292
|
+
if (!params) {
|
|
9293
|
+
return;
|
|
9294
|
+
}
|
|
9295
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9296
|
+
|
|
9297
|
+
}
|
|
9298
|
+
}
|
|
9299
|
+
|
|
9242
9300
|
/**
|
|
9243
9301
|
* DescribeProcedureTemplates request structure.
|
|
9244
9302
|
* @class
|
|
@@ -9635,24 +9693,30 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
9635
9693
|
}
|
|
9636
9694
|
|
|
9637
9695
|
/**
|
|
9638
|
-
*
|
|
9696
|
+
* DeleteAigcQuota request structure.
|
|
9639
9697
|
* @class
|
|
9640
9698
|
*/
|
|
9641
|
-
class
|
|
9699
|
+
class DeleteAigcQuotaRequest extends AbstractModel {
|
|
9642
9700
|
constructor(){
|
|
9643
9701
|
super();
|
|
9644
9702
|
|
|
9645
9703
|
/**
|
|
9646
|
-
* <p>
|
|
9647
|
-
* @type {
|
|
9704
|
+
* <p><b>VOD <a href="/document/product/266/14574?from_cn_redirect=1">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 default or newly created).</b></p>
|
|
9705
|
+
* @type {number || null}
|
|
9648
9706
|
*/
|
|
9649
|
-
this.
|
|
9707
|
+
this.SubAppId = null;
|
|
9650
9708
|
|
|
9651
9709
|
/**
|
|
9652
|
-
*
|
|
9710
|
+
* <p>Quota type</p><p>Enumeration value:</p><ul><li>Image: AIGC image generation task</li><li>Video: AIGC video generation task</li><li>Text: AIGC text generation task</li></ul>
|
|
9653
9711
|
* @type {string || null}
|
|
9654
9712
|
*/
|
|
9655
|
-
this.
|
|
9713
|
+
this.QuotaType = null;
|
|
9714
|
+
|
|
9715
|
+
/**
|
|
9716
|
+
* <p>Valid only when QuotaLimit=Text, used to select ApiToken for quota limit.</p>
|
|
9717
|
+
* @type {string || null}
|
|
9718
|
+
*/
|
|
9719
|
+
this.ApiToken = null;
|
|
9656
9720
|
|
|
9657
9721
|
}
|
|
9658
9722
|
|
|
@@ -9663,16 +9727,9 @@ class DescribeAigcUsageDataResponse extends AbstractModel {
|
|
|
9663
9727
|
if (!params) {
|
|
9664
9728
|
return;
|
|
9665
9729
|
}
|
|
9666
|
-
|
|
9667
|
-
|
|
9668
|
-
|
|
9669
|
-
for (let z in params.AigcUsageDataSet) {
|
|
9670
|
-
let obj = new AigcUsageDataItem();
|
|
9671
|
-
obj.deserialize(params.AigcUsageDataSet[z]);
|
|
9672
|
-
this.AigcUsageDataSet.push(obj);
|
|
9673
|
-
}
|
|
9674
|
-
}
|
|
9675
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9730
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
9731
|
+
this.QuotaType = 'QuotaType' in params ? params.QuotaType : null;
|
|
9732
|
+
this.ApiToken = 'ApiToken' in params ? params.ApiToken : null;
|
|
9676
9733
|
|
|
9677
9734
|
}
|
|
9678
9735
|
}
|
|
@@ -13795,6 +13852,42 @@ class SplitMediaTaskConfig extends AbstractModel {
|
|
|
13795
13852
|
}
|
|
13796
13853
|
}
|
|
13797
13854
|
|
|
13855
|
+
/**
|
|
13856
|
+
* TESHD parameter configuration.
|
|
13857
|
+
* @class
|
|
13858
|
+
*/
|
|
13859
|
+
class TEHDConfig extends AbstractModel {
|
|
13860
|
+
constructor(){
|
|
13861
|
+
super();
|
|
13862
|
+
|
|
13863
|
+
/**
|
|
13864
|
+
* TESHD transcoding type. Valid values: <li>TEHD-100</li> <li>OFF (default)</li>
|
|
13865
|
+
* @type {string || null}
|
|
13866
|
+
*/
|
|
13867
|
+
this.Type = null;
|
|
13868
|
+
|
|
13869
|
+
/**
|
|
13870
|
+
* Maximum video bitrate. Valid at that time when Type is specified as top speed Codec.
|
|
13871
|
+
Leave it blank or set it to 0 to let VOD automatically set the bitrate cap.
|
|
13872
|
+
* @type {number || null}
|
|
13873
|
+
*/
|
|
13874
|
+
this.MaxVideoBitrate = null;
|
|
13875
|
+
|
|
13876
|
+
}
|
|
13877
|
+
|
|
13878
|
+
/**
|
|
13879
|
+
* @private
|
|
13880
|
+
*/
|
|
13881
|
+
deserialize(params) {
|
|
13882
|
+
if (!params) {
|
|
13883
|
+
return;
|
|
13884
|
+
}
|
|
13885
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
13886
|
+
this.MaxVideoBitrate = 'MaxVideoBitrate' in params ? params.MaxVideoBitrate : null;
|
|
13887
|
+
|
|
13888
|
+
}
|
|
13889
|
+
}
|
|
13890
|
+
|
|
13798
13891
|
/**
|
|
13799
13892
|
* Information of a playback statistics file
|
|
13800
13893
|
* @class
|
|
@@ -19773,6 +19866,34 @@ class DeleteProcedureTemplateResponse extends AbstractModel {
|
|
|
19773
19866
|
}
|
|
19774
19867
|
}
|
|
19775
19868
|
|
|
19869
|
+
/**
|
|
19870
|
+
* ModifyAigcQuota response structure.
|
|
19871
|
+
* @class
|
|
19872
|
+
*/
|
|
19873
|
+
class ModifyAigcQuotaResponse extends AbstractModel {
|
|
19874
|
+
constructor(){
|
|
19875
|
+
super();
|
|
19876
|
+
|
|
19877
|
+
/**
|
|
19878
|
+
* 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.
|
|
19879
|
+
* @type {string || null}
|
|
19880
|
+
*/
|
|
19881
|
+
this.RequestId = null;
|
|
19882
|
+
|
|
19883
|
+
}
|
|
19884
|
+
|
|
19885
|
+
/**
|
|
19886
|
+
* @private
|
|
19887
|
+
*/
|
|
19888
|
+
deserialize(params) {
|
|
19889
|
+
if (!params) {
|
|
19890
|
+
return;
|
|
19891
|
+
}
|
|
19892
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
19893
|
+
|
|
19894
|
+
}
|
|
19895
|
+
}
|
|
19896
|
+
|
|
19776
19897
|
/**
|
|
19777
19898
|
* DescribeReviewTemplates response structure.
|
|
19778
19899
|
* @class
|
|
@@ -22623,20 +22744,73 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
22623
22744
|
}
|
|
22624
22745
|
|
|
22625
22746
|
/**
|
|
22626
|
-
*
|
|
22747
|
+
* DescribeMediaProcessUsageData request structure.
|
|
22627
22748
|
* @class
|
|
22628
22749
|
*/
|
|
22629
|
-
class
|
|
22750
|
+
class DescribeMediaProcessUsageDataRequest extends AbstractModel {
|
|
22630
22751
|
constructor(){
|
|
22631
22752
|
super();
|
|
22632
22753
|
|
|
22633
22754
|
/**
|
|
22634
|
-
*
|
|
22635
|
-
<li>ON: enables intelligent video splitting recognition task;</li>
|
|
22636
|
-
<li>OFF: disables intelligent video splitting recognition task.</li>
|
|
22755
|
+
* Start date. Use the [ISO date format](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#52).
|
|
22637
22756
|
* @type {string || null}
|
|
22638
22757
|
*/
|
|
22639
|
-
this.
|
|
22758
|
+
this.StartTime = null;
|
|
22759
|
+
|
|
22760
|
+
/**
|
|
22761
|
+
* End date, which must be greater than or equal to the start date. Use the [ISO date format](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#52).
|
|
22762
|
+
* @type {string || null}
|
|
22763
|
+
*/
|
|
22764
|
+
this.EndTime = null;
|
|
22765
|
+
|
|
22766
|
+
/**
|
|
22767
|
+
* <b>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>
|
|
22768
|
+
* @type {number || null}
|
|
22769
|
+
*/
|
|
22770
|
+
this.SubAppId = null;
|
|
22771
|
+
|
|
22772
|
+
/**
|
|
22773
|
+
* Query video processing task type. Currently supported task types include:
|
|
22774
|
+
<li>Transcoding: standard transcoding.</li>
|
|
22775
|
+
<li>Transcoding-TESHD: TSC transcoding</li>
|
|
22776
|
+
<li>Editing: video editing</li>
|
|
22777
|
+
<li>Editing-TESHD: Extremely fast high-definition video editing</li>
|
|
22778
|
+
<li>AdaptiveBitrateStreaming: adaptive bitrate streaming</li>
|
|
22779
|
+
<li>ContentAudit: content moderation</li>
|
|
22780
|
+
<li>ContentRecognition: content recognition</li>
|
|
22781
|
+
<li> RemoveWatermark: Remove watermark</li>
|
|
22782
|
+
<li>ExtractTraceWatermark: extract watermark</li>
|
|
22783
|
+
<li> AddTraceWatermark: Add watermark</li>
|
|
22784
|
+
<li> RebuildMedia: Audio and video quality revival</li>
|
|
22785
|
+
<li>QualityInspect: audio and video quality inspection</li>
|
|
22786
|
+
<li>VideoHighlight: Video intelligent highlights</li>
|
|
22787
|
+
<li>VideoTag: video intelligent tag</li>
|
|
22788
|
+
<li>VideoClassification: video intelligent classification</li>
|
|
22789
|
+
<li>VideoCover: video intelligent cover</li>
|
|
22790
|
+
<li>VideoSegment: video intelligent splitting</li>
|
|
22791
|
+
<li>VideoProduce: video production</li>
|
|
22792
|
+
<li>MediaCast: media forwarding</li>
|
|
22793
|
+
<li>Transcode: Transcode, including standard transcoding, top speed Codec, and video editing (This is not recommended)</li>
|
|
22794
|
+
<li>VoiceTranslation: speech translation</li>
|
|
22795
|
+
<li>JITTranscoding: JIT transcoding.</li>
|
|
22796
|
+
<li>VideoSnapshot: video screenshot.</li>
|
|
22797
|
+
<li>JITEncryption: Real-time encryption</li>
|
|
22798
|
+
<li>MediaEnhancement: audio and video enhancement</li>
|
|
22799
|
+
<li>ImageCompression: image compression</li>
|
|
22800
|
+
<li>ImageEnhancement: image enhancement</li>
|
|
22801
|
+
<li>ImageSuperResolution: image super resolution</li>
|
|
22802
|
+
<li>ImageAdvanceCompression: image advanced compression</li>
|
|
22803
|
+
<li>ImageUnderstanding: image understanding</li>
|
|
22804
|
+
<li>AddTraceWatermark: Add a traceable watermark</li>
|
|
22805
|
+
<li>AddBlindWatermark: Add blind watermark</li>
|
|
22806
|
+
<li>AddNagraWatermark: Add NAGRA digital watermark</li>
|
|
22807
|
+
<li>ExtractTraceWatermark: extract traceability watermark</li>
|
|
22808
|
+
<li>ExtractBlindWatermark: extract a blind watermark</li>
|
|
22809
|
+
<li>ExtractNagraWatermark: Extract NAGRA digital watermark</li>
|
|
22810
|
+
|
|
22811
|
+
* @type {string || null}
|
|
22812
|
+
*/
|
|
22813
|
+
this.Type = null;
|
|
22640
22814
|
|
|
22641
22815
|
}
|
|
22642
22816
|
|
|
@@ -22647,7 +22821,10 @@ class SegmentConfigureInfoForUpdate extends AbstractModel {
|
|
|
22647
22821
|
if (!params) {
|
|
22648
22822
|
return;
|
|
22649
22823
|
}
|
|
22650
|
-
this.
|
|
22824
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
22825
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
22826
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
22827
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
22651
22828
|
|
|
22652
22829
|
}
|
|
22653
22830
|
}
|
|
@@ -23028,6 +23205,62 @@ class LiveRecordInfo extends AbstractModel {
|
|
|
23028
23205
|
}
|
|
23029
23206
|
}
|
|
23030
23207
|
|
|
23208
|
+
/**
|
|
23209
|
+
* DescribeAigcQuotas request structure.
|
|
23210
|
+
* @class
|
|
23211
|
+
*/
|
|
23212
|
+
class DescribeAigcQuotasRequest extends AbstractModel {
|
|
23213
|
+
constructor(){
|
|
23214
|
+
super();
|
|
23215
|
+
|
|
23216
|
+
/**
|
|
23217
|
+
* <p><b>VOD <a href="/document/product/266/14574?from_cn_redirect=1">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 default or newly created).</b></p>
|
|
23218
|
+
* @type {number || null}
|
|
23219
|
+
*/
|
|
23220
|
+
this.SubAppId = null;
|
|
23221
|
+
|
|
23222
|
+
/**
|
|
23223
|
+
* <p>Quota type</p><p>Enumeration value:</p><ul><li>Image: AIGC image generation task</li><li>Video: AIGC video generation task</li><li>Text: AIGC text generation task</li></ul>
|
|
23224
|
+
* @type {string || null}
|
|
23225
|
+
*/
|
|
23226
|
+
this.QuotaType = null;
|
|
23227
|
+
|
|
23228
|
+
/**
|
|
23229
|
+
* <p>Valid only when QuotaLimit=Text, used to select the ApiToken that needs quota limit</p>
|
|
23230
|
+
* @type {string || null}
|
|
23231
|
+
*/
|
|
23232
|
+
this.ApiToken = null;
|
|
23233
|
+
|
|
23234
|
+
/**
|
|
23235
|
+
* <p>Number of records returned in pages, displaying entries from Offset to Offset+Limit-1.</p><p>Value ranges from 1 to 100.</p><p>Default value: 10.</p>
|
|
23236
|
+
* @type {number || null}
|
|
23237
|
+
*/
|
|
23238
|
+
this.Limit = null;
|
|
23239
|
+
|
|
23240
|
+
/**
|
|
23241
|
+
* <p>Starting offset amount for pagination return. Default value: 0. Returns entries from Offset to Offset + Limit - 1.</p><p>Default value: 0</p>
|
|
23242
|
+
* @type {number || null}
|
|
23243
|
+
*/
|
|
23244
|
+
this.Offset = null;
|
|
23245
|
+
|
|
23246
|
+
}
|
|
23247
|
+
|
|
23248
|
+
/**
|
|
23249
|
+
* @private
|
|
23250
|
+
*/
|
|
23251
|
+
deserialize(params) {
|
|
23252
|
+
if (!params) {
|
|
23253
|
+
return;
|
|
23254
|
+
}
|
|
23255
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
23256
|
+
this.QuotaType = 'QuotaType' in params ? params.QuotaType : null;
|
|
23257
|
+
this.ApiToken = 'ApiToken' in params ? params.ApiToken : null;
|
|
23258
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
23259
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
23260
|
+
|
|
23261
|
+
}
|
|
23262
|
+
}
|
|
23263
|
+
|
|
23031
23264
|
/**
|
|
23032
23265
|
* Split video segment.
|
|
23033
23266
|
* @class
|
|
@@ -26687,6 +26920,55 @@ class AiRecognitionTaskAsrWordsResultOutput extends AbstractModel {
|
|
|
26687
26920
|
}
|
|
26688
26921
|
}
|
|
26689
26922
|
|
|
26923
|
+
/**
|
|
26924
|
+
* CreateAigcQuota request structure.
|
|
26925
|
+
* @class
|
|
26926
|
+
*/
|
|
26927
|
+
class CreateAigcQuotaRequest extends AbstractModel {
|
|
26928
|
+
constructor(){
|
|
26929
|
+
super();
|
|
26930
|
+
|
|
26931
|
+
/**
|
|
26932
|
+
* <p><b>VOD <a href="/document/product/266/14574?from_cn_redirect=1">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 default or newly created).</b></p>
|
|
26933
|
+
* @type {number || null}
|
|
26934
|
+
*/
|
|
26935
|
+
this.SubAppId = null;
|
|
26936
|
+
|
|
26937
|
+
/**
|
|
26938
|
+
* <p>Quota type</p><p>Enumeration value:</p><ul><li>Image: AIGC image generation task</li><li>Video: AIGC video generation task</li><li>Text: AIGC text generation task</li></ul>
|
|
26939
|
+
* @type {string || null}
|
|
26940
|
+
*/
|
|
26941
|
+
this.QuotaType = null;
|
|
26942
|
+
|
|
26943
|
+
/**
|
|
26944
|
+
* <p>Number of task quotas</p><p>Unit:</p><ul><li>When QuotaLimit=Image, unit: piece</li><li>When QuotaLimit=Video, unit: seconds</li><li>When QuotaLimit=Text, unit: token</li></ul>
|
|
26945
|
+
* @type {number || null}
|
|
26946
|
+
*/
|
|
26947
|
+
this.QuotaLimit = null;
|
|
26948
|
+
|
|
26949
|
+
/**
|
|
26950
|
+
* <p>Valid only when QuotaLimit=Text, used to select the ApiToken that needs quota limit</p>
|
|
26951
|
+
* @type {string || null}
|
|
26952
|
+
*/
|
|
26953
|
+
this.ApiToken = null;
|
|
26954
|
+
|
|
26955
|
+
}
|
|
26956
|
+
|
|
26957
|
+
/**
|
|
26958
|
+
* @private
|
|
26959
|
+
*/
|
|
26960
|
+
deserialize(params) {
|
|
26961
|
+
if (!params) {
|
|
26962
|
+
return;
|
|
26963
|
+
}
|
|
26964
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
26965
|
+
this.QuotaType = 'QuotaType' in params ? params.QuotaType : null;
|
|
26966
|
+
this.QuotaLimit = 'QuotaLimit' in params ? params.QuotaLimit : null;
|
|
26967
|
+
this.ApiToken = 'ApiToken' in params ? params.ApiToken : null;
|
|
26968
|
+
|
|
26969
|
+
}
|
|
26970
|
+
}
|
|
26971
|
+
|
|
26690
26972
|
/**
|
|
26691
26973
|
* DescribeHeadTailTemplates request structure.
|
|
26692
26974
|
* @class
|
|
@@ -28882,25 +29164,18 @@ class ProductImageConfig extends AbstractModel {
|
|
|
28882
29164
|
}
|
|
28883
29165
|
|
|
28884
29166
|
/**
|
|
28885
|
-
*
|
|
29167
|
+
* DeleteAigcQuota response structure.
|
|
28886
29168
|
* @class
|
|
28887
29169
|
*/
|
|
28888
|
-
class
|
|
29170
|
+
class DeleteAigcQuotaResponse extends AbstractModel {
|
|
28889
29171
|
constructor(){
|
|
28890
29172
|
super();
|
|
28891
29173
|
|
|
28892
29174
|
/**
|
|
28893
|
-
*
|
|
29175
|
+
* 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.
|
|
28894
29176
|
* @type {string || null}
|
|
28895
29177
|
*/
|
|
28896
|
-
this.
|
|
28897
|
-
|
|
28898
|
-
/**
|
|
28899
|
-
* Maximum video bitrate. Valid at that time when Type is specified as top speed Codec.
|
|
28900
|
-
Leave it blank or set it to 0 to let VOD automatically set the bitrate cap.
|
|
28901
|
-
* @type {number || null}
|
|
28902
|
-
*/
|
|
28903
|
-
this.MaxVideoBitrate = null;
|
|
29178
|
+
this.RequestId = null;
|
|
28904
29179
|
|
|
28905
29180
|
}
|
|
28906
29181
|
|
|
@@ -28911,8 +29186,7 @@ Leave it blank or set it to 0 to let VOD automatically set the bitrate cap.
|
|
|
28911
29186
|
if (!params) {
|
|
28912
29187
|
return;
|
|
28913
29188
|
}
|
|
28914
|
-
this.
|
|
28915
|
-
this.MaxVideoBitrate = 'MaxVideoBitrate' in params ? params.MaxVideoBitrate : null;
|
|
29189
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
28916
29190
|
|
|
28917
29191
|
}
|
|
28918
29192
|
}
|
|
@@ -36718,6 +36992,56 @@ class AiContentReviewTaskInput extends AbstractModel {
|
|
|
36718
36992
|
}
|
|
36719
36993
|
}
|
|
36720
36994
|
|
|
36995
|
+
/**
|
|
36996
|
+
* DescribeAigcQuotas response structure.
|
|
36997
|
+
* @class
|
|
36998
|
+
*/
|
|
36999
|
+
class DescribeAigcQuotasResponse extends AbstractModel {
|
|
37000
|
+
constructor(){
|
|
37001
|
+
super();
|
|
37002
|
+
|
|
37003
|
+
/**
|
|
37004
|
+
* <p>Quota list</p>
|
|
37005
|
+
* @type {Array.<AigcQuotaItem> || null}
|
|
37006
|
+
*/
|
|
37007
|
+
this.QuotaSet = null;
|
|
37008
|
+
|
|
37009
|
+
/**
|
|
37010
|
+
* <p>Total quantity.</p>
|
|
37011
|
+
* @type {number || null}
|
|
37012
|
+
*/
|
|
37013
|
+
this.TotalCount = null;
|
|
37014
|
+
|
|
37015
|
+
/**
|
|
37016
|
+
* 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.
|
|
37017
|
+
* @type {string || null}
|
|
37018
|
+
*/
|
|
37019
|
+
this.RequestId = null;
|
|
37020
|
+
|
|
37021
|
+
}
|
|
37022
|
+
|
|
37023
|
+
/**
|
|
37024
|
+
* @private
|
|
37025
|
+
*/
|
|
37026
|
+
deserialize(params) {
|
|
37027
|
+
if (!params) {
|
|
37028
|
+
return;
|
|
37029
|
+
}
|
|
37030
|
+
|
|
37031
|
+
if (params.QuotaSet) {
|
|
37032
|
+
this.QuotaSet = new Array();
|
|
37033
|
+
for (let z in params.QuotaSet) {
|
|
37034
|
+
let obj = new AigcQuotaItem();
|
|
37035
|
+
obj.deserialize(params.QuotaSet[z]);
|
|
37036
|
+
this.QuotaSet.push(obj);
|
|
37037
|
+
}
|
|
37038
|
+
}
|
|
37039
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
37040
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
37041
|
+
|
|
37042
|
+
}
|
|
37043
|
+
}
|
|
37044
|
+
|
|
36721
37045
|
/**
|
|
36722
37046
|
* CreateAdaptiveDynamicStreamingTemplate response structure.
|
|
36723
37047
|
* @class
|
|
@@ -50140,18 +50464,36 @@ class ModifyVodDomainAccelerateConfigResponse extends AbstractModel {
|
|
|
50140
50464
|
}
|
|
50141
50465
|
|
|
50142
50466
|
/**
|
|
50143
|
-
*
|
|
50467
|
+
* AIGC quota
|
|
50144
50468
|
* @class
|
|
50145
50469
|
*/
|
|
50146
|
-
class
|
|
50470
|
+
class AigcQuotaItem extends AbstractModel {
|
|
50147
50471
|
constructor(){
|
|
50148
50472
|
super();
|
|
50149
50473
|
|
|
50150
50474
|
/**
|
|
50151
|
-
* Video
|
|
50475
|
+
* <p>Quota type</p><p>Enumeration value:</p><ul><li>Image: AIGC image generation task</li><li>Video: AIGC video generation task</li><li>Text: AIGC text generation task</li></ul>
|
|
50476
|
+
* @type {string || null}
|
|
50477
|
+
*/
|
|
50478
|
+
this.QuotaType = null;
|
|
50479
|
+
|
|
50480
|
+
/**
|
|
50481
|
+
* <p>Valid only when QuotaLimit=Text, used to select the ApiToken that needs quota limit</p>
|
|
50482
|
+
* @type {string || null}
|
|
50483
|
+
*/
|
|
50484
|
+
this.ApiToken = null;
|
|
50485
|
+
|
|
50486
|
+
/**
|
|
50487
|
+
* <p>Number of task quotas</p><p>Unit:</p><ul><li>When QuotaLimit=Image, unit: piece</li><li>When QuotaLimit=Video, unit: seconds</li><li>When QuotaLimit=Text, unit: token</li></ul>
|
|
50152
50488
|
* @type {number || null}
|
|
50153
50489
|
*/
|
|
50154
|
-
this.
|
|
50490
|
+
this.QuotaLimit = null;
|
|
50491
|
+
|
|
50492
|
+
/**
|
|
50493
|
+
* <p>Amount already used</p><p>Unit:</p><ul><li>When QuotaLimit=Image, unit: piece</li><li>When QuotaLimit=Video, unit: seconds</li><li>When QuotaLimit=Text, unit: token</li></ul>
|
|
50494
|
+
* @type {number || null}
|
|
50495
|
+
*/
|
|
50496
|
+
this.Usage = null;
|
|
50155
50497
|
|
|
50156
50498
|
}
|
|
50157
50499
|
|
|
@@ -50162,7 +50504,10 @@ class AiRecognitionTaskSegmentResultInput extends AbstractModel {
|
|
|
50162
50504
|
if (!params) {
|
|
50163
50505
|
return;
|
|
50164
50506
|
}
|
|
50165
|
-
this.
|
|
50507
|
+
this.QuotaType = 'QuotaType' in params ? params.QuotaType : null;
|
|
50508
|
+
this.ApiToken = 'ApiToken' in params ? params.ApiToken : null;
|
|
50509
|
+
this.QuotaLimit = 'QuotaLimit' in params ? params.QuotaLimit : null;
|
|
50510
|
+
this.Usage = 'Usage' in params ? params.Usage : null;
|
|
50166
50511
|
|
|
50167
50512
|
}
|
|
50168
50513
|
}
|
|
@@ -56339,6 +56684,55 @@ class ExecuteFunctionRequest extends AbstractModel {
|
|
|
56339
56684
|
}
|
|
56340
56685
|
}
|
|
56341
56686
|
|
|
56687
|
+
/**
|
|
56688
|
+
* ModifyAigcQuota request structure.
|
|
56689
|
+
* @class
|
|
56690
|
+
*/
|
|
56691
|
+
class ModifyAigcQuotaRequest extends AbstractModel {
|
|
56692
|
+
constructor(){
|
|
56693
|
+
super();
|
|
56694
|
+
|
|
56695
|
+
/**
|
|
56696
|
+
* <p><b>VOD <a href="/document/product/266/14574?from_cn_redirect=1">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 default or newly created).</b></p>
|
|
56697
|
+
* @type {number || null}
|
|
56698
|
+
*/
|
|
56699
|
+
this.SubAppId = null;
|
|
56700
|
+
|
|
56701
|
+
/**
|
|
56702
|
+
* <p>Quota type</p><p>Enumeration value:</p><ul><li>Image: AIGC image generation task</li><li>Video: AIGC video generation task</li><li>Text: AIGC text generation task</li></ul>
|
|
56703
|
+
* @type {string || null}
|
|
56704
|
+
*/
|
|
56705
|
+
this.QuotaType = null;
|
|
56706
|
+
|
|
56707
|
+
/**
|
|
56708
|
+
* <p>Task quota quantity</p><p>Unit:</p><ul><li>When QuotaLimit=Image, unit: sheets</li><li>When QuotaLimit=Video, unit: seconds</li><li>When QuotaLimit=Text, unit: tokens</li></ul>
|
|
56709
|
+
* @type {number || null}
|
|
56710
|
+
*/
|
|
56711
|
+
this.QuotaLimit = null;
|
|
56712
|
+
|
|
56713
|
+
/**
|
|
56714
|
+
* <p>Valid only when QuotaLimit=Text, used to select the ApiToken that needs quota limit</p>
|
|
56715
|
+
* @type {string || null}
|
|
56716
|
+
*/
|
|
56717
|
+
this.ApiToken = null;
|
|
56718
|
+
|
|
56719
|
+
}
|
|
56720
|
+
|
|
56721
|
+
/**
|
|
56722
|
+
* @private
|
|
56723
|
+
*/
|
|
56724
|
+
deserialize(params) {
|
|
56725
|
+
if (!params) {
|
|
56726
|
+
return;
|
|
56727
|
+
}
|
|
56728
|
+
this.SubAppId = 'SubAppId' in params ? params.SubAppId : null;
|
|
56729
|
+
this.QuotaType = 'QuotaType' in params ? params.QuotaType : null;
|
|
56730
|
+
this.QuotaLimit = 'QuotaLimit' in params ? params.QuotaLimit : null;
|
|
56731
|
+
this.ApiToken = 'ApiToken' in params ? params.ApiToken : null;
|
|
56732
|
+
|
|
56733
|
+
}
|
|
56734
|
+
}
|
|
56735
|
+
|
|
56342
56736
|
/**
|
|
56343
56737
|
* The information of an audio/video remastering task.
|
|
56344
56738
|
* @class
|
|
@@ -60634,73 +61028,24 @@ class QualityInspectItem extends AbstractModel {
|
|
|
60634
61028
|
}
|
|
60635
61029
|
|
|
60636
61030
|
/**
|
|
60637
|
-
*
|
|
61031
|
+
* DescribeAigcUsageData response structure.
|
|
60638
61032
|
* @class
|
|
60639
61033
|
*/
|
|
60640
|
-
class
|
|
61034
|
+
class DescribeAigcUsageDataResponse extends AbstractModel {
|
|
60641
61035
|
constructor(){
|
|
60642
61036
|
super();
|
|
60643
61037
|
|
|
60644
61038
|
/**
|
|
60645
|
-
*
|
|
60646
|
-
* @type {
|
|
60647
|
-
*/
|
|
60648
|
-
this.StartTime = null;
|
|
60649
|
-
|
|
60650
|
-
/**
|
|
60651
|
-
* End date, which must be greater than or equal to the start date. Use the [ISO date format](https://www.tencentcloud.com/document/product/266/11732?from_cn_redirect=1#52).
|
|
60652
|
-
* @type {string || null}
|
|
60653
|
-
*/
|
|
60654
|
-
this.EndTime = null;
|
|
60655
|
-
|
|
60656
|
-
/**
|
|
60657
|
-
* <b>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>
|
|
60658
|
-
* @type {number || null}
|
|
61039
|
+
* <p>AIGC stats.</p>
|
|
61040
|
+
* @type {Array.<AigcUsageDataItem> || null}
|
|
60659
61041
|
*/
|
|
60660
|
-
this.
|
|
61042
|
+
this.AigcUsageDataSet = null;
|
|
60661
61043
|
|
|
60662
61044
|
/**
|
|
60663
|
-
*
|
|
60664
|
-
<li>Transcoding: standard transcoding.</li>
|
|
60665
|
-
<li>Transcoding-TESHD: TSC transcoding</li>
|
|
60666
|
-
<li>Editing: video editing</li>
|
|
60667
|
-
<li>Editing-TESHD: Extremely fast high-definition video editing</li>
|
|
60668
|
-
<li>AdaptiveBitrateStreaming: adaptive bitrate streaming</li>
|
|
60669
|
-
<li>ContentAudit: content moderation</li>
|
|
60670
|
-
<li>ContentRecognition: content recognition</li>
|
|
60671
|
-
<li> RemoveWatermark: Remove watermark</li>
|
|
60672
|
-
<li>ExtractTraceWatermark: extract watermark</li>
|
|
60673
|
-
<li> AddTraceWatermark: Add watermark</li>
|
|
60674
|
-
<li> RebuildMedia: Audio and video quality revival</li>
|
|
60675
|
-
<li>QualityInspect: audio and video quality inspection</li>
|
|
60676
|
-
<li>VideoHighlight: Video intelligent highlights</li>
|
|
60677
|
-
<li>VideoTag: video intelligent tag</li>
|
|
60678
|
-
<li>VideoClassification: video intelligent classification</li>
|
|
60679
|
-
<li>VideoCover: video intelligent cover</li>
|
|
60680
|
-
<li>VideoSegment: video intelligent splitting</li>
|
|
60681
|
-
<li>VideoProduce: video production</li>
|
|
60682
|
-
<li>MediaCast: media forwarding</li>
|
|
60683
|
-
<li>Transcode: Transcode, including standard transcoding, top speed Codec, and video editing (This is not recommended)</li>
|
|
60684
|
-
<li>VoiceTranslation: speech translation</li>
|
|
60685
|
-
<li>JITTranscoding: JIT transcoding.</li>
|
|
60686
|
-
<li>VideoSnapshot: video screenshot.</li>
|
|
60687
|
-
<li>JITEncryption: Real-time encryption</li>
|
|
60688
|
-
<li>MediaEnhancement: audio and video enhancement</li>
|
|
60689
|
-
<li>ImageCompression: image compression</li>
|
|
60690
|
-
<li>ImageEnhancement: image enhancement</li>
|
|
60691
|
-
<li>ImageSuperResolution: image super resolution</li>
|
|
60692
|
-
<li>ImageAdvanceCompression: image advanced compression</li>
|
|
60693
|
-
<li>ImageUnderstanding: image understanding</li>
|
|
60694
|
-
<li>AddTraceWatermark: Add a traceable watermark</li>
|
|
60695
|
-
<li>AddBlindWatermark: Add blind watermark</li>
|
|
60696
|
-
<li>AddNagraWatermark: Add NAGRA digital watermark</li>
|
|
60697
|
-
<li>ExtractTraceWatermark: extract traceability watermark</li>
|
|
60698
|
-
<li>ExtractBlindWatermark: extract a blind watermark</li>
|
|
60699
|
-
<li>ExtractNagraWatermark: Extract NAGRA digital watermark</li>
|
|
60700
|
-
|
|
61045
|
+
* 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.
|
|
60701
61046
|
* @type {string || null}
|
|
60702
61047
|
*/
|
|
60703
|
-
this.
|
|
61048
|
+
this.RequestId = null;
|
|
60704
61049
|
|
|
60705
61050
|
}
|
|
60706
61051
|
|
|
@@ -60711,10 +61056,16 @@ class DescribeMediaProcessUsageDataRequest extends AbstractModel {
|
|
|
60711
61056
|
if (!params) {
|
|
60712
61057
|
return;
|
|
60713
61058
|
}
|
|
60714
|
-
|
|
60715
|
-
|
|
60716
|
-
|
|
60717
|
-
|
|
61059
|
+
|
|
61060
|
+
if (params.AigcUsageDataSet) {
|
|
61061
|
+
this.AigcUsageDataSet = new Array();
|
|
61062
|
+
for (let z in params.AigcUsageDataSet) {
|
|
61063
|
+
let obj = new AigcUsageDataItem();
|
|
61064
|
+
obj.deserialize(params.AigcUsageDataSet[z]);
|
|
61065
|
+
this.AigcUsageDataSet.push(obj);
|
|
61066
|
+
}
|
|
61067
|
+
}
|
|
61068
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
60718
61069
|
|
|
60719
61070
|
}
|
|
60720
61071
|
}
|
|
@@ -62278,6 +62629,34 @@ class ThirdPartyDrmInfo extends AbstractModel {
|
|
|
62278
62629
|
}
|
|
62279
62630
|
}
|
|
62280
62631
|
|
|
62632
|
+
/**
|
|
62633
|
+
* Input of video splitting.
|
|
62634
|
+
* @class
|
|
62635
|
+
*/
|
|
62636
|
+
class AiRecognitionTaskSegmentResultInput extends AbstractModel {
|
|
62637
|
+
constructor(){
|
|
62638
|
+
super();
|
|
62639
|
+
|
|
62640
|
+
/**
|
|
62641
|
+
* Video splitting template ID.
|
|
62642
|
+
* @type {number || null}
|
|
62643
|
+
*/
|
|
62644
|
+
this.Definition = null;
|
|
62645
|
+
|
|
62646
|
+
}
|
|
62647
|
+
|
|
62648
|
+
/**
|
|
62649
|
+
* @private
|
|
62650
|
+
*/
|
|
62651
|
+
deserialize(params) {
|
|
62652
|
+
if (!params) {
|
|
62653
|
+
return;
|
|
62654
|
+
}
|
|
62655
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
62656
|
+
|
|
62657
|
+
}
|
|
62658
|
+
}
|
|
62659
|
+
|
|
62281
62660
|
/**
|
|
62282
62661
|
* Track information
|
|
62283
62662
|
* @class
|
|
@@ -64113,6 +64492,7 @@ module.exports = {
|
|
|
64113
64492
|
AiRecognitionTaskAsrWordsSegmentItem: AiRecognitionTaskAsrWordsSegmentItem,
|
|
64114
64493
|
CreateAigcAdvancedCustomElementResponse: CreateAigcAdvancedCustomElementResponse,
|
|
64115
64494
|
TextWatermarkTemplateInput: TextWatermarkTemplateInput,
|
|
64495
|
+
SegmentConfigureInfoForUpdate: SegmentConfigureInfoForUpdate,
|
|
64116
64496
|
QualityEvaluationConfigureInfoForUpdate: QualityEvaluationConfigureInfoForUpdate,
|
|
64117
64497
|
AiRecognitionTaskInput: AiRecognitionTaskInput,
|
|
64118
64498
|
CreateCDNDomainRequest: CreateCDNDomainRequest,
|
|
@@ -64154,13 +64534,14 @@ module.exports = {
|
|
|
64154
64534
|
MediaSnapshotByTimeOffsetItem: MediaSnapshotByTimeOffsetItem,
|
|
64155
64535
|
SceneAigcImageTaskOutputFileInfo: SceneAigcImageTaskOutputFileInfo,
|
|
64156
64536
|
ModifyMediaStorageClassResponse: ModifyMediaStorageClassResponse,
|
|
64537
|
+
CreateAigcQuotaResponse: CreateAigcQuotaResponse,
|
|
64157
64538
|
DescribeProcedureTemplatesRequest: DescribeProcedureTemplatesRequest,
|
|
64158
64539
|
AiReviewPornTaskInput: AiReviewPornTaskInput,
|
|
64159
64540
|
JitterConfigureInfoForUpdate: JitterConfigureInfoForUpdate,
|
|
64160
64541
|
UserDefineAsrTextReviewTemplateInfo: UserDefineAsrTextReviewTemplateInfo,
|
|
64161
64542
|
CreateProcedureTemplateRequest: CreateProcedureTemplateRequest,
|
|
64162
64543
|
MediaProcessTaskAnimatedGraphicResult: MediaProcessTaskAnimatedGraphicResult,
|
|
64163
|
-
|
|
64544
|
+
DeleteAigcQuotaRequest: DeleteAigcQuotaRequest,
|
|
64164
64545
|
AigcUsageDataItem: AigcUsageDataItem,
|
|
64165
64546
|
MPSOutputFile: MPSOutputFile,
|
|
64166
64547
|
QualityEvaluationConfigureInfo: QualityEvaluationConfigureInfo,
|
|
@@ -64233,6 +64614,7 @@ module.exports = {
|
|
|
64233
64614
|
ExtractBlindWatermarkResponse: ExtractBlindWatermarkResponse,
|
|
64234
64615
|
ModifyAIRecognitionTemplateResponse: ModifyAIRecognitionTemplateResponse,
|
|
64235
64616
|
SplitMediaTaskConfig: SplitMediaTaskConfig,
|
|
64617
|
+
TEHDConfig: TEHDConfig,
|
|
64236
64618
|
PlayStatFileInfo: PlayStatFileInfo,
|
|
64237
64619
|
ModifyMediaInfoRequest: ModifyMediaInfoRequest,
|
|
64238
64620
|
MediaProcessTaskAdaptiveDynamicStreamingResult: MediaProcessTaskAdaptiveDynamicStreamingResult,
|
|
@@ -64332,6 +64714,7 @@ module.exports = {
|
|
|
64332
64714
|
CreateReviewTemplateRequest: CreateReviewTemplateRequest,
|
|
64333
64715
|
DescribeMediaInfosResponse: DescribeMediaInfosResponse,
|
|
64334
64716
|
DeleteProcedureTemplateResponse: DeleteProcedureTemplateResponse,
|
|
64717
|
+
ModifyAigcQuotaResponse: ModifyAigcQuotaResponse,
|
|
64335
64718
|
DescribeReviewTemplatesResponse: DescribeReviewTemplatesResponse,
|
|
64336
64719
|
DescribeAdaptiveDynamicStreamingTemplatesResponse: DescribeAdaptiveDynamicStreamingTemplatesResponse,
|
|
64337
64720
|
MediaMiniProgramReviewInfo: MediaMiniProgramReviewInfo,
|
|
@@ -64377,12 +64760,13 @@ module.exports = {
|
|
|
64377
64760
|
ArtifactRepairInfo: ArtifactRepairInfo,
|
|
64378
64761
|
CreateAigcAudioTaskRequest: CreateAigcAudioTaskRequest,
|
|
64379
64762
|
CoverBySnapshotTaskInput: CoverBySnapshotTaskInput,
|
|
64380
|
-
|
|
64763
|
+
DescribeMediaProcessUsageDataRequest: DescribeMediaProcessUsageDataRequest,
|
|
64381
64764
|
RebuildMediaTaskInput: RebuildMediaTaskInput,
|
|
64382
64765
|
ModifyProcessImageAsyncTemplateResponse: ModifyProcessImageAsyncTemplateResponse,
|
|
64383
64766
|
UserDefineConfigureInfo: UserDefineConfigureInfo,
|
|
64384
64767
|
NoiseConfigureInfoForUpdate: NoiseConfigureInfoForUpdate,
|
|
64385
64768
|
LiveRecordInfo: LiveRecordInfo,
|
|
64769
|
+
DescribeAigcQuotasRequest: DescribeAigcQuotasRequest,
|
|
64386
64770
|
AiRecognitionTaskSegmentSegmentItem: AiRecognitionTaskSegmentSegmentItem,
|
|
64387
64771
|
RestoreMediaTask: RestoreMediaTask,
|
|
64388
64772
|
AiReviewPornOcrTaskInput: AiReviewPornOcrTaskInput,
|
|
@@ -64453,6 +64837,7 @@ module.exports = {
|
|
|
64453
64837
|
AudioVolumeBalanceInfo: AudioVolumeBalanceInfo,
|
|
64454
64838
|
ModifyBlindWatermarkTemplateRequest: ModifyBlindWatermarkTemplateRequest,
|
|
64455
64839
|
AiRecognitionTaskAsrWordsResultOutput: AiRecognitionTaskAsrWordsResultOutput,
|
|
64840
|
+
CreateAigcQuotaRequest: CreateAigcQuotaRequest,
|
|
64456
64841
|
DescribeHeadTailTemplatesRequest: DescribeHeadTailTemplatesRequest,
|
|
64457
64842
|
CreateLLMComprehendTemplateResponse: CreateLLMComprehendTemplateResponse,
|
|
64458
64843
|
DescribeCdnLogsRequest: DescribeCdnLogsRequest,
|
|
@@ -64493,7 +64878,7 @@ module.exports = {
|
|
|
64493
64878
|
LowLightEnhanceInfo: LowLightEnhanceInfo,
|
|
64494
64879
|
DescribeContentReviewTemplatesResponse: DescribeContentReviewTemplatesResponse,
|
|
64495
64880
|
ProductImageConfig: ProductImageConfig,
|
|
64496
|
-
|
|
64881
|
+
DeleteAigcQuotaResponse: DeleteAigcQuotaResponse,
|
|
64497
64882
|
ProcessImageAsyncTaskInput: ProcessImageAsyncTaskInput,
|
|
64498
64883
|
ImageReviewUsageDataItem: ImageReviewUsageDataItem,
|
|
64499
64884
|
AnimatedGraphicsTemplate: AnimatedGraphicsTemplate,
|
|
@@ -64627,6 +65012,7 @@ module.exports = {
|
|
|
64627
65012
|
CreateLLMComprehendTemplateRequest: CreateLLMComprehendTemplateRequest,
|
|
64628
65013
|
AiAnalysisTaskCoverOutput: AiAnalysisTaskCoverOutput,
|
|
64629
65014
|
AiContentReviewTaskInput: AiContentReviewTaskInput,
|
|
65015
|
+
DescribeAigcQuotasResponse: DescribeAigcQuotasResponse,
|
|
64630
65016
|
CreateAdaptiveDynamicStreamingTemplateResponse: CreateAdaptiveDynamicStreamingTemplateResponse,
|
|
64631
65017
|
DeleteSampleSnapshotTemplateRequest: DeleteSampleSnapshotTemplateRequest,
|
|
64632
65018
|
AiAnalysisTaskInput: AiAnalysisTaskInput,
|
|
@@ -64849,7 +65235,7 @@ module.exports = {
|
|
|
64849
65235
|
DescribeAigcUsageDataRequest: DescribeAigcUsageDataRequest,
|
|
64850
65236
|
CreateVodDomainResponse: CreateVodDomainResponse,
|
|
64851
65237
|
ModifyVodDomainAccelerateConfigResponse: ModifyVodDomainAccelerateConfigResponse,
|
|
64852
|
-
|
|
65238
|
+
AigcQuotaItem: AigcQuotaItem,
|
|
64853
65239
|
ForceRedirect: ForceRedirect,
|
|
64854
65240
|
ModifyHeadTailTemplateRequest: ModifyHeadTailTemplateRequest,
|
|
64855
65241
|
DescribeTasksResponse: DescribeTasksResponse,
|
|
@@ -64951,6 +65337,7 @@ module.exports = {
|
|
|
64951
65337
|
RemoveWatermarkRequest: RemoveWatermarkRequest,
|
|
64952
65338
|
SPEKEDrm: SPEKEDrm,
|
|
64953
65339
|
ExecuteFunctionRequest: ExecuteFunctionRequest,
|
|
65340
|
+
ModifyAigcQuotaRequest: ModifyAigcQuotaRequest,
|
|
64954
65341
|
RebuildMediaTask: RebuildMediaTask,
|
|
64955
65342
|
TimeRange: TimeRange,
|
|
64956
65343
|
ConfirmEventsResponse: ConfirmEventsResponse,
|
|
@@ -65018,7 +65405,7 @@ module.exports = {
|
|
|
65018
65405
|
ExtractCopyRightWatermarkTask: ExtractCopyRightWatermarkTask,
|
|
65019
65406
|
MediaAiAnalysisFrameTagItem: MediaAiAnalysisFrameTagItem,
|
|
65020
65407
|
QualityInspectItem: QualityInspectItem,
|
|
65021
|
-
|
|
65408
|
+
DescribeAigcUsageDataResponse: DescribeAigcUsageDataResponse,
|
|
65022
65409
|
PullUploadTask: PullUploadTask,
|
|
65023
65410
|
DescribeImageProcessingTemplatesResponse: DescribeImageProcessingTemplatesResponse,
|
|
65024
65411
|
AigcVideoRedrawTask: AigcVideoRedrawTask,
|
|
@@ -65047,6 +65434,7 @@ module.exports = {
|
|
|
65047
65434
|
EnhanceMediaQualityResponse: EnhanceMediaQualityResponse,
|
|
65048
65435
|
SubtitleFormatsOperation: SubtitleFormatsOperation,
|
|
65049
65436
|
ThirdPartyDrmInfo: ThirdPartyDrmInfo,
|
|
65437
|
+
AiRecognitionTaskSegmentResultInput: AiRecognitionTaskSegmentResultInput,
|
|
65050
65438
|
MediaTrack: MediaTrack,
|
|
65051
65439
|
FastEditMediaFileInfo: FastEditMediaFileInfo,
|
|
65052
65440
|
StorageStatData: StorageStatData,
|