tencentcloud-sdk-live 3.0.1102 → 3.0.1109

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180801/models.rb +24 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8552b0d2eb7bb532437c8054fbe475d85ac3c537
4
- data.tar.gz: 66fa57e23304a5563fcac6b023e12890657a110a
3
+ metadata.gz: 5168b9c95b69f96ec3843f74b8c3320a84e014ca
4
+ data.tar.gz: be3de43f180b82b8390317e9e9346c9d4ef8eafa
5
5
  SHA512:
6
- metadata.gz: 6d8acd423039db70b606ce526d5c7b64b2221d39afeb61257d2bb7b18b0c86b20f0ea2aa3eb7c6d1ad5c559d0c2fc350afdf7a07649a5daf36a96601150db1d7
7
- data.tar.gz: a74a89d7c24f932a92f3fd6b6b3c2af59240657edfe5ef2a3f198d03fabf963bebf78c0c7a76fe8284028824b1eca57f412b1b473862b7ed074bf7b120fa2f03
6
+ metadata.gz: 60cf66e259367bc8531024046d105ab73e62f8b1fc6b3da429dca889c4698f80ff9e7e439993ee8ab9808fa261c68b01985417bd213e93c4af336712792cda32
7
+ data.tar.gz: ac18d8e815fa7952618aa5cb27ab5fcf9b2f18acedf63b605fb4c8217100d511283808c01ac3bfd2308047d446fb38f9e948b1d0a1f49b5dcaaa36053046c3fa
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1102
1
+ 3.0.1109
@@ -1739,6 +1739,14 @@ module TencentCloud
1739
1739
  # @type Prompt: String
1740
1740
  # @param Flag: 云端特效标签。
1741
1741
  # @type Flag: String
1742
+ # @param Status: 云端特效生成状态。
1743
+ # 生成中 - GENERATING。
1744
+ # 处理中 - PROCESSING。
1745
+ # 生成失败 - FAILED。
1746
+ # 已完成 - FINISH。
1747
+ # @type Status: String
1748
+ # @param Message: 特效信息,生成失败时,此处返回失败原因。
1749
+ # @type Message: String
1742
1750
  # @param PreviewImageUrl: 云端特效预览图片。
1743
1751
  # @type PreviewImageUrl: String
1744
1752
  # @param Type: 云端特效类型。
@@ -1751,12 +1759,14 @@ module TencentCloud
1751
1759
  # @param UpdateTime: 云端特效更新时间。
1752
1760
  # @type UpdateTime: String
1753
1761
 
1754
- attr_accessor :Id, :Prompt, :Flag, :PreviewImageUrl, :Type, :CreateTime, :UpdateTime
1762
+ attr_accessor :Id, :Prompt, :Flag, :Status, :Message, :PreviewImageUrl, :Type, :CreateTime, :UpdateTime
1755
1763
 
1756
- def initialize(id=nil, prompt=nil, flag=nil, previewimageurl=nil, type=nil, createtime=nil, updatetime=nil)
1764
+ def initialize(id=nil, prompt=nil, flag=nil, status=nil, message=nil, previewimageurl=nil, type=nil, createtime=nil, updatetime=nil)
1757
1765
  @Id = id
1758
1766
  @Prompt = prompt
1759
1767
  @Flag = flag
1768
+ @Status = status
1769
+ @Message = message
1760
1770
  @PreviewImageUrl = previewimageurl
1761
1771
  @Type = type
1762
1772
  @CreateTime = createtime
@@ -1767,6 +1777,8 @@ module TencentCloud
1767
1777
  @Id = params['Id']
1768
1778
  @Prompt = params['Prompt']
1769
1779
  @Flag = params['Flag']
1780
+ @Status = params['Status']
1781
+ @Message = params['Message']
1770
1782
  @PreviewImageUrl = params['PreviewImageUrl']
1771
1783
  @Type = params['Type']
1772
1784
  @CreateTime = params['CreateTime']
@@ -6574,13 +6586,19 @@ module TencentCloud
6574
6586
  class DescribeLiveCloudEffectListResponse < TencentCloud::Common::AbstractModel
6575
6587
  # @param InfoList: 云端特效信息列表。
6576
6588
  # @type InfoList: Array
6589
+ # @param EnableCreateNum: 允许创建的云端特效个数。
6590
+ # @type EnableCreateNum: Integer
6591
+ # @param TotalNum: 当前已有的特效总个数。
6592
+ # @type TotalNum: Integer
6577
6593
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6578
6594
  # @type RequestId: String
6579
6595
 
6580
- attr_accessor :InfoList, :RequestId
6596
+ attr_accessor :InfoList, :EnableCreateNum, :TotalNum, :RequestId
6581
6597
 
6582
- def initialize(infolist=nil, requestid=nil)
6598
+ def initialize(infolist=nil, enablecreatenum=nil, totalnum=nil, requestid=nil)
6583
6599
  @InfoList = infolist
6600
+ @EnableCreateNum = enablecreatenum
6601
+ @TotalNum = totalnum
6584
6602
  @RequestId = requestid
6585
6603
  end
6586
6604
 
@@ -6593,6 +6611,8 @@ module TencentCloud
6593
6611
  @InfoList << cloudeffectinfo_tmp
6594
6612
  end
6595
6613
  end
6614
+ @EnableCreateNum = params['EnableCreateNum']
6615
+ @TotalNum = params['TotalNum']
6596
6616
  @RequestId = params['RequestId']
6597
6617
  end
6598
6618
  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.1102
4
+ version: 3.0.1109
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-07-16 00:00:00.000000000 Z
11
+ date: 2025-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common