tencentcloud-sdk-vod 3.0.1110 → 3.0.1118
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/client.rb +31 -0
- data/lib/v20180717/models.rb +95 -44
- 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: df82e26ad59cb996e49684943e60880186827845
|
4
|
+
data.tar.gz: 8d0116e05ca0a107f7f1d1794a3f8291aa5d368a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d929253d15d4ebd8a9806c805f433ebe1568932cef58f7c74e673dd44b0282ff67cf2336dd87fc6566ab1810591e2b1d297cfba55a15110d97c8431de766b1f
|
7
|
+
data.tar.gz: cf99d1fbd54d2677a5319e5cf88d755bd83a189e3aa1dfd6c3aa05e9c21cd193f3524c0557748440895e2a3bc5d10d972811ac5ad9784c1a8d2230ee7410c539
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1118
|
data/lib/v20180717/client.rb
CHANGED
@@ -4102,6 +4102,37 @@ module TencentCloud
|
|
4102
4102
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4103
4103
|
end
|
4104
4104
|
|
4105
|
+
# 使用媒体处理服务(MPS)的媒体处理能力,对点播中的视频发起媒体处理,任务发起时需将 MPS 相关参数以 JSON 格式填入 MPSProcessMediaParams 参数中。具体任务参数配置请参考[媒体处理 ProcessMedia 接口](https://cloud.tencent.com/document/api/862/37578)。
|
4106
|
+
# 当前支持的 MPS 功能:
|
4107
|
+
# 1. [智能擦除](https://cloud.tencent.com/document/product/862/101530):能够对视频画面中的 Logo、字幕、人脸和车牌等元素进行模糊、马赛克或无痕化处理,从而便于内容的传播和分享。该任务产生的新视频将生成新的 FileId 存储在点播平台的子应用中。
|
4108
|
+
|
4109
|
+
# > 以该种方式发起的视频处理任务:
|
4110
|
+
# > 1. 任务状态及结果的查询仍在点播平台中完成,使用 [DescribeTaskDetail](https://cloud.tencent.com/document/product/266/33431) 或 [DescribeTasks](https://cloud.tencent.com/document/product/266/33430) 查询任务。
|
4111
|
+
# > 2. 相关功能的用量及账单将在 MPS 平台给出,因此在使用该功能前,首先需要开通 MPS 服务。
|
4112
|
+
# > 3. 该功能目前仍在内测中,如需测试体验,您可以联系我们获得支持。
|
4113
|
+
|
4114
|
+
# @param request: Request instance for ProcessMediaByMPS.
|
4115
|
+
# @type request: :class:`Tencentcloud::vod::V20180717::ProcessMediaByMPSRequest`
|
4116
|
+
# @rtype: :class:`Tencentcloud::vod::V20180717::ProcessMediaByMPSResponse`
|
4117
|
+
def ProcessMediaByMPS(request)
|
4118
|
+
body = send_request('ProcessMediaByMPS', request.serialize)
|
4119
|
+
response = JSON.parse(body)
|
4120
|
+
if response['Response'].key?('Error') == false
|
4121
|
+
model = ProcessMediaByMPSResponse.new
|
4122
|
+
model.deserialize(response['Response'])
|
4123
|
+
model
|
4124
|
+
else
|
4125
|
+
code = response['Response']['Error']['Code']
|
4126
|
+
message = response['Response']['Error']['Message']
|
4127
|
+
reqid = response['Response']['RequestId']
|
4128
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4129
|
+
end
|
4130
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4131
|
+
raise e
|
4132
|
+
rescue StandardError => e
|
4133
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4134
|
+
end
|
4135
|
+
|
4105
4136
|
# 使用任务流模板,对点播中的视频发起处理任务。
|
4106
4137
|
# 有两种方式创建任务流模板:
|
4107
4138
|
# 1. 在控制台上创建和修改任务流模板;
|
data/lib/v20180717/models.rb
CHANGED
@@ -2144,8 +2144,8 @@ module TencentCloud
|
|
2144
2144
|
|
2145
2145
|
attr_accessor :Name, :SegmentSet, :RecognitionSegmentSet
|
2146
2146
|
extend Gem::Deprecate
|
2147
|
-
deprecate :SegmentSet, :none, 2025,
|
2148
|
-
deprecate :SegmentSet=, :none, 2025,
|
2147
|
+
deprecate :SegmentSet, :none, 2025, 8
|
2148
|
+
deprecate :SegmentSet=, :none, 2025, 8
|
2149
2149
|
|
2150
2150
|
def initialize(name=nil, segmentset=nil, recognitionsegmentset=nil)
|
2151
2151
|
@Name = name
|
@@ -4291,8 +4291,8 @@ module TencentCloud
|
|
4291
4291
|
|
4292
4292
|
attr_accessor :Switch, :SubtitleFormats, :SubtitleFormat, :SrcLanguage, :SubtitleName
|
4293
4293
|
extend Gem::Deprecate
|
4294
|
-
deprecate :SubtitleFormat, :none, 2025,
|
4295
|
-
deprecate :SubtitleFormat=, :none, 2025,
|
4294
|
+
deprecate :SubtitleFormat, :none, 2025, 8
|
4295
|
+
deprecate :SubtitleFormat=, :none, 2025, 8
|
4296
4296
|
|
4297
4297
|
def initialize(switch=nil, subtitleformats=nil, subtitleformat=nil, srclanguage=nil, subtitlename=nil)
|
4298
4298
|
@Switch = switch
|
@@ -4335,8 +4335,8 @@ module TencentCloud
|
|
4335
4335
|
|
4336
4336
|
attr_accessor :Switch, :SubtitleFormatsOperation, :SubtitleFormat, :SrcLanguage, :SubtitleName
|
4337
4337
|
extend Gem::Deprecate
|
4338
|
-
deprecate :SubtitleFormat, :none, 2025,
|
4339
|
-
deprecate :SubtitleFormat=, :none, 2025,
|
4338
|
+
deprecate :SubtitleFormat, :none, 2025, 8
|
4339
|
+
deprecate :SubtitleFormat=, :none, 2025, 8
|
4340
4340
|
|
4341
4341
|
def initialize(switch=nil, subtitleformatsoperation=nil, subtitleformat=nil, srclanguage=nil, subtitlename=nil)
|
4342
4342
|
@Switch = switch
|
@@ -7445,8 +7445,8 @@ module TencentCloud
|
|
7445
7445
|
|
7446
7446
|
attr_accessor :Name, :SubAppId, :Comment, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTaskSet, :AiRecognitionTask, :ReviewAudioVideoTask
|
7447
7447
|
extend Gem::Deprecate
|
7448
|
-
deprecate :AiRecognitionTask, :none, 2025,
|
7449
|
-
deprecate :AiRecognitionTask=, :none, 2025,
|
7448
|
+
deprecate :AiRecognitionTask, :none, 2025, 8
|
7449
|
+
deprecate :AiRecognitionTask=, :none, 2025, 8
|
7450
7450
|
|
7451
7451
|
def initialize(name=nil, subappid=nil, comment=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontaskset=nil, airecognitiontask=nil, reviewaudiovideotask=nil)
|
7452
7452
|
@Name = name
|
@@ -10614,8 +10614,8 @@ module TencentCloud
|
|
10614
10614
|
|
10615
10615
|
attr_accessor :DomainName, :Domain, :Scheme, :PlayKey, :RequestId
|
10616
10616
|
extend Gem::Deprecate
|
10617
|
-
deprecate :DomainName, :none, 2025,
|
10618
|
-
deprecate :DomainName=, :none, 2025,
|
10617
|
+
deprecate :DomainName, :none, 2025, 8
|
10618
|
+
deprecate :DomainName=, :none, 2025, 8
|
10619
10619
|
|
10620
10620
|
def initialize(domainname=nil, domain=nil, scheme=nil, playkey=nil, requestid=nil)
|
10621
10621
|
@DomainName = domainname
|
@@ -11319,8 +11319,9 @@ module TencentCloud
|
|
11319
11319
|
# @type StartTime: String
|
11320
11320
|
# @param EndTime: 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
|
11321
11321
|
# @type EndTime: String
|
11322
|
-
# @param LicenseType: License 类型,默认为
|
11323
|
-
# <li>
|
11322
|
+
# @param LicenseType: License 类型,默认为 CommercialDRMLicense 。目前支持的 License 类型包括:
|
11323
|
+
# <li> CommercialDRMLicense: 商业级 DRM License</li>
|
11324
|
+
# <li> JITEncryptionDRMLicense: 即时加密 DRM License</li>
|
11324
11325
|
# @type LicenseType: String
|
11325
11326
|
# @param SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
11326
11327
|
# @type SubAppId: Integer
|
@@ -11530,6 +11531,7 @@ module TencentCloud
|
|
11530
11531
|
# <li>VoiceTranslation: 语音翻译</li>
|
11531
11532
|
# <li>JITTranscoding: 即时转码</li>
|
11532
11533
|
# <li>VideoSnapshot: 视频截图</li>
|
11534
|
+
# <li>JITEncryption: 即时加密</li>
|
11533
11535
|
# @type Type: String
|
11534
11536
|
|
11535
11537
|
attr_accessor :StartTime, :EndTime, :SubAppId, :Type
|
@@ -12030,8 +12032,8 @@ module TencentCloud
|
|
12030
12032
|
|
12031
12033
|
attr_accessor :SubAppId, :RoundPlayIds, :Status, :CreateTime, :UpdateTime, :ScrollToken, :Offset, :Limit
|
12032
12034
|
extend Gem::Deprecate
|
12033
|
-
deprecate :Offset, :none, 2025,
|
12034
|
-
deprecate :Offset=, :none, 2025,
|
12035
|
+
deprecate :Offset, :none, 2025, 8
|
12036
|
+
deprecate :Offset=, :none, 2025, 8
|
12035
12037
|
|
12036
12038
|
def initialize(subappid=nil, roundplayids=nil, status=nil, createtime=nil, updatetime=nil, scrolltoken=nil, offset=nil, limit=nil)
|
12037
12039
|
@SubAppId = subappid
|
@@ -12075,8 +12077,8 @@ module TencentCloud
|
|
12075
12077
|
|
12076
12078
|
attr_accessor :TotalCount, :RoundPlaySet, :ScrollToken, :RequestId
|
12077
12079
|
extend Gem::Deprecate
|
12078
|
-
deprecate :TotalCount, :none, 2025,
|
12079
|
-
deprecate :TotalCount=, :none, 2025,
|
12080
|
+
deprecate :TotalCount, :none, 2025, 8
|
12081
|
+
deprecate :TotalCount=, :none, 2025, 8
|
12080
12082
|
|
12081
12083
|
def initialize(totalcount=nil, roundplayset=nil, scrolltoken=nil, requestid=nil)
|
12082
12084
|
@TotalCount = totalcount
|
@@ -14592,8 +14594,8 @@ module TencentCloud
|
|
14592
14594
|
|
14593
14595
|
attr_accessor :Uv, :Uid
|
14594
14596
|
extend Gem::Deprecate
|
14595
|
-
deprecate :Uid, :none, 2025,
|
14596
|
-
deprecate :Uid=, :none, 2025,
|
14597
|
+
deprecate :Uid, :none, 2025, 8
|
14598
|
+
deprecate :Uid=, :none, 2025, 8
|
14597
14599
|
|
14598
14600
|
def initialize(uv=nil, uid=nil)
|
14599
14601
|
@Uv = uv
|
@@ -16872,8 +16874,8 @@ module TencentCloud
|
|
16872
16874
|
|
16873
16875
|
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :Suggestion, :Name, :Label, :Url, :AreaCoordSet, :PicUrlExpireTimeStamp, :PicUrlExpireTime
|
16874
16876
|
extend Gem::Deprecate
|
16875
|
-
deprecate :PicUrlExpireTimeStamp, :none, 2025,
|
16876
|
-
deprecate :PicUrlExpireTimeStamp=, :none, 2025,
|
16877
|
+
deprecate :PicUrlExpireTimeStamp, :none, 2025, 8
|
16878
|
+
deprecate :PicUrlExpireTimeStamp=, :none, 2025, 8
|
16877
16879
|
|
16878
16880
|
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, suggestion=nil, name=nil, label=nil, url=nil, areacoordset=nil, picurlexpiretimestamp=nil, picurlexpiretime=nil)
|
16879
16881
|
@StartTimeOffset = starttimeoffset
|
@@ -16927,8 +16929,8 @@ module TencentCloud
|
|
16927
16929
|
|
16928
16930
|
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :Label, :Suggestion, :Url, :PicUrlExpireTimeStamp, :PicUrlExpireTime
|
16929
16931
|
extend Gem::Deprecate
|
16930
|
-
deprecate :PicUrlExpireTimeStamp, :none, 2025,
|
16931
|
-
deprecate :PicUrlExpireTimeStamp=, :none, 2025,
|
16932
|
+
deprecate :PicUrlExpireTimeStamp, :none, 2025, 8
|
16933
|
+
deprecate :PicUrlExpireTimeStamp=, :none, 2025, 8
|
16932
16934
|
|
16933
16935
|
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, label=nil, suggestion=nil, url=nil, picurlexpiretimestamp=nil, picurlexpiretime=nil)
|
16934
16936
|
@StartTimeOffset = starttimeoffset
|
@@ -18518,8 +18520,8 @@ module TencentCloud
|
|
18518
18520
|
|
18519
18521
|
attr_accessor :Duration, :Transitions, :MediaTransitions
|
18520
18522
|
extend Gem::Deprecate
|
18521
|
-
deprecate :Transitions, :none, 2025,
|
18522
|
-
deprecate :Transitions=, :none, 2025,
|
18523
|
+
deprecate :Transitions, :none, 2025, 8
|
18524
|
+
deprecate :Transitions=, :none, 2025, 8
|
18523
18525
|
|
18524
18526
|
def initialize(duration=nil, transitions=nil, mediatransitions=nil)
|
18525
18527
|
@Duration = duration
|
@@ -21937,10 +21939,10 @@ module TencentCloud
|
|
21937
21939
|
|
21938
21940
|
attr_accessor :TaskId, :Status, :ErrCode, :Message, :FileId, :FileName, :FileUrl, :MetaData, :MediaProcessResultSet, :AiContentReviewResultSet, :AiAnalysisResultSet, :AiRecognitionResultSet, :TasksPriority, :TasksNotifyMode, :SessionContext, :SessionId, :Operator, :OperationType
|
21939
21941
|
extend Gem::Deprecate
|
21940
|
-
deprecate :ErrCode, :none, 2025,
|
21941
|
-
deprecate :ErrCode=, :none, 2025,
|
21942
|
-
deprecate :Message, :none, 2025,
|
21943
|
-
deprecate :Message=, :none, 2025,
|
21942
|
+
deprecate :ErrCode, :none, 2025, 8
|
21943
|
+
deprecate :ErrCode=, :none, 2025, 8
|
21944
|
+
deprecate :Message, :none, 2025, 8
|
21945
|
+
deprecate :Message=, :none, 2025, 8
|
21944
21946
|
|
21945
21947
|
def initialize(taskid=nil, status=nil, errcode=nil, message=nil, fileid=nil, filename=nil, fileurl=nil, metadata=nil, mediaprocessresultset=nil, aicontentreviewresultset=nil, aianalysisresultset=nil, airecognitionresultset=nil, taskspriority=nil, tasksnotifymode=nil, sessioncontext=nil, sessionid=nil, operator=nil, operationtype=nil)
|
21946
21948
|
@TaskId = taskid
|
@@ -22054,8 +22056,8 @@ module TencentCloud
|
|
22054
22056
|
|
22055
22057
|
attr_accessor :Name, :Type, :Comment, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTaskSet, :AiRecognitionTask, :MiniProgramPublishTask, :ReviewAudioVideoTask, :CreateTime, :UpdateTime
|
22056
22058
|
extend Gem::Deprecate
|
22057
|
-
deprecate :AiRecognitionTask, :none, 2025,
|
22058
|
-
deprecate :AiRecognitionTask=, :none, 2025,
|
22059
|
+
deprecate :AiRecognitionTask, :none, 2025, 8
|
22060
|
+
deprecate :AiRecognitionTask=, :none, 2025, 8
|
22059
22061
|
|
22060
22062
|
def initialize(name=nil, type=nil, comment=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontaskset=nil, airecognitiontask=nil, miniprogrampublishtask=nil, reviewaudiovideotask=nil, createtime=nil, updatetime=nil)
|
22061
22063
|
@Name = name
|
@@ -22210,6 +22212,54 @@ module TencentCloud
|
|
22210
22212
|
end
|
22211
22213
|
end
|
22212
22214
|
|
22215
|
+
# ProcessMediaByMPS请求参数结构体
|
22216
|
+
class ProcessMediaByMPSRequest < TencentCloud::Common::AbstractModel
|
22217
|
+
# @param FileId: 媒体文件 ID,即该文件在云点播上的全局唯一标识符,在上传成功后由云点播后台分配。可以在 [视频上传完成事件通知](/document/product/266/7830) 或 [云点播控制台](https://console.cloud.tencent.com/vod/media) 获取该字段。
|
22218
|
+
# @type FileId: String
|
22219
|
+
# @param SubAppId: <b>点播[应用](/document/product/266/14574) ID。</b>
|
22220
|
+
# @type SubAppId: Integer
|
22221
|
+
# @param MPSProcessMediaParams: 该参数用于透传至媒体处理服务(MPS),以便从云点播侧发起 MPS 视频处理任务。
|
22222
|
+
# 视频处理参数详情请参考:[MPS 发起媒体处理](https://cloud.tencent.com/document/api/862/37578)。
|
22223
|
+
# 填写说明:
|
22224
|
+
# 1. 目前仅需要配置 MPS “发起媒体处理”接口中的 AiAnalysisTask 参数,其他参数无需填写,若包含其它参数,系统将自动忽略;
|
22225
|
+
# 2. 当前仅支持通过此方式发起智能擦除任务。若配置了其他任务类型的相关参数,系统将自动忽略这些参数。
|
22226
|
+
# @type MPSProcessMediaParams: String
|
22227
|
+
|
22228
|
+
attr_accessor :FileId, :SubAppId, :MPSProcessMediaParams
|
22229
|
+
|
22230
|
+
def initialize(fileid=nil, subappid=nil, mpsprocessmediaparams=nil)
|
22231
|
+
@FileId = fileid
|
22232
|
+
@SubAppId = subappid
|
22233
|
+
@MPSProcessMediaParams = mpsprocessmediaparams
|
22234
|
+
end
|
22235
|
+
|
22236
|
+
def deserialize(params)
|
22237
|
+
@FileId = params['FileId']
|
22238
|
+
@SubAppId = params['SubAppId']
|
22239
|
+
@MPSProcessMediaParams = params['MPSProcessMediaParams']
|
22240
|
+
end
|
22241
|
+
end
|
22242
|
+
|
22243
|
+
# ProcessMediaByMPS返回参数结构体
|
22244
|
+
class ProcessMediaByMPSResponse < TencentCloud::Common::AbstractModel
|
22245
|
+
# @param TaskId: 任务 ID。
|
22246
|
+
# @type TaskId: String
|
22247
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22248
|
+
# @type RequestId: String
|
22249
|
+
|
22250
|
+
attr_accessor :TaskId, :RequestId
|
22251
|
+
|
22252
|
+
def initialize(taskid=nil, requestid=nil)
|
22253
|
+
@TaskId = taskid
|
22254
|
+
@RequestId = requestid
|
22255
|
+
end
|
22256
|
+
|
22257
|
+
def deserialize(params)
|
22258
|
+
@TaskId = params['TaskId']
|
22259
|
+
@RequestId = params['RequestId']
|
22260
|
+
end
|
22261
|
+
end
|
22262
|
+
|
22213
22263
|
# ProcessMediaByProcedure请求参数结构体
|
22214
22264
|
class ProcessMediaByProcedureRequest < TencentCloud::Common::AbstractModel
|
22215
22265
|
# @param FileId: 媒体文件 ID。
|
@@ -22494,8 +22544,8 @@ module TencentCloud
|
|
22494
22544
|
|
22495
22545
|
attr_accessor :ProductType, :StartTime, :ExpireTime, :ProductInstanceId, :LastConsumeDate, :BindStatus, :ProductInstanceResourceSet, :ResourceSet, :ProductInstanceStatus, :RefundStatus, :RenewStatus
|
22496
22546
|
extend Gem::Deprecate
|
22497
|
-
deprecate :ProductInstanceResourceSet, :none, 2025,
|
22498
|
-
deprecate :ProductInstanceResourceSet=, :none, 2025,
|
22547
|
+
deprecate :ProductInstanceResourceSet, :none, 2025, 8
|
22548
|
+
deprecate :ProductInstanceResourceSet=, :none, 2025, 8
|
22499
22549
|
|
22500
22550
|
def initialize(producttype=nil, starttime=nil, expiretime=nil, productinstanceid=nil, lastconsumedate=nil, bindstatus=nil, productinstanceresourceset=nil, resourceset=nil, productinstancestatus=nil, refundstatus=nil, renewstatus=nil)
|
22501
22551
|
@ProductType = producttype
|
@@ -24911,8 +24961,8 @@ module TencentCloud
|
|
24911
24961
|
|
24912
24962
|
attr_accessor :Name, :SubAppId, :Comment, :MediaProcessTask, :AiContentReviewTask, :AiAnalysisTask, :AiRecognitionTaskSet, :AiRecognitionTask, :ReviewAudioVideoTask
|
24913
24963
|
extend Gem::Deprecate
|
24914
|
-
deprecate :AiRecognitionTask, :none, 2025,
|
24915
|
-
deprecate :AiRecognitionTask=, :none, 2025,
|
24964
|
+
deprecate :AiRecognitionTask, :none, 2025, 8
|
24965
|
+
deprecate :AiRecognitionTask=, :none, 2025, 8
|
24916
24966
|
|
24917
24967
|
def initialize(name=nil, subappid=nil, comment=nil, mediaprocesstask=nil, aicontentreviewtask=nil, aianalysistask=nil, airecognitiontaskset=nil, airecognitiontask=nil, reviewaudiovideotask=nil)
|
24918
24968
|
@Name = name
|
@@ -25089,10 +25139,10 @@ module TencentCloud
|
|
25089
25139
|
|
25090
25140
|
attr_accessor :FileId, :OriginalStorageClass, :TargetStorageClass, :RestoreTier, :RestoreDay, :Status, :Message
|
25091
25141
|
extend Gem::Deprecate
|
25092
|
-
deprecate :Status, :none, 2025,
|
25093
|
-
deprecate :Status=, :none, 2025,
|
25094
|
-
deprecate :Message, :none, 2025,
|
25095
|
-
deprecate :Message=, :none, 2025,
|
25142
|
+
deprecate :Status, :none, 2025, 8
|
25143
|
+
deprecate :Status=, :none, 2025, 8
|
25144
|
+
deprecate :Message, :none, 2025, 8
|
25145
|
+
deprecate :Message=, :none, 2025, 8
|
25096
25146
|
|
25097
25147
|
def initialize(fileid=nil, originalstorageclass=nil, targetstorageclass=nil, restoretier=nil, restoreday=nil, status=nil, message=nil)
|
25098
25148
|
@FileId = fileid
|
@@ -25439,8 +25489,8 @@ module TencentCloud
|
|
25439
25489
|
|
25440
25490
|
attr_accessor :ReviewResultSet, :MediaReviewResult, :RequestId
|
25441
25491
|
extend Gem::Deprecate
|
25442
|
-
deprecate :ReviewResultSet, :none, 2025,
|
25443
|
-
deprecate :ReviewResultSet=, :none, 2025,
|
25492
|
+
deprecate :ReviewResultSet, :none, 2025, 8
|
25493
|
+
deprecate :ReviewResultSet=, :none, 2025, 8
|
25444
25494
|
|
25445
25495
|
def initialize(reviewresultset=nil, mediareviewresult=nil, requestid=nil)
|
25446
25496
|
@ReviewResultSet = reviewresultset
|
@@ -27334,8 +27384,8 @@ module TencentCloud
|
|
27334
27384
|
|
27335
27385
|
attr_accessor :Width, :Height, :CycleConfig
|
27336
27386
|
extend Gem::Deprecate
|
27337
|
-
deprecate :CycleConfig, :none, 2025,
|
27338
|
-
deprecate :CycleConfig=, :none, 2025,
|
27387
|
+
deprecate :CycleConfig, :none, 2025, 8
|
27388
|
+
deprecate :CycleConfig=, :none, 2025, 8
|
27339
27389
|
|
27340
27390
|
def initialize(width=nil, height=nil, cycleconfig=nil)
|
27341
27391
|
@Width = width
|
@@ -27531,6 +27581,7 @@ module TencentCloud
|
|
27531
27581
|
# <li>VoiceTranslation: 语音翻译</li>
|
27532
27582
|
# <li>JITTranscoding: 即时转码</li>
|
27533
27583
|
# <li>VideoSnapshot: 视频截图</li>
|
27584
|
+
# <li>JITEncryption: 即时加密</li>
|
27534
27585
|
# @type TaskType: String
|
27535
27586
|
# @param Summary: 任务数统计数据概览,用量单位为秒。
|
27536
27587
|
# @type Summary: Array
|
@@ -27995,8 +28046,8 @@ module TencentCloud
|
|
27995
28046
|
|
27996
28047
|
attr_accessor :Switch, :Definition
|
27997
28048
|
extend Gem::Deprecate
|
27998
|
-
deprecate :Definition, :none, 2025,
|
27999
|
-
deprecate :Definition=, :none, 2025,
|
28049
|
+
deprecate :Definition, :none, 2025, 8
|
28050
|
+
deprecate :Definition=, :none, 2025, 8
|
28000
28051
|
|
28001
28052
|
def initialize(switch=nil, definition=nil)
|
28002
28053
|
@Switch = switch
|
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.1118
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|