tencentcloud-sdk-vod 3.0.556 → 3.0.558
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180717/models.rb +73 -11
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4aeaa0e22666cc76ee7f655aa1880d7448bb3639
|
|
4
|
+
data.tar.gz: d78d1def4c2edb533f2879ad6eb4f2070c1db320
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f2b8b633c498e8589c8c1a4800b0c1590acb018ff52057c94668eb57e0bbefdeaf4113bb7fd31fd1d63539c58bc70e31c980f201869aa2565f841a5a4ff8cb9
|
|
7
|
+
data.tar.gz: 71f466298470a1c433e672f1f2cb3c7e18798e3637633129e2acb41c7712d4c62104fb03ecb722e95997586fdffd5985abf3af211a012d363e75a4193335e230
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.558
|
data/lib/v20180717/models.rb
CHANGED
|
@@ -3894,19 +3894,28 @@ module TencentCloud
|
|
|
3894
3894
|
# <li>srt:生成 SRT 字幕文件。</li>
|
|
3895
3895
|
# <font color='red'>注意:此字段已废弃,建议使用 SubtitleFormats。</font>
|
|
3896
3896
|
# @type SubtitleFormat: String
|
|
3897
|
+
# @param SrcLanguage: 媒体源语言,取值范围:
|
|
3898
|
+
# <li>zh:中文普通话;</li>
|
|
3899
|
+
# <li>en:英语;</li>
|
|
3900
|
+
# <li>ja:日语;</li>
|
|
3901
|
+
# <li>zh-ca:粤语。</li>
|
|
3902
|
+
# <font color=red>注意:</font> 填空字符串,或者不填该参数,则自动识别(效果较难保证,推荐填写原始媒体对应的语言,以提高识别的准确率)。
|
|
3903
|
+
# @type SrcLanguage: String
|
|
3897
3904
|
|
|
3898
|
-
attr_accessor :Switch, :SubtitleFormats, :SubtitleFormat
|
|
3905
|
+
attr_accessor :Switch, :SubtitleFormats, :SubtitleFormat, :SrcLanguage
|
|
3899
3906
|
|
|
3900
|
-
def initialize(switch=nil, subtitleformats=nil, subtitleformat=nil)
|
|
3907
|
+
def initialize(switch=nil, subtitleformats=nil, subtitleformat=nil, srclanguage=nil)
|
|
3901
3908
|
@Switch = switch
|
|
3902
3909
|
@SubtitleFormats = subtitleformats
|
|
3903
3910
|
@SubtitleFormat = subtitleformat
|
|
3911
|
+
@SrcLanguage = srclanguage
|
|
3904
3912
|
end
|
|
3905
3913
|
|
|
3906
3914
|
def deserialize(params)
|
|
3907
3915
|
@Switch = params['Switch']
|
|
3908
3916
|
@SubtitleFormats = params['SubtitleFormats']
|
|
3909
3917
|
@SubtitleFormat = params['SubtitleFormat']
|
|
3918
|
+
@SrcLanguage = params['SrcLanguage']
|
|
3910
3919
|
end
|
|
3911
3920
|
end
|
|
3912
3921
|
|
|
@@ -3923,13 +3932,20 @@ module TencentCloud
|
|
|
3923
3932
|
# <li>srt:生成 SRT 字幕文件。</li>
|
|
3924
3933
|
# <font color='red'>注意:此字段已废弃,建议使用 SubtitleFormatsOperation。</font>
|
|
3925
3934
|
# @type SubtitleFormat: String
|
|
3935
|
+
# @param SrcLanguage: 媒体源语言,取值范围:
|
|
3936
|
+
# <li>zh:中文普通话;</li>
|
|
3937
|
+
# <li>en:英语;</li>
|
|
3938
|
+
# <li>ja:日语;</li>
|
|
3939
|
+
# <li>zh-ca:粤语。</li>
|
|
3940
|
+
# @type SrcLanguage: String
|
|
3926
3941
|
|
|
3927
|
-
attr_accessor :Switch, :SubtitleFormatsOperation, :SubtitleFormat
|
|
3942
|
+
attr_accessor :Switch, :SubtitleFormatsOperation, :SubtitleFormat, :SrcLanguage
|
|
3928
3943
|
|
|
3929
|
-
def initialize(switch=nil, subtitleformatsoperation=nil, subtitleformat=nil)
|
|
3944
|
+
def initialize(switch=nil, subtitleformatsoperation=nil, subtitleformat=nil, srclanguage=nil)
|
|
3930
3945
|
@Switch = switch
|
|
3931
3946
|
@SubtitleFormatsOperation = subtitleformatsoperation
|
|
3932
3947
|
@SubtitleFormat = subtitleformat
|
|
3948
|
+
@SrcLanguage = srclanguage
|
|
3933
3949
|
end
|
|
3934
3950
|
|
|
3935
3951
|
def deserialize(params)
|
|
@@ -3939,6 +3955,7 @@ module TencentCloud
|
|
|
3939
3955
|
@SubtitleFormatsOperation.deserialize(params['SubtitleFormatsOperation'])
|
|
3940
3956
|
end
|
|
3941
3957
|
@SubtitleFormat = params['SubtitleFormat']
|
|
3958
|
+
@SrcLanguage = params['SrcLanguage']
|
|
3942
3959
|
end
|
|
3943
3960
|
end
|
|
3944
3961
|
|
|
@@ -10912,10 +10929,13 @@ module TencentCloud
|
|
|
10912
10929
|
# @param CreateTime: 域名添加到腾讯云点播系统中的时间。
|
|
10913
10930
|
# <li>格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。</li>
|
|
10914
10931
|
# @type CreateTime: String
|
|
10932
|
+
# @param QUICConfig: 域名 QUIC 配置信息。
|
|
10933
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10934
|
+
# @type QUICConfig: :class:`Tencentcloud::Vod.v20180717.models.DomainQUICConfig`
|
|
10915
10935
|
|
|
10916
|
-
attr_accessor :Domain, :AccelerateAreaInfos, :DeployStatus, :HTTPSConfig, :UrlSignatureAuthPolicy, :RefererAuthPolicy, :CreateTime
|
|
10936
|
+
attr_accessor :Domain, :AccelerateAreaInfos, :DeployStatus, :HTTPSConfig, :UrlSignatureAuthPolicy, :RefererAuthPolicy, :CreateTime, :QUICConfig
|
|
10917
10937
|
|
|
10918
|
-
def initialize(domain=nil, accelerateareainfos=nil, deploystatus=nil, httpsconfig=nil, urlsignatureauthpolicy=nil, refererauthpolicy=nil, createtime=nil)
|
|
10938
|
+
def initialize(domain=nil, accelerateareainfos=nil, deploystatus=nil, httpsconfig=nil, urlsignatureauthpolicy=nil, refererauthpolicy=nil, createtime=nil, quicconfig=nil)
|
|
10919
10939
|
@Domain = domain
|
|
10920
10940
|
@AccelerateAreaInfos = accelerateareainfos
|
|
10921
10941
|
@DeployStatus = deploystatus
|
|
@@ -10923,6 +10943,7 @@ module TencentCloud
|
|
|
10923
10943
|
@UrlSignatureAuthPolicy = urlsignatureauthpolicy
|
|
10924
10944
|
@RefererAuthPolicy = refererauthpolicy
|
|
10925
10945
|
@CreateTime = createtime
|
|
10946
|
+
@QUICConfig = quicconfig
|
|
10926
10947
|
end
|
|
10927
10948
|
|
|
10928
10949
|
def deserialize(params)
|
|
@@ -10949,6 +10970,10 @@ module TencentCloud
|
|
|
10949
10970
|
@RefererAuthPolicy.deserialize(params['RefererAuthPolicy'])
|
|
10950
10971
|
end
|
|
10951
10972
|
@CreateTime = params['CreateTime']
|
|
10973
|
+
unless params['QUICConfig'].nil?
|
|
10974
|
+
@QUICConfig = DomainQUICConfig.new
|
|
10975
|
+
@QUICConfig.deserialize(params['QUICConfig'])
|
|
10976
|
+
end
|
|
10952
10977
|
end
|
|
10953
10978
|
end
|
|
10954
10979
|
|
|
@@ -10969,6 +10994,24 @@ module TencentCloud
|
|
|
10969
10994
|
end
|
|
10970
10995
|
end
|
|
10971
10996
|
|
|
10997
|
+
# 域名 QUIC 配置信息
|
|
10998
|
+
class DomainQUICConfig < TencentCloud::Common::AbstractModel
|
|
10999
|
+
# @param Status: QUIC 配置状态,可选值:
|
|
11000
|
+
# <li>Enabled: 启用;</li>
|
|
11001
|
+
# <li>Disabled: 禁用。</li>
|
|
11002
|
+
# @type Status: String
|
|
11003
|
+
|
|
11004
|
+
attr_accessor :Status
|
|
11005
|
+
|
|
11006
|
+
def initialize(status=nil)
|
|
11007
|
+
@Status = status
|
|
11008
|
+
end
|
|
11009
|
+
|
|
11010
|
+
def deserialize(params)
|
|
11011
|
+
@Status = params['Status']
|
|
11012
|
+
end
|
|
11013
|
+
end
|
|
11014
|
+
|
|
10972
11015
|
# DRM 自适应码流播放信息
|
|
10973
11016
|
class DrmStreamingsInfo < TencentCloud::Common::AbstractModel
|
|
10974
11017
|
# @param SimpleAesDefinition: 保护类型为 SimpleAES 的转自适应码流模板 ID。
|
|
@@ -16925,14 +16968,17 @@ module TencentCloud
|
|
|
16925
16968
|
# @type RefererAuthPolicy: :class:`Tencentcloud::Vod.v20180717.models.RefererAuthPolicy`
|
|
16926
16969
|
# @param UrlSignatureAuthPolicy: [Key 防盗链](/document/product/266/14047)规则。
|
|
16927
16970
|
# @type UrlSignatureAuthPolicy: :class:`Tencentcloud::Vod.v20180717.models.UrlSignatureAuthPolicy`
|
|
16971
|
+
# @param QUICConfig: QUIC 配置。
|
|
16972
|
+
# @type QUICConfig: :class:`Tencentcloud::Vod.v20180717.models.DomainQUICConfig`
|
|
16928
16973
|
|
|
16929
|
-
attr_accessor :Domain, :SubAppId, :RefererAuthPolicy, :UrlSignatureAuthPolicy
|
|
16974
|
+
attr_accessor :Domain, :SubAppId, :RefererAuthPolicy, :UrlSignatureAuthPolicy, :QUICConfig
|
|
16930
16975
|
|
|
16931
|
-
def initialize(domain=nil, subappid=nil, refererauthpolicy=nil, urlsignatureauthpolicy=nil)
|
|
16976
|
+
def initialize(domain=nil, subappid=nil, refererauthpolicy=nil, urlsignatureauthpolicy=nil, quicconfig=nil)
|
|
16932
16977
|
@Domain = domain
|
|
16933
16978
|
@SubAppId = subappid
|
|
16934
16979
|
@RefererAuthPolicy = refererauthpolicy
|
|
16935
16980
|
@UrlSignatureAuthPolicy = urlsignatureauthpolicy
|
|
16981
|
+
@QUICConfig = quicconfig
|
|
16936
16982
|
end
|
|
16937
16983
|
|
|
16938
16984
|
def deserialize(params)
|
|
@@ -16946,6 +16992,10 @@ module TencentCloud
|
|
|
16946
16992
|
@UrlSignatureAuthPolicy = UrlSignatureAuthPolicy.new
|
|
16947
16993
|
@UrlSignatureAuthPolicy.deserialize(params['UrlSignatureAuthPolicy'])
|
|
16948
16994
|
end
|
|
16995
|
+
unless params['QUICConfig'].nil?
|
|
16996
|
+
@QUICConfig = DomainQUICConfig.new
|
|
16997
|
+
@QUICConfig.deserialize(params['QUICConfig'])
|
|
16998
|
+
end
|
|
16949
16999
|
end
|
|
16950
17000
|
end
|
|
16951
17001
|
|
|
@@ -20320,20 +20370,32 @@ module TencentCloud
|
|
|
20320
20370
|
|
|
20321
20371
|
# 智能去除水印任务的输出。
|
|
20322
20372
|
class RemoveWaterMarkTaskOutput < TencentCloud::Common::AbstractModel
|
|
20323
|
-
# @param FileId:
|
|
20373
|
+
# @param FileId: 媒体文件 ID。
|
|
20324
20374
|
# @type FileId: String
|
|
20375
|
+
# @param FileType: 文件类型,例如 mp4、mp3 等。
|
|
20376
|
+
# @type FileType: String
|
|
20377
|
+
# @param FileUrl: 媒体文件播放地址。
|
|
20378
|
+
# @type FileUrl: String
|
|
20379
|
+
# @param MediaName: 文件名称,最长 64 个字符。
|
|
20380
|
+
# @type MediaName: String
|
|
20325
20381
|
# @param MetaData: 元信息。包括大小、时长、视频流信息、音频流信息等。
|
|
20326
20382
|
# @type MetaData: :class:`Tencentcloud::Vod.v20180717.models.MediaMetaData`
|
|
20327
20383
|
|
|
20328
|
-
attr_accessor :FileId, :MetaData
|
|
20384
|
+
attr_accessor :FileId, :FileType, :FileUrl, :MediaName, :MetaData
|
|
20329
20385
|
|
|
20330
|
-
def initialize(fileid=nil, metadata=nil)
|
|
20386
|
+
def initialize(fileid=nil, filetype=nil, fileurl=nil, medianame=nil, metadata=nil)
|
|
20331
20387
|
@FileId = fileid
|
|
20388
|
+
@FileType = filetype
|
|
20389
|
+
@FileUrl = fileurl
|
|
20390
|
+
@MediaName = medianame
|
|
20332
20391
|
@MetaData = metadata
|
|
20333
20392
|
end
|
|
20334
20393
|
|
|
20335
20394
|
def deserialize(params)
|
|
20336
20395
|
@FileId = params['FileId']
|
|
20396
|
+
@FileType = params['FileType']
|
|
20397
|
+
@FileUrl = params['FileUrl']
|
|
20398
|
+
@MediaName = params['MediaName']
|
|
20337
20399
|
unless params['MetaData'].nil?
|
|
20338
20400
|
@MetaData = MediaMetaData.new
|
|
20339
20401
|
@MetaData.deserialize(params['MetaData'])
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-vod
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.558
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|