tencentcloud-sdk-vod 3.0.887 → 3.0.888

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/v20180717/models.rb +41 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1104ab84bef116d187b28f89e661217a626535b
4
- data.tar.gz: 924c2cfb2cbd600c15bd563241a228d41c1cda21
3
+ metadata.gz: 7d49b7848678ccb4b388a292696e8bc88ecc84b1
4
+ data.tar.gz: ed35c5a605e05e620eb9f7d901227067a8f8cd88
5
5
  SHA512:
6
- metadata.gz: 0389b5967a5159c1ccc245ff192defde00c6496a7403903288c1f5c4198861b8a6dade7c13c367833858f4336041f267cd2e41eecf7be0cf36f09a834b0ee9cb
7
- data.tar.gz: 27596a083ad53262c2da44bfc02cfb6639e0df9e2032026fcacafa3e013ae5d68b758cda7c3d1bbc273ae21e58b59961c8d71ad7543afd28290563aab5b1f83d
6
+ metadata.gz: c62854d92d46c10fc0f29eefa44472eebc196bc61549972d2dfe77f8912baf7e92078507e589297693caa8b501c29238d66c8c9612c8b2a1ea7ddf81128623bd
7
+ data.tar.gz: 9569243bc1d26fc1fbdbfdaa7100153739bafded49694a79e971ce9721aa7c89d8c4e374c34f94cac2a7a612ad7b67a95fdcbd0f8a0494c30cbb648c226f42e0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.887
1
+ 3.0.888
@@ -11202,18 +11202,30 @@ module TencentCloud
11202
11202
  class DescribeRoundPlaysRequest < TencentCloud::Common::AbstractModel
11203
11203
  # @param SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
11204
11204
  # @type SubAppId: Integer
11205
- # @param RoundPlayIds: 轮播播单标识过滤条件,数组长度限制:100。
11205
+ # @param RoundPlayIds: 过滤条件:轮播播单标识,数组长度限制:100。
11206
11206
  # @type RoundPlayIds: Array
11207
- # @param Offset: 分页偏移量,默认值:0。
11207
+ # @param Status: 过滤条件,轮播播单状态,可选值: <li>Enabled:启动状态;</li> <li>Disabled:停止状态。</li>
11208
+ # @type Status: String
11209
+ # @param CreateTime: 过滤条件:轮播播单创建时间。
11210
+ # @type CreateTime: :class:`Tencentcloud::Vod.v20180717.models.TimeRange`
11211
+ # @param UpdateTime: 过滤条件:轮播播单更新时间。
11212
+ # @type UpdateTime: :class:`Tencentcloud::Vod.v20180717.models.TimeRange`
11213
+ # @param ScrollToken: 翻页标识,分批拉取时使用:当单次请求无法拉取所有数据,接口将会返回 ScrollToken,下一次请求携带该 Token,将会从下一条记录开始获取。
11214
+ # @type ScrollToken: String
11215
+ # @param Offset: 分页偏移量,默认值:0。已经废弃,请根据 ScrollToken 参数进行分批次查询。
11208
11216
  # @type Offset: Integer
11209
11217
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
11210
11218
  # @type Limit: Integer
11211
11219
 
11212
- attr_accessor :SubAppId, :RoundPlayIds, :Offset, :Limit
11220
+ attr_accessor :SubAppId, :RoundPlayIds, :Status, :CreateTime, :UpdateTime, :ScrollToken, :Offset, :Limit
11213
11221
 
11214
- def initialize(subappid=nil, roundplayids=nil, offset=nil, limit=nil)
11222
+ def initialize(subappid=nil, roundplayids=nil, status=nil, createtime=nil, updatetime=nil, scrolltoken=nil, offset=nil, limit=nil)
11215
11223
  @SubAppId = subappid
11216
11224
  @RoundPlayIds = roundplayids
11225
+ @Status = status
11226
+ @CreateTime = createtime
11227
+ @UpdateTime = updatetime
11228
+ @ScrollToken = scrolltoken
11217
11229
  @Offset = offset
11218
11230
  @Limit = limit
11219
11231
  end
@@ -11221,6 +11233,16 @@ module TencentCloud
11221
11233
  def deserialize(params)
11222
11234
  @SubAppId = params['SubAppId']
11223
11235
  @RoundPlayIds = params['RoundPlayIds']
11236
+ @Status = params['Status']
11237
+ unless params['CreateTime'].nil?
11238
+ @CreateTime = TimeRange.new
11239
+ @CreateTime.deserialize(params['CreateTime'])
11240
+ end
11241
+ unless params['UpdateTime'].nil?
11242
+ @UpdateTime = TimeRange.new
11243
+ @UpdateTime.deserialize(params['UpdateTime'])
11244
+ end
11245
+ @ScrollToken = params['ScrollToken']
11224
11246
  @Offset = params['Offset']
11225
11247
  @Limit = params['Limit']
11226
11248
  end
@@ -11228,18 +11250,21 @@ module TencentCloud
11228
11250
 
11229
11251
  # DescribeRoundPlays返回参数结构体
11230
11252
  class DescribeRoundPlaysResponse < TencentCloud::Common::AbstractModel
11231
- # @param TotalCount: 符合过滤条件的轮播播单总数。
11253
+ # @param TotalCount: 符合过滤条件的轮播播单总数。已经废弃,分批次查询请请使用 ScrollToken 参数。
11232
11254
  # @type TotalCount: Integer
11233
11255
  # @param RoundPlaySet: 轮播播单详情列表。
11234
11256
  # @type RoundPlaySet: Array
11257
+ # @param ScrollToken: 翻页标识,当请求未返回所有数据,该字段表示下一条记录的 ID。当该字段为空,说明已无更多数据。
11258
+ # @type ScrollToken: String
11235
11259
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11236
11260
  # @type RequestId: String
11237
11261
 
11238
- attr_accessor :TotalCount, :RoundPlaySet, :RequestId
11262
+ attr_accessor :TotalCount, :RoundPlaySet, :ScrollToken, :RequestId
11239
11263
 
11240
- def initialize(totalcount=nil, roundplayset=nil, requestid=nil)
11264
+ def initialize(totalcount=nil, roundplayset=nil, scrolltoken=nil, requestid=nil)
11241
11265
  @TotalCount = totalcount
11242
11266
  @RoundPlaySet = roundplayset
11267
+ @ScrollToken = scrolltoken
11243
11268
  @RequestId = requestid
11244
11269
  end
11245
11270
 
@@ -11253,6 +11278,7 @@ module TencentCloud
11253
11278
  @RoundPlaySet << roundplayinfo_tmp
11254
11279
  end
11255
11280
  end
11281
+ @ScrollToken = params['ScrollToken']
11256
11282
  @RequestId = params['RequestId']
11257
11283
  end
11258
11284
  end
@@ -18866,8 +18892,7 @@ module TencentCloud
18866
18892
  # @type Name: String
18867
18893
  # @param Desc: 轮播播单描述信息,长度限制:256 个字符。
18868
18894
  # @type Desc: String
18869
- # @param Status: 播放状态,可选值:
18870
- # <li>Disabled:结束播放,结束后轮播任务不能再次启动。</li>
18895
+ # @param Status: 播放状态,可选值:<li>Disabled:停止播放。</li><li>Enabled:启播时长到达后启动播放。</li>
18871
18896
  # @type Status: String
18872
18897
  # @param PlayBackMode: 播放模式,可选值:
18873
18898
  # <li>Loop:循环播放播单;</li>
@@ -24487,7 +24512,7 @@ module TencentCloud
24487
24512
  end
24488
24513
  end
24489
24514
 
24490
- # 轮播媒体文件信息
24515
+ # 轮播播放节目信息
24491
24516
  class RoundPlayListItemInfo < TencentCloud::Common::AbstractModel
24492
24517
  # @param FileId: 媒体文件标识。
24493
24518
  # @type FileId: String
@@ -24496,20 +24521,24 @@ module TencentCloud
24496
24521
  # <li>Original:原始音视频。</li>
24497
24522
  # Type 对应的格式必须为 HLS 格式。
24498
24523
  # @type AudioVideoType: String
24524
+ # @param ItemId: 播放节目的 ID,由系统分配。
24525
+ # @type ItemId: String
24499
24526
  # @param Definition: 指定播放的转码模版,当 AudioVideoType 为 Transcode 时必须指定。
24500
24527
  # @type Definition: Integer
24501
24528
 
24502
- attr_accessor :FileId, :AudioVideoType, :Definition
24529
+ attr_accessor :FileId, :AudioVideoType, :ItemId, :Definition
24503
24530
 
24504
- def initialize(fileid=nil, audiovideotype=nil, definition=nil)
24531
+ def initialize(fileid=nil, audiovideotype=nil, itemid=nil, definition=nil)
24505
24532
  @FileId = fileid
24506
24533
  @AudioVideoType = audiovideotype
24534
+ @ItemId = itemid
24507
24535
  @Definition = definition
24508
24536
  end
24509
24537
 
24510
24538
  def deserialize(params)
24511
24539
  @FileId = params['FileId']
24512
24540
  @AudioVideoType = params['AudioVideoType']
24541
+ @ItemId = params['ItemId']
24513
24542
  @Definition = params['Definition']
24514
24543
  end
24515
24544
  end
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.887
4
+ version: 3.0.888
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-16 00:00:00.000000000 Z
11
+ date: 2024-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common