tencentcloud-sdk-live 3.0.416 → 3.0.418
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/v20180801/models.rb +18 -15
- 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: af4a98cfedca6c45291d92bfe3a9f8928ba488d9
|
4
|
+
data.tar.gz: 30b03f1b63e95242ad46ec856825afbb020cee28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a421b6c2243de76a034f13e1caa1a0ae37d0f8f6c098245f2a619f895673d5b92c414d9e11e69ccd8e6e68b38ab989fb28aa28ddb86b1fdee9cfab2a9951525
|
7
|
+
data.tar.gz: f782b7bad06dbb38a74da97e048f143068dcb15931e252a5bf5c3f57b4c3562af840623fd3288e0b72dadf3851e076c7b42f3f1cd57628adead9c8187d0844a8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.418
|
data/lib/v20180801/models.rb
CHANGED
@@ -7821,6 +7821,16 @@ module TencentCloud
|
|
7821
7821
|
class ModifyLiveSnapshotTemplateRequest < TencentCloud::Common::AbstractModel
|
7822
7822
|
# @param TemplateId: 模板 ID。
|
7823
7823
|
# @type TemplateId: Integer
|
7824
|
+
# @param CosAppId: Cos 应用 ID。
|
7825
|
+
# **注:此参数现在须必选。**
|
7826
|
+
# @type CosAppId: Integer
|
7827
|
+
# @param CosBucket: Cos Bucket名称。
|
7828
|
+
# 注:CosBucket参数值不能包含-[appid] 部分。
|
7829
|
+
# **注:此参数现在须必选。**
|
7830
|
+
# @type CosBucket: String
|
7831
|
+
# @param CosRegion: Cos 地域。
|
7832
|
+
# **注:此参数现在须必选。**
|
7833
|
+
# @type CosRegion: String
|
7824
7834
|
# @param TemplateName: 模板名称。
|
7825
7835
|
# 长度上限:255字节。
|
7826
7836
|
# @type TemplateName: String
|
@@ -7838,46 +7848,39 @@ module TencentCloud
|
|
7838
7848
|
# 0:不开启。
|
7839
7849
|
# 1:开启。
|
7840
7850
|
# @type PornFlag: Integer
|
7841
|
-
# @param CosAppId: Cos 应用 ID。
|
7842
|
-
# @type CosAppId: Integer
|
7843
|
-
# @param CosBucket: Cos Bucket名称。
|
7844
|
-
# 注:CosBucket参数值不能包含-[appid] 部分。
|
7845
|
-
# @type CosBucket: String
|
7846
|
-
# @param CosRegion: Cos 地域。
|
7847
|
-
# @type CosRegion: String
|
7848
7851
|
# @param CosPrefix: Cos Bucket文件夹前缀。
|
7849
7852
|
# @type CosPrefix: String
|
7850
7853
|
# @param CosFileName: Cos 文件名称。
|
7851
7854
|
# @type CosFileName: String
|
7852
7855
|
|
7853
|
-
attr_accessor :TemplateId, :
|
7856
|
+
attr_accessor :TemplateId, :CosAppId, :CosBucket, :CosRegion, :TemplateName, :Description, :SnapshotInterval, :Width, :Height, :PornFlag, :CosPrefix, :CosFileName
|
7854
7857
|
|
7855
|
-
def initialize(templateid=nil,
|
7858
|
+
def initialize(templateid=nil, cosappid=nil, cosbucket=nil, cosregion=nil, templatename=nil, description=nil, snapshotinterval=nil, width=nil, height=nil, pornflag=nil, cosprefix=nil, cosfilename=nil)
|
7856
7859
|
@TemplateId = templateid
|
7860
|
+
@CosAppId = cosappid
|
7861
|
+
@CosBucket = cosbucket
|
7862
|
+
@CosRegion = cosregion
|
7857
7863
|
@TemplateName = templatename
|
7858
7864
|
@Description = description
|
7859
7865
|
@SnapshotInterval = snapshotinterval
|
7860
7866
|
@Width = width
|
7861
7867
|
@Height = height
|
7862
7868
|
@PornFlag = pornflag
|
7863
|
-
@CosAppId = cosappid
|
7864
|
-
@CosBucket = cosbucket
|
7865
|
-
@CosRegion = cosregion
|
7866
7869
|
@CosPrefix = cosprefix
|
7867
7870
|
@CosFileName = cosfilename
|
7868
7871
|
end
|
7869
7872
|
|
7870
7873
|
def deserialize(params)
|
7871
7874
|
@TemplateId = params['TemplateId']
|
7875
|
+
@CosAppId = params['CosAppId']
|
7876
|
+
@CosBucket = params['CosBucket']
|
7877
|
+
@CosRegion = params['CosRegion']
|
7872
7878
|
@TemplateName = params['TemplateName']
|
7873
7879
|
@Description = params['Description']
|
7874
7880
|
@SnapshotInterval = params['SnapshotInterval']
|
7875
7881
|
@Width = params['Width']
|
7876
7882
|
@Height = params['Height']
|
7877
7883
|
@PornFlag = params['PornFlag']
|
7878
|
-
@CosAppId = params['CosAppId']
|
7879
|
-
@CosBucket = params['CosBucket']
|
7880
|
-
@CosRegion = params['CosRegion']
|
7881
7884
|
@CosPrefix = params['CosPrefix']
|
7882
7885
|
@CosFileName = params['CosFileName']
|
7883
7886
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-live
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.418
|
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-09-
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|