tencentcloud-sdk-vod 3.0.444 → 3.0.446
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180717/models.rb +17 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3284591e39718d2a5b923c13ff12872f41c4170d
|
4
|
+
data.tar.gz: ef8a7b3fd62ac1fa688eb66a6493d0baa18a51ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6547221b5f5972481a16b0712b3347c0d45a4607304e3e7cbc0a4d5e231aa392f547bf21e95ab73901eeea941a2ce39375e4a0e9e467c9b6e47bc600cd48387
|
7
|
+
data.tar.gz: 603db45a08ddd80838a180cbd25335240cf0ee9907ded9f3a3ccf176496f7bf12ee5a350acbbdc957d3a4bb058040abde051fbc8efeda6f3184466b53f6ca92f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.446
|
data/lib/v20180717/models.rb
CHANGED
@@ -13121,18 +13121,21 @@ module TencentCloud
|
|
13121
13121
|
# @type ErrCode: Integer
|
13122
13122
|
# @param Message: 错误信息。
|
13123
13123
|
# @type Message: String
|
13124
|
+
# @param Progress: 转自适应码流任务进度,取值范围 [0-100] 。
|
13125
|
+
# @type Progress: Integer
|
13124
13126
|
# @param Input: 对视频转自适应码流任务的输入。
|
13125
13127
|
# @type Input: :class:`Tencentcloud::Vod.v20180717.models.AdaptiveDynamicStreamingTaskInput`
|
13126
13128
|
# @param Output: 对视频转自适应码流任务的输出。
|
13127
13129
|
# @type Output: :class:`Tencentcloud::Vod.v20180717.models.AdaptiveDynamicStreamingInfoItem`
|
13128
13130
|
|
13129
|
-
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
|
13131
|
+
attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Progress, :Input, :Output
|
13130
13132
|
|
13131
|
-
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
|
13133
|
+
def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, progress=nil, input=nil, output=nil)
|
13132
13134
|
@Status = status
|
13133
13135
|
@ErrCodeExt = errcodeext
|
13134
13136
|
@ErrCode = errcode
|
13135
13137
|
@Message = message
|
13138
|
+
@Progress = progress
|
13136
13139
|
@Input = input
|
13137
13140
|
@Output = output
|
13138
13141
|
end
|
@@ -13142,6 +13145,7 @@ module TencentCloud
|
|
13142
13145
|
@ErrCodeExt = params['ErrCodeExt']
|
13143
13146
|
@ErrCode = params['ErrCode']
|
13144
13147
|
@Message = params['Message']
|
13148
|
+
@Progress = params['Progress']
|
13145
13149
|
unless params['Input'].nil?
|
13146
13150
|
@Input = AdaptiveDynamicStreamingTaskInput.new
|
13147
13151
|
@Input.deserialize(params['Input'])
|
@@ -19805,24 +19809,29 @@ module TencentCloud
|
|
19805
19809
|
|
19806
19810
|
# 存储地域信息
|
19807
19811
|
class StorageRegionInfo < TencentCloud::Common::AbstractModel
|
19808
|
-
# @param Region:
|
19812
|
+
# @param Region: 存储地域。
|
19809
19813
|
# @type Region: String
|
19810
|
-
# @param Description:
|
19814
|
+
# @param Description: 存储地域描述信息。
|
19811
19815
|
# @type Description: String
|
19812
19816
|
# @param Status: 状态,是否开通,取值有:
|
19813
19817
|
# <li>opened:已经开通。</li>
|
19814
19818
|
# <li>unopened:未开通。</li>
|
19815
19819
|
# @type Status: String
|
19816
|
-
# @param IsDefault: 是否默认的存储地域,true:是;false
|
19820
|
+
# @param IsDefault: 是否默认的存储地域,true:是;false:否。
|
19817
19821
|
# @type IsDefault: Boolean
|
19822
|
+
# @param Area: 存储区域,取值有:
|
19823
|
+
# <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
|
19824
|
+
# <li>Outside Chinese Mainland:中国境外。</li>
|
19825
|
+
# @type Area: String
|
19818
19826
|
|
19819
|
-
attr_accessor :Region, :Description, :Status, :IsDefault
|
19827
|
+
attr_accessor :Region, :Description, :Status, :IsDefault, :Area
|
19820
19828
|
|
19821
|
-
def initialize(region=nil, description=nil, status=nil, isdefault=nil)
|
19829
|
+
def initialize(region=nil, description=nil, status=nil, isdefault=nil, area=nil)
|
19822
19830
|
@Region = region
|
19823
19831
|
@Description = description
|
19824
19832
|
@Status = status
|
19825
19833
|
@IsDefault = isdefault
|
19834
|
+
@Area = area
|
19826
19835
|
end
|
19827
19836
|
|
19828
19837
|
def deserialize(params)
|
@@ -19830,6 +19839,7 @@ module TencentCloud
|
|
19830
19839
|
@Description = params['Description']
|
19831
19840
|
@Status = params['Status']
|
19832
19841
|
@IsDefault = params['IsDefault']
|
19842
|
+
@Area = params['Area']
|
19833
19843
|
end
|
19834
19844
|
end
|
19835
19845
|
|
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.446
|
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-11-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '3.0'
|
27
27
|
description: Tencent Cloud Ruby SDK is the official software development kit, which
|
28
28
|
allows Ruby developers to write software that makes use of Tencent Cloud service
|
29
29
|
VOD.
|