tencentcloud-sdk-vod 3.0.380 → 3.0.384
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 +4 -4
- data/lib/v20180717/models.rb +25 -14
- 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: 3dcb0775b37aa094dbdc3955e4c67780bf9bf819
|
4
|
+
data.tar.gz: 0ed4cf6285bbc4190f3ba5b5dc1759ff9a27eee0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a497e9e1fe0bc3cdfca04516fcef5fd0aa87dfc77761a2a30ba9ee91416b691e1afdc36748393daff7896b49859df8f7ed7b613814bafd99d4dc528ba48d126d
|
7
|
+
data.tar.gz: 065b43fb3ea0ede2058db74fbfec6b471a8639eca28e04660115b15ea8ed343960b47bbd4aafb5ff4a65876837cfd2c1dc1ad03ac1fcba76df2111ceccfb8a0f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.384
|
data/lib/v20180717/client.rb
CHANGED
@@ -529,7 +529,7 @@ module TencentCloud
|
|
529
529
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
530
530
|
end
|
531
531
|
|
532
|
-
#
|
532
|
+
# 创建播放器配置,数量上限:100。
|
533
533
|
|
534
534
|
# @param request: Request instance for CreateSuperPlayerConfig.
|
535
535
|
# @type request: :class:`Tencentcloud::vod::V20180717::CreateSuperPlayerConfigRequest`
|
@@ -991,7 +991,7 @@ module TencentCloud
|
|
991
991
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
992
992
|
end
|
993
993
|
|
994
|
-
#
|
994
|
+
# 删除播放器配置。
|
995
995
|
# *注:系统预置播放器配置不允许删除。*
|
996
996
|
|
997
997
|
# @param request: Request instance for DeleteSuperPlayerConfig.
|
@@ -1968,7 +1968,7 @@ module TencentCloud
|
|
1968
1968
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1969
1969
|
end
|
1970
1970
|
|
1971
|
-
#
|
1971
|
+
# 查询播放器配置,支持根据条件,分页查询。
|
1972
1972
|
|
1973
1973
|
# @param request: Request instance for DescribeSuperPlayerConfigs.
|
1974
1974
|
# @type request: :class:`Tencentcloud::vod::V20180717::DescribeSuperPlayerConfigsRequest`
|
@@ -2723,7 +2723,7 @@ module TencentCloud
|
|
2723
2723
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2724
2724
|
end
|
2725
2725
|
|
2726
|
-
#
|
2726
|
+
# 修改播放器配置。
|
2727
2727
|
|
2728
2728
|
# @param request: Request instance for ModifySuperPlayerConfig.
|
2729
2729
|
# @type request: :class:`Tencentcloud::vod::V20180717::ModifySuperPlayerConfigRequest`
|
data/lib/v20180717/models.rb
CHANGED
@@ -9207,6 +9207,8 @@ module TencentCloud
|
|
9207
9207
|
|
9208
9208
|
# DescribeSuperPlayerConfigs请求参数结构体
|
9209
9209
|
class DescribeSuperPlayerConfigsRequest < TencentCloud::Common::AbstractModel
|
9210
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
9211
|
+
# @type SubAppId: Integer
|
9210
9212
|
# @param Names: 播放器配置名字过滤条件,数组长度限制:100。
|
9211
9213
|
# @type Names: Array
|
9212
9214
|
# @param Offset: 分页偏移量,默认值:0。
|
@@ -9217,25 +9219,23 @@ module TencentCloud
|
|
9217
9219
|
# <li>Preset:系统预置配置;</li>
|
9218
9220
|
# <li>Custom:用户自定义配置。</li>
|
9219
9221
|
# @type Type: String
|
9220
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
9221
|
-
# @type SubAppId: Integer
|
9222
9222
|
|
9223
|
-
attr_accessor :Names, :Offset, :Limit, :Type
|
9223
|
+
attr_accessor :SubAppId, :Names, :Offset, :Limit, :Type
|
9224
9224
|
|
9225
|
-
def initialize(names=nil, offset=nil, limit=nil, type=nil
|
9225
|
+
def initialize(subappid=nil, names=nil, offset=nil, limit=nil, type=nil)
|
9226
|
+
@SubAppId = subappid
|
9226
9227
|
@Names = names
|
9227
9228
|
@Offset = offset
|
9228
9229
|
@Limit = limit
|
9229
9230
|
@Type = type
|
9230
|
-
@SubAppId = subappid
|
9231
9231
|
end
|
9232
9232
|
|
9233
9233
|
def deserialize(params)
|
9234
|
+
@SubAppId = params['SubAppId']
|
9234
9235
|
@Names = params['Names']
|
9235
9236
|
@Offset = params['Offset']
|
9236
9237
|
@Limit = params['Limit']
|
9237
9238
|
@Type = params['Type']
|
9238
|
-
@SubAppId = params['SubAppId']
|
9239
9239
|
end
|
9240
9240
|
end
|
9241
9241
|
|
@@ -14865,6 +14865,8 @@ module TencentCloud
|
|
14865
14865
|
class ModifySuperPlayerConfigRequest < TencentCloud::Common::AbstractModel
|
14866
14866
|
# @param Name: 播放器配置名称。
|
14867
14867
|
# @type Name: String
|
14868
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
14869
|
+
# @type SubAppId: Integer
|
14868
14870
|
# @param AudioVideoType: 播放的音视频类型,可选值:
|
14869
14871
|
# <li>AdaptiveDynamicStream:自适应码流输出;</li>
|
14870
14872
|
# <li>Transcode:转码输出;</li>
|
@@ -14893,13 +14895,12 @@ module TencentCloud
|
|
14893
14895
|
# @type Scheme: String
|
14894
14896
|
# @param Comment: 模板描述信息,长度限制:256 个字符。
|
14895
14897
|
# @type Comment: String
|
14896
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
14897
|
-
# @type SubAppId: Integer
|
14898
14898
|
|
14899
|
-
attr_accessor :Name, :AudioVideoType, :DrmSwitch, :AdaptiveDynamicStreamingDefinition, :DrmStreamingsInfo, :TranscodeDefinition, :ImageSpriteDefinition, :ResolutionNames, :Domain, :Scheme, :Comment
|
14899
|
+
attr_accessor :Name, :SubAppId, :AudioVideoType, :DrmSwitch, :AdaptiveDynamicStreamingDefinition, :DrmStreamingsInfo, :TranscodeDefinition, :ImageSpriteDefinition, :ResolutionNames, :Domain, :Scheme, :Comment
|
14900
14900
|
|
14901
|
-
def initialize(name=nil, audiovideotype=nil, drmswitch=nil, adaptivedynamicstreamingdefinition=nil, drmstreamingsinfo=nil, transcodedefinition=nil, imagespritedefinition=nil, resolutionnames=nil, domain=nil, scheme=nil, comment=nil
|
14901
|
+
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)
|
14902
14902
|
@Name = name
|
14903
|
+
@SubAppId = subappid
|
14903
14904
|
@AudioVideoType = audiovideotype
|
14904
14905
|
@DrmSwitch = drmswitch
|
14905
14906
|
@AdaptiveDynamicStreamingDefinition = adaptivedynamicstreamingdefinition
|
@@ -14910,11 +14911,11 @@ module TencentCloud
|
|
14910
14911
|
@Domain = domain
|
14911
14912
|
@Scheme = scheme
|
14912
14913
|
@Comment = comment
|
14913
|
-
@SubAppId = subappid
|
14914
14914
|
end
|
14915
14915
|
|
14916
14916
|
def deserialize(params)
|
14917
14917
|
@Name = params['Name']
|
14918
|
+
@SubAppId = params['SubAppId']
|
14918
14919
|
@AudioVideoType = params['AudioVideoType']
|
14919
14920
|
@DrmSwitch = params['DrmSwitch']
|
14920
14921
|
@AdaptiveDynamicStreamingDefinition = params['AdaptiveDynamicStreamingDefinition']
|
@@ -14935,7 +14936,6 @@ module TencentCloud
|
|
14935
14936
|
@Domain = params['Domain']
|
14936
14937
|
@Scheme = params['Scheme']
|
14937
14938
|
@Comment = params['Comment']
|
14938
|
-
@SubAppId = params['SubAppId']
|
14939
14939
|
end
|
14940
14940
|
end
|
14941
14941
|
|
@@ -15641,6 +15641,11 @@ module TencentCloud
|
|
15641
15641
|
# <li>Preset:系统预置配置;</li>
|
15642
15642
|
# <li>Custom:用户自定义配置。</li>
|
15643
15643
|
# @type Type: String
|
15644
|
+
# @param AudioVideoType: 播放的音视频类型,可选值有:
|
15645
|
+
# <li>AdaptiveDynamicStream:自适应码流输出;</li>
|
15646
|
+
# <li>Transcode:转码输出;</li>
|
15647
|
+
# <li>Original:原始音视频。</li>
|
15648
|
+
# @type AudioVideoType: String
|
15644
15649
|
# @param DrmSwitch: 播放 DRM 保护的自适应码流开关:
|
15645
15650
|
# <li>ON:开启,表示仅播放 DRM 保护的自适应码流输出;</li>
|
15646
15651
|
# <li>OFF:关闭,表示播放未加密的自适应码流输出。</li>
|
@@ -15650,6 +15655,8 @@ module TencentCloud
|
|
15650
15655
|
# @param DrmStreamingsInfo: 允许输出的 DRM 自适应码流模板内容。
|
15651
15656
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15652
15657
|
# @type DrmStreamingsInfo: :class:`Tencentcloud::Vod.v20180717.models.DrmStreamingsInfo`
|
15658
|
+
# @param TranscodeDefinition: 允许输出的转码模板 ID。
|
15659
|
+
# @type TranscodeDefinition: Integer
|
15653
15660
|
# @param ImageSpriteDefinition: 允许输出的雪碧图模板 ID。
|
15654
15661
|
# @type ImageSpriteDefinition: Integer
|
15655
15662
|
# @param ResolutionNameSet: 播放器对不于不同分辨率的子流展示名字。
|
@@ -15668,14 +15675,16 @@ module TencentCloud
|
|
15668
15675
|
# @param Comment: 模板描述信息。
|
15669
15676
|
# @type Comment: String
|
15670
15677
|
|
15671
|
-
attr_accessor :Name, :Type, :DrmSwitch, :AdaptiveDynamicStreamingDefinition, :DrmStreamingsInfo, :ImageSpriteDefinition, :ResolutionNameSet, :CreateTime, :UpdateTime, :Domain, :Scheme, :Comment
|
15678
|
+
attr_accessor :Name, :Type, :AudioVideoType, :DrmSwitch, :AdaptiveDynamicStreamingDefinition, :DrmStreamingsInfo, :TranscodeDefinition, :ImageSpriteDefinition, :ResolutionNameSet, :CreateTime, :UpdateTime, :Domain, :Scheme, :Comment
|
15672
15679
|
|
15673
|
-
def initialize(name=nil, type=nil, drmswitch=nil, adaptivedynamicstreamingdefinition=nil, drmstreamingsinfo=nil, imagespritedefinition=nil, resolutionnameset=nil, createtime=nil, updatetime=nil, domain=nil, scheme=nil, comment=nil)
|
15680
|
+
def initialize(name=nil, type=nil, audiovideotype=nil, drmswitch=nil, adaptivedynamicstreamingdefinition=nil, drmstreamingsinfo=nil, transcodedefinition=nil, imagespritedefinition=nil, resolutionnameset=nil, createtime=nil, updatetime=nil, domain=nil, scheme=nil, comment=nil)
|
15674
15681
|
@Name = name
|
15675
15682
|
@Type = type
|
15683
|
+
@AudioVideoType = audiovideotype
|
15676
15684
|
@DrmSwitch = drmswitch
|
15677
15685
|
@AdaptiveDynamicStreamingDefinition = adaptivedynamicstreamingdefinition
|
15678
15686
|
@DrmStreamingsInfo = drmstreamingsinfo
|
15687
|
+
@TranscodeDefinition = transcodedefinition
|
15679
15688
|
@ImageSpriteDefinition = imagespritedefinition
|
15680
15689
|
@ResolutionNameSet = resolutionnameset
|
15681
15690
|
@CreateTime = createtime
|
@@ -15688,12 +15697,14 @@ module TencentCloud
|
|
15688
15697
|
def deserialize(params)
|
15689
15698
|
@Name = params['Name']
|
15690
15699
|
@Type = params['Type']
|
15700
|
+
@AudioVideoType = params['AudioVideoType']
|
15691
15701
|
@DrmSwitch = params['DrmSwitch']
|
15692
15702
|
@AdaptiveDynamicStreamingDefinition = params['AdaptiveDynamicStreamingDefinition']
|
15693
15703
|
unless params['DrmStreamingsInfo'].nil?
|
15694
15704
|
@DrmStreamingsInfo = DrmStreamingsInfo.new
|
15695
15705
|
@DrmStreamingsInfo.deserialize(params['DrmStreamingsInfo'])
|
15696
15706
|
end
|
15707
|
+
@TranscodeDefinition = params['TranscodeDefinition']
|
15697
15708
|
@ImageSpriteDefinition = params['ImageSpriteDefinition']
|
15698
15709
|
unless params['ResolutionNameSet'].nil?
|
15699
15710
|
@ResolutionNameSet = []
|
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.384
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|