tencentcloud-sdk-nodejs-intl-en 3.0.1353 → 3.0.1355
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/gme/v20180711/models.js +37 -16
- package/tencentcloud/hunyuan/v20230901/models.js +10 -3
- package/tencentcloud/mps/v20190612/models.js +761 -372
- package/tencentcloud/mps/v20190612/mps_client.js +70 -29
- package/tencentcloud/organization/v20181225/models.js +1 -1
- package/tencentcloud/tcsas/v20250106/models.js +1 -1
- package/tencentcloud/tcsas/v20250106/tcsas_client.js +1 -1
- package/tencentcloud/teo/v20220901/models.js +66 -74
- package/tencentcloud/teo/v20220901/teo_client.js +5 -5
|
@@ -1868,18 +1868,42 @@ class AiReviewTaskProhibitedOcrResult extends AbstractModel {
|
|
|
1868
1868
|
}
|
|
1869
1869
|
|
|
1870
1870
|
/**
|
|
1871
|
-
*
|
|
1871
|
+
* DescribeSubtitleEmbedTemplates request structure.
|
|
1872
1872
|
* @class
|
|
1873
1873
|
*/
|
|
1874
|
-
class
|
|
1874
|
+
class DescribeSubtitleEmbedTemplatesRequest extends AbstractModel {
|
|
1875
1875
|
constructor(){
|
|
1876
1876
|
super();
|
|
1877
1877
|
|
|
1878
1878
|
/**
|
|
1879
|
-
* Unique
|
|
1879
|
+
* <p>Unique identifiers of intelligent caption templates for filtering. The array can contain up to 100 unique identifiers.</p>
|
|
1880
|
+
* @type {Array.<number> || null}
|
|
1881
|
+
*/
|
|
1882
|
+
this.Definitions = null;
|
|
1883
|
+
|
|
1884
|
+
/**
|
|
1885
|
+
* <p>Paging offset. Default value: 0.</p>
|
|
1880
1886
|
* @type {number || null}
|
|
1881
1887
|
*/
|
|
1882
|
-
this.
|
|
1888
|
+
this.Offset = null;
|
|
1889
|
+
|
|
1890
|
+
/**
|
|
1891
|
+
* <p>Number of returned entries. Default value: 10. Maximum value: 100.</p>
|
|
1892
|
+
* @type {number || null}
|
|
1893
|
+
*/
|
|
1894
|
+
this.Limit = null;
|
|
1895
|
+
|
|
1896
|
+
/**
|
|
1897
|
+
* <p>Filtering condition for the template type. Leave it blank to return all. Valid values:</p><ul><li>Preset: system preset template;</li><li>Custom: user-defined template.</li></ul>
|
|
1898
|
+
* @type {string || null}
|
|
1899
|
+
*/
|
|
1900
|
+
this.Type = null;
|
|
1901
|
+
|
|
1902
|
+
/**
|
|
1903
|
+
* <p>Condition for filtering subtitle suppression templates by ID. Length limit: 64 characters.</p>
|
|
1904
|
+
* @type {string || null}
|
|
1905
|
+
*/
|
|
1906
|
+
this.Name = null;
|
|
1883
1907
|
|
|
1884
1908
|
}
|
|
1885
1909
|
|
|
@@ -1890,7 +1914,11 @@ class DeleteAIRecognitionTemplateRequest extends AbstractModel {
|
|
|
1890
1914
|
if (!params) {
|
|
1891
1915
|
return;
|
|
1892
1916
|
}
|
|
1893
|
-
this.
|
|
1917
|
+
this.Definitions = 'Definitions' in params ? params.Definitions : null;
|
|
1918
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
1919
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
1920
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
1921
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
1894
1922
|
|
|
1895
1923
|
}
|
|
1896
1924
|
}
|
|
@@ -4983,103 +5011,24 @@ Note: Input [] for the erasing area; if this parameter is unspecified, the templ
|
|
|
4983
5011
|
}
|
|
4984
5012
|
|
|
4985
5013
|
/**
|
|
4986
|
-
*
|
|
5014
|
+
* CreateProject response structure.
|
|
4987
5015
|
* @class
|
|
4988
5016
|
*/
|
|
4989
|
-
class
|
|
5017
|
+
class CreateProjectResponse extends AbstractModel {
|
|
4990
5018
|
constructor(){
|
|
4991
5019
|
super();
|
|
4992
5020
|
|
|
4993
5021
|
/**
|
|
4994
|
-
*
|
|
4995
|
-
* @type {number || null}
|
|
4996
|
-
*/
|
|
4997
|
-
this.WorkflowId = null;
|
|
4998
|
-
|
|
4999
|
-
/**
|
|
5000
|
-
* Workflow name.
|
|
5001
|
-
* @type {string || null}
|
|
5002
|
-
*/
|
|
5003
|
-
this.WorkflowName = null;
|
|
5004
|
-
|
|
5005
|
-
/**
|
|
5006
|
-
* Workflow status. Valid values:
|
|
5007
|
-
<li>Enabled: Enabled,</li>
|
|
5008
|
-
<li>Disabled: Disabled.</li>
|
|
5022
|
+
* <p>Project ID.</p>
|
|
5009
5023
|
* @type {string || null}
|
|
5010
5024
|
*/
|
|
5011
|
-
this.
|
|
5012
|
-
|
|
5013
|
-
/**
|
|
5014
|
-
* Input rule bound to a workflow. If an uploaded video hits the rule for the object, the workflow will be triggered.
|
|
5015
|
-
* @type {WorkflowTrigger || null}
|
|
5016
|
-
*/
|
|
5017
|
-
this.Trigger = null;
|
|
5018
|
-
|
|
5019
|
-
/**
|
|
5020
|
-
* The location to save the media processing output file.
|
|
5021
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
5022
|
-
* @type {TaskOutputStorage || null}
|
|
5023
|
-
*/
|
|
5024
|
-
this.OutputStorage = null;
|
|
5025
|
+
this.ProjectId = null;
|
|
5025
5026
|
|
|
5026
5027
|
/**
|
|
5027
|
-
* The
|
|
5028
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
5029
|
-
* @type {MediaProcessTaskInput || null}
|
|
5030
|
-
*/
|
|
5031
|
-
this.MediaProcessTask = null;
|
|
5032
|
-
|
|
5033
|
-
/**
|
|
5034
|
-
* Type parameter of a video content audit task.
|
|
5035
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5036
|
-
* @type {AiContentReviewTaskInput || null}
|
|
5037
|
-
*/
|
|
5038
|
-
this.AiContentReviewTask = null;
|
|
5039
|
-
|
|
5040
|
-
/**
|
|
5041
|
-
* Video content analysis task parameter.
|
|
5042
|
-
* @type {AiAnalysisTaskInput || null}
|
|
5043
|
-
*/
|
|
5044
|
-
this.AiAnalysisTask = null;
|
|
5045
|
-
|
|
5046
|
-
/**
|
|
5047
|
-
* Type parameter of a video content recognition task.
|
|
5048
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5049
|
-
* @type {AiRecognitionTaskInput || null}
|
|
5050
|
-
*/
|
|
5051
|
-
this.AiRecognitionTask = null;
|
|
5052
|
-
|
|
5053
|
-
/**
|
|
5054
|
-
* Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
|
|
5055
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5056
|
-
* @type {TaskNotifyConfig || null}
|
|
5057
|
-
*/
|
|
5058
|
-
this.TaskNotifyConfig = null;
|
|
5059
|
-
|
|
5060
|
-
/**
|
|
5061
|
-
* Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
|
|
5062
|
-
* @type {number || null}
|
|
5063
|
-
*/
|
|
5064
|
-
this.TaskPriority = null;
|
|
5065
|
-
|
|
5066
|
-
/**
|
|
5067
|
-
* The directory to save the media processing output file, such as `/movie/201907/`.
|
|
5068
|
-
* @type {string || null}
|
|
5069
|
-
*/
|
|
5070
|
-
this.OutputDir = null;
|
|
5071
|
-
|
|
5072
|
-
/**
|
|
5073
|
-
* Creation time of a workflow in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
|
|
5074
|
-
* @type {string || null}
|
|
5075
|
-
*/
|
|
5076
|
-
this.CreateTime = null;
|
|
5077
|
-
|
|
5078
|
-
/**
|
|
5079
|
-
* Last modified time of a workflow in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
|
|
5028
|
+
* 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.
|
|
5080
5029
|
* @type {string || null}
|
|
5081
5030
|
*/
|
|
5082
|
-
this.
|
|
5031
|
+
this.RequestId = null;
|
|
5083
5032
|
|
|
5084
5033
|
}
|
|
5085
5034
|
|
|
@@ -5090,55 +5039,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5090
5039
|
if (!params) {
|
|
5091
5040
|
return;
|
|
5092
5041
|
}
|
|
5093
|
-
this.
|
|
5094
|
-
this.
|
|
5095
|
-
this.Status = 'Status' in params ? params.Status : null;
|
|
5096
|
-
|
|
5097
|
-
if (params.Trigger) {
|
|
5098
|
-
let obj = new WorkflowTrigger();
|
|
5099
|
-
obj.deserialize(params.Trigger)
|
|
5100
|
-
this.Trigger = obj;
|
|
5101
|
-
}
|
|
5102
|
-
|
|
5103
|
-
if (params.OutputStorage) {
|
|
5104
|
-
let obj = new TaskOutputStorage();
|
|
5105
|
-
obj.deserialize(params.OutputStorage)
|
|
5106
|
-
this.OutputStorage = obj;
|
|
5107
|
-
}
|
|
5108
|
-
|
|
5109
|
-
if (params.MediaProcessTask) {
|
|
5110
|
-
let obj = new MediaProcessTaskInput();
|
|
5111
|
-
obj.deserialize(params.MediaProcessTask)
|
|
5112
|
-
this.MediaProcessTask = obj;
|
|
5113
|
-
}
|
|
5114
|
-
|
|
5115
|
-
if (params.AiContentReviewTask) {
|
|
5116
|
-
let obj = new AiContentReviewTaskInput();
|
|
5117
|
-
obj.deserialize(params.AiContentReviewTask)
|
|
5118
|
-
this.AiContentReviewTask = obj;
|
|
5119
|
-
}
|
|
5120
|
-
|
|
5121
|
-
if (params.AiAnalysisTask) {
|
|
5122
|
-
let obj = new AiAnalysisTaskInput();
|
|
5123
|
-
obj.deserialize(params.AiAnalysisTask)
|
|
5124
|
-
this.AiAnalysisTask = obj;
|
|
5125
|
-
}
|
|
5126
|
-
|
|
5127
|
-
if (params.AiRecognitionTask) {
|
|
5128
|
-
let obj = new AiRecognitionTaskInput();
|
|
5129
|
-
obj.deserialize(params.AiRecognitionTask)
|
|
5130
|
-
this.AiRecognitionTask = obj;
|
|
5131
|
-
}
|
|
5132
|
-
|
|
5133
|
-
if (params.TaskNotifyConfig) {
|
|
5134
|
-
let obj = new TaskNotifyConfig();
|
|
5135
|
-
obj.deserialize(params.TaskNotifyConfig)
|
|
5136
|
-
this.TaskNotifyConfig = obj;
|
|
5137
|
-
}
|
|
5138
|
-
this.TaskPriority = 'TaskPriority' in params ? params.TaskPriority : null;
|
|
5139
|
-
this.OutputDir = 'OutputDir' in params ? params.OutputDir : null;
|
|
5140
|
-
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
5141
|
-
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
5042
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
5043
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5142
5044
|
|
|
5143
5045
|
}
|
|
5144
5046
|
}
|
|
@@ -5225,6 +5127,34 @@ class DeletePersonSampleRequest extends AbstractModel {
|
|
|
5225
5127
|
}
|
|
5226
5128
|
}
|
|
5227
5129
|
|
|
5130
|
+
/**
|
|
5131
|
+
* DeleteProject response structure.
|
|
5132
|
+
* @class
|
|
5133
|
+
*/
|
|
5134
|
+
class DeleteProjectResponse extends AbstractModel {
|
|
5135
|
+
constructor(){
|
|
5136
|
+
super();
|
|
5137
|
+
|
|
5138
|
+
/**
|
|
5139
|
+
* 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.
|
|
5140
|
+
* @type {string || null}
|
|
5141
|
+
*/
|
|
5142
|
+
this.RequestId = null;
|
|
5143
|
+
|
|
5144
|
+
}
|
|
5145
|
+
|
|
5146
|
+
/**
|
|
5147
|
+
* @private
|
|
5148
|
+
*/
|
|
5149
|
+
deserialize(params) {
|
|
5150
|
+
if (!params) {
|
|
5151
|
+
return;
|
|
5152
|
+
}
|
|
5153
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5154
|
+
|
|
5155
|
+
}
|
|
5156
|
+
}
|
|
5157
|
+
|
|
5228
5158
|
/**
|
|
5229
5159
|
* Speech recognition segment.
|
|
5230
5160
|
* @class
|
|
@@ -6985,6 +6915,91 @@ class AiAnalysisTaskReelInput extends AbstractModel {
|
|
|
6985
6915
|
}
|
|
6986
6916
|
}
|
|
6987
6917
|
|
|
6918
|
+
/**
|
|
6919
|
+
* ModifySmartEraseTemplate request structure.
|
|
6920
|
+
* @class
|
|
6921
|
+
*/
|
|
6922
|
+
class ModifySmartEraseTemplateRequest extends AbstractModel {
|
|
6923
|
+
constructor(){
|
|
6924
|
+
super();
|
|
6925
|
+
|
|
6926
|
+
/**
|
|
6927
|
+
* <p>Unique identifier of the intelligent erasure template</p>
|
|
6928
|
+
* @type {number || null}
|
|
6929
|
+
*/
|
|
6930
|
+
this.Definition = null;
|
|
6931
|
+
|
|
6932
|
+
/**
|
|
6933
|
+
* <p>Length limit for the smart erasing template name: 64 characters.</p>
|
|
6934
|
+
* @type {string || null}
|
|
6935
|
+
*/
|
|
6936
|
+
this.Name = null;
|
|
6937
|
+
|
|
6938
|
+
/**
|
|
6939
|
+
* <p>Length limit for the description information of the smart erasing template: 256 characters.</p>
|
|
6940
|
+
* @type {string || null}
|
|
6941
|
+
*/
|
|
6942
|
+
this.Comment = null;
|
|
6943
|
+
|
|
6944
|
+
/**
|
|
6945
|
+
* <p>Removal Type</p><ul><li>subtitle removal</li><li>watermark removal</li><li>privacy protection</li></ul>
|
|
6946
|
+
* @type {string || null}
|
|
6947
|
+
*/
|
|
6948
|
+
this.EraseType = null;
|
|
6949
|
+
|
|
6950
|
+
/**
|
|
6951
|
+
* <p>Subtitle erasing configuration. It takes effect when the value of EraseType is set to subtitle, or when the value of EraseType is left unspecified but the original EraseType value of the modified template is subtitle.</p>
|
|
6952
|
+
* @type {SmartEraseSubtitleConfig || null}
|
|
6953
|
+
*/
|
|
6954
|
+
this.EraseSubtitleConfig = null;
|
|
6955
|
+
|
|
6956
|
+
/**
|
|
6957
|
+
* <p>Watermark erasing configuration. The value of EraseType can be set to watermark or left unspecified. This parameter is valid only when the value of EraseType of the corresponding template is set to watermark.</p>
|
|
6958
|
+
* @type {SmartEraseWatermarkConfig || null}
|
|
6959
|
+
*/
|
|
6960
|
+
this.EraseWatermarkConfig = null;
|
|
6961
|
+
|
|
6962
|
+
/**
|
|
6963
|
+
* <p>Privacy protection configuration. The value of EraseType can be set to privacy or left unspecified. This parameter is valid only when the value of EraseType of the corresponding template is set to privacy.</p>
|
|
6964
|
+
* @type {SmartErasePrivacyConfig || null}
|
|
6965
|
+
*/
|
|
6966
|
+
this.ErasePrivacyConfig = null;
|
|
6967
|
+
|
|
6968
|
+
}
|
|
6969
|
+
|
|
6970
|
+
/**
|
|
6971
|
+
* @private
|
|
6972
|
+
*/
|
|
6973
|
+
deserialize(params) {
|
|
6974
|
+
if (!params) {
|
|
6975
|
+
return;
|
|
6976
|
+
}
|
|
6977
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
6978
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
6979
|
+
this.Comment = 'Comment' in params ? params.Comment : null;
|
|
6980
|
+
this.EraseType = 'EraseType' in params ? params.EraseType : null;
|
|
6981
|
+
|
|
6982
|
+
if (params.EraseSubtitleConfig) {
|
|
6983
|
+
let obj = new SmartEraseSubtitleConfig();
|
|
6984
|
+
obj.deserialize(params.EraseSubtitleConfig)
|
|
6985
|
+
this.EraseSubtitleConfig = obj;
|
|
6986
|
+
}
|
|
6987
|
+
|
|
6988
|
+
if (params.EraseWatermarkConfig) {
|
|
6989
|
+
let obj = new SmartEraseWatermarkConfig();
|
|
6990
|
+
obj.deserialize(params.EraseWatermarkConfig)
|
|
6991
|
+
this.EraseWatermarkConfig = obj;
|
|
6992
|
+
}
|
|
6993
|
+
|
|
6994
|
+
if (params.ErasePrivacyConfig) {
|
|
6995
|
+
let obj = new SmartErasePrivacyConfig();
|
|
6996
|
+
obj.deserialize(params.ErasePrivacyConfig)
|
|
6997
|
+
this.ErasePrivacyConfig = obj;
|
|
6998
|
+
}
|
|
6999
|
+
|
|
7000
|
+
}
|
|
7001
|
+
}
|
|
7002
|
+
|
|
6988
7003
|
/**
|
|
6989
7004
|
* The issues detected by quality control.
|
|
6990
7005
|
* @class
|
|
@@ -7737,42 +7752,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7737
7752
|
}
|
|
7738
7753
|
|
|
7739
7754
|
/**
|
|
7740
|
-
*
|
|
7755
|
+
* DeleteAIRecognitionTemplate request structure.
|
|
7741
7756
|
* @class
|
|
7742
7757
|
*/
|
|
7743
|
-
class
|
|
7758
|
+
class DeleteAIRecognitionTemplateRequest extends AbstractModel {
|
|
7744
7759
|
constructor(){
|
|
7745
7760
|
super();
|
|
7746
7761
|
|
|
7747
7762
|
/**
|
|
7748
|
-
*
|
|
7749
|
-
* @type {Array.<number> || null}
|
|
7750
|
-
*/
|
|
7751
|
-
this.Definitions = null;
|
|
7752
|
-
|
|
7753
|
-
/**
|
|
7754
|
-
* <p>Paging offset. Default value: 0.</p>
|
|
7755
|
-
* @type {number || null}
|
|
7756
|
-
*/
|
|
7757
|
-
this.Offset = null;
|
|
7758
|
-
|
|
7759
|
-
/**
|
|
7760
|
-
* <p>Number of returned entries. Default value: 10. Maximum value: 100.</p>
|
|
7763
|
+
* Unique ID of a video content recognition template.
|
|
7761
7764
|
* @type {number || null}
|
|
7762
7765
|
*/
|
|
7763
|
-
this.
|
|
7764
|
-
|
|
7765
|
-
/**
|
|
7766
|
-
* <p>Filtering condition for the template type. Leave it blank to return all. Valid values:</p><ul><li>Preset: system preset template;</li><li>Custom: user-defined template.</li></ul>
|
|
7767
|
-
* @type {string || null}
|
|
7768
|
-
*/
|
|
7769
|
-
this.Type = null;
|
|
7770
|
-
|
|
7771
|
-
/**
|
|
7772
|
-
* <p>Condition for filtering subtitle suppression templates by ID. Length limit: 64 characters.</p>
|
|
7773
|
-
* @type {string || null}
|
|
7774
|
-
*/
|
|
7775
|
-
this.Name = null;
|
|
7766
|
+
this.Definition = null;
|
|
7776
7767
|
|
|
7777
7768
|
}
|
|
7778
7769
|
|
|
@@ -7783,11 +7774,7 @@ class DescribeSubtitleEmbedTemplatesRequest extends AbstractModel {
|
|
|
7783
7774
|
if (!params) {
|
|
7784
7775
|
return;
|
|
7785
7776
|
}
|
|
7786
|
-
this.
|
|
7787
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
7788
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
7789
|
-
this.Type = 'Type' in params ? params.Type : null;
|
|
7790
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
7777
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
7791
7778
|
|
|
7792
7779
|
}
|
|
7793
7780
|
}
|
|
@@ -9155,7 +9142,7 @@ class DescribeImageTaskDetailRequest extends AbstractModel {
|
|
|
9155
9142
|
super();
|
|
9156
9143
|
|
|
9157
9144
|
/**
|
|
9158
|
-
*
|
|
9145
|
+
* <p>ID of the image processing task.</p>
|
|
9159
9146
|
* @type {string || null}
|
|
9160
9147
|
*/
|
|
9161
9148
|
this.TaskId = null;
|
|
@@ -10500,55 +10487,18 @@ class ClassificationConfigureInfoForUpdate extends AbstractModel {
|
|
|
10500
10487
|
}
|
|
10501
10488
|
|
|
10502
10489
|
/**
|
|
10503
|
-
*
|
|
10490
|
+
* DeleteAdaptiveDynamicStreamingTemplate response structure.
|
|
10504
10491
|
* @class
|
|
10505
10492
|
*/
|
|
10506
|
-
class
|
|
10493
|
+
class DeleteAdaptiveDynamicStreamingTemplateResponse extends AbstractModel {
|
|
10507
10494
|
constructor(){
|
|
10508
10495
|
super();
|
|
10509
10496
|
|
|
10510
10497
|
/**
|
|
10511
|
-
* The
|
|
10512
|
-
* @type {string || null}
|
|
10513
|
-
*/
|
|
10514
|
-
this.ScheduleName = null;
|
|
10515
|
-
|
|
10516
|
-
/**
|
|
10517
|
-
* The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
|
|
10518
|
-
* @type {WorkflowTrigger || null}
|
|
10519
|
-
*/
|
|
10520
|
-
this.Trigger = null;
|
|
10521
|
-
|
|
10522
|
-
/**
|
|
10523
|
-
* The subtasks of the scheme.
|
|
10524
|
-
* @type {Array.<Activity> || null}
|
|
10525
|
-
*/
|
|
10526
|
-
this.Activities = null;
|
|
10527
|
-
|
|
10528
|
-
/**
|
|
10529
|
-
* The bucket to save the output file. If you do not specify this parameter, the bucket in `Trigger` will be used.
|
|
10530
|
-
* @type {TaskOutputStorage || null}
|
|
10531
|
-
*/
|
|
10532
|
-
this.OutputStorage = null;
|
|
10533
|
-
|
|
10534
|
-
/**
|
|
10535
|
-
* The directory to save the media processing output file, which must start and end with `/`, such as `/movie/201907/`.
|
|
10536
|
-
If you do not specify this, the file will be saved to the trigger directory.
|
|
10537
|
-
* @type {string || null}
|
|
10538
|
-
*/
|
|
10539
|
-
this.OutputDir = null;
|
|
10540
|
-
|
|
10541
|
-
/**
|
|
10542
|
-
* The notification configuration. If you do not specify this parameter, notifications will not be sent.
|
|
10543
|
-
* @type {TaskNotifyConfig || null}
|
|
10544
|
-
*/
|
|
10545
|
-
this.TaskNotifyConfig = null;
|
|
10546
|
-
|
|
10547
|
-
/**
|
|
10548
|
-
* Resource ID. Ensure that the corresponding resource is enabled. The default value is the primary resource ID of the account.
|
|
10498
|
+
* 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.
|
|
10549
10499
|
* @type {string || null}
|
|
10550
10500
|
*/
|
|
10551
|
-
this.
|
|
10501
|
+
this.RequestId = null;
|
|
10552
10502
|
|
|
10553
10503
|
}
|
|
10554
10504
|
|
|
@@ -10559,36 +10509,7 @@ If you do not specify this, the file will be saved to the trigger directory.
|
|
|
10559
10509
|
if (!params) {
|
|
10560
10510
|
return;
|
|
10561
10511
|
}
|
|
10562
|
-
this.
|
|
10563
|
-
|
|
10564
|
-
if (params.Trigger) {
|
|
10565
|
-
let obj = new WorkflowTrigger();
|
|
10566
|
-
obj.deserialize(params.Trigger)
|
|
10567
|
-
this.Trigger = obj;
|
|
10568
|
-
}
|
|
10569
|
-
|
|
10570
|
-
if (params.Activities) {
|
|
10571
|
-
this.Activities = new Array();
|
|
10572
|
-
for (let z in params.Activities) {
|
|
10573
|
-
let obj = new Activity();
|
|
10574
|
-
obj.deserialize(params.Activities[z]);
|
|
10575
|
-
this.Activities.push(obj);
|
|
10576
|
-
}
|
|
10577
|
-
}
|
|
10578
|
-
|
|
10579
|
-
if (params.OutputStorage) {
|
|
10580
|
-
let obj = new TaskOutputStorage();
|
|
10581
|
-
obj.deserialize(params.OutputStorage)
|
|
10582
|
-
this.OutputStorage = obj;
|
|
10583
|
-
}
|
|
10584
|
-
this.OutputDir = 'OutputDir' in params ? params.OutputDir : null;
|
|
10585
|
-
|
|
10586
|
-
if (params.TaskNotifyConfig) {
|
|
10587
|
-
let obj = new TaskNotifyConfig();
|
|
10588
|
-
obj.deserialize(params.TaskNotifyConfig)
|
|
10589
|
-
this.TaskNotifyConfig = obj;
|
|
10590
|
-
}
|
|
10591
|
-
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
10512
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10592
10513
|
|
|
10593
10514
|
}
|
|
10594
10515
|
}
|
|
@@ -10787,6 +10708,77 @@ Note: when modifying the template, pass [] to clear the region. the template reg
|
|
|
10787
10708
|
}
|
|
10788
10709
|
}
|
|
10789
10710
|
|
|
10711
|
+
/**
|
|
10712
|
+
* List of characters.
|
|
10713
|
+
* @class
|
|
10714
|
+
*/
|
|
10715
|
+
class Speakers extends AbstractModel {
|
|
10716
|
+
constructor(){
|
|
10717
|
+
super();
|
|
10718
|
+
|
|
10719
|
+
/**
|
|
10720
|
+
* <p>Unique character ID.</p>
|
|
10721
|
+
* @type {string || null}
|
|
10722
|
+
*/
|
|
10723
|
+
this.SpeakerId = null;
|
|
10724
|
+
|
|
10725
|
+
/**
|
|
10726
|
+
* <p>Bound voice ID.</p>
|
|
10727
|
+
* @type {string || null}
|
|
10728
|
+
*/
|
|
10729
|
+
this.VoiceId = null;
|
|
10730
|
+
|
|
10731
|
+
/**
|
|
10732
|
+
* <p>Gender: male/female. Default: male.</p>
|
|
10733
|
+
* @type {string || null}
|
|
10734
|
+
*/
|
|
10735
|
+
this.Gender = null;
|
|
10736
|
+
|
|
10737
|
+
/**
|
|
10738
|
+
* <p>Age segment: child/teenager/youth/middle_aged/senior. Default: youth.</p>
|
|
10739
|
+
* @type {string || null}
|
|
10740
|
+
*/
|
|
10741
|
+
this.AgeGroup = null;
|
|
10742
|
+
|
|
10743
|
+
/**
|
|
10744
|
+
* <p>Character description.</p>
|
|
10745
|
+
* @type {string || null}
|
|
10746
|
+
*/
|
|
10747
|
+
this.Description = null;
|
|
10748
|
+
|
|
10749
|
+
/**
|
|
10750
|
+
* <p>Glossary of character names.</p>
|
|
10751
|
+
* @type {Array.<TermBase> || null}
|
|
10752
|
+
*/
|
|
10753
|
+
this.NameTerms = null;
|
|
10754
|
+
|
|
10755
|
+
}
|
|
10756
|
+
|
|
10757
|
+
/**
|
|
10758
|
+
* @private
|
|
10759
|
+
*/
|
|
10760
|
+
deserialize(params) {
|
|
10761
|
+
if (!params) {
|
|
10762
|
+
return;
|
|
10763
|
+
}
|
|
10764
|
+
this.SpeakerId = 'SpeakerId' in params ? params.SpeakerId : null;
|
|
10765
|
+
this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
|
|
10766
|
+
this.Gender = 'Gender' in params ? params.Gender : null;
|
|
10767
|
+
this.AgeGroup = 'AgeGroup' in params ? params.AgeGroup : null;
|
|
10768
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
10769
|
+
|
|
10770
|
+
if (params.NameTerms) {
|
|
10771
|
+
this.NameTerms = new Array();
|
|
10772
|
+
for (let z in params.NameTerms) {
|
|
10773
|
+
let obj = new TermBase();
|
|
10774
|
+
obj.deserialize(params.NameTerms[z]);
|
|
10775
|
+
this.NameTerms.push(obj);
|
|
10776
|
+
}
|
|
10777
|
+
}
|
|
10778
|
+
|
|
10779
|
+
}
|
|
10780
|
+
}
|
|
10781
|
+
|
|
10790
10782
|
/**
|
|
10791
10783
|
* DescribeSmartEraseTemplates request structure.
|
|
10792
10784
|
* @class
|
|
@@ -11253,6 +11245,55 @@ class PornAsrReviewTemplateInfo extends AbstractModel {
|
|
|
11253
11245
|
}
|
|
11254
11246
|
}
|
|
11255
11247
|
|
|
11248
|
+
/**
|
|
11249
|
+
* Term base.
|
|
11250
|
+
* @class
|
|
11251
|
+
*/
|
|
11252
|
+
class TermBase extends AbstractModel {
|
|
11253
|
+
constructor(){
|
|
11254
|
+
super();
|
|
11255
|
+
|
|
11256
|
+
/**
|
|
11257
|
+
* <p>Source language of the term.</p>
|
|
11258
|
+
* @type {string || null}
|
|
11259
|
+
*/
|
|
11260
|
+
this.Src = null;
|
|
11261
|
+
|
|
11262
|
+
/**
|
|
11263
|
+
* <p>Target language of the term.</p>
|
|
11264
|
+
* @type {string || null}
|
|
11265
|
+
*/
|
|
11266
|
+
this.Dst = null;
|
|
11267
|
+
|
|
11268
|
+
/**
|
|
11269
|
+
* <p>Source language of the term. Valid values: "ab": "Abkhaz", "ace": "Acehnese", "ach": "Acholi", "af": "Afrikaans", "ak": "Akan", "am": "Amharic", "ar": "Arabic", "as": "Assamese", "ay": "Aymara", "az": "Azerbaijani", "ba": "Bashkir", "ban": "Balinese", "bbc": "Batak Toba", "bem": "Bemba", "bew": "Betawi", "bg": "Bulgarian", "bho": "Bhojpuri", "bik": "Bikol", "bm": "Bambara", "bn": "Bengali", "br": "Breton", "bs": "Bosnian", "btx": "Batak Karo", "bts": "Batak Simalungun", "bua": "Buryat", "ca": "Catalan", "ceb": "Cebuano", "cgg": "Kiga", "chm": "Meadow Mari", "ckb": "Kurdish (Sorani)", "cnh": "Hakha Chin", "co": "Corsican", "crh": "Crimean Tatar", "crs": "Seychellois Creole", "cs": "Czech", "cv": "Chuvash", "cy": "Welsh", "da": "Danish", "de": "German", "din": "Dinka", "doi": "Dogri", "dov": "Dombe", "dv": "Dhivehi", "dz": "Dzongkha", "ee": "Ewe", "el": "Greek", "en": "English", "eo": "Esperanto", "es": "Spanish", "et": "Estonian", "eu": "Basque", "fa": "Persian", "ff": "Fula", "fi": "Finnish", "fil": "Filipino (Tagalog)", "fj": "Fijian", "fr": "French", "fr-CA": "French (Canada)", "fr-FR": "French (France)", "fy": "Frisian", "ga": "Irish", "gaa": "Ga", "gd": "Scottish Gaelic", "gl": "Galician", "gn": "Guarani", "gom": "Konkani", "gu": "Gujarati", "gv": "Manx", "ha": "Hausa", "haw": "Hawaiian", "he": "Hebrew", "hi": "Hindi", "hil": "Hiligaynon", "hmn": "Hmong", "hr": "Croatian", "hrx": "Hunsrik", "ht": "Haitian Creole", "hu": "Hungarian", "hy": "Armenian", "id": "Indonesian", "ig": "Igbo", "ilo": "Ilocano", "is": "Icelandic", "it": "Italian", "iw": "Hebrew", "ja": "Japanese", "jv": "Javanese", "jw": "Javanese", "ka": "Georgian", "kk": "Kazakh", "km": "Khmer", "kn": "Kannada", "ko": "Korean", "kri": "Krio", "ku": "Kurdish (Kurmanji)", "ktu": "Kituba", "ky": "Kyrgyz", "la": "Latin", "lb": "Luxembourgish", "lg": "Ganda (Luganda)", "li": "Limburgish", "lij": "Ligurian", "lmo": "Lombard", "ln": "Lingala", "lo": "Lao", "lt": "Lithuanian", "ltg": "Latgalian", "luo": "Luo", "lus": "Mizo", "lv": "Latvian", "mai": "Maithili", "mak": "Makassar", "mg": "Malagasy", "mi": "Maori", "min": "Minangkabau", "mk": "Macedonian", "ml": "Malayalam", "mn": "Mongolian", "mr": "Marathi", "ms": "Malay", "mt": "Maltese", "my": "Burmese", "ne": "Nepali", "new": "Newari", "nl": "Dutch", "no": "Norwegian", "nr": "Southern Ndebele", "nso": "Northern Sotho (Sepedi)", "nus": "Nuer", "ny": "Chichewa (Nyanja)", "oc": "Occitan", "om": "Oromo", "or": "Odia (Oriya)", "pa": "Punjabi", "pag": "Pangasinan", "pam": "Kapampangan", "pap": "Papiamento", "pl": "Polish", "ps": "Pashto", "pt": "Portuguese", "pt-BR": "Portuguese (Brazil)", "pt-PT": "Portuguese (Portugal)", "qu": "Quechua", "ro": "Romanian", "rom": "Romani", "rn": "Rundi", "ru": "Russian", "rw": "Kinyarwanda", "sa": "Sanskrit", "scn": "Sicilian", "sd": "Sindhi", "sg": "Sango", "shn": "Shan", "si": "Sinhala", "sk": "Slovak", "sl": "Slovenian", "sm": "Samoan", "sn": "Shona", "so": "Somali", "sq": "Albanian", "sr": "Serbian", "ss": "Swati", "st": "Sotho", "su": "Sundanese", "sv": "Swedish", "sw": "Swahili", "szl": "Silesian", "ta": "Tamil", "te": "Telugu", "tet": "Tetum", "tg": "Tajik", "th": "Thai", "ti": "Tigrinya", "tk": "Turkmen", "tl": "Filipino (Tagalog)", "tn": "Tswana", "tr": "Turkish", "ts": "Tsonga", "tt": "Tatar", "ug": "Uyghur", "uk": "Ukrainian", "ur": "Urdu", "uz": "Uzbek", "vi": "Vietnamese", "xh": "Xhosa", "yi": "Yiddish", "yo": "Yoruba", "yua": "Yucatec Maya ", "yue": "Cantonese", "zh": "Simplified Chinese", "zh-TW": "Traditional Chinese", "zu": "Zulu"</p>
|
|
11270
|
+
* @type {string || null}
|
|
11271
|
+
*/
|
|
11272
|
+
this.SrcLanguage = null;
|
|
11273
|
+
|
|
11274
|
+
/**
|
|
11275
|
+
* <p>Target language of the term. Valid values:"ab": "Abkhaz", "ace": "Acehnese", "ach": "Acholi", "af": "Afrikaans", "ak": "Akan", "am": "Amharic", "ar": "Arabic", "as": "Assamese", "ay": "Aymara", "az": "Azerbaijani", "ba": "Bashkir", "ban": "Balinese", "bbc": "Batak Toba", "bem": "Bemba", "bew": "Betawi", "bg": "Bulgarian", "bho": "Bhojpuri", "bik": "Bikol", "bm": "Bambara", "bn": "Bengali", "br": "Breton", "bs": "Bosnian", "btx": "Batak Karo", "bts": "Batak Simalungun", "bua": "Buryat", "ca": "Catalan", "ceb": "Cebuano", "cgg": "Kiga", "chm": "Meadow Mari", "ckb": "Kurdish (Sorani)", "cnh": "Hakha Chin", "co": "Corsican", "crh": "Crimean Tatar", "crs": "Seychellois Creole", "cs": "Czech", "cv": "Chuvash", "cy": "Welsh", "da": "Danish", "de": "German", "din": "Dinka", "doi": "Dogri", "dov": "Dombe", "dv": "Dhivehi", "dz": "Dzongkha", "ee": "Ewe", "el": "Greek", "en": "English", "eo": "Esperanto", "es": "Spanish", "et": "Estonian", "eu": "Basque", "fa": "Persian", "ff": "Fula", "fi": "Finnish", "fil": "Filipino (Tagalog)", "fj": "Fijian", "fr": "French", "fr-CA": "French (Canada)", "fr-FR": "French (France)", "fy": "Frisian", "ga": "Irish", "gaa": "Ga", "gd": "Scottish Gaelic", "gl": "Galician", "gn": "Guarani", "gom": "Konkani", "gu": "Gujarati", "gv": "Manx", "ha": "Hausa", "haw": "Hawaiian", "he": "Hebrew", "hi": "Hindi", "hil": "Hiligaynon", "hmn": "Hmong", "hr": "Croatian", "hrx": "Hunsrik", "ht": "Haitian Creole", "hu": "Hungarian", "hy": "Armenian", "id": "Indonesian", "ig": "Igbo", "ilo": "Ilocano", "is": "Icelandic", "it": "Italian", "iw": "Hebrew", "ja": "Japanese", "jv": "Javanese", "jw": "Javanese", "ka": "Georgian", "kk": "Kazakh", "km": "Khmer", "kn": "Kannada", "ko": "Korean", "kri": "Krio", "ku": "Kurdish (Kurmanji)", "ktu": "Kituba", "ky": "Kyrgyz", "la": "Latin", "lb": "Luxembourgish", "lg": "Ganda (Luganda)", "li": "Limburgish", "lij": "Ligurian", "lmo": "Lombard", "ln": "Lingala", "lo": "Lao", "lt": "Lithuanian", "ltg": "Latgalian", "luo": "Luo", "lus": "Mizo", "lv": "Latvian", "mai": "Maithili", "mak": "Makassar", "mg": "Malagasy", "mi": "Maori", "min": "Minangkabau", "mk": "Macedonian", "ml": "Malayalam", "mn": "Mongolian", "mr": "Marathi", "ms": "Malay", "mt": "Maltese", "my": "Burmese", "ne": "Nepali", "new": "Newari", "nl": "Dutch", "no": "Norwegian", "nr": "Southern Ndebele", "nso": "Northern Sotho (Sepedi)", "nus": "Nuer", "ny": "Chichewa (Nyanja)", "oc": "Occitan", "om": "Oromo", "or": "Odia (Oriya)", "pa": "Punjabi", "pag": "Pangasinan", "pam": "Kapampangan", "pap": "Papiamento", "pl": "Polish", "ps": "Pashto", "pt": "Portuguese", "pt-BR": "Portuguese (Brazil)", "pt-PT": "Portuguese (Portugal)", "qu": "Quechua", "ro": "Romanian", "rom": "Romani", "rn": "Rundi", "ru": "Russian", "rw": "Kinyarwanda", "sa": "Sanskrit", "scn": "Sicilian", "sd": "Sindhi", "sg": "Sango", "shn": "Shan", "si": "Sinhala", "sk": "Slovak", "sl": "Slovenian", "sm": "Samoan", "sn": "Shona", "so": "Somali", "sq": "Albanian", "sr": "Serbian", "ss": "Swati", "st": "Sotho", "su": "Sundanese", "sv": "Swedish", "sw": "Swahili", "szl": "Silesian", "ta": "Tamil", "te": "Telugu", "tet": "Tetum", "tg": "Tajik", "th": "Thai", "ti": "Tigrinya", "tk": "Turkmen", "tl": "Filipino (Tagalog)", "tn": "Tswana", "tr": "Turkish", "ts": "Tsonga", "tt": "Tatar", "ug": "Uyghur", "uk": "Ukrainian", "ur": "Urdu", "uz": "Uzbek", "vi": "Vietnamese", "xh": "Xhosa", "yi": "Yiddish", "yo": "Yoruba", "yua": "Yucatec Maya ", "yue": "Cantonese", "zh": "Simplified Chinese", "zh-TW": "Traditional Chinese", "zu": "Zulu"</p>
|
|
11276
|
+
* @type {string || null}
|
|
11277
|
+
*/
|
|
11278
|
+
this.DstLanguage = null;
|
|
11279
|
+
|
|
11280
|
+
}
|
|
11281
|
+
|
|
11282
|
+
/**
|
|
11283
|
+
* @private
|
|
11284
|
+
*/
|
|
11285
|
+
deserialize(params) {
|
|
11286
|
+
if (!params) {
|
|
11287
|
+
return;
|
|
11288
|
+
}
|
|
11289
|
+
this.Src = 'Src' in params ? params.Src : null;
|
|
11290
|
+
this.Dst = 'Dst' in params ? params.Dst : null;
|
|
11291
|
+
this.SrcLanguage = 'SrcLanguage' in params ? params.SrcLanguage : null;
|
|
11292
|
+
this.DstLanguage = 'DstLanguage' in params ? params.DstLanguage : null;
|
|
11293
|
+
|
|
11294
|
+
}
|
|
11295
|
+
}
|
|
11296
|
+
|
|
11256
11297
|
/**
|
|
11257
11298
|
* CreateAigcImageTask response structure.
|
|
11258
11299
|
* @class
|
|
@@ -12831,7 +12872,7 @@ class BatchProcessMediaResponse extends AbstractModel {
|
|
|
12831
12872
|
super();
|
|
12832
12873
|
|
|
12833
12874
|
/**
|
|
12834
|
-
* Task ID
|
|
12875
|
+
* <p>Task ID.</p>
|
|
12835
12876
|
* @type {string || null}
|
|
12836
12877
|
*/
|
|
12837
12878
|
this.TaskId = null;
|
|
@@ -14214,64 +14255,65 @@ class BatchProcessMediaRequest extends AbstractModel {
|
|
|
14214
14255
|
super();
|
|
14215
14256
|
|
|
14216
14257
|
/**
|
|
14217
|
-
*
|
|
14258
|
+
* <p>Input information of the media processing file.</p>
|
|
14218
14259
|
* @type {Array.<MediaInputInfo> || null}
|
|
14219
14260
|
*/
|
|
14220
14261
|
this.InputInfo = null;
|
|
14221
14262
|
|
|
14222
14263
|
/**
|
|
14223
|
-
*
|
|
14224
|
-
Note: when InputInfo.Type is URL, this parameter is required. currently only support COS output.
|
|
14264
|
+
* <p>Target storage for media processing output files. If left empty, it inherits the storage location in InputInfo.<br>Note: When InputInfo.Type is URL, this parameter is required. Currently, only COS output is supported.</p>
|
|
14225
14265
|
* @type {TaskOutputStorage || null}
|
|
14226
14266
|
*/
|
|
14227
14267
|
this.OutputStorage = null;
|
|
14228
14268
|
|
|
14229
14269
|
/**
|
|
14230
|
-
*
|
|
14231
|
-
If left blank, it indicates that the directory is the same as the one where the file is located in InputInfo.
|
|
14270
|
+
* <p>Target directory for output files generated by media processing. Must start and end with a slash (/), such as <code>/movie/201907/</code>.<br>If left empty, the directory is the same as the directory of the file in InputInfo.</p>
|
|
14232
14271
|
* @type {string || null}
|
|
14233
14272
|
*/
|
|
14234
14273
|
this.OutputDir = null;
|
|
14235
14274
|
|
|
14236
14275
|
/**
|
|
14237
|
-
* Smart subtitle
|
|
14276
|
+
* <p>Smart subtitle.</p>
|
|
14238
14277
|
* @type {SmartSubtitlesTaskInput || null}
|
|
14239
14278
|
*/
|
|
14240
14279
|
this.SmartSubtitlesTask = null;
|
|
14241
14280
|
|
|
14242
14281
|
/**
|
|
14243
|
-
* Event notification information of the task. If
|
|
14282
|
+
* <p>Event notification information of the task. If this is not specified, no event notification is obtained.</p>
|
|
14244
14283
|
* @type {TaskNotifyConfig || null}
|
|
14245
14284
|
*/
|
|
14246
14285
|
this.TaskNotifyConfig = null;
|
|
14247
14286
|
|
|
14248
14287
|
/**
|
|
14249
|
-
* Priority of the task flow. The higher the value, the higher the priority. The value range is from -10 to 10. If
|
|
14288
|
+
* <p>Priority of the task flow. The higher the value, the higher the priority. The value range is from -10 to 10. If this is not specified, the default value is 0.</p>
|
|
14250
14289
|
* @type {number || null}
|
|
14251
14290
|
*/
|
|
14252
14291
|
this.TasksPriority = null;
|
|
14253
14292
|
|
|
14254
14293
|
/**
|
|
14255
|
-
* Source context
|
|
14294
|
+
* <p>Source context. This is used to pass user request information. The task status change callback returns the value of this field. The maximum length is 1000 characters.</p>
|
|
14256
14295
|
* @type {string || null}
|
|
14257
14296
|
*/
|
|
14258
14297
|
this.SessionContext = null;
|
|
14259
14298
|
|
|
14260
14299
|
/**
|
|
14261
|
-
* Resource ID.
|
|
14300
|
+
* <p>Resource ID. The resource needs to be enabled. The default value is the account's primary resource ID.</p>
|
|
14262
14301
|
* @type {string || null}
|
|
14263
14302
|
*/
|
|
14264
14303
|
this.ResourceId = null;
|
|
14265
14304
|
|
|
14266
14305
|
/**
|
|
14267
|
-
* Whether to skip metadata acquisition. Valid values:
|
|
14268
|
-
0: do not skip.
|
|
14269
|
-
1: skip.
|
|
14270
|
-
Default value: 0
|
|
14306
|
+
* <p>Whether to skip metadata acquisition. Valid values:<br>0: Do not skip,<br>1: Skip,<br>Default value: 0.</p>
|
|
14271
14307
|
* @type {number || null}
|
|
14272
14308
|
*/
|
|
14273
14309
|
this.SkipMateData = null;
|
|
14274
14310
|
|
|
14311
|
+
/**
|
|
14312
|
+
* <p>Execution mode. Valid values:</p><li>Parallel: Concurrent execution, </li><li>Serial: Serial execution. </li>Note: The default mode is concurrent execution.
|
|
14313
|
+
* @type {string || null}
|
|
14314
|
+
*/
|
|
14315
|
+
this.TaskMode = null;
|
|
14316
|
+
|
|
14275
14317
|
}
|
|
14276
14318
|
|
|
14277
14319
|
/**
|
|
@@ -14313,6 +14355,7 @@ Default value: 0
|
|
|
14313
14355
|
this.SessionContext = 'SessionContext' in params ? params.SessionContext : null;
|
|
14314
14356
|
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
14315
14357
|
this.SkipMateData = 'SkipMateData' in params ? params.SkipMateData : null;
|
|
14358
|
+
this.TaskMode = 'TaskMode' in params ? params.TaskMode : null;
|
|
14316
14359
|
|
|
14317
14360
|
}
|
|
14318
14361
|
}
|
|
@@ -18400,54 +18443,18 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
18400
18443
|
}
|
|
18401
18444
|
|
|
18402
18445
|
/**
|
|
18403
|
-
*
|
|
18446
|
+
* DescribeDesignTask request structure.
|
|
18404
18447
|
* @class
|
|
18405
18448
|
*/
|
|
18406
|
-
class
|
|
18449
|
+
class DescribeDesignTaskRequest extends AbstractModel {
|
|
18407
18450
|
constructor(){
|
|
18408
18451
|
super();
|
|
18409
18452
|
|
|
18410
18453
|
/**
|
|
18411
|
-
* <p>
|
|
18412
|
-
* @type {number || null}
|
|
18413
|
-
*/
|
|
18414
|
-
this.Definition = null;
|
|
18415
|
-
|
|
18416
|
-
/**
|
|
18417
|
-
* <p>Length limit for the smart erasing template name: 64 characters.</p>
|
|
18418
|
-
* @type {string || null}
|
|
18419
|
-
*/
|
|
18420
|
-
this.Name = null;
|
|
18421
|
-
|
|
18422
|
-
/**
|
|
18423
|
-
* <p>Length limit for the description information of the smart erasing template: 256 characters.</p>
|
|
18424
|
-
* @type {string || null}
|
|
18425
|
-
*/
|
|
18426
|
-
this.Comment = null;
|
|
18427
|
-
|
|
18428
|
-
/**
|
|
18429
|
-
* <p>Removal Type</p><ul><li>subtitle removal</li><li>watermark removal</li><li>privacy protection</li></ul>
|
|
18454
|
+
* <p>Task ID.</p>
|
|
18430
18455
|
* @type {string || null}
|
|
18431
18456
|
*/
|
|
18432
|
-
this.
|
|
18433
|
-
|
|
18434
|
-
/**
|
|
18435
|
-
* <p>Subtitle erasing configuration. It takes effect when the value of EraseType is set to subtitle, or when the value of EraseType is left unspecified but the original EraseType value of the modified template is subtitle.</p>
|
|
18436
|
-
* @type {SmartEraseSubtitleConfig || null}
|
|
18437
|
-
*/
|
|
18438
|
-
this.EraseSubtitleConfig = null;
|
|
18439
|
-
|
|
18440
|
-
/**
|
|
18441
|
-
* <p>Watermark erasing configuration. The value of EraseType can be set to watermark or left unspecified. This parameter is valid only when the value of EraseType of the corresponding template is set to watermark.</p>
|
|
18442
|
-
* @type {SmartEraseWatermarkConfig || null}
|
|
18443
|
-
*/
|
|
18444
|
-
this.EraseWatermarkConfig = null;
|
|
18445
|
-
|
|
18446
|
-
/**
|
|
18447
|
-
* <p>Privacy protection configuration. The value of EraseType can be set to privacy or left unspecified. This parameter is valid only when the value of EraseType of the corresponding template is set to privacy.</p>
|
|
18448
|
-
* @type {SmartErasePrivacyConfig || null}
|
|
18449
|
-
*/
|
|
18450
|
-
this.ErasePrivacyConfig = null;
|
|
18457
|
+
this.TaskId = null;
|
|
18451
18458
|
|
|
18452
18459
|
}
|
|
18453
18460
|
|
|
@@ -18458,28 +18465,7 @@ class ModifySmartEraseTemplateRequest extends AbstractModel {
|
|
|
18458
18465
|
if (!params) {
|
|
18459
18466
|
return;
|
|
18460
18467
|
}
|
|
18461
|
-
this.
|
|
18462
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
18463
|
-
this.Comment = 'Comment' in params ? params.Comment : null;
|
|
18464
|
-
this.EraseType = 'EraseType' in params ? params.EraseType : null;
|
|
18465
|
-
|
|
18466
|
-
if (params.EraseSubtitleConfig) {
|
|
18467
|
-
let obj = new SmartEraseSubtitleConfig();
|
|
18468
|
-
obj.deserialize(params.EraseSubtitleConfig)
|
|
18469
|
-
this.EraseSubtitleConfig = obj;
|
|
18470
|
-
}
|
|
18471
|
-
|
|
18472
|
-
if (params.EraseWatermarkConfig) {
|
|
18473
|
-
let obj = new SmartEraseWatermarkConfig();
|
|
18474
|
-
obj.deserialize(params.EraseWatermarkConfig)
|
|
18475
|
-
this.EraseWatermarkConfig = obj;
|
|
18476
|
-
}
|
|
18477
|
-
|
|
18478
|
-
if (params.ErasePrivacyConfig) {
|
|
18479
|
-
let obj = new SmartErasePrivacyConfig();
|
|
18480
|
-
obj.deserialize(params.ErasePrivacyConfig)
|
|
18481
|
-
this.ErasePrivacyConfig = obj;
|
|
18482
|
-
}
|
|
18468
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
18483
18469
|
|
|
18484
18470
|
}
|
|
18485
18471
|
}
|
|
@@ -20493,18 +20479,55 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
20493
20479
|
}
|
|
20494
20480
|
|
|
20495
20481
|
/**
|
|
20496
|
-
*
|
|
20482
|
+
* CreateSchedule request structure.
|
|
20497
20483
|
* @class
|
|
20498
20484
|
*/
|
|
20499
|
-
class
|
|
20485
|
+
class CreateScheduleRequest extends AbstractModel {
|
|
20500
20486
|
constructor(){
|
|
20501
20487
|
super();
|
|
20502
20488
|
|
|
20503
20489
|
/**
|
|
20504
|
-
* The
|
|
20490
|
+
* The scheme name (max 128 characters). This name should be unique across your account.
|
|
20505
20491
|
* @type {string || null}
|
|
20506
20492
|
*/
|
|
20507
|
-
this.
|
|
20493
|
+
this.ScheduleName = null;
|
|
20494
|
+
|
|
20495
|
+
/**
|
|
20496
|
+
* The trigger of the scheme. If a file is uploaded to the specified bucket, the scheme will be triggered.
|
|
20497
|
+
* @type {WorkflowTrigger || null}
|
|
20498
|
+
*/
|
|
20499
|
+
this.Trigger = null;
|
|
20500
|
+
|
|
20501
|
+
/**
|
|
20502
|
+
* The subtasks of the scheme.
|
|
20503
|
+
* @type {Array.<Activity> || null}
|
|
20504
|
+
*/
|
|
20505
|
+
this.Activities = null;
|
|
20506
|
+
|
|
20507
|
+
/**
|
|
20508
|
+
* The bucket to save the output file. If you do not specify this parameter, the bucket in `Trigger` will be used.
|
|
20509
|
+
* @type {TaskOutputStorage || null}
|
|
20510
|
+
*/
|
|
20511
|
+
this.OutputStorage = null;
|
|
20512
|
+
|
|
20513
|
+
/**
|
|
20514
|
+
* The directory to save the media processing output file, which must start and end with `/`, such as `/movie/201907/`.
|
|
20515
|
+
If you do not specify this, the file will be saved to the trigger directory.
|
|
20516
|
+
* @type {string || null}
|
|
20517
|
+
*/
|
|
20518
|
+
this.OutputDir = null;
|
|
20519
|
+
|
|
20520
|
+
/**
|
|
20521
|
+
* The notification configuration. If you do not specify this parameter, notifications will not be sent.
|
|
20522
|
+
* @type {TaskNotifyConfig || null}
|
|
20523
|
+
*/
|
|
20524
|
+
this.TaskNotifyConfig = null;
|
|
20525
|
+
|
|
20526
|
+
/**
|
|
20527
|
+
* Resource ID. Ensure that the corresponding resource is enabled. The default value is the primary resource ID of the account.
|
|
20528
|
+
* @type {string || null}
|
|
20529
|
+
*/
|
|
20530
|
+
this.ResourceId = null;
|
|
20508
20531
|
|
|
20509
20532
|
}
|
|
20510
20533
|
|
|
@@ -20515,7 +20538,36 @@ class DeleteAdaptiveDynamicStreamingTemplateResponse extends AbstractModel {
|
|
|
20515
20538
|
if (!params) {
|
|
20516
20539
|
return;
|
|
20517
20540
|
}
|
|
20518
|
-
this.
|
|
20541
|
+
this.ScheduleName = 'ScheduleName' in params ? params.ScheduleName : null;
|
|
20542
|
+
|
|
20543
|
+
if (params.Trigger) {
|
|
20544
|
+
let obj = new WorkflowTrigger();
|
|
20545
|
+
obj.deserialize(params.Trigger)
|
|
20546
|
+
this.Trigger = obj;
|
|
20547
|
+
}
|
|
20548
|
+
|
|
20549
|
+
if (params.Activities) {
|
|
20550
|
+
this.Activities = new Array();
|
|
20551
|
+
for (let z in params.Activities) {
|
|
20552
|
+
let obj = new Activity();
|
|
20553
|
+
obj.deserialize(params.Activities[z]);
|
|
20554
|
+
this.Activities.push(obj);
|
|
20555
|
+
}
|
|
20556
|
+
}
|
|
20557
|
+
|
|
20558
|
+
if (params.OutputStorage) {
|
|
20559
|
+
let obj = new TaskOutputStorage();
|
|
20560
|
+
obj.deserialize(params.OutputStorage)
|
|
20561
|
+
this.OutputStorage = obj;
|
|
20562
|
+
}
|
|
20563
|
+
this.OutputDir = 'OutputDir' in params ? params.OutputDir : null;
|
|
20564
|
+
|
|
20565
|
+
if (params.TaskNotifyConfig) {
|
|
20566
|
+
let obj = new TaskNotifyConfig();
|
|
20567
|
+
obj.deserialize(params.TaskNotifyConfig)
|
|
20568
|
+
this.TaskNotifyConfig = obj;
|
|
20569
|
+
}
|
|
20570
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
20519
20571
|
|
|
20520
20572
|
}
|
|
20521
20573
|
}
|
|
@@ -22540,6 +22592,136 @@ class AigcStoreCosParam extends AbstractModel {
|
|
|
22540
22592
|
}
|
|
22541
22593
|
}
|
|
22542
22594
|
|
|
22595
|
+
/**
|
|
22596
|
+
* DescribeDesignTask response structure.
|
|
22597
|
+
* @class
|
|
22598
|
+
*/
|
|
22599
|
+
class DescribeDesignTaskResponse extends AbstractModel {
|
|
22600
|
+
constructor(){
|
|
22601
|
+
super();
|
|
22602
|
+
|
|
22603
|
+
/**
|
|
22604
|
+
* <p>Error code. 0 is returned if the request is successful.</p>
|
|
22605
|
+
* @type {number || null}
|
|
22606
|
+
*/
|
|
22607
|
+
this.ErrorCode = null;
|
|
22608
|
+
|
|
22609
|
+
/**
|
|
22610
|
+
* <p>Error message. success is returned if the request is successful.</p>
|
|
22611
|
+
* @type {string || null}
|
|
22612
|
+
*/
|
|
22613
|
+
this.Msg = null;
|
|
22614
|
+
|
|
22615
|
+
/**
|
|
22616
|
+
* <p>Task status.</p><p>Enumeration values: </p><ul><li>success: Success, </li><li>fail: Failure, </li><li>processing: Processing.</li></ul>
|
|
22617
|
+
* @type {string || null}
|
|
22618
|
+
*/
|
|
22619
|
+
this.Status = null;
|
|
22620
|
+
|
|
22621
|
+
/**
|
|
22622
|
+
* <p>Voice ID.</p>
|
|
22623
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
22624
|
+
* @type {string || null}
|
|
22625
|
+
*/
|
|
22626
|
+
this.VoiceId = null;
|
|
22627
|
+
|
|
22628
|
+
/**
|
|
22629
|
+
* <p>Extended information.</p>
|
|
22630
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
22631
|
+
* @type {string || null}
|
|
22632
|
+
*/
|
|
22633
|
+
this.ExtInfo = null;
|
|
22634
|
+
|
|
22635
|
+
/**
|
|
22636
|
+
* 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.
|
|
22637
|
+
* @type {string || null}
|
|
22638
|
+
*/
|
|
22639
|
+
this.RequestId = null;
|
|
22640
|
+
|
|
22641
|
+
}
|
|
22642
|
+
|
|
22643
|
+
/**
|
|
22644
|
+
* @private
|
|
22645
|
+
*/
|
|
22646
|
+
deserialize(params) {
|
|
22647
|
+
if (!params) {
|
|
22648
|
+
return;
|
|
22649
|
+
}
|
|
22650
|
+
this.ErrorCode = 'ErrorCode' in params ? params.ErrorCode : null;
|
|
22651
|
+
this.Msg = 'Msg' in params ? params.Msg : null;
|
|
22652
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
22653
|
+
this.VoiceId = 'VoiceId' in params ? params.VoiceId : null;
|
|
22654
|
+
this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
|
|
22655
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
22656
|
+
|
|
22657
|
+
}
|
|
22658
|
+
}
|
|
22659
|
+
|
|
22660
|
+
/**
|
|
22661
|
+
* CreateProject request structure.
|
|
22662
|
+
* @class
|
|
22663
|
+
*/
|
|
22664
|
+
class CreateProjectRequest extends AbstractModel {
|
|
22665
|
+
constructor(){
|
|
22666
|
+
super();
|
|
22667
|
+
|
|
22668
|
+
/**
|
|
22669
|
+
* <p>Project name.</p>
|
|
22670
|
+
* @type {string || null}
|
|
22671
|
+
*/
|
|
22672
|
+
this.ProjectName = null;
|
|
22673
|
+
|
|
22674
|
+
/**
|
|
22675
|
+
* <p>Project term base.</p>
|
|
22676
|
+
* @type {Array.<TermBase> || null}
|
|
22677
|
+
*/
|
|
22678
|
+
this.TermBase = null;
|
|
22679
|
+
|
|
22680
|
+
/**
|
|
22681
|
+
* <p>Project description.</p>
|
|
22682
|
+
* @type {string || null}
|
|
22683
|
+
*/
|
|
22684
|
+
this.Description = null;
|
|
22685
|
+
|
|
22686
|
+
/**
|
|
22687
|
+
* <p>List of characters.</p>
|
|
22688
|
+
* @type {Array.<Speakers> || null}
|
|
22689
|
+
*/
|
|
22690
|
+
this.Speakers = null;
|
|
22691
|
+
|
|
22692
|
+
}
|
|
22693
|
+
|
|
22694
|
+
/**
|
|
22695
|
+
* @private
|
|
22696
|
+
*/
|
|
22697
|
+
deserialize(params) {
|
|
22698
|
+
if (!params) {
|
|
22699
|
+
return;
|
|
22700
|
+
}
|
|
22701
|
+
this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
|
|
22702
|
+
|
|
22703
|
+
if (params.TermBase) {
|
|
22704
|
+
this.TermBase = new Array();
|
|
22705
|
+
for (let z in params.TermBase) {
|
|
22706
|
+
let obj = new TermBase();
|
|
22707
|
+
obj.deserialize(params.TermBase[z]);
|
|
22708
|
+
this.TermBase.push(obj);
|
|
22709
|
+
}
|
|
22710
|
+
}
|
|
22711
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
22712
|
+
|
|
22713
|
+
if (params.Speakers) {
|
|
22714
|
+
this.Speakers = new Array();
|
|
22715
|
+
for (let z in params.Speakers) {
|
|
22716
|
+
let obj = new Speakers();
|
|
22717
|
+
obj.deserialize(params.Speakers[z]);
|
|
22718
|
+
this.Speakers.push(obj);
|
|
22719
|
+
}
|
|
22720
|
+
}
|
|
22721
|
+
|
|
22722
|
+
}
|
|
22723
|
+
}
|
|
22724
|
+
|
|
22543
22725
|
/**
|
|
22544
22726
|
* Text keyword recognition result.
|
|
22545
22727
|
* @class
|
|
@@ -26366,7 +26548,7 @@ class DescribeUsageDataResponse extends AbstractModel {
|
|
|
26366
26548
|
super();
|
|
26367
26549
|
|
|
26368
26550
|
/**
|
|
26369
|
-
* MPS statistical data overview, which displays an overview and detailed data of the queried task
|
|
26551
|
+
* <p>MPS statistical data overview, which displays an overview and detailed data of the queried task.</p>
|
|
26370
26552
|
* @type {Array.<TaskStatData> || null}
|
|
26371
26553
|
*/
|
|
26372
26554
|
this.Data = null;
|
|
@@ -26692,7 +26874,7 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
26692
26874
|
this.Status = null;
|
|
26693
26875
|
|
|
26694
26876
|
/**
|
|
26695
|
-
* Error code. A null string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of [MPS error codes](https://www.tencentcloud.
|
|
26877
|
+
* Error code. A null string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of [MPS error codes](https://www.tencentcloud.com/document/product/862/50369?from_cn_redirect=1#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81).
|
|
26696
26878
|
* @type {string || null}
|
|
26697
26879
|
*/
|
|
26698
26880
|
this.ErrMsg = null;
|
|
@@ -31695,6 +31877,34 @@ and will be deleted after `PicUrlExpireTime`).
|
|
|
31695
31877
|
}
|
|
31696
31878
|
}
|
|
31697
31879
|
|
|
31880
|
+
/**
|
|
31881
|
+
* DeleteProject request structure.
|
|
31882
|
+
* @class
|
|
31883
|
+
*/
|
|
31884
|
+
class DeleteProjectRequest extends AbstractModel {
|
|
31885
|
+
constructor(){
|
|
31886
|
+
super();
|
|
31887
|
+
|
|
31888
|
+
/**
|
|
31889
|
+
* <p>Project ID.</p>
|
|
31890
|
+
* @type {string || null}
|
|
31891
|
+
*/
|
|
31892
|
+
this.ProjectId = null;
|
|
31893
|
+
|
|
31894
|
+
}
|
|
31895
|
+
|
|
31896
|
+
/**
|
|
31897
|
+
* @private
|
|
31898
|
+
*/
|
|
31899
|
+
deserialize(params) {
|
|
31900
|
+
if (!params) {
|
|
31901
|
+
return;
|
|
31902
|
+
}
|
|
31903
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
31904
|
+
|
|
31905
|
+
}
|
|
31906
|
+
}
|
|
31907
|
+
|
|
31698
31908
|
/**
|
|
31699
31909
|
* Input type of intelligent frame-specific tagging task
|
|
31700
31910
|
* @class
|
|
@@ -32979,6 +33189,167 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
32979
33189
|
}
|
|
32980
33190
|
}
|
|
32981
33191
|
|
|
33192
|
+
/**
|
|
33193
|
+
* Workflow information details.
|
|
33194
|
+
* @class
|
|
33195
|
+
*/
|
|
33196
|
+
class WorkflowInfo extends AbstractModel {
|
|
33197
|
+
constructor(){
|
|
33198
|
+
super();
|
|
33199
|
+
|
|
33200
|
+
/**
|
|
33201
|
+
* Workflow ID.
|
|
33202
|
+
* @type {number || null}
|
|
33203
|
+
*/
|
|
33204
|
+
this.WorkflowId = null;
|
|
33205
|
+
|
|
33206
|
+
/**
|
|
33207
|
+
* Workflow name.
|
|
33208
|
+
* @type {string || null}
|
|
33209
|
+
*/
|
|
33210
|
+
this.WorkflowName = null;
|
|
33211
|
+
|
|
33212
|
+
/**
|
|
33213
|
+
* Workflow status. Valid values:
|
|
33214
|
+
<li>Enabled: Enabled,</li>
|
|
33215
|
+
<li>Disabled: Disabled.</li>
|
|
33216
|
+
* @type {string || null}
|
|
33217
|
+
*/
|
|
33218
|
+
this.Status = null;
|
|
33219
|
+
|
|
33220
|
+
/**
|
|
33221
|
+
* Input rule bound to a workflow. If an uploaded video hits the rule for the object, the workflow will be triggered.
|
|
33222
|
+
* @type {WorkflowTrigger || null}
|
|
33223
|
+
*/
|
|
33224
|
+
this.Trigger = null;
|
|
33225
|
+
|
|
33226
|
+
/**
|
|
33227
|
+
* The location to save the media processing output file.
|
|
33228
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
33229
|
+
* @type {TaskOutputStorage || null}
|
|
33230
|
+
*/
|
|
33231
|
+
this.OutputStorage = null;
|
|
33232
|
+
|
|
33233
|
+
/**
|
|
33234
|
+
* The media processing parameters to use.
|
|
33235
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
33236
|
+
* @type {MediaProcessTaskInput || null}
|
|
33237
|
+
*/
|
|
33238
|
+
this.MediaProcessTask = null;
|
|
33239
|
+
|
|
33240
|
+
/**
|
|
33241
|
+
* Type parameter of a video content audit task.
|
|
33242
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
33243
|
+
* @type {AiContentReviewTaskInput || null}
|
|
33244
|
+
*/
|
|
33245
|
+
this.AiContentReviewTask = null;
|
|
33246
|
+
|
|
33247
|
+
/**
|
|
33248
|
+
* Video content analysis task parameter.
|
|
33249
|
+
* @type {AiAnalysisTaskInput || null}
|
|
33250
|
+
*/
|
|
33251
|
+
this.AiAnalysisTask = null;
|
|
33252
|
+
|
|
33253
|
+
/**
|
|
33254
|
+
* Type parameter of a video content recognition task.
|
|
33255
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
33256
|
+
* @type {AiRecognitionTaskInput || null}
|
|
33257
|
+
*/
|
|
33258
|
+
this.AiRecognitionTask = null;
|
|
33259
|
+
|
|
33260
|
+
/**
|
|
33261
|
+
* Event notification information of a task. If this parameter is left empty, no event notifications will be obtained.
|
|
33262
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
33263
|
+
* @type {TaskNotifyConfig || null}
|
|
33264
|
+
*/
|
|
33265
|
+
this.TaskNotifyConfig = null;
|
|
33266
|
+
|
|
33267
|
+
/**
|
|
33268
|
+
* Task flow priority. The higher the value, the higher the priority. Value range: [-10, 10]. If this parameter is left empty, 0 will be used.
|
|
33269
|
+
* @type {number || null}
|
|
33270
|
+
*/
|
|
33271
|
+
this.TaskPriority = null;
|
|
33272
|
+
|
|
33273
|
+
/**
|
|
33274
|
+
* The directory to save the media processing output file, such as `/movie/201907/`.
|
|
33275
|
+
* @type {string || null}
|
|
33276
|
+
*/
|
|
33277
|
+
this.OutputDir = null;
|
|
33278
|
+
|
|
33279
|
+
/**
|
|
33280
|
+
* Creation time of a workflow in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
|
|
33281
|
+
* @type {string || null}
|
|
33282
|
+
*/
|
|
33283
|
+
this.CreateTime = null;
|
|
33284
|
+
|
|
33285
|
+
/**
|
|
33286
|
+
* Last modified time of a workflow in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
|
|
33287
|
+
* @type {string || null}
|
|
33288
|
+
*/
|
|
33289
|
+
this.UpdateTime = null;
|
|
33290
|
+
|
|
33291
|
+
}
|
|
33292
|
+
|
|
33293
|
+
/**
|
|
33294
|
+
* @private
|
|
33295
|
+
*/
|
|
33296
|
+
deserialize(params) {
|
|
33297
|
+
if (!params) {
|
|
33298
|
+
return;
|
|
33299
|
+
}
|
|
33300
|
+
this.WorkflowId = 'WorkflowId' in params ? params.WorkflowId : null;
|
|
33301
|
+
this.WorkflowName = 'WorkflowName' in params ? params.WorkflowName : null;
|
|
33302
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
33303
|
+
|
|
33304
|
+
if (params.Trigger) {
|
|
33305
|
+
let obj = new WorkflowTrigger();
|
|
33306
|
+
obj.deserialize(params.Trigger)
|
|
33307
|
+
this.Trigger = obj;
|
|
33308
|
+
}
|
|
33309
|
+
|
|
33310
|
+
if (params.OutputStorage) {
|
|
33311
|
+
let obj = new TaskOutputStorage();
|
|
33312
|
+
obj.deserialize(params.OutputStorage)
|
|
33313
|
+
this.OutputStorage = obj;
|
|
33314
|
+
}
|
|
33315
|
+
|
|
33316
|
+
if (params.MediaProcessTask) {
|
|
33317
|
+
let obj = new MediaProcessTaskInput();
|
|
33318
|
+
obj.deserialize(params.MediaProcessTask)
|
|
33319
|
+
this.MediaProcessTask = obj;
|
|
33320
|
+
}
|
|
33321
|
+
|
|
33322
|
+
if (params.AiContentReviewTask) {
|
|
33323
|
+
let obj = new AiContentReviewTaskInput();
|
|
33324
|
+
obj.deserialize(params.AiContentReviewTask)
|
|
33325
|
+
this.AiContentReviewTask = obj;
|
|
33326
|
+
}
|
|
33327
|
+
|
|
33328
|
+
if (params.AiAnalysisTask) {
|
|
33329
|
+
let obj = new AiAnalysisTaskInput();
|
|
33330
|
+
obj.deserialize(params.AiAnalysisTask)
|
|
33331
|
+
this.AiAnalysisTask = obj;
|
|
33332
|
+
}
|
|
33333
|
+
|
|
33334
|
+
if (params.AiRecognitionTask) {
|
|
33335
|
+
let obj = new AiRecognitionTaskInput();
|
|
33336
|
+
obj.deserialize(params.AiRecognitionTask)
|
|
33337
|
+
this.AiRecognitionTask = obj;
|
|
33338
|
+
}
|
|
33339
|
+
|
|
33340
|
+
if (params.TaskNotifyConfig) {
|
|
33341
|
+
let obj = new TaskNotifyConfig();
|
|
33342
|
+
obj.deserialize(params.TaskNotifyConfig)
|
|
33343
|
+
this.TaskNotifyConfig = obj;
|
|
33344
|
+
}
|
|
33345
|
+
this.TaskPriority = 'TaskPriority' in params ? params.TaskPriority : null;
|
|
33346
|
+
this.OutputDir = 'OutputDir' in params ? params.OutputDir : null;
|
|
33347
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
33348
|
+
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
33349
|
+
|
|
33350
|
+
}
|
|
33351
|
+
}
|
|
33352
|
+
|
|
32982
33353
|
/**
|
|
32983
33354
|
* SyncDubbing response structure.
|
|
32984
33355
|
* @class
|
|
@@ -37031,42 +37402,25 @@ class DescribeUsageDataRequest extends AbstractModel {
|
|
|
37031
37402
|
super();
|
|
37032
37403
|
|
|
37033
37404
|
/**
|
|
37034
|
-
* Start date.
|
|
37405
|
+
* <p>Start date. Use ISO date format.</p>
|
|
37035
37406
|
* @type {string || null}
|
|
37036
37407
|
*/
|
|
37037
37408
|
this.StartTime = null;
|
|
37038
37409
|
|
|
37039
37410
|
/**
|
|
37040
|
-
* End date, which
|
|
37411
|
+
* <p>End date, which must be greater than or equal to the start date. Use the <a href="https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52">ISO date format</a>.</p><p>Parameter format: 2019-07-16T06:21:28Z.</p>
|
|
37041
37412
|
* @type {string || null}
|
|
37042
37413
|
*/
|
|
37043
37414
|
this.EndTime = null;
|
|
37044
37415
|
|
|
37045
37416
|
/**
|
|
37046
|
-
*
|
|
37047
|
-
<li>AddBlindWatermark: adding basic copyright digital watermarks.</li><li>AddNagraWatermark: adding NAGRA digital watermarks.</li><li>ExtractBlindWatermark: extracting basic copyright digital watermarks.</li><li>AIGC: AIGC</li>
|
|
37417
|
+
* <p>Media processing task type to query. Default value: Transcode. Valid values: </p><li>Transcode: Transcoding, </li><li>Enhance: Enhancement, </li><li>AIAnalysis: AI Analysis, </li><li>AIRecognition: AI Recognition, </li><li>AIReview: AI Review, </li><li>Snapshot: Snapshot, </li><li>AnimatedGraphics: Animated Graphics, </li><li>AiQualityControl: Quality Control, </li><li>Evaluation: Video Evaluation, </li><li>ImageProcess: Image Processing, </li><li>AddBlindWatermark: Add Basic Copyright Digital Watermark, </li><li>AddNagraWatermark: Add NAGRA Digital Watermark, </li><li>ExtractBlindWatermark: Extract Basic Copyright Digital Watermark, </li><li>AIGCVideo: AIGC Video Generation, </li><li>AIGCImage: AIGC Image Generation.</li>
|
|
37048
37418
|
* @type {Array.<string> || null}
|
|
37049
37419
|
*/
|
|
37050
37420
|
this.Types = null;
|
|
37051
37421
|
|
|
37052
37422
|
/**
|
|
37053
|
-
*
|
|
37054
|
-
<li>ap-guangzhou: Guangzhou.</li>
|
|
37055
|
-
<li>ap-hongkong: Hong Kong (China).</li>
|
|
37056
|
-
<li>ap-taipei: Taipei (China).</li>
|
|
37057
|
-
<li>ap-singapore: Singapore.</li>
|
|
37058
|
-
<li>ap-mumbai: India.</li>
|
|
37059
|
-
<li>ap-jakarta: Jakarta.</li>
|
|
37060
|
-
<li>ap-seoul: Seoul.</li>
|
|
37061
|
-
<li>ap-bangkok: Thailand.</li>
|
|
37062
|
-
<li>ap-tokyo: Japan.</li>
|
|
37063
|
-
<li>na-siliconvalley: Silicon Valley.</li>
|
|
37064
|
-
<li>na-ashburn: Virginia.</li>
|
|
37065
|
-
<li>na-toronto: Toronto.</li>
|
|
37066
|
-
<li>sa-saopaulo: Sao Paulo.</li>
|
|
37067
|
-
<li>eu-frankfurt: Frankfurt.</li>
|
|
37068
|
-
<li>eu-moscow: Russia.</li>
|
|
37069
|
-
<li>aws: AWS.</li>
|
|
37423
|
+
* <p>Media processing region. Default value: ap-guangzhou. Valid values: </p><li>ap-guangzhou: Guangzhou, </li><li>ap-hongkong: Hong Kong (China), </li><li>ap-taipei: Taiwan (China), </li><li>ap-singapore: Singapore, </li><li>ap-mumbai: India, </li><li>ap-jakarta: Jakarta, </li><li>ap-seoul: Seoul, </li><li>ap-bangkok: Thailand, </li><li>ap-tokyo: Japan, </li><li>na-siliconvalley: Silicon Valley (USA), </li><li>na-ashburn: Virginia, </li><li>na-toronto: Toronto, </li><li>sa-saopaulo: Sao Paulo, </li><li>eu-frankfurt: Frankfurt, </li><li>eu-moscow: Russia, </li><li>aws: AWS.</li>
|
|
37070
37424
|
* @type {Array.<string> || null}
|
|
37071
37425
|
*/
|
|
37072
37426
|
this.ProcessRegions = null;
|
|
@@ -37860,62 +38214,76 @@ class DescribeImageTaskDetailResponse extends AbstractModel {
|
|
|
37860
38214
|
super();
|
|
37861
38215
|
|
|
37862
38216
|
/**
|
|
37863
|
-
* Task type.
|
|
37864
|
-
<li>WorkflowTask: workflow processing task.</li>
|
|
38217
|
+
* <p>Task type. Valid value: </p><li>WorkflowTask: Workflow processing task.</li>
|
|
37865
38218
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
37866
38219
|
* @type {string || null}
|
|
37867
38220
|
*/
|
|
37868
38221
|
this.TaskType = null;
|
|
37869
38222
|
|
|
37870
38223
|
/**
|
|
37871
|
-
* Task status. Valid values:
|
|
37872
|
-
|
|
37873
|
-
<Li>PROCESSING: processing.</li>
|
|
37874
|
-
<li>FINISH: completed.</li>
|
|
37875
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
38224
|
+
* <p>Task status. Valid values: </p><li>WAITING: Waiting; </li><li>PROCESSING: Processing; </li><li>FINISH: Completed.</li>
|
|
38225
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
37876
38226
|
* @type {string || null}
|
|
37877
38227
|
*/
|
|
37878
38228
|
this.Status = null;
|
|
37879
38229
|
|
|
37880
38230
|
/**
|
|
37881
|
-
* Error code
|
|
38231
|
+
* <p>Error code for task failures.</p>
|
|
37882
38232
|
* @type {number || null}
|
|
37883
38233
|
*/
|
|
37884
38234
|
this.ErrCode = null;
|
|
37885
38235
|
|
|
37886
38236
|
/**
|
|
37887
|
-
* Error code.
|
|
38237
|
+
* <p>Error code. An empty string indicates that the task is successful, while other values indicate that the task has failed. For valid values, see the list of <a href="https://www.tencentcloud.com/document/product/862/50369?from_cn_redirect=1#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81">MPS error codes</a>.</p>
|
|
37888
38238
|
* @type {string || null}
|
|
37889
38239
|
*/
|
|
37890
38240
|
this.ErrMsg = null;
|
|
37891
38241
|
|
|
37892
38242
|
/**
|
|
37893
|
-
* Task exception message
|
|
38243
|
+
* <p>Task exception message.</p>
|
|
37894
38244
|
* @type {string || null}
|
|
37895
38245
|
*/
|
|
37896
38246
|
this.Message = null;
|
|
37897
38247
|
|
|
37898
38248
|
/**
|
|
37899
|
-
* Execution status and
|
|
37900
|
-
Note: This field may return null, indicating that no valid
|
|
38249
|
+
* <p>Execution status and result of the image processing task.</p>
|
|
38250
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
37901
38251
|
* @type {Array.<ImageProcessTaskResult> || null}
|
|
37902
38252
|
*/
|
|
37903
38253
|
this.ImageProcessTaskResultSet = null;
|
|
37904
38254
|
|
|
37905
38255
|
/**
|
|
37906
|
-
* Task creation time in
|
|
37907
|
-
Note: This field may return null, indicating that no valid
|
|
38256
|
+
* <p>Task creation time, in <a href="https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52">ISO date and time format</a>.</p>
|
|
38257
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
37908
38258
|
* @type {string || null}
|
|
37909
38259
|
*/
|
|
37910
38260
|
this.CreateTime = null;
|
|
37911
38261
|
|
|
37912
38262
|
/**
|
|
37913
|
-
* Task
|
|
37914
|
-
Note: This field may return null, indicating that no valid
|
|
38263
|
+
* <p>Task completion time, in <a href="https://www.tencentcloud.com/document/product/862/37710?from_cn_redirect=1#52">ISO date and time format</a>.</p>
|
|
38264
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
37915
38265
|
* @type {string || null}
|
|
37916
38266
|
*/
|
|
37917
38267
|
this.FinishTime = null;
|
|
37918
38268
|
|
|
38269
|
+
/**
|
|
38270
|
+
* <p>Unique template identifier.</p>
|
|
38271
|
+
* @type {number || null}
|
|
38272
|
+
*/
|
|
38273
|
+
this.Definition = null;
|
|
38274
|
+
|
|
38275
|
+
/**
|
|
38276
|
+
* <p>Task initiation parameter.</p>
|
|
38277
|
+
* @type {ImageTaskInput || null}
|
|
38278
|
+
*/
|
|
38279
|
+
this.ImageTask = null;
|
|
38280
|
+
|
|
38281
|
+
/**
|
|
38282
|
+
* <p>Image task input information.</p>
|
|
38283
|
+
* @type {MediaInputInfo || null}
|
|
38284
|
+
*/
|
|
38285
|
+
this.InputInfo = null;
|
|
38286
|
+
|
|
37919
38287
|
/**
|
|
37920
38288
|
* 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.
|
|
37921
38289
|
* @type {string || null}
|
|
@@ -37947,6 +38315,19 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
37947
38315
|
}
|
|
37948
38316
|
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
37949
38317
|
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
38318
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
38319
|
+
|
|
38320
|
+
if (params.ImageTask) {
|
|
38321
|
+
let obj = new ImageTaskInput();
|
|
38322
|
+
obj.deserialize(params.ImageTask)
|
|
38323
|
+
this.ImageTask = obj;
|
|
38324
|
+
}
|
|
38325
|
+
|
|
38326
|
+
if (params.InputInfo) {
|
|
38327
|
+
let obj = new MediaInputInfo();
|
|
38328
|
+
obj.deserialize(params.InputInfo)
|
|
38329
|
+
this.InputInfo = obj;
|
|
38330
|
+
}
|
|
37950
38331
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
37951
38332
|
|
|
37952
38333
|
}
|
|
@@ -41037,7 +41418,7 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
41037
41418
|
|
|
41038
41419
|
/**
|
|
41039
41420
|
* Output path of the generated subtitle file, which can be a relative or absolute path.
|
|
41040
|
-
To define the output path, end the path with .{format}. For variable names, see the description of file name variables at https://www.tencentcloud.
|
|
41421
|
+
To define the output path, end the path with .{format}. For variable names, see the description of file name variables at https://www.tencentcloud.com/document/product/862/37039.?from_cn_redirect=1
|
|
41041
41422
|
|
|
41042
41423
|
Relative path example:
|
|
41043
41424
|
- File name_{variable name}.{format}.
|
|
@@ -42984,7 +43365,7 @@ module.exports = {
|
|
|
42984
43365
|
MediaAiAnalysisDescriptionItem: MediaAiAnalysisDescriptionItem,
|
|
42985
43366
|
DeleteAnimatedGraphicsTemplateResponse: DeleteAnimatedGraphicsTemplateResponse,
|
|
42986
43367
|
AiReviewTaskProhibitedOcrResult: AiReviewTaskProhibitedOcrResult,
|
|
42987
|
-
|
|
43368
|
+
DescribeSubtitleEmbedTemplatesRequest: DescribeSubtitleEmbedTemplatesRequest,
|
|
42988
43369
|
AiRecognitionTaskAsrFullTextResultOutput: AiRecognitionTaskAsrFullTextResultOutput,
|
|
42989
43370
|
AsrHotwordsSetItem: AsrHotwordsSetItem,
|
|
42990
43371
|
AiReviewProhibitedOcrTaskOutput: AiReviewProhibitedOcrTaskOutput,
|
|
@@ -43033,9 +43414,10 @@ module.exports = {
|
|
|
43033
43414
|
ModifyWordSampleResponse: ModifyWordSampleResponse,
|
|
43034
43415
|
AudioTemplateInfoForUpdate: AudioTemplateInfoForUpdate,
|
|
43035
43416
|
UpdateSmartEraseWatermarkConfig: UpdateSmartEraseWatermarkConfig,
|
|
43036
|
-
|
|
43417
|
+
CreateProjectResponse: CreateProjectResponse,
|
|
43037
43418
|
ModifyProcessImageTemplateRequest: ModifyProcessImageTemplateRequest,
|
|
43038
43419
|
DeletePersonSampleRequest: DeletePersonSampleRequest,
|
|
43420
|
+
DeleteProjectResponse: DeleteProjectResponse,
|
|
43039
43421
|
AiRecognitionTaskAsrWordsSegmentItem: AiRecognitionTaskAsrWordsSegmentItem,
|
|
43040
43422
|
ParseLiveStreamProcessNotificationResponse: ParseLiveStreamProcessNotificationResponse,
|
|
43041
43423
|
SubtitleShadowConfig: SubtitleShadowConfig,
|
|
@@ -43063,6 +43445,7 @@ module.exports = {
|
|
|
43063
43445
|
AiRecognitionTaskOcrWordsResultInput: AiRecognitionTaskOcrWordsResultInput,
|
|
43064
43446
|
CreateQualityControlTemplateResponse: CreateQualityControlTemplateResponse,
|
|
43065
43447
|
AiAnalysisTaskReelInput: AiAnalysisTaskReelInput,
|
|
43448
|
+
ModifySmartEraseTemplateRequest: ModifySmartEraseTemplateRequest,
|
|
43066
43449
|
QualityControlResult: QualityControlResult,
|
|
43067
43450
|
AiReviewPornTaskInput: AiReviewPornTaskInput,
|
|
43068
43451
|
HdrConfig: HdrConfig,
|
|
@@ -43078,7 +43461,7 @@ module.exports = {
|
|
|
43078
43461
|
ModifyLiveRecordTemplateResponse: ModifyLiveRecordTemplateResponse,
|
|
43079
43462
|
AiParagraphInfo: AiParagraphInfo,
|
|
43080
43463
|
AudioSeparateConfig: AudioSeparateConfig,
|
|
43081
|
-
|
|
43464
|
+
DeleteAIRecognitionTemplateRequest: DeleteAIRecognitionTemplateRequest,
|
|
43082
43465
|
AiAnalysisTaskCoverResult: AiAnalysisTaskCoverResult,
|
|
43083
43466
|
AudioBeautifyConfig: AudioBeautifyConfig,
|
|
43084
43467
|
EnableWorkflowRequest: EnableWorkflowRequest,
|
|
@@ -43126,11 +43509,12 @@ module.exports = {
|
|
|
43126
43509
|
ProcessMediaResponse: ProcessMediaResponse,
|
|
43127
43510
|
CreateWordSamplesResponse: CreateWordSamplesResponse,
|
|
43128
43511
|
ClassificationConfigureInfoForUpdate: ClassificationConfigureInfoForUpdate,
|
|
43129
|
-
|
|
43512
|
+
DeleteAdaptiveDynamicStreamingTemplateResponse: DeleteAdaptiveDynamicStreamingTemplateResponse,
|
|
43130
43513
|
ParseNotificationRequest: ParseNotificationRequest,
|
|
43131
43514
|
ImageEraseConfig: ImageEraseConfig,
|
|
43132
43515
|
CreateWordSamplesRequest: CreateWordSamplesRequest,
|
|
43133
43516
|
SmartEraseWatermarkConfig: SmartEraseWatermarkConfig,
|
|
43517
|
+
Speakers: Speakers,
|
|
43134
43518
|
DescribeSmartEraseTemplatesRequest: DescribeSmartEraseTemplatesRequest,
|
|
43135
43519
|
PoliticalAsrReviewTemplateInfoForUpdate: PoliticalAsrReviewTemplateInfoForUpdate,
|
|
43136
43520
|
AiSampleFaceOperation: AiSampleFaceOperation,
|
|
@@ -43139,6 +43523,7 @@ module.exports = {
|
|
|
43139
43523
|
Rules: Rules,
|
|
43140
43524
|
AiRecognitionTaskOcrWordsResult: AiRecognitionTaskOcrWordsResult,
|
|
43141
43525
|
PornAsrReviewTemplateInfo: PornAsrReviewTemplateInfo,
|
|
43526
|
+
TermBase: TermBase,
|
|
43142
43527
|
CreateAigcImageTaskResponse: CreateAigcImageTaskResponse,
|
|
43143
43528
|
ComposeVideoStream: ComposeVideoStream,
|
|
43144
43529
|
LiveSmartSubtitleResult: LiveSmartSubtitleResult,
|
|
@@ -43259,7 +43644,7 @@ module.exports = {
|
|
|
43259
43644
|
AiSamplePerson: AiSamplePerson,
|
|
43260
43645
|
SmartSubtitleTaskAsrFullTextResult: SmartSubtitleTaskAsrFullTextResult,
|
|
43261
43646
|
BatchSmartSubtitlesResult: BatchSmartSubtitlesResult,
|
|
43262
|
-
|
|
43647
|
+
DescribeDesignTaskRequest: DescribeDesignTaskRequest,
|
|
43263
43648
|
SimpleAesDrm: SimpleAesDrm,
|
|
43264
43649
|
DescribeWorkflowsResponse: DescribeWorkflowsResponse,
|
|
43265
43650
|
AsrWordsConfigureInfoForUpdate: AsrWordsConfigureInfoForUpdate,
|
|
@@ -43286,7 +43671,7 @@ module.exports = {
|
|
|
43286
43671
|
DescribePersonSamplesRequest: DescribePersonSamplesRequest,
|
|
43287
43672
|
EnableScheduleResponse: EnableScheduleResponse,
|
|
43288
43673
|
SecurityGroupInfo: SecurityGroupInfo,
|
|
43289
|
-
|
|
43674
|
+
CreateScheduleRequest: CreateScheduleRequest,
|
|
43290
43675
|
LiveStreamTagRecognitionResult: LiveStreamTagRecognitionResult,
|
|
43291
43676
|
ExecuteFunctionResponse: ExecuteFunctionResponse,
|
|
43292
43677
|
AnimatedGraphicTaskInput: AnimatedGraphicTaskInput,
|
|
@@ -43320,6 +43705,8 @@ module.exports = {
|
|
|
43320
43705
|
CreateScheduleResponse: CreateScheduleResponse,
|
|
43321
43706
|
DescribeAIAnalysisTemplatesRequest: DescribeAIAnalysisTemplatesRequest,
|
|
43322
43707
|
AigcStoreCosParam: AigcStoreCosParam,
|
|
43708
|
+
DescribeDesignTaskResponse: DescribeDesignTaskResponse,
|
|
43709
|
+
CreateProjectRequest: CreateProjectRequest,
|
|
43323
43710
|
AiRecognitionTaskOcrWordsResultItem: AiRecognitionTaskOcrWordsResultItem,
|
|
43324
43711
|
AiAnalysisTaskReelResult: AiAnalysisTaskReelResult,
|
|
43325
43712
|
ProcessImageRequest: ProcessImageRequest,
|
|
@@ -43471,6 +43858,7 @@ module.exports = {
|
|
|
43471
43858
|
TaskNotifyConfig: TaskNotifyConfig,
|
|
43472
43859
|
FaceEnhanceConfig: FaceEnhanceConfig,
|
|
43473
43860
|
LiveStreamAiReviewImagePornResult: LiveStreamAiReviewImagePornResult,
|
|
43861
|
+
DeleteProjectRequest: DeleteProjectRequest,
|
|
43474
43862
|
AiAnalysisTaskFrameTagInput: AiAnalysisTaskFrameTagInput,
|
|
43475
43863
|
MediaAiAnalysisFrameTagSegmentItem: MediaAiAnalysisFrameTagSegmentItem,
|
|
43476
43864
|
AiRecognitionTaskAsrWordsResultItem: AiRecognitionTaskAsrWordsResultItem,
|
|
@@ -43494,6 +43882,7 @@ module.exports = {
|
|
|
43494
43882
|
SelectingSubtitleAreasConfig: SelectingSubtitleAreasConfig,
|
|
43495
43883
|
AiRecognitionTaskTransTextResultOutput: AiRecognitionTaskTransTextResultOutput,
|
|
43496
43884
|
SmartSubtitlesResult: SmartSubtitlesResult,
|
|
43885
|
+
WorkflowInfo: WorkflowInfo,
|
|
43497
43886
|
SyncDubbingResponse: SyncDubbingResponse,
|
|
43498
43887
|
ModifySnapshotByTimeOffsetTemplateRequest: ModifySnapshotByTimeOffsetTemplateRequest,
|
|
43499
43888
|
AsrHotWordsConfigure: AsrHotWordsConfigure,
|