tencentcloud-sdk-vod 1.0.333 → 1.0.336
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 +51 -0
- data/lib/v20180717/models.rb +248 -156
- metadata +2 -2
data/lib/v20180717/models.rb
CHANGED
@@ -3800,7 +3800,7 @@ module TencentCloud
|
|
3800
3800
|
# @type AdaptiveDynamicStreamingDefinition: Integer
|
3801
3801
|
# @param SubtitleIds: 字幕的唯一标识。
|
3802
3802
|
# @type SubtitleIds: Array
|
3803
|
-
# @param SubAppId:
|
3803
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
3804
3804
|
# @type SubAppId: Integer
|
3805
3805
|
|
3806
3806
|
attr_accessor :FileId, :Operation, :AdaptiveDynamicStreamingDefinition, :SubtitleIds, :SubAppId
|
@@ -4197,7 +4197,7 @@ module TencentCloud
|
|
4197
4197
|
class CommitUploadRequest < TencentCloud::Common::AbstractModel
|
4198
4198
|
# @param VodSessionKey: 点播会话,取申请上传接口的返回值 VodSessionKey。
|
4199
4199
|
# @type VodSessionKey: String
|
4200
|
-
# @param SubAppId:
|
4200
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
4201
4201
|
# @type SubAppId: Integer
|
4202
4202
|
|
4203
4203
|
attr_accessor :VodSessionKey, :SubAppId
|
@@ -4218,10 +4218,8 @@ module TencentCloud
|
|
4218
4218
|
# @param FileId: 媒体文件的唯一标识。
|
4219
4219
|
# @type FileId: String
|
4220
4220
|
# @param MediaUrl: 媒体播放地址。
|
4221
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
4222
4221
|
# @type MediaUrl: String
|
4223
4222
|
# @param CoverUrl: 媒体封面地址。
|
4224
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
4225
4223
|
# @type CoverUrl: String
|
4226
4224
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4227
4225
|
# @type RequestId: String
|
@@ -4312,24 +4310,24 @@ module TencentCloud
|
|
4312
4310
|
# @type Tracks: Array
|
4313
4311
|
# @param Output: 输出的媒体文件信息。
|
4314
4312
|
# @type Output: :class:`Tencentcloud::Vod.v20180717.models.ComposeMediaOutput`
|
4313
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
4314
|
+
# @type SubAppId: Integer
|
4315
4315
|
# @param Canvas: 制作视频文件时使用的画布。
|
4316
4316
|
# @type Canvas: :class:`Tencentcloud::Vod.v20180717.models.Canvas`
|
4317
4317
|
# @param SessionContext: 标识来源上下文,用于透传用户请求信息,在ComposeMediaComplete回调将返回该字段值,最长 1000个字符。
|
4318
4318
|
# @type SessionContext: String
|
4319
4319
|
# @param SessionId: 用于任务去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
4320
4320
|
# @type SessionId: String
|
4321
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
4322
|
-
# @type SubAppId: Integer
|
4323
4321
|
|
4324
|
-
attr_accessor :Tracks, :Output, :Canvas, :SessionContext, :SessionId
|
4322
|
+
attr_accessor :Tracks, :Output, :SubAppId, :Canvas, :SessionContext, :SessionId
|
4325
4323
|
|
4326
|
-
def initialize(tracks=nil, output=nil,
|
4324
|
+
def initialize(tracks=nil, output=nil, subappid=nil, canvas=nil, sessioncontext=nil, sessionid=nil)
|
4327
4325
|
@Tracks = tracks
|
4328
4326
|
@Output = output
|
4327
|
+
@SubAppId = subappid
|
4329
4328
|
@Canvas = canvas
|
4330
4329
|
@SessionContext = sessioncontext
|
4331
4330
|
@SessionId = sessionid
|
4332
|
-
@SubAppId = subappid
|
4333
4331
|
end
|
4334
4332
|
|
4335
4333
|
def deserialize(params)
|
@@ -4345,13 +4343,13 @@ module TencentCloud
|
|
4345
4343
|
@Output = ComposeMediaOutput.new
|
4346
4344
|
@Output.deserialize(params['Output'])
|
4347
4345
|
end
|
4346
|
+
@SubAppId = params['SubAppId']
|
4348
4347
|
unless params['Canvas'].nil?
|
4349
4348
|
@Canvas = Canvas.new
|
4350
4349
|
@Canvas.deserialize(params['Canvas'])
|
4351
4350
|
end
|
4352
4351
|
@SessionContext = params['SessionContext']
|
4353
4352
|
@SessionId = params['SessionId']
|
4354
|
-
@SubAppId = params['SubAppId']
|
4355
4353
|
end
|
4356
4354
|
end
|
4357
4355
|
|
@@ -5250,7 +5248,7 @@ module TencentCloud
|
|
5250
5248
|
# @type ParentId: Integer
|
5251
5249
|
# @param ClassName: 分类名称,长度限制:1-64 个字符。
|
5252
5250
|
# @type ClassName: String
|
5253
|
-
# @param SubAppId:
|
5251
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
5254
5252
|
# @type SubAppId: Integer
|
5255
5253
|
|
5256
5254
|
attr_accessor :ParentId, :ClassName, :SubAppId
|
@@ -5962,7 +5960,7 @@ module TencentCloud
|
|
5962
5960
|
class CreateStorageRegionRequest < TencentCloud::Common::AbstractModel
|
5963
5961
|
# @param StorageRegion: 待开通的存储地域,必须是系统支持的地域。
|
5964
5962
|
# @type StorageRegion: String
|
5965
|
-
# @param SubAppId:
|
5963
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
5966
5964
|
# @type SubAppId: Integer
|
5967
5965
|
|
5968
5966
|
attr_accessor :StorageRegion, :SubAppId
|
@@ -6038,6 +6036,8 @@ module TencentCloud
|
|
6038
6036
|
class CreateSuperPlayerConfigRequest < TencentCloud::Common::AbstractModel
|
6039
6037
|
# @param Name: 播放器配置名称,长度限制:64 个字符。只允许出现 [0-9a-zA-Z] 及 _- 字符(如 test_ABC-123),同一个用户该名称唯一。
|
6040
6038
|
# @type Name: String
|
6039
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6040
|
+
# @type SubAppId: Integer
|
6041
6041
|
# @param AudioVideoType: 播放的音视频类型,可选值:
|
6042
6042
|
# <li>AdaptiveDynamicStream:自适应码流输出;</li>
|
6043
6043
|
# <li>Transcode:转码输出;</li>
|
@@ -6081,13 +6081,12 @@ module TencentCloud
|
|
6081
6081
|
# @type Scheme: String
|
6082
6082
|
# @param Comment: 模板描述信息,长度限制:256 个字符。
|
6083
6083
|
# @type Comment: String
|
6084
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
6085
|
-
# @type SubAppId: Integer
|
6086
6084
|
|
6087
|
-
attr_accessor :Name, :AudioVideoType, :DrmSwitch, :AdaptiveDynamicStreamingDefinition, :DrmStreamingsInfo, :TranscodeDefinition, :ImageSpriteDefinition, :ResolutionNames, :Domain, :Scheme, :Comment
|
6085
|
+
attr_accessor :Name, :SubAppId, :AudioVideoType, :DrmSwitch, :AdaptiveDynamicStreamingDefinition, :DrmStreamingsInfo, :TranscodeDefinition, :ImageSpriteDefinition, :ResolutionNames, :Domain, :Scheme, :Comment
|
6088
6086
|
|
6089
|
-
def initialize(name=nil, audiovideotype=nil, drmswitch=nil, adaptivedynamicstreamingdefinition=nil, drmstreamingsinfo=nil, transcodedefinition=nil, imagespritedefinition=nil, resolutionnames=nil, domain=nil, scheme=nil, comment=nil
|
6087
|
+
def initialize(name=nil, subappid=nil, audiovideotype=nil, drmswitch=nil, adaptivedynamicstreamingdefinition=nil, drmstreamingsinfo=nil, transcodedefinition=nil, imagespritedefinition=nil, resolutionnames=nil, domain=nil, scheme=nil, comment=nil)
|
6090
6088
|
@Name = name
|
6089
|
+
@SubAppId = subappid
|
6091
6090
|
@AudioVideoType = audiovideotype
|
6092
6091
|
@DrmSwitch = drmswitch
|
6093
6092
|
@AdaptiveDynamicStreamingDefinition = adaptivedynamicstreamingdefinition
|
@@ -6098,11 +6097,11 @@ module TencentCloud
|
|
6098
6097
|
@Domain = domain
|
6099
6098
|
@Scheme = scheme
|
6100
6099
|
@Comment = comment
|
6101
|
-
@SubAppId = subappid
|
6102
6100
|
end
|
6103
6101
|
|
6104
6102
|
def deserialize(params)
|
6105
6103
|
@Name = params['Name']
|
6104
|
+
@SubAppId = params['SubAppId']
|
6106
6105
|
@AudioVideoType = params['AudioVideoType']
|
6107
6106
|
@DrmSwitch = params['DrmSwitch']
|
6108
6107
|
@AdaptiveDynamicStreamingDefinition = params['AdaptiveDynamicStreamingDefinition']
|
@@ -6123,7 +6122,6 @@ module TencentCloud
|
|
6123
6122
|
@Domain = params['Domain']
|
6124
6123
|
@Scheme = params['Scheme']
|
6125
6124
|
@Comment = params['Comment']
|
6126
|
-
@SubAppId = params['SubAppId']
|
6127
6125
|
end
|
6128
6126
|
end
|
6129
6127
|
|
@@ -6230,27 +6228,27 @@ module TencentCloud
|
|
6230
6228
|
class CreateVodDomainRequest < TencentCloud::Common::AbstractModel
|
6231
6229
|
# @param Domain: 需要接入点播的加速域名。注意:不支持填写泛域名。
|
6232
6230
|
# @type Domain: String
|
6231
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6232
|
+
# @type SubAppId: Integer
|
6233
6233
|
# @param AccelerateArea: 需要开启 CDN 加速的区域:
|
6234
6234
|
# <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
|
6235
6235
|
# <li>Outside Chinese Mainland: 中国境外。</li>
|
6236
6236
|
# <li>Global: 全球范围。</li>
|
6237
6237
|
# 如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
|
6238
6238
|
# @type AccelerateArea: String
|
6239
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
6240
|
-
# @type SubAppId: Integer
|
6241
6239
|
|
6242
|
-
attr_accessor :Domain, :
|
6240
|
+
attr_accessor :Domain, :SubAppId, :AccelerateArea
|
6243
6241
|
|
6244
|
-
def initialize(domain=nil,
|
6242
|
+
def initialize(domain=nil, subappid=nil, acceleratearea=nil)
|
6245
6243
|
@Domain = domain
|
6246
|
-
@AccelerateArea = acceleratearea
|
6247
6244
|
@SubAppId = subappid
|
6245
|
+
@AccelerateArea = acceleratearea
|
6248
6246
|
end
|
6249
6247
|
|
6250
6248
|
def deserialize(params)
|
6251
6249
|
@Domain = params['Domain']
|
6252
|
-
@AccelerateArea = params['AccelerateArea']
|
6253
6250
|
@SubAppId = params['SubAppId']
|
6251
|
+
@AccelerateArea = params['AccelerateArea']
|
6254
6252
|
end
|
6255
6253
|
end
|
6256
6254
|
|
@@ -6600,7 +6598,7 @@ module TencentCloud
|
|
6600
6598
|
class DeleteClassRequest < TencentCloud::Common::AbstractModel
|
6601
6599
|
# @param ClassId: 分类 ID
|
6602
6600
|
# @type ClassId: Integer
|
6603
|
-
# @param SubAppId:
|
6601
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6604
6602
|
# @type SubAppId: Integer
|
6605
6603
|
|
6606
6604
|
attr_accessor :ClassId, :SubAppId
|
@@ -6780,21 +6778,22 @@ module TencentCloud
|
|
6780
6778
|
class DeleteMediaRequest < TencentCloud::Common::AbstractModel
|
6781
6779
|
# @param FileId: 媒体文件的唯一标识。
|
6782
6780
|
# @type FileId: String
|
6781
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6782
|
+
# @type SubAppId: Integer
|
6783
6783
|
# @param DeleteParts: 指定本次需要删除的部分。默认值为 "[]", 表示删除媒体及其对应的全部视频处理文件。
|
6784
6784
|
# @type DeleteParts: Array
|
6785
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID 。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
6786
|
-
# @type SubAppId: Integer
|
6787
6785
|
|
6788
|
-
attr_accessor :FileId, :
|
6786
|
+
attr_accessor :FileId, :SubAppId, :DeleteParts
|
6789
6787
|
|
6790
|
-
def initialize(fileid=nil,
|
6788
|
+
def initialize(fileid=nil, subappid=nil, deleteparts=nil)
|
6791
6789
|
@FileId = fileid
|
6792
|
-
@DeleteParts = deleteparts
|
6793
6790
|
@SubAppId = subappid
|
6791
|
+
@DeleteParts = deleteparts
|
6794
6792
|
end
|
6795
6793
|
|
6796
6794
|
def deserialize(params)
|
6797
6795
|
@FileId = params['FileId']
|
6796
|
+
@SubAppId = params['SubAppId']
|
6798
6797
|
unless params['DeleteParts'].nil?
|
6799
6798
|
@DeleteParts = []
|
6800
6799
|
params['DeleteParts'].each do |i|
|
@@ -6803,7 +6802,6 @@ module TencentCloud
|
|
6803
6802
|
@DeleteParts << mediadeleteitem_tmp
|
6804
6803
|
end
|
6805
6804
|
end
|
6806
|
-
@SubAppId = params['SubAppId']
|
6807
6805
|
end
|
6808
6806
|
end
|
6809
6807
|
|
@@ -6863,7 +6861,7 @@ module TencentCloud
|
|
6863
6861
|
class DeleteProcedureTemplateRequest < TencentCloud::Common::AbstractModel
|
6864
6862
|
# @param Name: 任务流名字。
|
6865
6863
|
# @type Name: String
|
6866
|
-
# @param SubAppId:
|
6864
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6867
6865
|
# @type SubAppId: Integer
|
6868
6866
|
|
6869
6867
|
attr_accessor :Name, :SubAppId
|
@@ -6971,7 +6969,7 @@ module TencentCloud
|
|
6971
6969
|
class DeleteSuperPlayerConfigRequest < TencentCloud::Common::AbstractModel
|
6972
6970
|
# @param Name: 播放器配置名称。
|
6973
6971
|
# @type Name: String
|
6974
|
-
# @param SubAppId:
|
6972
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6975
6973
|
# @type SubAppId: Integer
|
6976
6974
|
|
6977
6975
|
attr_accessor :Name, :SubAppId
|
@@ -7043,7 +7041,7 @@ module TencentCloud
|
|
7043
7041
|
class DeleteVodDomainRequest < TencentCloud::Common::AbstractModel
|
7044
7042
|
# @param Domain: 要删除的点播加速域名。
|
7045
7043
|
# @type Domain: String
|
7046
|
-
# @param SubAppId:
|
7044
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7047
7045
|
# @type SubAppId: Integer
|
7048
7046
|
|
7049
7047
|
attr_accessor :Domain, :SubAppId
|
@@ -7332,7 +7330,7 @@ module TencentCloud
|
|
7332
7330
|
|
7333
7331
|
# DescribeAllClass请求参数结构体
|
7334
7332
|
class DescribeAllClassRequest < TencentCloud::Common::AbstractModel
|
7335
|
-
# @param SubAppId:
|
7333
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7336
7334
|
# @type SubAppId: Integer
|
7337
7335
|
|
7338
7336
|
attr_accessor :SubAppId
|
@@ -7450,6 +7448,8 @@ module TencentCloud
|
|
7450
7448
|
# @type StartTime: String
|
7451
7449
|
# @param EndTime: 结束时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
7452
7450
|
# @type EndTime: String
|
7451
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7452
|
+
# @type SubAppId: Integer
|
7453
7453
|
# @param DomainNames: 域名列表。一次最多查询20个域名的数据。默认返回所有域名叠加的用量数据。
|
7454
7454
|
# @type DomainNames: Array
|
7455
7455
|
# @param Area: 服务区域,取值有:
|
@@ -7515,33 +7515,31 @@ module TencentCloud
|
|
7515
7515
|
# <li>1440:天粒度,返回指定查询时间内1天粒度的数据。起始时间和结束时间跨度大于24小时,只支持天粒度的数据。</li>
|
7516
7516
|
# 当 StartTime 和 EndTime 时间跨度大于24小时时,DataInterval 默认为 1440。
|
7517
7517
|
# @type DataInterval: Integer
|
7518
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
7519
|
-
# @type SubAppId: Integer
|
7520
7518
|
|
7521
|
-
attr_accessor :Metric, :StartTime, :EndTime, :DomainNames, :Area, :Districts, :Isps, :DataInterval
|
7519
|
+
attr_accessor :Metric, :StartTime, :EndTime, :SubAppId, :DomainNames, :Area, :Districts, :Isps, :DataInterval
|
7522
7520
|
|
7523
|
-
def initialize(metric=nil, starttime=nil, endtime=nil, domainnames=nil, area=nil, districts=nil, isps=nil, datainterval=nil
|
7521
|
+
def initialize(metric=nil, starttime=nil, endtime=nil, subappid=nil, domainnames=nil, area=nil, districts=nil, isps=nil, datainterval=nil)
|
7524
7522
|
@Metric = metric
|
7525
7523
|
@StartTime = starttime
|
7526
7524
|
@EndTime = endtime
|
7525
|
+
@SubAppId = subappid
|
7527
7526
|
@DomainNames = domainnames
|
7528
7527
|
@Area = area
|
7529
7528
|
@Districts = districts
|
7530
7529
|
@Isps = isps
|
7531
7530
|
@DataInterval = datainterval
|
7532
|
-
@SubAppId = subappid
|
7533
7531
|
end
|
7534
7532
|
|
7535
7533
|
def deserialize(params)
|
7536
7534
|
@Metric = params['Metric']
|
7537
7535
|
@StartTime = params['StartTime']
|
7538
7536
|
@EndTime = params['EndTime']
|
7537
|
+
@SubAppId = params['SubAppId']
|
7539
7538
|
@DomainNames = params['DomainNames']
|
7540
7539
|
@Area = params['Area']
|
7541
7540
|
@Districts = params['Districts']
|
7542
7541
|
@Isps = params['Isps']
|
7543
7542
|
@DataInterval = params['DataInterval']
|
7544
|
-
@SubAppId = params['SubAppId']
|
7545
7543
|
end
|
7546
7544
|
end
|
7547
7545
|
|
@@ -7586,6 +7584,9 @@ module TencentCloud
|
|
7586
7584
|
# <li>Flux:流量,单位为 byte。</li>
|
7587
7585
|
# <li>Bandwidth:带宽,单位为 bps。</li>
|
7588
7586
|
# @type DataType: String
|
7587
|
+
# @param SubAppId: <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
7588
|
+
# 当该字段为1时,表示以管理员身份查询所有子应用(含主应用)的用量合计,此时时间粒度只支持天粒度。</b>
|
7589
|
+
# @type SubAppId: Integer
|
7589
7590
|
# @param DataInterval: 用量数据的时间粒度,单位:分钟,取值有:
|
7590
7591
|
# <li>5:5 分钟粒度,返回指定查询时间内5分钟粒度的明细数据。</li>
|
7591
7592
|
# <li>60:小时粒度,返回指定查询时间内1小时粒度的数据。</li>
|
@@ -7594,28 +7595,25 @@ module TencentCloud
|
|
7594
7595
|
# @type DataInterval: Integer
|
7595
7596
|
# @param DomainNames: 域名列表。一次最多查询20个域名的用量数据。可以指定多个域名,查询这些域名叠加的用量数据。默认返回所有域名叠加的用量数据。
|
7596
7597
|
# @type DomainNames: Array
|
7597
|
-
# @param SubAppId: 点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
7598
|
-
# 当该字段为1时,表示以管理员身份查询所有子应用(含主应用)的用量合计,此时时间粒度只支持天粒度。
|
7599
|
-
# @type SubAppId: Integer
|
7600
7598
|
|
7601
|
-
attr_accessor :StartTime, :EndTime, :DataType, :
|
7599
|
+
attr_accessor :StartTime, :EndTime, :DataType, :SubAppId, :DataInterval, :DomainNames
|
7602
7600
|
|
7603
|
-
def initialize(starttime=nil, endtime=nil, datatype=nil,
|
7601
|
+
def initialize(starttime=nil, endtime=nil, datatype=nil, subappid=nil, datainterval=nil, domainnames=nil)
|
7604
7602
|
@StartTime = starttime
|
7605
7603
|
@EndTime = endtime
|
7606
7604
|
@DataType = datatype
|
7605
|
+
@SubAppId = subappid
|
7607
7606
|
@DataInterval = datainterval
|
7608
7607
|
@DomainNames = domainnames
|
7609
|
-
@SubAppId = subappid
|
7610
7608
|
end
|
7611
7609
|
|
7612
7610
|
def deserialize(params)
|
7613
7611
|
@StartTime = params['StartTime']
|
7614
7612
|
@EndTime = params['EndTime']
|
7615
7613
|
@DataType = params['DataType']
|
7614
|
+
@SubAppId = params['SubAppId']
|
7616
7615
|
@DataInterval = params['DataInterval']
|
7617
7616
|
@DomainNames = params['DomainNames']
|
7618
|
-
@SubAppId = params['SubAppId']
|
7619
7617
|
end
|
7620
7618
|
end
|
7621
7619
|
|
@@ -7658,31 +7656,31 @@ module TencentCloud
|
|
7658
7656
|
# @type StartTime: String
|
7659
7657
|
# @param EndTime: 结束时间需大于起始时间;使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F)。
|
7660
7658
|
# @type EndTime: String
|
7659
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7660
|
+
# @type SubAppId: Integer
|
7661
7661
|
# @param Limit: 分页拉取的最大返回结果数。默认值:100;最大值:1000。
|
7662
7662
|
# @type Limit: Integer
|
7663
7663
|
# @param Offset: 分页拉取的起始偏移量。默认值:0。
|
7664
7664
|
# @type Offset: Integer
|
7665
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
7666
|
-
# @type SubAppId: Integer
|
7667
7665
|
|
7668
|
-
attr_accessor :DomainName, :StartTime, :EndTime, :
|
7666
|
+
attr_accessor :DomainName, :StartTime, :EndTime, :SubAppId, :Limit, :Offset
|
7669
7667
|
|
7670
|
-
def initialize(domainname=nil, starttime=nil, endtime=nil,
|
7668
|
+
def initialize(domainname=nil, starttime=nil, endtime=nil, subappid=nil, limit=nil, offset=nil)
|
7671
7669
|
@DomainName = domainname
|
7672
7670
|
@StartTime = starttime
|
7673
7671
|
@EndTime = endtime
|
7672
|
+
@SubAppId = subappid
|
7674
7673
|
@Limit = limit
|
7675
7674
|
@Offset = offset
|
7676
|
-
@SubAppId = subappid
|
7677
7675
|
end
|
7678
7676
|
|
7679
7677
|
def deserialize(params)
|
7680
7678
|
@DomainName = params['DomainName']
|
7681
7679
|
@StartTime = params['StartTime']
|
7682
7680
|
@EndTime = params['EndTime']
|
7681
|
+
@SubAppId = params['SubAppId']
|
7683
7682
|
@Limit = params['Limit']
|
7684
7683
|
@Offset = params['Offset']
|
7685
|
-
@SubAppId = params['SubAppId']
|
7686
7684
|
end
|
7687
7685
|
end
|
7688
7686
|
|
@@ -7798,7 +7796,7 @@ module TencentCloud
|
|
7798
7796
|
# @type StartDate: String
|
7799
7797
|
# @param EndDate: 结束日期,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。该参数仅日期部分有效。
|
7800
7798
|
# @type EndDate: String
|
7801
|
-
# @param SubAppId:
|
7799
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7802
7800
|
# @type SubAppId: Integer
|
7803
7801
|
|
7804
7802
|
attr_accessor :FileId, :StartDate, :EndDate, :SubAppId
|
@@ -7908,7 +7906,7 @@ module TencentCloud
|
|
7908
7906
|
# @type StartTime: String
|
7909
7907
|
# @param EndTime: 结束日期,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
7910
7908
|
# @type EndTime: String
|
7911
|
-
# @param SubAppId:
|
7909
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7912
7910
|
# @type SubAppId: Integer
|
7913
7911
|
|
7914
7912
|
attr_accessor :StartTime, :EndTime, :SubAppId
|
@@ -8046,7 +8044,7 @@ module TencentCloud
|
|
8046
8044
|
|
8047
8045
|
# DescribeEventsState请求参数结构体
|
8048
8046
|
class DescribeEventsStateRequest < TencentCloud::Common::AbstractModel
|
8049
|
-
# @param SubAppId:
|
8047
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
8050
8048
|
# @type SubAppId: Integer
|
8051
8049
|
|
8052
8050
|
attr_accessor :SubAppId
|
@@ -8210,7 +8208,7 @@ module TencentCloud
|
|
8210
8208
|
# @type StartTime: String
|
8211
8209
|
# @param EndTime: 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
|
8212
8210
|
# @type EndTime: String
|
8213
|
-
# @param SubAppId:
|
8211
|
+
# @param SubAppId: <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
8214
8212
|
# @type SubAppId: Integer
|
8215
8213
|
|
8216
8214
|
attr_accessor :StartTime, :EndTime, :SubAppId
|
@@ -8449,30 +8447,30 @@ module TencentCloud
|
|
8449
8447
|
# @type StartTime: String
|
8450
8448
|
# @param EndTime: 结束时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
8451
8449
|
# @type EndTime: String
|
8450
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
8451
|
+
# @type SubAppId: Integer
|
8452
8452
|
# @param Interval: 统计时间粒度,有效值:
|
8453
8453
|
# <li>Hour:以小时为粒度。</li>
|
8454
8454
|
# <li>Day:以天为粒度。</li>
|
8455
8455
|
# 默认按时间跨度决定,小于1天以小时为粒度,大于等于1天则以天为粒度。
|
8456
8456
|
# @type Interval: String
|
8457
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
8458
|
-
# @type SubAppId: Integer
|
8459
8457
|
|
8460
|
-
attr_accessor :FileId, :StartTime, :EndTime, :
|
8458
|
+
attr_accessor :FileId, :StartTime, :EndTime, :SubAppId, :Interval
|
8461
8459
|
|
8462
|
-
def initialize(fileid=nil, starttime=nil, endtime=nil,
|
8460
|
+
def initialize(fileid=nil, starttime=nil, endtime=nil, subappid=nil, interval=nil)
|
8463
8461
|
@FileId = fileid
|
8464
8462
|
@StartTime = starttime
|
8465
8463
|
@EndTime = endtime
|
8466
|
-
@Interval = interval
|
8467
8464
|
@SubAppId = subappid
|
8465
|
+
@Interval = interval
|
8468
8466
|
end
|
8469
8467
|
|
8470
8468
|
def deserialize(params)
|
8471
8469
|
@FileId = params['FileId']
|
8472
8470
|
@StartTime = params['StartTime']
|
8473
8471
|
@EndTime = params['EndTime']
|
8474
|
-
@Interval = params['Interval']
|
8475
8472
|
@SubAppId = params['SubAppId']
|
8473
|
+
@Interval = params['Interval']
|
8476
8474
|
end
|
8477
8475
|
end
|
8478
8476
|
|
@@ -8751,7 +8749,7 @@ module TencentCloud
|
|
8751
8749
|
# @type StartTime: String
|
8752
8750
|
# @param EndTime: 结束日期,需大于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
8753
8751
|
# @type EndTime: String
|
8754
|
-
# @param SubAppId:
|
8752
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
8755
8753
|
# @type SubAppId: Integer
|
8756
8754
|
|
8757
8755
|
attr_accessor :StartTime, :EndTime, :SubAppId
|
@@ -8936,7 +8934,7 @@ module TencentCloud
|
|
8936
8934
|
|
8937
8935
|
# DescribeStorageData请求参数结构体
|
8938
8936
|
class DescribeStorageDataRequest < TencentCloud::Common::AbstractModel
|
8939
|
-
# @param SubAppId:
|
8937
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
8940
8938
|
# @type SubAppId: Integer
|
8941
8939
|
|
8942
8940
|
attr_accessor :SubAppId
|
@@ -8956,22 +8954,28 @@ module TencentCloud
|
|
8956
8954
|
# @type MediaCount: Integer
|
8957
8955
|
# @param TotalStorage: 当前总存储量,单位是字节。
|
8958
8956
|
# @type TotalStorage: Integer
|
8959
|
-
# @param InfrequentStorage: 当前低频存储量,单位是字节。
|
8960
|
-
# @type InfrequentStorage: Integer
|
8961
8957
|
# @param StandardStorage: 当前标准存储量,单位是字节。
|
8962
8958
|
# @type StandardStorage: Integer
|
8959
|
+
# @param InfrequentStorage: 当前低频存储量,单位是字节。
|
8960
|
+
# @type InfrequentStorage: Integer
|
8961
|
+
# @param ArchiveStorage: 当前归档存储量,单位是字节。
|
8962
|
+
# @type ArchiveStorage: Integer
|
8963
|
+
# @param DeepArchiveStorage: 当前深度归档存储量,单位是字节。
|
8964
|
+
# @type DeepArchiveStorage: Integer
|
8963
8965
|
# @param StorageStat: 各计费区域的存储用量。
|
8964
8966
|
# @type StorageStat: Array
|
8965
8967
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
8966
8968
|
# @type RequestId: String
|
8967
8969
|
|
8968
|
-
attr_accessor :MediaCount, :TotalStorage, :InfrequentStorage, :
|
8970
|
+
attr_accessor :MediaCount, :TotalStorage, :StandardStorage, :InfrequentStorage, :ArchiveStorage, :DeepArchiveStorage, :StorageStat, :RequestId
|
8969
8971
|
|
8970
|
-
def initialize(mediacount=nil, totalstorage=nil, infrequentstorage=nil,
|
8972
|
+
def initialize(mediacount=nil, totalstorage=nil, standardstorage=nil, infrequentstorage=nil, archivestorage=nil, deeparchivestorage=nil, storagestat=nil, requestid=nil)
|
8971
8973
|
@MediaCount = mediacount
|
8972
8974
|
@TotalStorage = totalstorage
|
8973
|
-
@InfrequentStorage = infrequentstorage
|
8974
8975
|
@StandardStorage = standardstorage
|
8976
|
+
@InfrequentStorage = infrequentstorage
|
8977
|
+
@ArchiveStorage = archivestorage
|
8978
|
+
@DeepArchiveStorage = deeparchivestorage
|
8975
8979
|
@StorageStat = storagestat
|
8976
8980
|
@RequestId = requestid
|
8977
8981
|
end
|
@@ -8979,8 +8983,10 @@ module TencentCloud
|
|
8979
8983
|
def deserialize(params)
|
8980
8984
|
@MediaCount = params['MediaCount']
|
8981
8985
|
@TotalStorage = params['TotalStorage']
|
8982
|
-
@InfrequentStorage = params['InfrequentStorage']
|
8983
8986
|
@StandardStorage = params['StandardStorage']
|
8987
|
+
@InfrequentStorage = params['InfrequentStorage']
|
8988
|
+
@ArchiveStorage = params['ArchiveStorage']
|
8989
|
+
@DeepArchiveStorage = params['DeepArchiveStorage']
|
8984
8990
|
unless params['StorageStat'].nil?
|
8985
8991
|
@StorageStat = []
|
8986
8992
|
params['StorageStat'].each do |i|
|
@@ -8999,6 +9005,9 @@ module TencentCloud
|
|
8999
9005
|
# @type StartTime: String
|
9000
9006
|
# @param EndTime: 结束时间,需大于开始日期,格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#52)。
|
9001
9007
|
# @type EndTime: String
|
9008
|
+
# @param SubAppId: <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
9009
|
+
# 当该字段为1时,表示以管理员身份查询所有子应用(含主应用)的用量合计。</b>
|
9010
|
+
# @type SubAppId: Integer
|
9002
9011
|
# @param Interval: 统计时间粒度,有效值:
|
9003
9012
|
# <li>Minute:以5分钟为粒度。</li>
|
9004
9013
|
# <li>Day:以天为粒度。</li>
|
@@ -9020,32 +9029,29 @@ module TencentCloud
|
|
9020
9029
|
# <li>DeepArchiveBulkRetrieval:深度归档批量取回量。</li>
|
9021
9030
|
# 默认值为 TotalStorage。
|
9022
9031
|
# @type StorageType: String
|
9023
|
-
# @param SubAppId: 点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
9024
|
-
# 当该字段为1时,表示以管理员身份查询所有子应用(含主应用)的用量合计。
|
9025
|
-
# @type SubAppId: Integer
|
9026
9032
|
# @param Area: 查询的存储区域,有效值:
|
9027
9033
|
# <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
|
9028
9034
|
# <li>Outside Chinese Mainland:中国境外。</li>
|
9029
9035
|
# 默认值为 Chinese Mainland。
|
9030
9036
|
# @type Area: String
|
9031
9037
|
|
9032
|
-
attr_accessor :StartTime, :EndTime, :
|
9038
|
+
attr_accessor :StartTime, :EndTime, :SubAppId, :Interval, :StorageType, :Area
|
9033
9039
|
|
9034
|
-
def initialize(starttime=nil, endtime=nil,
|
9040
|
+
def initialize(starttime=nil, endtime=nil, subappid=nil, interval=nil, storagetype=nil, area=nil)
|
9035
9041
|
@StartTime = starttime
|
9036
9042
|
@EndTime = endtime
|
9043
|
+
@SubAppId = subappid
|
9037
9044
|
@Interval = interval
|
9038
9045
|
@StorageType = storagetype
|
9039
|
-
@SubAppId = subappid
|
9040
9046
|
@Area = area
|
9041
9047
|
end
|
9042
9048
|
|
9043
9049
|
def deserialize(params)
|
9044
9050
|
@StartTime = params['StartTime']
|
9045
9051
|
@EndTime = params['EndTime']
|
9052
|
+
@SubAppId = params['SubAppId']
|
9046
9053
|
@Interval = params['Interval']
|
9047
9054
|
@StorageType = params['StorageType']
|
9048
|
-
@SubAppId = params['SubAppId']
|
9049
9055
|
@Area = params['Area']
|
9050
9056
|
end
|
9051
9057
|
end
|
@@ -9079,7 +9085,7 @@ module TencentCloud
|
|
9079
9085
|
|
9080
9086
|
# DescribeStorageRegions请求参数结构体
|
9081
9087
|
class DescribeStorageRegionsRequest < TencentCloud::Common::AbstractModel
|
9082
|
-
# @param SubAppId:
|
9088
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
9083
9089
|
# @type SubAppId: Integer
|
9084
9090
|
|
9085
9091
|
attr_accessor :SubAppId
|
@@ -9423,6 +9429,8 @@ module TencentCloud
|
|
9423
9429
|
|
9424
9430
|
# DescribeTasks请求参数结构体
|
9425
9431
|
class DescribeTasksRequest < TencentCloud::Common::AbstractModel
|
9432
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
9433
|
+
# @type SubAppId: Integer
|
9426
9434
|
# @param Status: 过滤条件:任务状态,可选值:WAITING(等待中)、PROCESSING(处理中)、FINISH(已完成)。
|
9427
9435
|
# @type Status: String
|
9428
9436
|
# @param FileId: 过滤条件:文件 ID。
|
@@ -9439,12 +9447,11 @@ module TencentCloud
|
|
9439
9447
|
# @type Limit: Integer
|
9440
9448
|
# @param ScrollToken: 翻页标识,分批拉取时使用:当单次请求无法拉取所有数据,接口将会返回 ScrollToken,下一次请求携带该 Token,将会从下一条记录开始获取。
|
9441
9449
|
# @type ScrollToken: String
|
9442
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
9443
|
-
# @type SubAppId: Integer
|
9444
9450
|
|
9445
|
-
attr_accessor :Status, :FileId, :CreateTime, :FinishTime, :Sort, :Limit, :ScrollToken
|
9451
|
+
attr_accessor :SubAppId, :Status, :FileId, :CreateTime, :FinishTime, :Sort, :Limit, :ScrollToken
|
9446
9452
|
|
9447
|
-
def initialize(status=nil, fileid=nil, createtime=nil, finishtime=nil, sort=nil, limit=nil, scrolltoken=nil
|
9453
|
+
def initialize(subappid=nil, status=nil, fileid=nil, createtime=nil, finishtime=nil, sort=nil, limit=nil, scrolltoken=nil)
|
9454
|
+
@SubAppId = subappid
|
9448
9455
|
@Status = status
|
9449
9456
|
@FileId = fileid
|
9450
9457
|
@CreateTime = createtime
|
@@ -9452,10 +9459,10 @@ module TencentCloud
|
|
9452
9459
|
@Sort = sort
|
9453
9460
|
@Limit = limit
|
9454
9461
|
@ScrollToken = scrolltoken
|
9455
|
-
@SubAppId = subappid
|
9456
9462
|
end
|
9457
9463
|
|
9458
9464
|
def deserialize(params)
|
9465
|
+
@SubAppId = params['SubAppId']
|
9459
9466
|
@Status = params['Status']
|
9460
9467
|
@FileId = params['FileId']
|
9461
9468
|
unless params['CreateTime'].nil?
|
@@ -9472,7 +9479,6 @@ module TencentCloud
|
|
9472
9479
|
end
|
9473
9480
|
@Limit = params['Limit']
|
9474
9481
|
@ScrollToken = params['ScrollToken']
|
9475
|
-
@SubAppId = params['SubAppId']
|
9476
9482
|
end
|
9477
9483
|
end
|
9478
9484
|
|
@@ -9989,6 +9995,8 @@ module TencentCloud
|
|
9989
9995
|
class EditMediaRequest < TencentCloud::Common::AbstractModel
|
9990
9996
|
# @param InputType: 输入视频的类型,可以取的值为 File,Stream 两种。
|
9991
9997
|
# @type InputType: String
|
9998
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
9999
|
+
# @type SubAppId: Integer
|
9992
10000
|
# @param FileInfos: 输入的视频文件信息,当 InputType 为 File 时必填。
|
9993
10001
|
# @type FileInfos: Array
|
9994
10002
|
# @param StreamInfos: 输入的流信息,当 InputType 为 Stream 时必填。
|
@@ -10009,13 +10017,12 @@ module TencentCloud
|
|
10009
10017
|
# @type SessionId: String
|
10010
10018
|
# @param ExtInfo: 保留字段,特殊用途时使用。
|
10011
10019
|
# @type ExtInfo: String
|
10012
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
10013
|
-
# @type SubAppId: Integer
|
10014
10020
|
|
10015
|
-
attr_accessor :InputType, :FileInfos, :StreamInfos, :Definition, :ProcedureName, :OutputConfig, :SessionContext, :TasksPriority, :SessionId, :ExtInfo
|
10021
|
+
attr_accessor :InputType, :SubAppId, :FileInfos, :StreamInfos, :Definition, :ProcedureName, :OutputConfig, :SessionContext, :TasksPriority, :SessionId, :ExtInfo
|
10016
10022
|
|
10017
|
-
def initialize(inputtype=nil, fileinfos=nil, streaminfos=nil, definition=nil, procedurename=nil, outputconfig=nil, sessioncontext=nil, taskspriority=nil, sessionid=nil, extinfo=nil
|
10023
|
+
def initialize(inputtype=nil, subappid=nil, fileinfos=nil, streaminfos=nil, definition=nil, procedurename=nil, outputconfig=nil, sessioncontext=nil, taskspriority=nil, sessionid=nil, extinfo=nil)
|
10018
10024
|
@InputType = inputtype
|
10025
|
+
@SubAppId = subappid
|
10019
10026
|
@FileInfos = fileinfos
|
10020
10027
|
@StreamInfos = streaminfos
|
10021
10028
|
@Definition = definition
|
@@ -10025,11 +10032,11 @@ module TencentCloud
|
|
10025
10032
|
@TasksPriority = taskspriority
|
10026
10033
|
@SessionId = sessionid
|
10027
10034
|
@ExtInfo = extinfo
|
10028
|
-
@SubAppId = subappid
|
10029
10035
|
end
|
10030
10036
|
|
10031
10037
|
def deserialize(params)
|
10032
10038
|
@InputType = params['InputType']
|
10039
|
+
@SubAppId = params['SubAppId']
|
10033
10040
|
unless params['FileInfos'].nil?
|
10034
10041
|
@FileInfos = []
|
10035
10042
|
params['FileInfos'].each do |i|
|
@@ -10056,7 +10063,6 @@ module TencentCloud
|
|
10056
10063
|
@TasksPriority = params['TasksPriority']
|
10057
10064
|
@SessionId = params['SessionId']
|
10058
10065
|
@ExtInfo = params['ExtInfo']
|
10059
|
-
@SubAppId = params['SubAppId']
|
10060
10066
|
end
|
10061
10067
|
end
|
10062
10068
|
|
@@ -10485,33 +10491,33 @@ module TencentCloud
|
|
10485
10491
|
# @type FunctionName: String
|
10486
10492
|
# @param FunctionArg: 接口参数,具体参数格式调用时与后端协调。
|
10487
10493
|
# @type FunctionArg: String
|
10494
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
10495
|
+
# @type SubAppId: Integer
|
10488
10496
|
# @param SessionContext: 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
10489
10497
|
# @type SessionContext: String
|
10490
10498
|
# @param SessionId: 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
10491
10499
|
# @type SessionId: String
|
10492
10500
|
# @param ExtInfo: 保留字段,特殊用途时使用。
|
10493
10501
|
# @type ExtInfo: String
|
10494
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
10495
|
-
# @type SubAppId: Integer
|
10496
10502
|
|
10497
|
-
attr_accessor :FunctionName, :FunctionArg, :SessionContext, :SessionId, :ExtInfo
|
10503
|
+
attr_accessor :FunctionName, :FunctionArg, :SubAppId, :SessionContext, :SessionId, :ExtInfo
|
10498
10504
|
|
10499
|
-
def initialize(functionname=nil, functionarg=nil,
|
10505
|
+
def initialize(functionname=nil, functionarg=nil, subappid=nil, sessioncontext=nil, sessionid=nil, extinfo=nil)
|
10500
10506
|
@FunctionName = functionname
|
10501
10507
|
@FunctionArg = functionarg
|
10508
|
+
@SubAppId = subappid
|
10502
10509
|
@SessionContext = sessioncontext
|
10503
10510
|
@SessionId = sessionid
|
10504
10511
|
@ExtInfo = extinfo
|
10505
|
-
@SubAppId = subappid
|
10506
10512
|
end
|
10507
10513
|
|
10508
10514
|
def deserialize(params)
|
10509
10515
|
@FunctionName = params['FunctionName']
|
10510
10516
|
@FunctionArg = params['FunctionArg']
|
10517
|
+
@SubAppId = params['SubAppId']
|
10511
10518
|
@SessionContext = params['SessionContext']
|
10512
10519
|
@SessionId = params['SessionId']
|
10513
10520
|
@ExtInfo = params['ExtInfo']
|
10514
|
-
@SubAppId = params['SubAppId']
|
10515
10521
|
end
|
10516
10522
|
end
|
10517
10523
|
|
@@ -10714,7 +10720,7 @@ module TencentCloud
|
|
10714
10720
|
# @type FileIds: Array
|
10715
10721
|
# @param Operation: forbid:禁播,recover:解禁。
|
10716
10722
|
# @type Operation: String
|
10717
|
-
# @param SubAppId:
|
10723
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID 。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
10718
10724
|
# @type SubAppId: Integer
|
10719
10725
|
|
10720
10726
|
attr_accessor :FileIds, :Operation, :SubAppId
|
@@ -11418,6 +11424,8 @@ module TencentCloud
|
|
11418
11424
|
# @type StartTime: String
|
11419
11425
|
# @param EndTime: 流剪辑的结束时间,格式参照 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
11420
11426
|
# @type EndTime: String
|
11427
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
11428
|
+
# @type SubAppId: Integer
|
11421
11429
|
# @param IsPersistence: 是否固化。0 不固化,1 固化。默认不固化。
|
11422
11430
|
# @type IsPersistence: Integer
|
11423
11431
|
# @param ExpireTime: 剪辑固化后的视频存储过期时间。格式参照 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。填“9999-12-31T23:59:59Z”表示永不过期。过期后该媒体文件及其相关资源(转码结果、雪碧图等)将被永久删除。仅 IsPersistence 为 1 时有效,默认剪辑固化的视频永不过期。
|
@@ -11430,35 +11438,33 @@ module TencentCloud
|
|
11430
11438
|
# @type Host: String
|
11431
11439
|
# @param ExtInfo: 系统保留字段,请勿填写。
|
11432
11440
|
# @type ExtInfo: String
|
11433
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
11434
|
-
# @type SubAppId: Integer
|
11435
11441
|
|
11436
|
-
attr_accessor :StreamId, :StartTime, :EndTime, :IsPersistence, :ExpireTime, :Procedure, :MetaDataRequired, :Host, :ExtInfo
|
11442
|
+
attr_accessor :StreamId, :StartTime, :EndTime, :SubAppId, :IsPersistence, :ExpireTime, :Procedure, :MetaDataRequired, :Host, :ExtInfo
|
11437
11443
|
|
11438
|
-
def initialize(streamid=nil, starttime=nil, endtime=nil, ispersistence=nil, expiretime=nil, procedure=nil, metadatarequired=nil, host=nil, extinfo=nil
|
11444
|
+
def initialize(streamid=nil, starttime=nil, endtime=nil, subappid=nil, ispersistence=nil, expiretime=nil, procedure=nil, metadatarequired=nil, host=nil, extinfo=nil)
|
11439
11445
|
@StreamId = streamid
|
11440
11446
|
@StartTime = starttime
|
11441
11447
|
@EndTime = endtime
|
11448
|
+
@SubAppId = subappid
|
11442
11449
|
@IsPersistence = ispersistence
|
11443
11450
|
@ExpireTime = expiretime
|
11444
11451
|
@Procedure = procedure
|
11445
11452
|
@MetaDataRequired = metadatarequired
|
11446
11453
|
@Host = host
|
11447
11454
|
@ExtInfo = extinfo
|
11448
|
-
@SubAppId = subappid
|
11449
11455
|
end
|
11450
11456
|
|
11451
11457
|
def deserialize(params)
|
11452
11458
|
@StreamId = params['StreamId']
|
11453
11459
|
@StartTime = params['StartTime']
|
11454
11460
|
@EndTime = params['EndTime']
|
11461
|
+
@SubAppId = params['SubAppId']
|
11455
11462
|
@IsPersistence = params['IsPersistence']
|
11456
11463
|
@ExpireTime = params['ExpireTime']
|
11457
11464
|
@Procedure = params['Procedure']
|
11458
11465
|
@MetaDataRequired = params['MetaDataRequired']
|
11459
11466
|
@Host = params['Host']
|
11460
11467
|
@ExtInfo = params['ExtInfo']
|
11461
|
-
@SubAppId = params['SubAppId']
|
11462
11468
|
end
|
11463
11469
|
end
|
11464
11470
|
|
@@ -11516,7 +11522,7 @@ module TencentCloud
|
|
11516
11522
|
# @param OperationType: 操作类型,取值范围:
|
11517
11523
|
# <li>Abort:终止任务。只能终止已发起且状态为等待中(WAITING)的任务。</li>
|
11518
11524
|
# @type OperationType: String
|
11519
|
-
# @param SubAppId:
|
11525
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
11520
11526
|
# @type SubAppId: Integer
|
11521
11527
|
|
11522
11528
|
attr_accessor :TaskId, :OperationType, :SubAppId
|
@@ -13939,7 +13945,7 @@ module TencentCloud
|
|
13939
13945
|
# @type ClassId: Integer
|
13940
13946
|
# @param ClassName: 分类名称。长度限制:1-64 个字符。
|
13941
13947
|
# @type ClassName: String
|
13942
|
-
# @param SubAppId:
|
13948
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
13943
13949
|
# @type SubAppId: Integer
|
13944
13950
|
|
13945
13951
|
attr_accessor :ClassId, :ClassName, :SubAppId
|
@@ -14066,9 +14072,9 @@ module TencentCloud
|
|
14066
14072
|
|
14067
14073
|
# ModifyDefaultStorageRegion请求参数结构体
|
14068
14074
|
class ModifyDefaultStorageRegionRequest < TencentCloud::Common::AbstractModel
|
14069
|
-
# @param StorageRegion:
|
14075
|
+
# @param StorageRegion: 默认的存储地域,必须是已经开通的地域(通过 DescribeStorageRegions 接口查询)。
|
14070
14076
|
# @type StorageRegion: String
|
14071
|
-
# @param SubAppId:
|
14077
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
14072
14078
|
# @type SubAppId: Integer
|
14073
14079
|
|
14074
14080
|
attr_accessor :StorageRegion, :SubAppId
|
@@ -14302,6 +14308,8 @@ module TencentCloud
|
|
14302
14308
|
class ModifyMediaInfoRequest < TencentCloud::Common::AbstractModel
|
14303
14309
|
# @param FileId: 媒体文件唯一标识。
|
14304
14310
|
# @type FileId: String
|
14311
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID 。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
14312
|
+
# @type SubAppId: Integer
|
14305
14313
|
# @param Name: 媒体文件名称,最长 64 个字符。
|
14306
14314
|
# @type Name: String
|
14307
14315
|
# @param Description: 媒体文件描述,最长 128 个字符。
|
@@ -14333,13 +14341,12 @@ module TencentCloud
|
|
14333
14341
|
# @param ClearSubtitles: 取值 1 表示清空媒体文件所有的字幕信息,其他值无意义。
|
14334
14342
|
# 同一个请求里,ClearSubtitles 与 AddSubtitles不能同时出现。
|
14335
14343
|
# @type ClearSubtitles: Integer
|
14336
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID 。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
14337
|
-
# @type SubAppId: Integer
|
14338
14344
|
|
14339
|
-
attr_accessor :FileId, :Name, :Description, :ClassId, :ExpireTime, :CoverData, :AddKeyFrameDescs, :DeleteKeyFrameDescs, :ClearKeyFrameDescs, :AddTags, :DeleteTags, :ClearTags, :AddSubtitles, :DeleteSubtitleIds, :ClearSubtitles
|
14345
|
+
attr_accessor :FileId, :SubAppId, :Name, :Description, :ClassId, :ExpireTime, :CoverData, :AddKeyFrameDescs, :DeleteKeyFrameDescs, :ClearKeyFrameDescs, :AddTags, :DeleteTags, :ClearTags, :AddSubtitles, :DeleteSubtitleIds, :ClearSubtitles
|
14340
14346
|
|
14341
|
-
def initialize(fileid=nil, name=nil, description=nil, classid=nil, expiretime=nil, coverdata=nil, addkeyframedescs=nil, deletekeyframedescs=nil, clearkeyframedescs=nil, addtags=nil, deletetags=nil, cleartags=nil, addsubtitles=nil, deletesubtitleids=nil, clearsubtitles=nil
|
14347
|
+
def initialize(fileid=nil, subappid=nil, name=nil, description=nil, classid=nil, expiretime=nil, coverdata=nil, addkeyframedescs=nil, deletekeyframedescs=nil, clearkeyframedescs=nil, addtags=nil, deletetags=nil, cleartags=nil, addsubtitles=nil, deletesubtitleids=nil, clearsubtitles=nil)
|
14342
14348
|
@FileId = fileid
|
14349
|
+
@SubAppId = subappid
|
14343
14350
|
@Name = name
|
14344
14351
|
@Description = description
|
14345
14352
|
@ClassId = classid
|
@@ -14354,11 +14361,11 @@ module TencentCloud
|
|
14354
14361
|
@AddSubtitles = addsubtitles
|
14355
14362
|
@DeleteSubtitleIds = deletesubtitleids
|
14356
14363
|
@ClearSubtitles = clearsubtitles
|
14357
|
-
@SubAppId = subappid
|
14358
14364
|
end
|
14359
14365
|
|
14360
14366
|
def deserialize(params)
|
14361
14367
|
@FileId = params['FileId']
|
14368
|
+
@SubAppId = params['SubAppId']
|
14362
14369
|
@Name = params['Name']
|
14363
14370
|
@Description = params['Description']
|
14364
14371
|
@ClassId = params['ClassId']
|
@@ -14387,7 +14394,6 @@ module TencentCloud
|
|
14387
14394
|
end
|
14388
14395
|
@DeleteSubtitleIds = params['DeleteSubtitleIds']
|
14389
14396
|
@ClearSubtitles = params['ClearSubtitles']
|
14390
|
-
@SubAppId = params['SubAppId']
|
14391
14397
|
end
|
14392
14398
|
end
|
14393
14399
|
|
@@ -14433,7 +14439,7 @@ module TencentCloud
|
|
14433
14439
|
# <li> ARCHIVE:归档存储。</li>
|
14434
14440
|
# <li> DEEP_ARCHIVE:深度归档存储。</li>
|
14435
14441
|
# @type StorageClass: String
|
14436
|
-
# @param SubAppId:
|
14442
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
14437
14443
|
# @type SubAppId: Integer
|
14438
14444
|
# @param RestoreTier: 取回模式。当文件的存储类型从归档或深度归档转换为标准存储时,需要指定取回(也称为解冻)操作的模式,具体说明请参考[数据取回及取回模式](https://cloud.tencent.com/document/product/266/56196#retake)。
|
14439
14445
|
# 当媒体文件目前的存储类型为归档存储时,有以下取值:
|
@@ -14740,7 +14746,7 @@ module TencentCloud
|
|
14740
14746
|
|
14741
14747
|
# ModifySubAppIdInfo请求参数结构体
|
14742
14748
|
class ModifySubAppIdInfoRequest < TencentCloud::Common::AbstractModel
|
14743
|
-
# @param SubAppId: 子应用 ID
|
14749
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
14744
14750
|
# @type SubAppId: Integer
|
14745
14751
|
# @param Name: 子应用名称,长度限制:40个字符。
|
14746
14752
|
# @type Name: String
|
@@ -14780,7 +14786,7 @@ module TencentCloud
|
|
14780
14786
|
|
14781
14787
|
# ModifySubAppIdStatus请求参数结构体
|
14782
14788
|
class ModifySubAppIdStatusRequest < TencentCloud::Common::AbstractModel
|
14783
|
-
# @param SubAppId: 子应用 ID
|
14789
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
14784
14790
|
# @type SubAppId: Integer
|
14785
14791
|
# @param Status: 子应用状态,取值范围:
|
14786
14792
|
# <li>On:启用。</li>
|
@@ -15007,7 +15013,7 @@ module TencentCloud
|
|
15007
15013
|
# <li>Disabled:关闭。</li>
|
15008
15014
|
# 开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
|
15009
15015
|
# @type Status: String
|
15010
|
-
# @param SubAppId:
|
15016
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
15011
15017
|
# @type SubAppId: Integer
|
15012
15018
|
|
15013
15019
|
attr_accessor :Domain, :Area, :Status, :SubAppId
|
@@ -15047,24 +15053,25 @@ module TencentCloud
|
|
15047
15053
|
class ModifyVodDomainConfigRequest < TencentCloud::Common::AbstractModel
|
15048
15054
|
# @param Domain: 域名。
|
15049
15055
|
# @type Domain: String
|
15056
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
15057
|
+
# @type SubAppId: Integer
|
15050
15058
|
# @param RefererAuthPolicy: [Referer 防盗链](/document/product/266/14046)规则。
|
15051
15059
|
# @type RefererAuthPolicy: :class:`Tencentcloud::Vod.v20180717.models.RefererAuthPolicy`
|
15052
15060
|
# @param UrlSignatureAuthPolicy: [Key 防盗链](/document/product/266/14047)规则。
|
15053
15061
|
# @type UrlSignatureAuthPolicy: :class:`Tencentcloud::Vod.v20180717.models.UrlSignatureAuthPolicy`
|
15054
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
15055
|
-
# @type SubAppId: Integer
|
15056
15062
|
|
15057
|
-
attr_accessor :Domain, :
|
15063
|
+
attr_accessor :Domain, :SubAppId, :RefererAuthPolicy, :UrlSignatureAuthPolicy
|
15058
15064
|
|
15059
|
-
def initialize(domain=nil,
|
15065
|
+
def initialize(domain=nil, subappid=nil, refererauthpolicy=nil, urlsignatureauthpolicy=nil)
|
15060
15066
|
@Domain = domain
|
15067
|
+
@SubAppId = subappid
|
15061
15068
|
@RefererAuthPolicy = refererauthpolicy
|
15062
15069
|
@UrlSignatureAuthPolicy = urlsignatureauthpolicy
|
15063
|
-
@SubAppId = subappid
|
15064
15070
|
end
|
15065
15071
|
|
15066
15072
|
def deserialize(params)
|
15067
15073
|
@Domain = params['Domain']
|
15074
|
+
@SubAppId = params['SubAppId']
|
15068
15075
|
unless params['RefererAuthPolicy'].nil?
|
15069
15076
|
@RefererAuthPolicy = RefererAuthPolicy.new
|
15070
15077
|
@RefererAuthPolicy.deserialize(params['RefererAuthPolicy'])
|
@@ -15073,7 +15080,6 @@ module TencentCloud
|
|
15073
15080
|
@UrlSignatureAuthPolicy = UrlSignatureAuthPolicy.new
|
15074
15081
|
@UrlSignatureAuthPolicy.deserialize(params['UrlSignatureAuthPolicy'])
|
15075
15082
|
end
|
15076
|
-
@SubAppId = params['SubAppId']
|
15077
15083
|
end
|
15078
15084
|
end
|
15079
15085
|
|
@@ -16477,6 +16483,8 @@ module TencentCloud
|
|
16477
16483
|
# @type FileId: String
|
16478
16484
|
# @param ProcedureName: [任务流模板](/document/product/266/11700#.E4.BB.BB.E5.8A.A1.E6.B5.81.E6.A8.A1.E6.9D.BF)名字。
|
16479
16485
|
# @type ProcedureName: String
|
16486
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
16487
|
+
# @type SubAppId: Integer
|
16480
16488
|
# @param TasksPriority: 任务流的优先级,数值越大优先级越高,取值范围是-10到10,不填代表0。
|
16481
16489
|
# @type TasksPriority: Integer
|
16482
16490
|
# @param TasksNotifyMode: 任务流状态变更通知模式,可取值有 Finish,Change 和 None,不填代表 Finish。
|
@@ -16487,31 +16495,29 @@ module TencentCloud
|
|
16487
16495
|
# @type SessionId: String
|
16488
16496
|
# @param ExtInfo: 保留字段,特殊用途时使用。
|
16489
16497
|
# @type ExtInfo: String
|
16490
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
16491
|
-
# @type SubAppId: Integer
|
16492
16498
|
|
16493
|
-
attr_accessor :FileId, :ProcedureName, :TasksPriority, :TasksNotifyMode, :SessionContext, :SessionId, :ExtInfo
|
16499
|
+
attr_accessor :FileId, :ProcedureName, :SubAppId, :TasksPriority, :TasksNotifyMode, :SessionContext, :SessionId, :ExtInfo
|
16494
16500
|
|
16495
|
-
def initialize(fileid=nil, procedurename=nil, taskspriority=nil, tasksnotifymode=nil, sessioncontext=nil, sessionid=nil, extinfo=nil
|
16501
|
+
def initialize(fileid=nil, procedurename=nil, subappid=nil, taskspriority=nil, tasksnotifymode=nil, sessioncontext=nil, sessionid=nil, extinfo=nil)
|
16496
16502
|
@FileId = fileid
|
16497
16503
|
@ProcedureName = procedurename
|
16504
|
+
@SubAppId = subappid
|
16498
16505
|
@TasksPriority = taskspriority
|
16499
16506
|
@TasksNotifyMode = tasksnotifymode
|
16500
16507
|
@SessionContext = sessioncontext
|
16501
16508
|
@SessionId = sessionid
|
16502
16509
|
@ExtInfo = extinfo
|
16503
|
-
@SubAppId = subappid
|
16504
16510
|
end
|
16505
16511
|
|
16506
16512
|
def deserialize(params)
|
16507
16513
|
@FileId = params['FileId']
|
16508
16514
|
@ProcedureName = params['ProcedureName']
|
16515
|
+
@SubAppId = params['SubAppId']
|
16509
16516
|
@TasksPriority = params['TasksPriority']
|
16510
16517
|
@TasksNotifyMode = params['TasksNotifyMode']
|
16511
16518
|
@SessionContext = params['SessionContext']
|
16512
16519
|
@SessionId = params['SessionId']
|
16513
16520
|
@ExtInfo = params['ExtInfo']
|
16514
|
-
@SubAppId = params['SubAppId']
|
16515
16521
|
end
|
16516
16522
|
end
|
16517
16523
|
|
@@ -17022,8 +17028,10 @@ module TencentCloud
|
|
17022
17028
|
# PullUpload请求参数结构体
|
17023
17029
|
class PullUploadRequest < TencentCloud::Common::AbstractModel
|
17024
17030
|
# @param MediaUrl: 要拉取的媒体 URL,暂不支持拉取 Dash 格式(可以支持 HLS)。
|
17025
|
-
# 支持的扩展名详见[媒体类型](https://cloud.tencent.com/document/product/266/9760#.E5.AA.92.E4.BD.93.E7.B1.BB.E5.9E.8B)
|
17031
|
+
# 支持的扩展名详见[媒体类型](https://cloud.tencent.com/document/product/266/9760#.E5.AA.92.E4.BD.93.E7.B1.BB.E5.9E.8B)。请确保媒体 URL 可以访问。
|
17026
17032
|
# @type MediaUrl: String
|
17033
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
17034
|
+
# @type SubAppId: Integer
|
17027
17035
|
# @param MediaName: 媒体名称。
|
17028
17036
|
# @type MediaName: String
|
17029
17037
|
# @param CoverUrl: 要拉取的视频封面 URL。仅支持 gif、jpeg、png 三种图片格式。
|
@@ -17044,15 +17052,14 @@ module TencentCloud
|
|
17044
17052
|
# @type SessionId: String
|
17045
17053
|
# @param ExtInfo: 保留字段,特殊用途时使用。
|
17046
17054
|
# @type ExtInfo: String
|
17047
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
17048
|
-
# @type SubAppId: Integer
|
17049
17055
|
# @param SourceContext: 来源上下文,用于透传用户请求信息,[上传完成回调](/document/product/266/7830) 将返回该字段值,最长 250 个字符。
|
17050
17056
|
# @type SourceContext: String
|
17051
17057
|
|
17052
|
-
attr_accessor :MediaUrl, :MediaName, :CoverUrl, :Procedure, :ExpireTime, :StorageRegion, :ClassId, :SessionContext, :SessionId, :ExtInfo, :
|
17058
|
+
attr_accessor :MediaUrl, :SubAppId, :MediaName, :CoverUrl, :Procedure, :ExpireTime, :StorageRegion, :ClassId, :SessionContext, :SessionId, :ExtInfo, :SourceContext
|
17053
17059
|
|
17054
|
-
def initialize(mediaurl=nil, medianame=nil, coverurl=nil, procedure=nil, expiretime=nil, storageregion=nil, classid=nil, sessioncontext=nil, sessionid=nil, extinfo=nil,
|
17060
|
+
def initialize(mediaurl=nil, subappid=nil, medianame=nil, coverurl=nil, procedure=nil, expiretime=nil, storageregion=nil, classid=nil, sessioncontext=nil, sessionid=nil, extinfo=nil, sourcecontext=nil)
|
17055
17061
|
@MediaUrl = mediaurl
|
17062
|
+
@SubAppId = subappid
|
17056
17063
|
@MediaName = medianame
|
17057
17064
|
@CoverUrl = coverurl
|
17058
17065
|
@Procedure = procedure
|
@@ -17062,12 +17069,12 @@ module TencentCloud
|
|
17062
17069
|
@SessionContext = sessioncontext
|
17063
17070
|
@SessionId = sessionid
|
17064
17071
|
@ExtInfo = extinfo
|
17065
|
-
@SubAppId = subappid
|
17066
17072
|
@SourceContext = sourcecontext
|
17067
17073
|
end
|
17068
17074
|
|
17069
17075
|
def deserialize(params)
|
17070
17076
|
@MediaUrl = params['MediaUrl']
|
17077
|
+
@SubAppId = params['SubAppId']
|
17071
17078
|
@MediaName = params['MediaName']
|
17072
17079
|
@CoverUrl = params['CoverUrl']
|
17073
17080
|
@Procedure = params['Procedure']
|
@@ -17077,7 +17084,6 @@ module TencentCloud
|
|
17077
17084
|
@SessionContext = params['SessionContext']
|
17078
17085
|
@SessionId = params['SessionId']
|
17079
17086
|
@ExtInfo = params['ExtInfo']
|
17080
|
-
@SubAppId = params['SubAppId']
|
17081
17087
|
@SourceContext = params['SourceContext']
|
17082
17088
|
end
|
17083
17089
|
end
|
@@ -17242,6 +17248,42 @@ module TencentCloud
|
|
17242
17248
|
end
|
17243
17249
|
end
|
17244
17250
|
|
17251
|
+
# RefreshUrlCache请求参数结构体
|
17252
|
+
class RefreshUrlCacheRequest < TencentCloud::Common::AbstractModel
|
17253
|
+
# @param Urls: 刷新的 URL 列表,单次最多指定20个 URL。
|
17254
|
+
# @type Urls: Array
|
17255
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
17256
|
+
# @type SubAppId: Integer
|
17257
|
+
|
17258
|
+
attr_accessor :Urls, :SubAppId
|
17259
|
+
|
17260
|
+
def initialize(urls=nil, subappid=nil)
|
17261
|
+
@Urls = urls
|
17262
|
+
@SubAppId = subappid
|
17263
|
+
end
|
17264
|
+
|
17265
|
+
def deserialize(params)
|
17266
|
+
@Urls = params['Urls']
|
17267
|
+
@SubAppId = params['SubAppId']
|
17268
|
+
end
|
17269
|
+
end
|
17270
|
+
|
17271
|
+
# RefreshUrlCache返回参数结构体
|
17272
|
+
class RefreshUrlCacheResponse < TencentCloud::Common::AbstractModel
|
17273
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
17274
|
+
# @type RequestId: String
|
17275
|
+
|
17276
|
+
attr_accessor :RequestId
|
17277
|
+
|
17278
|
+
def initialize(requestid=nil)
|
17279
|
+
@RequestId = requestid
|
17280
|
+
end
|
17281
|
+
|
17282
|
+
def deserialize(params)
|
17283
|
+
@RequestId = params['RequestId']
|
17284
|
+
end
|
17285
|
+
end
|
17286
|
+
|
17245
17287
|
# ResetProcedureTemplate请求参数结构体
|
17246
17288
|
class ResetProcedureTemplateRequest < TencentCloud::Common::AbstractModel
|
17247
17289
|
# @param Name: 任务流名字
|
@@ -17350,6 +17392,56 @@ module TencentCloud
|
|
17350
17392
|
end
|
17351
17393
|
end
|
17352
17394
|
|
17395
|
+
# RestoreMedia请求参数结构体
|
17396
|
+
class RestoreMediaRequest < TencentCloud::Common::AbstractModel
|
17397
|
+
# @param FileIds: 媒体文件唯一标识列表。
|
17398
|
+
# @type FileIds: Array
|
17399
|
+
# @param RestoreDay: 解冻出的临时媒体文件的可访问持续时长,单位为“天”。
|
17400
|
+
# @type RestoreDay: Integer
|
17401
|
+
# @param RestoreTier: 解冻模式。当媒体文件当前的存储类型为归档存储时,有以下取值:
|
17402
|
+
# <li>极速模式:Expedited,解冻任务在5分钟后完成。</li>
|
17403
|
+
# <li>标准模式:Standard,解冻任务在5小时后完成 。</li>
|
17404
|
+
# <li>批量模式:Bulk,,解冻任务在12小时后完成。</li>
|
17405
|
+
# 当媒体文件的存储类型为深度归档存储时,有以下取值:
|
17406
|
+
# <li>标准模式:Standard,解冻任务在24小时后完成。</li>
|
17407
|
+
# <li>批量模式:Bulk,解冻任务在48小时后完成。</li>
|
17408
|
+
# @type RestoreTier: String
|
17409
|
+
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
17410
|
+
# @type SubAppId: Integer
|
17411
|
+
|
17412
|
+
attr_accessor :FileIds, :RestoreDay, :RestoreTier, :SubAppId
|
17413
|
+
|
17414
|
+
def initialize(fileids=nil, restoreday=nil, restoretier=nil, subappid=nil)
|
17415
|
+
@FileIds = fileids
|
17416
|
+
@RestoreDay = restoreday
|
17417
|
+
@RestoreTier = restoretier
|
17418
|
+
@SubAppId = subappid
|
17419
|
+
end
|
17420
|
+
|
17421
|
+
def deserialize(params)
|
17422
|
+
@FileIds = params['FileIds']
|
17423
|
+
@RestoreDay = params['RestoreDay']
|
17424
|
+
@RestoreTier = params['RestoreTier']
|
17425
|
+
@SubAppId = params['SubAppId']
|
17426
|
+
end
|
17427
|
+
end
|
17428
|
+
|
17429
|
+
# RestoreMedia返回参数结构体
|
17430
|
+
class RestoreMediaResponse < TencentCloud::Common::AbstractModel
|
17431
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
17432
|
+
# @type RequestId: String
|
17433
|
+
|
17434
|
+
attr_accessor :RequestId
|
17435
|
+
|
17436
|
+
def initialize(requestid=nil)
|
17437
|
+
@RequestId = requestid
|
17438
|
+
end
|
17439
|
+
|
17440
|
+
def deserialize(params)
|
17441
|
+
@RequestId = params['RequestId']
|
17442
|
+
end
|
17443
|
+
end
|
17444
|
+
|
17353
17445
|
# 取回视频任务信息
|
17354
17446
|
class RestoreMediaTask < TencentCloud::Common::AbstractModel
|
17355
17447
|
# @param FileId: 文件ID。
|
@@ -17819,31 +17911,31 @@ module TencentCloud
|
|
17819
17911
|
class SimpleHlsClipRequest < TencentCloud::Common::AbstractModel
|
17820
17912
|
# @param Url: 需要裁剪的腾讯云点播 HLS 视频 URL。
|
17821
17913
|
# @type Url: String
|
17914
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
17915
|
+
# @type SubAppId: Integer
|
17822
17916
|
# @param StartTimeOffset: 裁剪的开始偏移时间,单位秒。默认 0,即从视频开头开始裁剪。负数表示距离视频结束多少秒开始裁剪。例如 -10 表示从倒数第 10 秒开始裁剪。
|
17823
17917
|
# @type StartTimeOffset: Float
|
17824
17918
|
# @param EndTimeOffset: 裁剪的结束偏移时间,单位秒。默认 0,即裁剪到视频尾部。负数表示距离视频结束多少秒结束裁剪。例如 -10 表示到倒数第 10 秒结束裁剪。
|
17825
17919
|
# @type EndTimeOffset: Float
|
17826
17920
|
# @param IsPersistence: 是否固化。0 不固化,1 固化。默认不固化。
|
17827
17921
|
# @type IsPersistence: Integer
|
17828
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
17829
|
-
# @type SubAppId: Integer
|
17830
17922
|
|
17831
|
-
attr_accessor :Url, :StartTimeOffset, :EndTimeOffset, :IsPersistence
|
17923
|
+
attr_accessor :Url, :SubAppId, :StartTimeOffset, :EndTimeOffset, :IsPersistence
|
17832
17924
|
|
17833
|
-
def initialize(url=nil,
|
17925
|
+
def initialize(url=nil, subappid=nil, starttimeoffset=nil, endtimeoffset=nil, ispersistence=nil)
|
17834
17926
|
@Url = url
|
17927
|
+
@SubAppId = subappid
|
17835
17928
|
@StartTimeOffset = starttimeoffset
|
17836
17929
|
@EndTimeOffset = endtimeoffset
|
17837
17930
|
@IsPersistence = ispersistence
|
17838
|
-
@SubAppId = subappid
|
17839
17931
|
end
|
17840
17932
|
|
17841
17933
|
def deserialize(params)
|
17842
17934
|
@Url = params['Url']
|
17935
|
+
@SubAppId = params['SubAppId']
|
17843
17936
|
@StartTimeOffset = params['StartTimeOffset']
|
17844
17937
|
@EndTimeOffset = params['EndTimeOffset']
|
17845
17938
|
@IsPersistence = params['IsPersistence']
|
17846
|
-
@SubAppId = params['SubAppId']
|
17847
17939
|
end
|
17848
17940
|
end
|
17849
17941
|
|
@@ -18134,24 +18226,24 @@ module TencentCloud
|
|
18134
18226
|
# @type FileId: String
|
18135
18227
|
# @param Segments: 视频拆条任务信息列表,最多同时支持100个拆条信息。
|
18136
18228
|
# @type Segments: Array
|
18229
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
18230
|
+
# @type SubAppId: Integer
|
18137
18231
|
# @param SessionContext: 标识来源上下文,用于透传用户请求信息,在 SplitMediaComplete 回调和任务流状态变更回调将返回该字段值,最长 1000个字符。
|
18138
18232
|
# @type SessionContext: String
|
18139
18233
|
# @param SessionId: 用于任务去重的识别码,如果三天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长 50 个字符,不带或者带空字符串表示不做去重。
|
18140
18234
|
# @type SessionId: String
|
18141
18235
|
# @param TasksPriority: 任务的优先级,数值越大优先级越高,取值范围是 -10 到 10,不填代表 0。
|
18142
18236
|
# @type TasksPriority: Integer
|
18143
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
18144
|
-
# @type SubAppId: Integer
|
18145
18237
|
|
18146
|
-
attr_accessor :FileId, :Segments, :SessionContext, :SessionId, :TasksPriority
|
18238
|
+
attr_accessor :FileId, :Segments, :SubAppId, :SessionContext, :SessionId, :TasksPriority
|
18147
18239
|
|
18148
|
-
def initialize(fileid=nil, segments=nil,
|
18240
|
+
def initialize(fileid=nil, segments=nil, subappid=nil, sessioncontext=nil, sessionid=nil, taskspriority=nil)
|
18149
18241
|
@FileId = fileid
|
18150
18242
|
@Segments = segments
|
18243
|
+
@SubAppId = subappid
|
18151
18244
|
@SessionContext = sessioncontext
|
18152
18245
|
@SessionId = sessionid
|
18153
18246
|
@TasksPriority = taskspriority
|
18154
|
-
@SubAppId = subappid
|
18155
18247
|
end
|
18156
18248
|
|
18157
18249
|
def deserialize(params)
|
@@ -18164,10 +18256,10 @@ module TencentCloud
|
|
18164
18256
|
@Segments << splitmediataskconfig_tmp
|
18165
18257
|
end
|
18166
18258
|
end
|
18259
|
+
@SubAppId = params['SubAppId']
|
18167
18260
|
@SessionContext = params['SessionContext']
|
18168
18261
|
@SessionId = params['SessionId']
|
18169
18262
|
@TasksPriority = params['TasksPriority']
|
18170
|
-
@SubAppId = params['SubAppId']
|
18171
18263
|
end
|
18172
18264
|
end
|
18173
18265
|
|
@@ -20217,23 +20309,23 @@ module TencentCloud
|
|
20217
20309
|
class WeChatMiniProgramPublishRequest < TencentCloud::Common::AbstractModel
|
20218
20310
|
# @param FileId: 媒体文件 ID。
|
20219
20311
|
# @type FileId: String
|
20220
|
-
# @param SourceDefinition: 发布视频所对应的转码模板 ID,为0代表原始视频。
|
20221
|
-
# @type SourceDefinition: Integer
|
20222
20312
|
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
20223
20313
|
# @type SubAppId: Integer
|
20314
|
+
# @param SourceDefinition: 发布视频所对应的转码模板 ID,为0代表原始视频。
|
20315
|
+
# @type SourceDefinition: Integer
|
20224
20316
|
|
20225
|
-
attr_accessor :FileId, :
|
20317
|
+
attr_accessor :FileId, :SubAppId, :SourceDefinition
|
20226
20318
|
|
20227
|
-
def initialize(fileid=nil,
|
20319
|
+
def initialize(fileid=nil, subappid=nil, sourcedefinition=nil)
|
20228
20320
|
@FileId = fileid
|
20229
|
-
@SourceDefinition = sourcedefinition
|
20230
20321
|
@SubAppId = subappid
|
20322
|
+
@SourceDefinition = sourcedefinition
|
20231
20323
|
end
|
20232
20324
|
|
20233
20325
|
def deserialize(params)
|
20234
20326
|
@FileId = params['FileId']
|
20235
|
-
@SourceDefinition = params['SourceDefinition']
|
20236
20327
|
@SubAppId = params['SubAppId']
|
20328
|
+
@SourceDefinition = params['SourceDefinition']
|
20237
20329
|
end
|
20238
20330
|
end
|
20239
20331
|
|