tencentcloud-sdk-nodejs 4.0.621 → 4.0.622
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/CHANGELOG.md +232 -0
- package/SERVICE_CHANGELOG.md +305 -131
- package/package.json +1 -1
- package/products.md +15 -15
- package/src/common/sdk_version.ts +1 -1
- package/src/services/as/v20180419/as_models.ts +1 -0
- package/src/services/billing/v20180709/billing_models.ts +1 -1
- package/src/services/cdb/v20170320/cdb_models.ts +5 -1
- package/src/services/csip/v20221121/csip_client.ts +75 -10
- package/src/services/csip/v20221121/csip_models.ts +1035 -118
- package/src/services/ess/v20201111/ess_client.ts +2 -2
- package/src/services/ess/v20201111/ess_models.ts +9 -3
- package/src/services/lcic/v20220817/lcic_models.ts +6 -6
- package/src/services/lighthouse/v20200324/lighthouse_client.ts +1 -1
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +1 -1
- package/src/services/live/v20180801/live_client.ts +511 -312
- package/src/services/live/v20180801/live_models.ts +5571 -4763
- package/src/services/ms/v20180408/ms_models.ts +13 -8
- package/src/services/postgres/v20170312/postgres_client.ts +1 -1
- package/src/services/postgres/v20170312/postgres_models.ts +6 -3
- package/src/services/tat/v20201028/tat_models.ts +2 -2
- package/src/services/thpc/v20230321/thpc_models.ts +12 -0
- package/src/services/vod/v20180717/vod_client.ts +7 -3
- package/src/services/vod/v20180717/vod_models.ts +163 -54
- package/src/services/vpc/v20170312/vpc_models.ts +11 -6
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/as/v20180419/as_models.d.ts +1 -0
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +5 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +23 -3
- package/tencentcloud/services/csip/v20221121/csip_client.js +33 -3
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +1024 -122
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +2 -2
- package/tencentcloud/services/ess/v20201111/ess_client.js +2 -2
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +9 -3
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +6 -6
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +1 -1
- package/tencentcloud/services/live/v20180801/live_client.d.ts +89 -25
- package/tencentcloud/services/live/v20180801/live_client.js +126 -30
- package/tencentcloud/services/live/v20180801/live_models.d.ts +5504 -4735
- package/tencentcloud/services/ms/v20180408/ms_models.d.ts +13 -8
- package/tencentcloud/services/postgres/v20170312/postgres_client.d.ts +1 -1
- package/tencentcloud/services/postgres/v20170312/postgres_client.js +1 -1
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +6 -3
- package/tencentcloud/services/tat/v20201028/tat_models.d.ts +2 -2
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +12 -0
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +158 -53
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +11 -6
- package/test/csip.v20221121.test.js +52 -2
- package/test/live.v20180801.test.js +172 -12
|
@@ -900,35 +900,40 @@ export interface CreateCosSecKeyInstanceResponse {
|
|
|
900
900
|
/**
|
|
901
901
|
* COS密钥对应的AppId
|
|
902
902
|
*/
|
|
903
|
-
CosAppid
|
|
903
|
+
CosAppid?: number
|
|
904
904
|
/**
|
|
905
905
|
* COS密钥对应的存储桶名
|
|
906
906
|
*/
|
|
907
|
-
CosBucket
|
|
907
|
+
CosBucket?: string
|
|
908
908
|
/**
|
|
909
909
|
* 存储桶对应的地域
|
|
910
910
|
*/
|
|
911
|
-
CosRegion
|
|
911
|
+
CosRegion?: string
|
|
912
912
|
/**
|
|
913
913
|
* 密钥过期时间
|
|
914
914
|
*/
|
|
915
|
-
ExpireTime
|
|
915
|
+
ExpireTime?: number
|
|
916
916
|
/**
|
|
917
917
|
* 密钥ID信息
|
|
918
918
|
*/
|
|
919
|
-
CosId
|
|
919
|
+
CosId?: string
|
|
920
920
|
/**
|
|
921
921
|
* 密钥KEY信息
|
|
922
922
|
*/
|
|
923
|
-
CosKey
|
|
923
|
+
CosKey?: string
|
|
924
924
|
/**
|
|
925
925
|
* 密钥TOCKEN信息
|
|
926
|
+
* @deprecated
|
|
926
927
|
*/
|
|
927
|
-
CosTocken
|
|
928
|
+
CosTocken?: string
|
|
928
929
|
/**
|
|
929
930
|
* 密钥可访问的文件前缀人。例如:CosPrefix=test/123/666,则该密钥只能操作test/123/666为前缀的文件,例如test/123/666/1.txt
|
|
930
931
|
*/
|
|
931
|
-
CosPrefix
|
|
932
|
+
CosPrefix?: string
|
|
933
|
+
/**
|
|
934
|
+
* 密钥TOCKEN信息
|
|
935
|
+
*/
|
|
936
|
+
CosToken?: string
|
|
932
937
|
/**
|
|
933
938
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
934
939
|
*/
|
|
@@ -365,7 +365,10 @@ serverCollationName:排序规则名称,可选参数,在初始化后不可
|
|
|
365
365
|
*/
|
|
366
366
|
DBEngineConfig?: string
|
|
367
367
|
/**
|
|
368
|
-
*
|
|
368
|
+
* 主从同步方式,可取值:
|
|
369
|
+
1、Semi-sync:半同步
|
|
370
|
+
2、Async:异步
|
|
371
|
+
当前只支持Semi-sync
|
|
369
372
|
*/
|
|
370
373
|
SyncMode?: string
|
|
371
374
|
}
|
|
@@ -4465,11 +4468,11 @@ export interface DescribeDBInstanceParametersResponse {
|
|
|
4465
4468
|
/**
|
|
4466
4469
|
* 参数列表总数
|
|
4467
4470
|
*/
|
|
4468
|
-
TotalCount
|
|
4471
|
+
TotalCount?: number
|
|
4469
4472
|
/**
|
|
4470
4473
|
* 参数列表返回详情
|
|
4471
4474
|
*/
|
|
4472
|
-
Detail
|
|
4475
|
+
Detail?: Array<ParamInfo>
|
|
4473
4476
|
/**
|
|
4474
4477
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4475
4478
|
*/
|
|
@@ -1294,11 +1294,11 @@ export interface DescribeRegionsResponse {
|
|
|
1294
1294
|
/**
|
|
1295
1295
|
* 地域数量
|
|
1296
1296
|
*/
|
|
1297
|
-
TotalCount
|
|
1297
|
+
TotalCount?: number
|
|
1298
1298
|
/**
|
|
1299
1299
|
* 地域信息列表
|
|
1300
1300
|
*/
|
|
1301
|
-
RegionSet
|
|
1301
|
+
RegionSet?: Array<RegionInfo>
|
|
1302
1302
|
/**
|
|
1303
1303
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1304
1304
|
*/
|
|
@@ -389,6 +389,14 @@ export interface CFSOption {
|
|
|
389
389
|
* 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
|
|
390
390
|
*/
|
|
391
391
|
StorageType?: string
|
|
392
|
+
/**
|
|
393
|
+
* 文件系统挂载挂载命令参数选项。
|
|
394
|
+
|
|
395
|
+
- NFS 3.0默认值:vers=3,nolock,proto=tcp,noresvport
|
|
396
|
+
- NFS 4.0默认值:vers=4.0,noresvport
|
|
397
|
+
- TURBO默认值:user_xattr
|
|
398
|
+
*/
|
|
399
|
+
MountOption?: string
|
|
392
400
|
}
|
|
393
401
|
|
|
394
402
|
/**
|
|
@@ -1114,6 +1122,10 @@ export interface CFSOptionOverview {
|
|
|
1114
1122
|
* 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
|
|
1115
1123
|
*/
|
|
1116
1124
|
StorageType: string
|
|
1125
|
+
/**
|
|
1126
|
+
* 文件系统挂载命令参数选项。
|
|
1127
|
+
*/
|
|
1128
|
+
MountOption?: string
|
|
1117
1129
|
}
|
|
1118
1130
|
|
|
1119
1131
|
/**
|
|
@@ -76,7 +76,7 @@ import {
|
|
|
76
76
|
ComposeMediaResponse,
|
|
77
77
|
RoundPlayInfo,
|
|
78
78
|
DescribeLicenseUsageDataResponse,
|
|
79
|
-
|
|
79
|
+
DrmStreamingsInfoForUpdate,
|
|
80
80
|
ClassificationConfigureInfo,
|
|
81
81
|
DescribeStorageDataResponse,
|
|
82
82
|
AudioTemplateInfoForUpdate,
|
|
@@ -106,7 +106,6 @@ import {
|
|
|
106
106
|
EditMediaTaskInput,
|
|
107
107
|
DeleteAIAnalysisTemplateResponse,
|
|
108
108
|
DeleteImageProcessingTemplateRequest,
|
|
109
|
-
ApplyUploadResponse,
|
|
110
109
|
DescribeDailyPlayStatFileListResponse,
|
|
111
110
|
TextWatermarkTemplateInputForUpdate,
|
|
112
111
|
DeleteSuperPlayerConfigRequest,
|
|
@@ -347,6 +346,7 @@ import {
|
|
|
347
346
|
DailyPlayStatInfo,
|
|
348
347
|
TerrorismOcrReviewTemplateInfoForUpdate,
|
|
349
348
|
DescribeEventsStateResponse,
|
|
349
|
+
CopyRightWatermarkInput,
|
|
350
350
|
AiRecognitionTaskHeadTailResultOutput,
|
|
351
351
|
ModifyImageSpriteTemplateResponse,
|
|
352
352
|
ExtractTraceWatermarkTaskOutput,
|
|
@@ -368,6 +368,7 @@ import {
|
|
|
368
368
|
MosaicInput,
|
|
369
369
|
AIAnalysisTemplateItem,
|
|
370
370
|
AiRecognitionTaskObjectResultItem,
|
|
371
|
+
UrlSignatureAuthPolicy,
|
|
371
372
|
ModifyVodDomainConfigResponse,
|
|
372
373
|
MediaSnapshotByTimeOffsetInfo,
|
|
373
374
|
DescribeImageSpriteTemplatesRequest,
|
|
@@ -611,11 +612,12 @@ import {
|
|
|
611
612
|
ImageCenterCut,
|
|
612
613
|
ModifyAIAnalysisTemplateRequest,
|
|
613
614
|
CommitUploadResponse,
|
|
615
|
+
ExtractCopyRightWatermarkTaskInput,
|
|
614
616
|
DescribeSampleSnapshotTemplatesResponse,
|
|
615
617
|
ModifyWordSampleResponse,
|
|
616
618
|
AiContentReviewResult,
|
|
617
619
|
TerrorismImgReviewTemplateInfo,
|
|
618
|
-
|
|
620
|
+
ApplyUploadResponse,
|
|
619
621
|
ReviewAudioVideoResponse,
|
|
620
622
|
DeleteClassRequest,
|
|
621
623
|
DescribeTranscodeTemplatesRequest,
|
|
@@ -642,6 +644,7 @@ import {
|
|
|
642
644
|
DeleteTranscodeTemplateResponse,
|
|
643
645
|
MediaTranscodeItem,
|
|
644
646
|
DescribePersonSamplesResponse,
|
|
647
|
+
ExtractCopyRightWatermarkTaskOutput,
|
|
645
648
|
SplitMediaTaskInput,
|
|
646
649
|
PornConfigureInfo,
|
|
647
650
|
AiRecognitionTaskObjectSeqmentItem,
|
|
@@ -682,6 +685,7 @@ import {
|
|
|
682
685
|
DeleteAnimatedGraphicsTemplateRequest,
|
|
683
686
|
DeleteSnapshotByTimeOffsetTemplateRequest,
|
|
684
687
|
DescribeAnimatedGraphicsTemplatesResponse,
|
|
688
|
+
ExtractCopyRightWatermarkTask,
|
|
685
689
|
MediaAiAnalysisFrameTagItem,
|
|
686
690
|
DescribeImageProcessingTemplatesResponse,
|
|
687
691
|
SampleSnapshotTaskInput,
|
|
@@ -27,12 +27,12 @@ export interface Canvas {
|
|
|
27
27
|
*/
|
|
28
28
|
Color?: string
|
|
29
29
|
/**
|
|
30
|
-
* 画布宽度,即输出视频的宽度,取值范围:0~
|
|
30
|
+
* 画布宽度,即输出视频的宽度,取值范围:0~ 3840,单位:px。
|
|
31
31
|
默认值:0,表示和第一个视频轨的第一个视频片段的视频宽度一致。
|
|
32
32
|
*/
|
|
33
33
|
Width?: number
|
|
34
34
|
/**
|
|
35
|
-
* 画布高度,即输出视频的高度(或长边),取值范围:0~
|
|
35
|
+
* 画布高度,即输出视频的高度(或长边),取值范围:0~ 3840,单位:px。
|
|
36
36
|
默认值:0,表示和第一个视频轨的第一个视频片段的视频高度一致。
|
|
37
37
|
*/
|
|
38
38
|
Height?: number
|
|
@@ -1656,20 +1656,21 @@ export interface DescribeLicenseUsageDataResponse {
|
|
|
1656
1656
|
}
|
|
1657
1657
|
|
|
1658
1658
|
/**
|
|
1659
|
-
*
|
|
1659
|
+
* DRM 自适应码流播放信息修改对象
|
|
1660
1660
|
*/
|
|
1661
|
-
export interface
|
|
1661
|
+
export interface DrmStreamingsInfoForUpdate {
|
|
1662
1662
|
/**
|
|
1663
|
-
*
|
|
1664
|
-
<li>Enabled: 启用。</li>
|
|
1665
|
-
<li>Disabled: 禁用。</li>
|
|
1663
|
+
* 保护类型为 SimpleAES 的转自适应码流模板 ID。
|
|
1666
1664
|
*/
|
|
1667
|
-
|
|
1665
|
+
SimpleAesDefinition?: number
|
|
1668
1666
|
/**
|
|
1669
|
-
*
|
|
1670
|
-
EncryptedKey 字符串的长度为8~40个字节,不能包含不可见字符。
|
|
1667
|
+
* 保护类型为 Widevine 的转自适应码流模板 ID。
|
|
1671
1668
|
*/
|
|
1672
|
-
|
|
1669
|
+
WidevineDefinition?: number
|
|
1670
|
+
/**
|
|
1671
|
+
* 保护类型为 FairPlay 的转自适应码流模板 ID。
|
|
1672
|
+
*/
|
|
1673
|
+
FairPlayDefinition?: number
|
|
1673
1674
|
}
|
|
1674
1675
|
|
|
1675
1676
|
/**
|
|
@@ -2476,40 +2477,6 @@ export interface DeleteImageProcessingTemplateRequest {
|
|
|
2476
2477
|
SubAppId?: number
|
|
2477
2478
|
}
|
|
2478
2479
|
|
|
2479
|
-
/**
|
|
2480
|
-
* ApplyUpload返回参数结构体
|
|
2481
|
-
*/
|
|
2482
|
-
export interface ApplyUploadResponse {
|
|
2483
|
-
/**
|
|
2484
|
-
* 存储桶,用于上传接口 URL 的 bucket_name。
|
|
2485
|
-
*/
|
|
2486
|
-
StorageBucket: string
|
|
2487
|
-
/**
|
|
2488
|
-
* 存储园区,用于上传接口 Host 的 Region。
|
|
2489
|
-
*/
|
|
2490
|
-
StorageRegion: string
|
|
2491
|
-
/**
|
|
2492
|
-
* 点播会话,用于确认上传接口的参数 VodSessionKey。
|
|
2493
|
-
*/
|
|
2494
|
-
VodSessionKey: string
|
|
2495
|
-
/**
|
|
2496
|
-
* 媒体存储路径,用于上传接口存储媒体的对象键(Key)。
|
|
2497
|
-
*/
|
|
2498
|
-
MediaStoragePath: string
|
|
2499
|
-
/**
|
|
2500
|
-
* 封面存储路径,用于上传接口存储封面的对象键(Key)。
|
|
2501
|
-
*/
|
|
2502
|
-
CoverStoragePath: string
|
|
2503
|
-
/**
|
|
2504
|
-
* 临时凭证,用于上传接口的权限验证。
|
|
2505
|
-
*/
|
|
2506
|
-
TempCertificate: TempCertificate
|
|
2507
|
-
/**
|
|
2508
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2509
|
-
*/
|
|
2510
|
-
RequestId?: string
|
|
2511
|
-
}
|
|
2512
|
-
|
|
2513
2480
|
/**
|
|
2514
2481
|
* DescribeDailyPlayStatFileList返回参数结构体
|
|
2515
2482
|
*/
|
|
@@ -8598,6 +8565,16 @@ export interface DescribeEventsStateResponse {
|
|
|
8598
8565
|
RequestId?: string
|
|
8599
8566
|
}
|
|
8600
8567
|
|
|
8568
|
+
/**
|
|
8569
|
+
* 版权水印参数
|
|
8570
|
+
*/
|
|
8571
|
+
export interface CopyRightWatermarkInput {
|
|
8572
|
+
/**
|
|
8573
|
+
* 版权信息,最大长度为 200 个字符。
|
|
8574
|
+
*/
|
|
8575
|
+
Text: string
|
|
8576
|
+
}
|
|
8577
|
+
|
|
8601
8578
|
/**
|
|
8602
8579
|
* 视频片头片尾识别输出。
|
|
8603
8580
|
*/
|
|
@@ -9173,6 +9150,23 @@ export interface AiRecognitionTaskObjectResultItem {
|
|
|
9173
9150
|
SegmentSet: Array<AiRecognitionTaskObjectSeqmentItem>
|
|
9174
9151
|
}
|
|
9175
9152
|
|
|
9153
|
+
/**
|
|
9154
|
+
* 基于签名的 Key 防盗链信息
|
|
9155
|
+
*/
|
|
9156
|
+
export interface UrlSignatureAuthPolicy {
|
|
9157
|
+
/**
|
|
9158
|
+
* [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)设置状态,可选值:
|
|
9159
|
+
<li>Enabled: 启用。</li>
|
|
9160
|
+
<li>Disabled: 禁用。</li>
|
|
9161
|
+
*/
|
|
9162
|
+
Status: string
|
|
9163
|
+
/**
|
|
9164
|
+
* [Key 防盗链](https://cloud.tencent.com/document/product/266/14047)中用于生成签名的密钥。
|
|
9165
|
+
EncryptedKey 字符串的长度为8~40个字节,不能包含不可见字符。
|
|
9166
|
+
*/
|
|
9167
|
+
EncryptedKey?: string
|
|
9168
|
+
}
|
|
9169
|
+
|
|
9176
9170
|
/**
|
|
9177
9171
|
* ModifyVodDomainConfig返回参数结构体
|
|
9178
9172
|
*/
|
|
@@ -11915,6 +11909,10 @@ export interface TranscodeTaskInput {
|
|
|
11915
11909
|
* 溯源水印。
|
|
11916
11910
|
*/
|
|
11917
11911
|
TraceWatermark?: TraceWatermarkInput
|
|
11912
|
+
/**
|
|
11913
|
+
* 版权水印。
|
|
11914
|
+
*/
|
|
11915
|
+
CopyRightWatermark?: CopyRightWatermarkInput
|
|
11918
11916
|
/**
|
|
11919
11917
|
* 马赛克列表,最大可支持 10 张。
|
|
11920
11918
|
*/
|
|
@@ -12397,6 +12395,7 @@ export interface EventContent {
|
|
|
12397
12395
|
<li>RebuildMediaComplete:音画质重生完成事件。</li>
|
|
12398
12396
|
<li>ReviewAudioVideoComplete:音视频审核完成;</li>
|
|
12399
12397
|
<li>ExtractTraceWatermarkComplete:提取溯源水印完成;</li>
|
|
12398
|
+
<li>ExtractCopyRightWatermarkComplete:提取版权水印完成;</li>
|
|
12400
12399
|
<li>DescribeFileAttributesComplete:获取文件属性完成;</li>
|
|
12401
12400
|
<b>兼容 2017 版的事件类型:</b>
|
|
12402
12401
|
<li>TranscodeComplete:视频转码完成;</li>
|
|
@@ -12496,6 +12495,11 @@ export interface EventContent {
|
|
|
12496
12495
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12497
12496
|
*/
|
|
12498
12497
|
ExtractTraceWatermarkCompleteEvent: ExtractTraceWatermarkTask
|
|
12498
|
+
/**
|
|
12499
|
+
* 版权水印提取完成事件,当事件类型为 ExtractCopyRightWatermarkComplete 时有效。
|
|
12500
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12501
|
+
*/
|
|
12502
|
+
ExtractCopyRightWatermarkCompleteEvent?: ExtractCopyRightWatermarkTask
|
|
12499
12503
|
/**
|
|
12500
12504
|
* 音视频审核完成事件,当事件类型为 ReviewAudioVideoComplete 时有效。
|
|
12501
12505
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -13401,6 +13405,7 @@ export interface AdaptiveDynamicStreamingInfoItem {
|
|
|
13401
13405
|
/**
|
|
13402
13406
|
* 数字水印类型。可选值:
|
|
13403
13407
|
<li>Trace 表示经过溯源水印处理;</li>
|
|
13408
|
+
<li>CopyRight 表示经过版权水印处理;</li>
|
|
13404
13409
|
<li>None 表示没有经过数字水印处理。</li>
|
|
13405
13410
|
*/
|
|
13406
13411
|
DigitalWatermarkType?: string
|
|
@@ -13408,6 +13413,10 @@ export interface AdaptiveDynamicStreamingInfoItem {
|
|
|
13408
13413
|
* 子流信息列表。
|
|
13409
13414
|
*/
|
|
13410
13415
|
SubStreamSet?: Array<MediaSubStreamInfoItem>
|
|
13416
|
+
/**
|
|
13417
|
+
* 版权信息。
|
|
13418
|
+
*/
|
|
13419
|
+
CopyRightWatermarkText?: string
|
|
13411
13420
|
}
|
|
13412
13421
|
|
|
13413
13422
|
/**
|
|
@@ -13788,6 +13797,10 @@ export interface AdaptiveDynamicStreamingTaskInput {
|
|
|
13788
13797
|
* 溯源水印。
|
|
13789
13798
|
*/
|
|
13790
13799
|
TraceWatermark?: TraceWatermarkInput
|
|
13800
|
+
/**
|
|
13801
|
+
* 版权水印。
|
|
13802
|
+
*/
|
|
13803
|
+
CopyRightWatermark?: CopyRightWatermarkInput
|
|
13791
13804
|
/**
|
|
13792
13805
|
* 字幕列表,元素为字幕 ID,支持多个字幕,最大可支持16个。
|
|
13793
13806
|
*/
|
|
@@ -14007,7 +14020,8 @@ export interface DescribeTaskDetailResponse {
|
|
|
14007
14020
|
<li>DescribeFileAttributesTask:获取文件属性任务;</li>
|
|
14008
14021
|
<li>RebuildMedia:音画质重生任务;</li>
|
|
14009
14022
|
<li>ReviewAudioVideo:音视频审核任务;</li>
|
|
14010
|
-
<li>ExtractTraceWatermark
|
|
14023
|
+
<li>ExtractTraceWatermark:提取溯源水印任务;</li>
|
|
14024
|
+
<li>ExtractCopyRightWatermark:提取版权水印任务。</li>
|
|
14011
14025
|
*/
|
|
14012
14026
|
TaskType?: string
|
|
14013
14027
|
/**
|
|
@@ -14104,6 +14118,11 @@ export interface DescribeTaskDetailResponse {
|
|
|
14104
14118
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14105
14119
|
*/
|
|
14106
14120
|
ExtractTraceWatermarkTask?: ExtractTraceWatermarkTask
|
|
14121
|
+
/**
|
|
14122
|
+
* 提取版权水印任务信息,仅当 TaskType 为 ExtractCopyRightWatermark,该字段有值。
|
|
14123
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14124
|
+
*/
|
|
14125
|
+
ExtractCopyRightWatermarkTask?: ExtractCopyRightWatermarkTask
|
|
14107
14126
|
/**
|
|
14108
14127
|
* 音视频审核任务信息,仅当 TaskType 为 ReviewAudioVideo,该字段有值。
|
|
14109
14128
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -15664,6 +15683,16 @@ export interface CommitUploadResponse {
|
|
|
15664
15683
|
RequestId?: string
|
|
15665
15684
|
}
|
|
15666
15685
|
|
|
15686
|
+
/**
|
|
15687
|
+
* 提取版权水印任务输入
|
|
15688
|
+
*/
|
|
15689
|
+
export interface ExtractCopyRightWatermarkTaskInput {
|
|
15690
|
+
/**
|
|
15691
|
+
* 需要提取水印的媒体 URL。
|
|
15692
|
+
*/
|
|
15693
|
+
Url?: string
|
|
15694
|
+
}
|
|
15695
|
+
|
|
15667
15696
|
/**
|
|
15668
15697
|
* DescribeSampleSnapshotTemplates返回参数结构体
|
|
15669
15698
|
*/
|
|
@@ -15796,21 +15825,37 @@ export interface TerrorismImgReviewTemplateInfo {
|
|
|
15796
15825
|
}
|
|
15797
15826
|
|
|
15798
15827
|
/**
|
|
15799
|
-
*
|
|
15828
|
+
* ApplyUpload返回参数结构体
|
|
15800
15829
|
*/
|
|
15801
|
-
export interface
|
|
15830
|
+
export interface ApplyUploadResponse {
|
|
15802
15831
|
/**
|
|
15803
|
-
*
|
|
15832
|
+
* 存储桶,用于上传接口 URL 的 bucket_name。
|
|
15804
15833
|
*/
|
|
15805
|
-
|
|
15834
|
+
StorageBucket: string
|
|
15806
15835
|
/**
|
|
15807
|
-
*
|
|
15836
|
+
* 存储园区,用于上传接口 Host 的 Region。
|
|
15808
15837
|
*/
|
|
15809
|
-
|
|
15838
|
+
StorageRegion: string
|
|
15810
15839
|
/**
|
|
15811
|
-
*
|
|
15840
|
+
* 点播会话,用于确认上传接口的参数 VodSessionKey。
|
|
15812
15841
|
*/
|
|
15813
|
-
|
|
15842
|
+
VodSessionKey: string
|
|
15843
|
+
/**
|
|
15844
|
+
* 媒体存储路径,用于上传接口存储媒体的对象键(Key)。
|
|
15845
|
+
*/
|
|
15846
|
+
MediaStoragePath: string
|
|
15847
|
+
/**
|
|
15848
|
+
* 封面存储路径,用于上传接口存储封面的对象键(Key)。
|
|
15849
|
+
*/
|
|
15850
|
+
CoverStoragePath: string
|
|
15851
|
+
/**
|
|
15852
|
+
* 临时凭证,用于上传接口的权限验证。
|
|
15853
|
+
*/
|
|
15854
|
+
TempCertificate: TempCertificate
|
|
15855
|
+
/**
|
|
15856
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15857
|
+
*/
|
|
15858
|
+
RequestId?: string
|
|
15814
15859
|
}
|
|
15815
15860
|
|
|
15816
15861
|
/**
|
|
@@ -16548,9 +16593,14 @@ export interface MediaTranscodeItem {
|
|
|
16548
16593
|
/**
|
|
16549
16594
|
* 数字水印类型。可选值:
|
|
16550
16595
|
<li>Trace 表示经过溯源水印处理;</li>
|
|
16596
|
+
<li>CopyRight 表示经过版权水印处理;</li>
|
|
16551
16597
|
<li>None 表示没有经过数字水印处理。</li>
|
|
16552
16598
|
*/
|
|
16553
16599
|
DigitalWatermarkType: string
|
|
16600
|
+
/**
|
|
16601
|
+
* 版权信息。
|
|
16602
|
+
*/
|
|
16603
|
+
CopyRightWatermarkText?: string
|
|
16554
16604
|
}
|
|
16555
16605
|
|
|
16556
16606
|
/**
|
|
@@ -16571,6 +16621,16 @@ export interface DescribePersonSamplesResponse {
|
|
|
16571
16621
|
RequestId?: string
|
|
16572
16622
|
}
|
|
16573
16623
|
|
|
16624
|
+
/**
|
|
16625
|
+
* 提取版权水印输出信息
|
|
16626
|
+
*/
|
|
16627
|
+
export interface ExtractCopyRightWatermarkTaskOutput {
|
|
16628
|
+
/**
|
|
16629
|
+
* 版权信息。
|
|
16630
|
+
*/
|
|
16631
|
+
Text?: string
|
|
16632
|
+
}
|
|
16633
|
+
|
|
16574
16634
|
/**
|
|
16575
16635
|
* 视频拆条任务输入信息
|
|
16576
16636
|
*/
|
|
@@ -17679,6 +17739,55 @@ export interface DescribeAnimatedGraphicsTemplatesResponse {
|
|
|
17679
17739
|
RequestId?: string
|
|
17680
17740
|
}
|
|
17681
17741
|
|
|
17742
|
+
/**
|
|
17743
|
+
* 提取版权水印任务。
|
|
17744
|
+
*/
|
|
17745
|
+
export interface ExtractCopyRightWatermarkTask {
|
|
17746
|
+
/**
|
|
17747
|
+
* 任务 ID。
|
|
17748
|
+
*/
|
|
17749
|
+
TaskId?: string
|
|
17750
|
+
/**
|
|
17751
|
+
* 任务状态,取值:
|
|
17752
|
+
<li>PROCESSING:处理中;</li>
|
|
17753
|
+
<li>FINISH:已完成。</li>
|
|
17754
|
+
*/
|
|
17755
|
+
Status?: string
|
|
17756
|
+
/**
|
|
17757
|
+
* 错误码,0 表示成功,其他值表示失败:
|
|
17758
|
+
<li>40000:输入参数不合法,请检查输入参数;</li>
|
|
17759
|
+
<li>60000:源文件错误(如视频数据损坏),请确认源文件是否正常;</li>
|
|
17760
|
+
<li>70000:内部服务错误,建议重试。</li>
|
|
17761
|
+
*/
|
|
17762
|
+
ErrCode?: number
|
|
17763
|
+
/**
|
|
17764
|
+
* 错误信息。
|
|
17765
|
+
*/
|
|
17766
|
+
Message?: string
|
|
17767
|
+
/**
|
|
17768
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 [视频处理类错误码](https://cloud.tencent.com/document/product/266/50368#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
|
|
17769
|
+
*/
|
|
17770
|
+
ErrCodeExt?: string
|
|
17771
|
+
/**
|
|
17772
|
+
* 提取版权水印任务输入信息。
|
|
17773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17774
|
+
*/
|
|
17775
|
+
Input?: ExtractCopyRightWatermarkTaskInput
|
|
17776
|
+
/**
|
|
17777
|
+
* 提取版权水印任务输出信息。
|
|
17778
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17779
|
+
*/
|
|
17780
|
+
Output?: ExtractCopyRightWatermarkTaskOutput
|
|
17781
|
+
/**
|
|
17782
|
+
* 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
|
17783
|
+
*/
|
|
17784
|
+
SessionId?: string
|
|
17785
|
+
/**
|
|
17786
|
+
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
17787
|
+
*/
|
|
17788
|
+
SessionContext?: string
|
|
17789
|
+
}
|
|
17790
|
+
|
|
17682
17791
|
/**
|
|
17683
17792
|
* 智能按帧标签结果信息
|
|
17684
17793
|
*/
|
|
@@ -456,11 +456,11 @@ export interface SslVpnClient {
|
|
|
456
456
|
*/
|
|
457
457
|
export interface SourceIpTranslationNatRule {
|
|
458
458
|
/**
|
|
459
|
-
* 资源ID
|
|
459
|
+
* 资源ID,如果ResourceType为USERDEFINED,可以为空
|
|
460
460
|
*/
|
|
461
461
|
ResourceId: string
|
|
462
462
|
/**
|
|
463
|
-
* 资源类型,目前包含SUBNET、NETWORKINTERFACE
|
|
463
|
+
* 资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
|
|
464
464
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
465
465
|
*/
|
|
466
466
|
ResourceType: string
|
|
@@ -3338,11 +3338,11 @@ export interface CreateNatGatewayResponse {
|
|
|
3338
3338
|
/**
|
|
3339
3339
|
* NAT网关对象数组。
|
|
3340
3340
|
*/
|
|
3341
|
-
NatGatewaySet
|
|
3341
|
+
NatGatewaySet?: Array<NatGateway>
|
|
3342
3342
|
/**
|
|
3343
3343
|
* 符合条件的 NAT网关对象数量。
|
|
3344
3344
|
*/
|
|
3345
|
-
TotalCount
|
|
3345
|
+
TotalCount?: number
|
|
3346
3346
|
/**
|
|
3347
3347
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3348
3348
|
*/
|
|
@@ -4868,6 +4868,11 @@ export interface NatGateway {
|
|
|
4868
4868
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4869
4869
|
*/
|
|
4870
4870
|
RestrictState: string
|
|
4871
|
+
/**
|
|
4872
|
+
* NAT网关大版本号,传统型=1,标准型=2
|
|
4873
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4874
|
+
*/
|
|
4875
|
+
NatProductVersion: number
|
|
4871
4876
|
}
|
|
4872
4877
|
|
|
4873
4878
|
/**
|
|
@@ -8625,7 +8630,7 @@ export interface ModifySecurityGroupAttributeResponse {
|
|
|
8625
8630
|
*/
|
|
8626
8631
|
export interface AssociateDirectConnectGatewayNatGatewayRequest {
|
|
8627
8632
|
/**
|
|
8628
|
-
*
|
|
8633
|
+
* VPC实例ID。可通过DescribeVpcs接口返回值中的VpcId获取。
|
|
8629
8634
|
*/
|
|
8630
8635
|
VpcId: string
|
|
8631
8636
|
/**
|
|
@@ -8633,7 +8638,7 @@ export interface AssociateDirectConnectGatewayNatGatewayRequest {
|
|
|
8633
8638
|
*/
|
|
8634
8639
|
NatGatewayId: string
|
|
8635
8640
|
/**
|
|
8636
|
-
*
|
|
8641
|
+
* 专线网关ID。
|
|
8637
8642
|
*/
|
|
8638
8643
|
DirectConnectGatewayId: string
|
|
8639
8644
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.622";
|
|
@@ -881,7 +881,7 @@ export interface CreateCdbProxyAddressResponse {
|
|
|
881
881
|
* 异步任务ID
|
|
882
882
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
883
883
|
*/
|
|
884
|
-
AsyncRequestId
|
|
884
|
+
AsyncRequestId?: string;
|
|
885
885
|
/**
|
|
886
886
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
887
887
|
*/
|
|
@@ -1061,6 +1061,10 @@ export interface CreateCdbProxyAddressRequest {
|
|
|
1061
1061
|
* 安全组
|
|
1062
1062
|
*/
|
|
1063
1063
|
SecurityGroup?: Array<string>;
|
|
1064
|
+
/**
|
|
1065
|
+
* 连接池类型。可选值 transaction(事务级别连接池),connection(会话级别连接池),ConnectionPool为true时生效。
|
|
1066
|
+
*/
|
|
1067
|
+
ConnectionPoolType?: string;
|
|
1064
1068
|
}
|
|
1065
1069
|
/**
|
|
1066
1070
|
* AnalyzeAuditLogs请求参数结构体
|