tencentcloud-sdk-vod 1.0.321 → 1.0.324

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e012f64be944a8a0137301a07e4ea43849baa64d
4
- data.tar.gz: 25f9976e850699d1208d8fb652258c6ca34b4195
3
+ metadata.gz: de315c06f4085311c2e4d08c4cdec8c28f568af5
4
+ data.tar.gz: 2680c9135836d2873f98c7b183f653d522b2614b
5
5
  SHA512:
6
- metadata.gz: 4b73122467aecd679785d9fd2b763e9682e690983bb21383e158fbd52664ff5aa6902902570cf6af05d3f08960f98e12d0b39268b51e8d414c7e4e895d529369
7
- data.tar.gz: 9a9644ac4371310af3926d093b64b5434ad5776276936db89decee6b22968c05e5d362a837a7d9e7e8ea683edf1a97468510c4bae7a7cc2de85e9685198bd2c0
6
+ metadata.gz: ff42612f98119bb18612b9e1964016d9be3b15b92f7712d4d56102e3c825e5de9094848194ca60c6ab684e41ac4a8eba6a052296eb4c56a0c2b4474660b9dbfa
7
+ data.tar.gz: 8c080391e75b47d6dd3c6beadf2a10325323e5ec71baf9b93b2c865bb0447b3c42bb48713f272ef96664d9ee4bbc2656aafb8e59d2e9958198fe94198ac8f658
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.321
1
+ 1.0.324
@@ -3268,6 +3268,7 @@ module TencentCloud
3268
3268
  end
3269
3269
 
3270
3270
  # 将点播视频发布到微信小程序,供微信小程序播放器播放。
3271
+ # 本接口支持发布原始视频和转码后视频,暂不支持发布自适应码流。
3271
3272
 
3272
3273
  # @param request: Request instance for WeChatMiniProgramPublish.
3273
3274
  # @type request: :class:`Tencentcloud::vod::V20180717::WeChatMiniProgramPublishRequest`
@@ -5380,6 +5380,8 @@ module TencentCloud
5380
5380
  class CreateHeadTailTemplateRequest < TencentCloud::Common::AbstractModel
5381
5381
  # @param Name: 模板名,长度限制 64 个字符。
5382
5382
  # @type Name: String
5383
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
5384
+ # @type SubAppId: Integer
5383
5385
  # @param Comment: 模板描述信息,长度限制 256 个字符。
5384
5386
  # @type Comment: String
5385
5387
  # @param HeadCandidateSet: 片头候选列表,填写视频的 FileId。转码时将自动选择与正片宽高比最接近的一个片头(相同宽高比时,靠前的候选项优先)。最多支持 5 个候选片头。
@@ -5393,27 +5395,25 @@ module TencentCloud
5393
5395
  # <li> black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
5394
5396
  # 默认值:stretch 。
5395
5397
  # @type FillType: String
5396
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
5397
- # @type SubAppId: Integer
5398
5398
 
5399
- attr_accessor :Name, :Comment, :HeadCandidateSet, :TailCandidateSet, :FillType, :SubAppId
5399
+ attr_accessor :Name, :SubAppId, :Comment, :HeadCandidateSet, :TailCandidateSet, :FillType
5400
5400
 
5401
- def initialize(name=nil, comment=nil, headcandidateset=nil, tailcandidateset=nil, filltype=nil, subappid=nil)
5401
+ def initialize(name=nil, subappid=nil, comment=nil, headcandidateset=nil, tailcandidateset=nil, filltype=nil)
5402
5402
  @Name = name
5403
+ @SubAppId = subappid
5403
5404
  @Comment = comment
5404
5405
  @HeadCandidateSet = headcandidateset
5405
5406
  @TailCandidateSet = tailcandidateset
5406
5407
  @FillType = filltype
5407
- @SubAppId = subappid
5408
5408
  end
5409
5409
 
5410
5410
  def deserialize(params)
5411
5411
  @Name = params['Name']
5412
+ @SubAppId = params['SubAppId']
5412
5413
  @Comment = params['Comment']
5413
5414
  @HeadCandidateSet = params['HeadCandidateSet']
5414
5415
  @TailCandidateSet = params['TailCandidateSet']
5415
5416
  @FillType = params['FillType']
5416
- @SubAppId = params['SubAppId']
5417
5417
  end
5418
5418
  end
5419
5419
 
@@ -5442,20 +5442,20 @@ module TencentCloud
5442
5442
  # @param Operations: 图片处理操作数组,操作将以其在数组中的顺序执行。
5443
5443
  # <li>长度限制:3。</li>
5444
5444
  # @type Operations: Array
5445
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
5446
+ # @type SubAppId: Integer
5445
5447
  # @param Name: 图片处理模板名称,长度限制:64 个字符。
5446
5448
  # @type Name: String
5447
5449
  # @param Comment: 模板描述信息,长度限制:256 个字符。
5448
5450
  # @type Comment: String
5449
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
5450
- # @type SubAppId: Integer
5451
5451
 
5452
- attr_accessor :Operations, :Name, :Comment, :SubAppId
5452
+ attr_accessor :Operations, :SubAppId, :Name, :Comment
5453
5453
 
5454
- def initialize(operations=nil, name=nil, comment=nil, subappid=nil)
5454
+ def initialize(operations=nil, subappid=nil, name=nil, comment=nil)
5455
5455
  @Operations = operations
5456
+ @SubAppId = subappid
5456
5457
  @Name = name
5457
5458
  @Comment = comment
5458
- @SubAppId = subappid
5459
5459
  end
5460
5460
 
5461
5461
  def deserialize(params)
@@ -5467,9 +5467,9 @@ module TencentCloud
5467
5467
  @Operations << imageoperation_tmp
5468
5468
  end
5469
5469
  end
5470
+ @SubAppId = params['SubAppId']
5470
5471
  @Name = params['Name']
5471
5472
  @Comment = params['Comment']
5472
- @SubAppId = params['SubAppId']
5473
5473
  end
5474
5474
  end
5475
5475
 
@@ -6453,7 +6453,7 @@ module TencentCloud
6453
6453
  class DeleteAIAnalysisTemplateRequest < TencentCloud::Common::AbstractModel
6454
6454
  # @param Definition: 视频内容分析模板唯一标识。
6455
6455
  # @type Definition: Integer
6456
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6456
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6457
6457
  # @type SubAppId: Integer
6458
6458
 
6459
6459
  attr_accessor :Definition, :SubAppId
@@ -6489,7 +6489,7 @@ module TencentCloud
6489
6489
  class DeleteAIRecognitionTemplateRequest < TencentCloud::Common::AbstractModel
6490
6490
  # @param Definition: 视频内容识别模板唯一标识。
6491
6491
  # @type Definition: Integer
6492
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6492
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6493
6493
  # @type SubAppId: Integer
6494
6494
 
6495
6495
  attr_accessor :Definition, :SubAppId
@@ -6525,7 +6525,7 @@ module TencentCloud
6525
6525
  class DeleteAdaptiveDynamicStreamingTemplateRequest < TencentCloud::Common::AbstractModel
6526
6526
  # @param Definition: 自适应转码模板唯一标识。
6527
6527
  # @type Definition: Integer
6528
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6528
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6529
6529
  # @type SubAppId: Integer
6530
6530
 
6531
6531
  attr_accessor :Definition, :SubAppId
@@ -6561,7 +6561,7 @@ module TencentCloud
6561
6561
  class DeleteAnimatedGraphicsTemplateRequest < TencentCloud::Common::AbstractModel
6562
6562
  # @param Definition: 转动图模板唯一标识。
6563
6563
  # @type Definition: Integer
6564
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6564
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6565
6565
  # @type SubAppId: Integer
6566
6566
 
6567
6567
  attr_accessor :Definition, :SubAppId
@@ -6633,7 +6633,7 @@ module TencentCloud
6633
6633
  class DeleteContentReviewTemplateRequest < TencentCloud::Common::AbstractModel
6634
6634
  # @param Definition: 内容智能识别模板唯一标识。
6635
6635
  # @type Definition: Integer
6636
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6636
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6637
6637
  # @type SubAppId: Integer
6638
6638
 
6639
6639
  attr_accessor :Definition, :SubAppId
@@ -6669,7 +6669,7 @@ module TencentCloud
6669
6669
  class DeleteHeadTailTemplateRequest < TencentCloud::Common::AbstractModel
6670
6670
  # @param Definition: 片头片尾模板号。
6671
6671
  # @type Definition: Integer
6672
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6672
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6673
6673
  # @type SubAppId: Integer
6674
6674
 
6675
6675
  attr_accessor :Definition, :SubAppId
@@ -6705,7 +6705,7 @@ module TencentCloud
6705
6705
  class DeleteImageProcessingTemplateRequest < TencentCloud::Common::AbstractModel
6706
6706
  # @param Definition: 图片处理模板唯一标识。
6707
6707
  # @type Definition: Integer
6708
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6708
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6709
6709
  # @type SubAppId: Integer
6710
6710
 
6711
6711
  attr_accessor :Definition, :SubAppId
@@ -6741,7 +6741,7 @@ module TencentCloud
6741
6741
  class DeleteImageSpriteTemplateRequest < TencentCloud::Common::AbstractModel
6742
6742
  # @param Definition: 雪碧图模板唯一标识。
6743
6743
  # @type Definition: Integer
6744
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6744
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6745
6745
  # @type SubAppId: Integer
6746
6746
 
6747
6747
  attr_accessor :Definition, :SubAppId
@@ -6896,7 +6896,7 @@ module TencentCloud
6896
6896
  class DeleteSampleSnapshotTemplateRequest < TencentCloud::Common::AbstractModel
6897
6897
  # @param Definition: 采样截图模板唯一标识。
6898
6898
  # @type Definition: Integer
6899
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6899
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6900
6900
  # @type SubAppId: Integer
6901
6901
 
6902
6902
  attr_accessor :Definition, :SubAppId
@@ -6932,7 +6932,7 @@ module TencentCloud
6932
6932
  class DeleteSnapshotByTimeOffsetTemplateRequest < TencentCloud::Common::AbstractModel
6933
6933
  # @param Definition: 指定时间点截图模板唯一标识。
6934
6934
  # @type Definition: Integer
6935
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
6935
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
6936
6936
  # @type SubAppId: Integer
6937
6937
 
6938
6938
  attr_accessor :Definition, :SubAppId
@@ -7004,7 +7004,7 @@ module TencentCloud
7004
7004
  class DeleteTranscodeTemplateRequest < TencentCloud::Common::AbstractModel
7005
7005
  # @param Definition: 转码模板唯一标识。
7006
7006
  # @type Definition: Integer
7007
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7007
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7008
7008
  # @type SubAppId: Integer
7009
7009
 
7010
7010
  attr_accessor :Definition, :SubAppId
@@ -7076,7 +7076,7 @@ module TencentCloud
7076
7076
  class DeleteWatermarkTemplateRequest < TencentCloud::Common::AbstractModel
7077
7077
  # @param Definition: 水印模板唯一标识。
7078
7078
  # @type Definition: Integer
7079
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7079
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7080
7080
  # @type SubAppId: Integer
7081
7081
 
7082
7082
  attr_accessor :Definition, :SubAppId
@@ -7146,29 +7146,29 @@ module TencentCloud
7146
7146
 
7147
7147
  # DescribeAIAnalysisTemplates请求参数结构体
7148
7148
  class DescribeAIAnalysisTemplatesRequest < TencentCloud::Common::AbstractModel
7149
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7150
+ # @type SubAppId: Integer
7149
7151
  # @param Definitions: 视频内容分析模板唯一标识过滤条件,数组长度最大值:100。
7150
7152
  # @type Definitions: Array
7151
7153
  # @param Offset: 分页偏移量,默认值:0。
7152
7154
  # @type Offset: Integer
7153
7155
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
7154
7156
  # @type Limit: Integer
7155
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7156
- # @type SubAppId: Integer
7157
7157
 
7158
- attr_accessor :Definitions, :Offset, :Limit, :SubAppId
7158
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit
7159
7159
 
7160
- def initialize(definitions=nil, offset=nil, limit=nil, subappid=nil)
7160
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil)
7161
+ @SubAppId = subappid
7161
7162
  @Definitions = definitions
7162
7163
  @Offset = offset
7163
7164
  @Limit = limit
7164
- @SubAppId = subappid
7165
7165
  end
7166
7166
 
7167
7167
  def deserialize(params)
7168
+ @SubAppId = params['SubAppId']
7168
7169
  @Definitions = params['Definitions']
7169
7170
  @Offset = params['Offset']
7170
7171
  @Limit = params['Limit']
7171
- @SubAppId = params['SubAppId']
7172
7172
  end
7173
7173
  end
7174
7174
 
@@ -7205,29 +7205,29 @@ module TencentCloud
7205
7205
 
7206
7206
  # DescribeAIRecognitionTemplates请求参数结构体
7207
7207
  class DescribeAIRecognitionTemplatesRequest < TencentCloud::Common::AbstractModel
7208
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7209
+ # @type SubAppId: Integer
7208
7210
  # @param Definitions: 视频内容识别模板唯一标识过滤条件,数组长度限制:100。
7209
7211
  # @type Definitions: Array
7210
7212
  # @param Offset: 分页偏移量,默认值:0。
7211
7213
  # @type Offset: Integer
7212
7214
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
7213
7215
  # @type Limit: Integer
7214
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7215
- # @type SubAppId: Integer
7216
7216
 
7217
- attr_accessor :Definitions, :Offset, :Limit, :SubAppId
7217
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit
7218
7218
 
7219
- def initialize(definitions=nil, offset=nil, limit=nil, subappid=nil)
7219
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil)
7220
+ @SubAppId = subappid
7220
7221
  @Definitions = definitions
7221
7222
  @Offset = offset
7222
7223
  @Limit = limit
7223
- @SubAppId = subappid
7224
7224
  end
7225
7225
 
7226
7226
  def deserialize(params)
7227
+ @SubAppId = params['SubAppId']
7227
7228
  @Definitions = params['Definitions']
7228
7229
  @Offset = params['Offset']
7229
7230
  @Limit = params['Limit']
7230
- @SubAppId = params['SubAppId']
7231
7231
  end
7232
7232
  end
7233
7233
 
@@ -7264,6 +7264,8 @@ module TencentCloud
7264
7264
 
7265
7265
  # DescribeAdaptiveDynamicStreamingTemplates请求参数结构体
7266
7266
  class DescribeAdaptiveDynamicStreamingTemplatesRequest < TencentCloud::Common::AbstractModel
7267
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7268
+ # @type SubAppId: Integer
7267
7269
  # @param Definitions: 转自适应码流模板唯一标识过滤条件,数组长度限制:100。
7268
7270
  # @type Definitions: Array
7269
7271
  # @param Offset: 分页偏移量,默认值:0。
@@ -7274,25 +7276,23 @@ module TencentCloud
7274
7276
  # <li>Preset:系统预置模板;</li>
7275
7277
  # <li>Custom:用户自定义模板。</li>
7276
7278
  # @type Type: String
7277
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7278
- # @type SubAppId: Integer
7279
7279
 
7280
- attr_accessor :Definitions, :Offset, :Limit, :Type, :SubAppId
7280
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit, :Type
7281
7281
 
7282
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil, subappid=nil)
7282
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil, type=nil)
7283
+ @SubAppId = subappid
7283
7284
  @Definitions = definitions
7284
7285
  @Offset = offset
7285
7286
  @Limit = limit
7286
7287
  @Type = type
7287
- @SubAppId = subappid
7288
7288
  end
7289
7289
 
7290
7290
  def deserialize(params)
7291
+ @SubAppId = params['SubAppId']
7291
7292
  @Definitions = params['Definitions']
7292
7293
  @Offset = params['Offset']
7293
7294
  @Limit = params['Limit']
7294
7295
  @Type = params['Type']
7295
- @SubAppId = params['SubAppId']
7296
7296
  end
7297
7297
  end
7298
7298
 
@@ -7373,6 +7373,8 @@ module TencentCloud
7373
7373
 
7374
7374
  # DescribeAnimatedGraphicsTemplates请求参数结构体
7375
7375
  class DescribeAnimatedGraphicsTemplatesRequest < TencentCloud::Common::AbstractModel
7376
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7377
+ # @type SubAppId: Integer
7376
7378
  # @param Definitions: 转动图模板唯一标识过滤条件,数组长度限制:100。
7377
7379
  # @type Definitions: Array
7378
7380
  # @param Offset: 分页偏移量,默认值:0。
@@ -7383,25 +7385,23 @@ module TencentCloud
7383
7385
  # <li>Preset:系统预置模板;</li>
7384
7386
  # <li>Custom:用户自定义模板。</li>
7385
7387
  # @type Type: String
7386
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7387
- # @type SubAppId: Integer
7388
7388
 
7389
- attr_accessor :Definitions, :Offset, :Limit, :Type, :SubAppId
7389
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit, :Type
7390
7390
 
7391
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil, subappid=nil)
7391
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil, type=nil)
7392
+ @SubAppId = subappid
7392
7393
  @Definitions = definitions
7393
7394
  @Offset = offset
7394
7395
  @Limit = limit
7395
7396
  @Type = type
7396
- @SubAppId = subappid
7397
7397
  end
7398
7398
 
7399
7399
  def deserialize(params)
7400
+ @SubAppId = params['SubAppId']
7400
7401
  @Definitions = params['Definitions']
7401
7402
  @Offset = params['Offset']
7402
7403
  @Limit = params['Limit']
7403
7404
  @Type = params['Type']
7404
- @SubAppId = params['SubAppId']
7405
7405
  end
7406
7406
  end
7407
7407
 
@@ -7730,29 +7730,29 @@ module TencentCloud
7730
7730
 
7731
7731
  # DescribeContentReviewTemplates请求参数结构体
7732
7732
  class DescribeContentReviewTemplatesRequest < TencentCloud::Common::AbstractModel
7733
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
7734
+ # @type SubAppId: Integer
7733
7735
  # @param Definitions: 内容智能识别模板唯一标识过滤条件,数组长度限制:100。
7734
7736
  # @type Definitions: Array
7735
7737
  # @param Offset: 分页偏移量,默认值:0。
7736
7738
  # @type Offset: Integer
7737
7739
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
7738
7740
  # @type Limit: Integer
7739
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
7740
- # @type SubAppId: Integer
7741
7741
 
7742
- attr_accessor :Definitions, :Offset, :Limit, :SubAppId
7742
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit
7743
7743
 
7744
- def initialize(definitions=nil, offset=nil, limit=nil, subappid=nil)
7744
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil)
7745
+ @SubAppId = subappid
7745
7746
  @Definitions = definitions
7746
7747
  @Offset = offset
7747
7748
  @Limit = limit
7748
- @SubAppId = subappid
7749
7749
  end
7750
7750
 
7751
7751
  def deserialize(params)
7752
+ @SubAppId = params['SubAppId']
7752
7753
  @Definitions = params['Definitions']
7753
7754
  @Offset = params['Offset']
7754
7755
  @Limit = params['Limit']
7755
- @SubAppId = params['SubAppId']
7756
7756
  end
7757
7757
  end
7758
7758
 
@@ -8079,29 +8079,29 @@ module TencentCloud
8079
8079
 
8080
8080
  # DescribeHeadTailTemplates请求参数结构体
8081
8081
  class DescribeHeadTailTemplatesRequest < TencentCloud::Common::AbstractModel
8082
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8083
+ # @type SubAppId: Integer
8082
8084
  # @param Definitions: 片头片尾模板号,数组长度限制:100。
8083
8085
  # @type Definitions: Array
8084
8086
  # @param Offset: 分页偏移量,默认值:0。
8085
8087
  # @type Offset: Integer
8086
8088
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
8087
8089
  # @type Limit: Integer
8088
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8089
- # @type SubAppId: Integer
8090
8090
 
8091
- attr_accessor :Definitions, :Offset, :Limit, :SubAppId
8091
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit
8092
8092
 
8093
- def initialize(definitions=nil, offset=nil, limit=nil, subappid=nil)
8093
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil)
8094
+ @SubAppId = subappid
8094
8095
  @Definitions = definitions
8095
8096
  @Offset = offset
8096
8097
  @Limit = limit
8097
- @SubAppId = subappid
8098
8098
  end
8099
8099
 
8100
8100
  def deserialize(params)
8101
+ @SubAppId = params['SubAppId']
8101
8102
  @Definitions = params['Definitions']
8102
8103
  @Offset = params['Offset']
8103
8104
  @Limit = params['Limit']
8104
- @SubAppId = params['SubAppId']
8105
8105
  end
8106
8106
  end
8107
8107
 
@@ -8138,6 +8138,8 @@ module TencentCloud
8138
8138
 
8139
8139
  # DescribeImageProcessingTemplates请求参数结构体
8140
8140
  class DescribeImageProcessingTemplatesRequest < TencentCloud::Common::AbstractModel
8141
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8142
+ # @type SubAppId: Integer
8141
8143
  # @param Definitions: 图片处理模板标识列表。长度限制:100。
8142
8144
  # @type Definitions: Array
8143
8145
  # @param Type: 模板类型过滤条件,可选值:
@@ -8148,25 +8150,23 @@ module TencentCloud
8148
8150
  # @type Offset: Integer
8149
8151
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
8150
8152
  # @type Limit: Integer
8151
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8152
- # @type SubAppId: Integer
8153
8153
 
8154
- attr_accessor :Definitions, :Type, :Offset, :Limit, :SubAppId
8154
+ attr_accessor :SubAppId, :Definitions, :Type, :Offset, :Limit
8155
8155
 
8156
- def initialize(definitions=nil, type=nil, offset=nil, limit=nil, subappid=nil)
8156
+ def initialize(subappid=nil, definitions=nil, type=nil, offset=nil, limit=nil)
8157
+ @SubAppId = subappid
8157
8158
  @Definitions = definitions
8158
8159
  @Type = type
8159
8160
  @Offset = offset
8160
8161
  @Limit = limit
8161
- @SubAppId = subappid
8162
8162
  end
8163
8163
 
8164
8164
  def deserialize(params)
8165
+ @SubAppId = params['SubAppId']
8165
8166
  @Definitions = params['Definitions']
8166
8167
  @Type = params['Type']
8167
8168
  @Offset = params['Offset']
8168
8169
  @Limit = params['Limit']
8169
- @SubAppId = params['SubAppId']
8170
8170
  end
8171
8171
  end
8172
8172
 
@@ -8254,6 +8254,8 @@ module TencentCloud
8254
8254
 
8255
8255
  # DescribeImageSpriteTemplates请求参数结构体
8256
8256
  class DescribeImageSpriteTemplatesRequest < TencentCloud::Common::AbstractModel
8257
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8258
+ # @type SubAppId: Integer
8257
8259
  # @param Definitions: 雪碧图模板唯一标识过滤条件,数组长度限制:100。
8258
8260
  # @type Definitions: Array
8259
8261
  # @param Offset: 分页偏移量,默认值:0。
@@ -8264,25 +8266,23 @@ module TencentCloud
8264
8266
  # <li>Preset:系统预置模板;</li>
8265
8267
  # <li>Custom:用户自定义模板。</li>
8266
8268
  # @type Type: String
8267
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8268
- # @type SubAppId: Integer
8269
8269
 
8270
- attr_accessor :Definitions, :Offset, :Limit, :Type, :SubAppId
8270
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit, :Type
8271
8271
 
8272
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil, subappid=nil)
8272
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil, type=nil)
8273
+ @SubAppId = subappid
8273
8274
  @Definitions = definitions
8274
8275
  @Offset = offset
8275
8276
  @Limit = limit
8276
8277
  @Type = type
8277
- @SubAppId = subappid
8278
8278
  end
8279
8279
 
8280
8280
  def deserialize(params)
8281
+ @SubAppId = params['SubAppId']
8281
8282
  @Definitions = params['Definitions']
8282
8283
  @Offset = params['Offset']
8283
8284
  @Limit = params['Limit']
8284
8285
  @Type = params['Type']
8285
- @SubAppId = params['SubAppId']
8286
8286
  end
8287
8287
  end
8288
8288
 
@@ -8803,6 +8803,8 @@ module TencentCloud
8803
8803
 
8804
8804
  # DescribeSampleSnapshotTemplates请求参数结构体
8805
8805
  class DescribeSampleSnapshotTemplatesRequest < TencentCloud::Common::AbstractModel
8806
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8807
+ # @type SubAppId: Integer
8806
8808
  # @param Definitions: 采样截图模板唯一标识过滤条件,数组长度限制:100。
8807
8809
  # @type Definitions: Array
8808
8810
  # @param Offset: 分页偏移量,默认值:0。
@@ -8813,25 +8815,23 @@ module TencentCloud
8813
8815
  # <li>Preset:系统预置模板;</li>
8814
8816
  # <li>Custom:用户自定义模板。</li>
8815
8817
  # @type Type: String
8816
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8817
- # @type SubAppId: Integer
8818
8818
 
8819
- attr_accessor :Definitions, :Offset, :Limit, :Type, :SubAppId
8819
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit, :Type
8820
8820
 
8821
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil, subappid=nil)
8821
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil, type=nil)
8822
+ @SubAppId = subappid
8822
8823
  @Definitions = definitions
8823
8824
  @Offset = offset
8824
8825
  @Limit = limit
8825
8826
  @Type = type
8826
- @SubAppId = subappid
8827
8827
  end
8828
8828
 
8829
8829
  def deserialize(params)
8830
+ @SubAppId = params['SubAppId']
8830
8831
  @Definitions = params['Definitions']
8831
8832
  @Offset = params['Offset']
8832
8833
  @Limit = params['Limit']
8833
8834
  @Type = params['Type']
8834
- @SubAppId = params['SubAppId']
8835
8835
  end
8836
8836
  end
8837
8837
 
@@ -8868,6 +8868,8 @@ module TencentCloud
8868
8868
 
8869
8869
  # DescribeSnapshotByTimeOffsetTemplates请求参数结构体
8870
8870
  class DescribeSnapshotByTimeOffsetTemplatesRequest < TencentCloud::Common::AbstractModel
8871
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8872
+ # @type SubAppId: Integer
8871
8873
  # @param Definitions: 指定时间点截图模板唯一标识过滤条件,数组长度限制:100。
8872
8874
  # @type Definitions: Array
8873
8875
  # @param Offset: 分页偏移量,默认值:0。
@@ -8878,25 +8880,23 @@ module TencentCloud
8878
8880
  # <li>Preset:系统预置模板;</li>
8879
8881
  # <li>Custom:用户自定义模板。</li>
8880
8882
  # @type Type: String
8881
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8882
- # @type SubAppId: Integer
8883
8883
 
8884
- attr_accessor :Definitions, :Offset, :Limit, :Type, :SubAppId
8884
+ attr_accessor :SubAppId, :Definitions, :Offset, :Limit, :Type
8885
8885
 
8886
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil, subappid=nil)
8886
+ def initialize(subappid=nil, definitions=nil, offset=nil, limit=nil, type=nil)
8887
+ @SubAppId = subappid
8887
8888
  @Definitions = definitions
8888
8889
  @Offset = offset
8889
8890
  @Limit = limit
8890
8891
  @Type = type
8891
- @SubAppId = subappid
8892
8892
  end
8893
8893
 
8894
8894
  def deserialize(params)
8895
+ @SubAppId = params['SubAppId']
8895
8896
  @Definitions = params['Definitions']
8896
8897
  @Offset = params['Offset']
8897
8898
  @Limit = params['Limit']
8898
8899
  @Type = params['Type']
8899
- @SubAppId = params['SubAppId']
8900
8900
  end
8901
8901
  end
8902
8902
 
@@ -9506,6 +9506,8 @@ module TencentCloud
9506
9506
 
9507
9507
  # DescribeTranscodeTemplates请求参数结构体
9508
9508
  class DescribeTranscodeTemplatesRequest < TencentCloud::Common::AbstractModel
9509
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
9510
+ # @type SubAppId: Integer
9509
9511
  # @param Definitions: 转码模板唯一标识过滤条件,数组长度限制:100。
9510
9512
  # @type Definitions: Array
9511
9513
  # @param Type: 模板类型过滤条件,可选值:
@@ -9524,29 +9526,27 @@ module TencentCloud
9524
9526
  # @type Offset: Integer
9525
9527
  # @param Limit: 返回记录条数,默认值:10,最大值:100。
9526
9528
  # @type Limit: Integer
9527
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
9528
- # @type SubAppId: Integer
9529
9529
 
9530
- attr_accessor :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit, :SubAppId
9530
+ attr_accessor :SubAppId, :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit
9531
9531
 
9532
- def initialize(definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil, subappid=nil)
9532
+ def initialize(subappid=nil, definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil)
9533
+ @SubAppId = subappid
9533
9534
  @Definitions = definitions
9534
9535
  @Type = type
9535
9536
  @ContainerType = containertype
9536
9537
  @TEHDType = tehdtype
9537
9538
  @Offset = offset
9538
9539
  @Limit = limit
9539
- @SubAppId = subappid
9540
9540
  end
9541
9541
 
9542
9542
  def deserialize(params)
9543
+ @SubAppId = params['SubAppId']
9543
9544
  @Definitions = params['Definitions']
9544
9545
  @Type = params['Type']
9545
9546
  @ContainerType = params['ContainerType']
9546
9547
  @TEHDType = params['TEHDType']
9547
9548
  @Offset = params['Offset']
9548
9549
  @Limit = params['Limit']
9549
- @SubAppId = params['SubAppId']
9550
9550
  end
9551
9551
  end
9552
9552
 
@@ -9644,8 +9644,8 @@ module TencentCloud
9644
9644
 
9645
9645
  # DescribeWatermarkTemplates请求参数结构体
9646
9646
  class DescribeWatermarkTemplatesRequest < TencentCloud::Common::AbstractModel
9647
- # @param Definitions: 水印模板唯一标识过滤条件,数组长度限制:100。
9648
- # @type Definitions: Array
9647
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
9648
+ # @type SubAppId: Integer
9649
9649
  # @param Type: 水印类型过滤条件,可选值:
9650
9650
  # <li>image:图片水印;</li>
9651
9651
  # <li>text:文字水印;</li>
@@ -9653,29 +9653,29 @@ module TencentCloud
9653
9653
  # @type Type: String
9654
9654
  # @param Offset: 分页偏移量,默认值:0。
9655
9655
  # @type Offset: Integer
9656
+ # @param Definitions: 水印模板唯一标识过滤条件,数组长度限制:100。
9657
+ # @type Definitions: Array
9656
9658
  # @param Limit: 返回记录条数
9657
9659
  # <li>默认值:10;</li>
9658
9660
  # <li>最大值:100。</li>
9659
9661
  # @type Limit: Integer
9660
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
9661
- # @type SubAppId: Integer
9662
9662
 
9663
- attr_accessor :Definitions, :Type, :Offset, :Limit, :SubAppId
9663
+ attr_accessor :SubAppId, :Type, :Offset, :Definitions, :Limit
9664
9664
 
9665
- def initialize(definitions=nil, type=nil, offset=nil, limit=nil, subappid=nil)
9666
- @Definitions = definitions
9665
+ def initialize(subappid=nil, type=nil, offset=nil, definitions=nil, limit=nil)
9666
+ @SubAppId = subappid
9667
9667
  @Type = type
9668
9668
  @Offset = offset
9669
+ @Definitions = definitions
9669
9670
  @Limit = limit
9670
- @SubAppId = subappid
9671
9671
  end
9672
9672
 
9673
9673
  def deserialize(params)
9674
- @Definitions = params['Definitions']
9674
+ @SubAppId = params['SubAppId']
9675
9675
  @Type = params['Type']
9676
9676
  @Offset = params['Offset']
9677
+ @Definitions = params['Definitions']
9677
9678
  @Limit = params['Limit']
9678
- @SubAppId = params['SubAppId']
9679
9679
  end
9680
9680
  end
9681
9681
 
@@ -13596,6 +13596,8 @@ module TencentCloud
13596
13596
  class ModifyAIAnalysisTemplateRequest < TencentCloud::Common::AbstractModel
13597
13597
  # @param Definition: 视频内容分析模板唯一标识。
13598
13598
  # @type Definition: Integer
13599
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13600
+ # @type SubAppId: Integer
13599
13601
  # @param Name: 视频内容分析模板名称,长度限制:64 个字符。
13600
13602
  # @type Name: String
13601
13603
  # @param Comment: 视频内容分析模板描述信息,长度限制:256 个字符。
@@ -13610,13 +13612,12 @@ module TencentCloud
13610
13612
  # @type FrameTagConfigure: :class:`Tencentcloud::Vod.v20180717.models.FrameTagConfigureInfoForUpdate`
13611
13613
  # @param HighlightConfigure: 智能精彩集锦任务控制参数。
13612
13614
  # @type HighlightConfigure: :class:`Tencentcloud::Vod.v20180717.models.HighlightsConfigureInfoForUpdate`
13613
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
13614
- # @type SubAppId: Integer
13615
13615
 
13616
- attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :HighlightConfigure, :SubAppId
13616
+ attr_accessor :Definition, :SubAppId, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :HighlightConfigure
13617
13617
 
13618
- def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, highlightconfigure=nil, subappid=nil)
13618
+ def initialize(definition=nil, subappid=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, highlightconfigure=nil)
13619
13619
  @Definition = definition
13620
+ @SubAppId = subappid
13620
13621
  @Name = name
13621
13622
  @Comment = comment
13622
13623
  @ClassificationConfigure = classificationconfigure
@@ -13624,11 +13625,11 @@ module TencentCloud
13624
13625
  @CoverConfigure = coverconfigure
13625
13626
  @FrameTagConfigure = frametagconfigure
13626
13627
  @HighlightConfigure = highlightconfigure
13627
- @SubAppId = subappid
13628
13628
  end
13629
13629
 
13630
13630
  def deserialize(params)
13631
13631
  @Definition = params['Definition']
13632
+ @SubAppId = params['SubAppId']
13632
13633
  @Name = params['Name']
13633
13634
  @Comment = params['Comment']
13634
13635
  unless params['ClassificationConfigure'].nil?
@@ -13651,7 +13652,6 @@ module TencentCloud
13651
13652
  @HighlightConfigure = HighlightsConfigureInfoForUpdate.new
13652
13653
  @HighlightConfigure.deserialize(params['HighlightConfigure'])
13653
13654
  end
13654
- @SubAppId = params['SubAppId']
13655
13655
  end
13656
13656
  end
13657
13657
 
@@ -13675,6 +13675,8 @@ module TencentCloud
13675
13675
  class ModifyAIRecognitionTemplateRequest < TencentCloud::Common::AbstractModel
13676
13676
  # @param Definition: 视频内容识别模板唯一标识。
13677
13677
  # @type Definition: Integer
13678
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13679
+ # @type SubAppId: Integer
13678
13680
  # @param Name: 视频内容识别模板名称,长度限制:64 个字符。
13679
13681
  # @type Name: String
13680
13682
  # @param Comment: 视频内容识别模板描述信息,长度限制:256 个字符。
@@ -13697,13 +13699,12 @@ module TencentCloud
13697
13699
  # @type ObjectConfigure: :class:`Tencentcloud::Vod.v20180717.models.ObjectConfigureInfoForUpdate`
13698
13700
  # @param ScreenshotInterval: 截帧间隔,单位为秒,最小值为 0.5 秒。
13699
13701
  # @type ScreenshotInterval: Float
13700
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
13701
- # @type SubAppId: Integer
13702
13702
 
13703
- attr_accessor :Definition, :Name, :Comment, :HeadTailConfigure, :SegmentConfigure, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :ObjectConfigure, :ScreenshotInterval, :SubAppId
13703
+ attr_accessor :Definition, :SubAppId, :Name, :Comment, :HeadTailConfigure, :SegmentConfigure, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :ObjectConfigure, :ScreenshotInterval
13704
13704
 
13705
- def initialize(definition=nil, name=nil, comment=nil, headtailconfigure=nil, segmentconfigure=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, objectconfigure=nil, screenshotinterval=nil, subappid=nil)
13705
+ def initialize(definition=nil, subappid=nil, name=nil, comment=nil, headtailconfigure=nil, segmentconfigure=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, objectconfigure=nil, screenshotinterval=nil)
13706
13706
  @Definition = definition
13707
+ @SubAppId = subappid
13707
13708
  @Name = name
13708
13709
  @Comment = comment
13709
13710
  @HeadTailConfigure = headtailconfigure
@@ -13715,11 +13716,11 @@ module TencentCloud
13715
13716
  @AsrWordsConfigure = asrwordsconfigure
13716
13717
  @ObjectConfigure = objectconfigure
13717
13718
  @ScreenshotInterval = screenshotinterval
13718
- @SubAppId = subappid
13719
13719
  end
13720
13720
 
13721
13721
  def deserialize(params)
13722
13722
  @Definition = params['Definition']
13723
+ @SubAppId = params['SubAppId']
13723
13724
  @Name = params['Name']
13724
13725
  @Comment = params['Comment']
13725
13726
  unless params['HeadTailConfigure'].nil?
@@ -13755,7 +13756,6 @@ module TencentCloud
13755
13756
  @ObjectConfigure.deserialize(params['ObjectConfigure'])
13756
13757
  end
13757
13758
  @ScreenshotInterval = params['ScreenshotInterval']
13758
- @SubAppId = params['SubAppId']
13759
13759
  end
13760
13760
  end
13761
13761
 
@@ -13852,6 +13852,8 @@ module TencentCloud
13852
13852
  class ModifyAnimatedGraphicsTemplateRequest < TencentCloud::Common::AbstractModel
13853
13853
  # @param Definition: 转动图模板唯一标识。
13854
13854
  # @type Definition: Integer
13855
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13856
+ # @type SubAppId: Integer
13855
13857
  # @param Name: 转动图模板名称,长度限制:64 个字符。
13856
13858
  # @type Name: String
13857
13859
  # @param Width: 动图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
@@ -13881,13 +13883,12 @@ module TencentCloud
13881
13883
  # @type Quality: Float
13882
13884
  # @param Comment: 模板描述信息,长度限制:256 个字符。
13883
13885
  # @type Comment: String
13884
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
13885
- # @type SubAppId: Integer
13886
13886
 
13887
- attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Fps, :Quality, :Comment, :SubAppId
13887
+ attr_accessor :Definition, :SubAppId, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Fps, :Quality, :Comment
13888
13888
 
13889
- def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, fps=nil, quality=nil, comment=nil, subappid=nil)
13889
+ def initialize(definition=nil, subappid=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, fps=nil, quality=nil, comment=nil)
13890
13890
  @Definition = definition
13891
+ @SubAppId = subappid
13891
13892
  @Name = name
13892
13893
  @Width = width
13893
13894
  @Height = height
@@ -13896,11 +13897,11 @@ module TencentCloud
13896
13897
  @Fps = fps
13897
13898
  @Quality = quality
13898
13899
  @Comment = comment
13899
- @SubAppId = subappid
13900
13900
  end
13901
13901
 
13902
13902
  def deserialize(params)
13903
13903
  @Definition = params['Definition']
13904
+ @SubAppId = params['SubAppId']
13904
13905
  @Name = params['Name']
13905
13906
  @Width = params['Width']
13906
13907
  @Height = params['Height']
@@ -13909,7 +13910,6 @@ module TencentCloud
13909
13910
  @Fps = params['Fps']
13910
13911
  @Quality = params['Quality']
13911
13912
  @Comment = params['Comment']
13912
- @SubAppId = params['SubAppId']
13913
13913
  end
13914
13914
  end
13915
13915
 
@@ -13973,6 +13973,8 @@ module TencentCloud
13973
13973
  class ModifyContentReviewTemplateRequest < TencentCloud::Common::AbstractModel
13974
13974
  # @param Definition: 内容智能识别模板唯一标识。
13975
13975
  # @type Definition: Integer
13976
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13977
+ # @type SubAppId: Integer
13976
13978
  # @param Name: 内容智能识别模板名称,长度限制:64 个字符。
13977
13979
  # @type Name: String
13978
13980
  # @param Comment: 内容智能识别模板描述信息,长度限制:256 个字符。
@@ -13995,13 +13997,12 @@ module TencentCloud
13995
13997
  # <li>ON:是;</li>
13996
13998
  # <li>OFF:否。</li>
13997
13999
  # @type ReviewWallSwitch: String
13998
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
13999
- # @type SubAppId: Integer
14000
14000
 
14001
- attr_accessor :Definition, :Name, :Comment, :TerrorismConfigure, :PornConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :ScreenshotInterval, :ReviewWallSwitch, :SubAppId
14001
+ attr_accessor :Definition, :SubAppId, :Name, :Comment, :TerrorismConfigure, :PornConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :ScreenshotInterval, :ReviewWallSwitch
14002
14002
 
14003
- def initialize(definition=nil, name=nil, comment=nil, terrorismconfigure=nil, pornconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, screenshotinterval=nil, reviewwallswitch=nil, subappid=nil)
14003
+ def initialize(definition=nil, subappid=nil, name=nil, comment=nil, terrorismconfigure=nil, pornconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, screenshotinterval=nil, reviewwallswitch=nil)
14004
14004
  @Definition = definition
14005
+ @SubAppId = subappid
14005
14006
  @Name = name
14006
14007
  @Comment = comment
14007
14008
  @TerrorismConfigure = terrorismconfigure
@@ -14011,11 +14012,11 @@ module TencentCloud
14011
14012
  @UserDefineConfigure = userdefineconfigure
14012
14013
  @ScreenshotInterval = screenshotinterval
14013
14014
  @ReviewWallSwitch = reviewwallswitch
14014
- @SubAppId = subappid
14015
14015
  end
14016
14016
 
14017
14017
  def deserialize(params)
14018
14018
  @Definition = params['Definition']
14019
+ @SubAppId = params['SubAppId']
14019
14020
  @Name = params['Name']
14020
14021
  @Comment = params['Comment']
14021
14022
  unless params['TerrorismConfigure'].nil?
@@ -14040,7 +14041,6 @@ module TencentCloud
14040
14041
  end
14041
14042
  @ScreenshotInterval = params['ScreenshotInterval']
14042
14043
  @ReviewWallSwitch = params['ReviewWallSwitch']
14043
- @SubAppId = params['SubAppId']
14044
14044
  end
14045
14045
  end
14046
14046
 
@@ -14151,6 +14151,8 @@ module TencentCloud
14151
14151
  class ModifyHeadTailTemplateRequest < TencentCloud::Common::AbstractModel
14152
14152
  # @param Definition: 片头片尾模板号。
14153
14153
  # @type Definition: Integer
14154
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
14155
+ # @type SubAppId: Integer
14154
14156
  # @param Name: 模板名,长度限制 64 个字符。不传代表不修改。
14155
14157
  # @type Name: String
14156
14158
  # @param Comment: 模板描述,长度限制 256 个字符。不传代表不修改,传空代表清空。
@@ -14166,29 +14168,27 @@ module TencentCloud
14166
14168
  # <li> black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
14167
14169
  # 默认值为不修改。
14168
14170
  # @type FillType: String
14169
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
14170
- # @type SubAppId: Integer
14171
14171
 
14172
- attr_accessor :Definition, :Name, :Comment, :HeadCandidateSet, :TailCandidateSet, :FillType, :SubAppId
14172
+ attr_accessor :Definition, :SubAppId, :Name, :Comment, :HeadCandidateSet, :TailCandidateSet, :FillType
14173
14173
 
14174
- def initialize(definition=nil, name=nil, comment=nil, headcandidateset=nil, tailcandidateset=nil, filltype=nil, subappid=nil)
14174
+ def initialize(definition=nil, subappid=nil, name=nil, comment=nil, headcandidateset=nil, tailcandidateset=nil, filltype=nil)
14175
14175
  @Definition = definition
14176
+ @SubAppId = subappid
14176
14177
  @Name = name
14177
14178
  @Comment = comment
14178
14179
  @HeadCandidateSet = headcandidateset
14179
14180
  @TailCandidateSet = tailcandidateset
14180
14181
  @FillType = filltype
14181
- @SubAppId = subappid
14182
14182
  end
14183
14183
 
14184
14184
  def deserialize(params)
14185
14185
  @Definition = params['Definition']
14186
+ @SubAppId = params['SubAppId']
14186
14187
  @Name = params['Name']
14187
14188
  @Comment = params['Comment']
14188
14189
  @HeadCandidateSet = params['HeadCandidateSet']
14189
14190
  @TailCandidateSet = params['TailCandidateSet']
14190
14191
  @FillType = params['FillType']
14191
- @SubAppId = params['SubAppId']
14192
14192
  end
14193
14193
  end
14194
14194
 
@@ -14212,6 +14212,8 @@ module TencentCloud
14212
14212
  class ModifyImageSpriteTemplateRequest < TencentCloud::Common::AbstractModel
14213
14213
  # @param Definition: 雪碧图模板唯一标识。
14214
14214
  # @type Definition: Integer
14215
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
14216
+ # @type SubAppId: Integer
14215
14217
  # @param Name: 雪碧图模板名称,长度限制:64 个字符。
14216
14218
  # @type Name: String
14217
14219
  # @param Width: 雪碧图中小图的宽度,取值范围: [128, 4096],单位:px。
@@ -14242,13 +14244,12 @@ module TencentCloud
14242
14244
  # @type FillType: String
14243
14245
  # @param Comment: 模板描述信息,长度限制:256 个字符。
14244
14246
  # @type Comment: String
14245
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
14246
- # @type SubAppId: Integer
14247
14247
 
14248
- attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :FillType, :Comment, :SubAppId
14248
+ attr_accessor :Definition, :SubAppId, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :RowCount, :ColumnCount, :FillType, :Comment
14249
14249
 
14250
- def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, filltype=nil, comment=nil, subappid=nil)
14250
+ def initialize(definition=nil, subappid=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, rowcount=nil, columncount=nil, filltype=nil, comment=nil)
14251
14251
  @Definition = definition
14252
+ @SubAppId = subappid
14252
14253
  @Name = name
14253
14254
  @Width = width
14254
14255
  @Height = height
@@ -14259,11 +14260,11 @@ module TencentCloud
14259
14260
  @ColumnCount = columncount
14260
14261
  @FillType = filltype
14261
14262
  @Comment = comment
14262
- @SubAppId = subappid
14263
14263
  end
14264
14264
 
14265
14265
  def deserialize(params)
14266
14266
  @Definition = params['Definition']
14267
+ @SubAppId = params['SubAppId']
14267
14268
  @Name = params['Name']
14268
14269
  @Width = params['Width']
14269
14270
  @Height = params['Height']
@@ -14274,7 +14275,6 @@ module TencentCloud
14274
14275
  @ColumnCount = params['ColumnCount']
14275
14276
  @FillType = params['FillType']
14276
14277
  @Comment = params['Comment']
14277
- @SubAppId = params['SubAppId']
14278
14278
  end
14279
14279
  end
14280
14280
 
@@ -14562,6 +14562,8 @@ module TencentCloud
14562
14562
  class ModifySampleSnapshotTemplateRequest < TencentCloud::Common::AbstractModel
14563
14563
  # @param Definition: 采样截图模板唯一标识。
14564
14564
  # @type Definition: Integer
14565
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
14566
+ # @type SubAppId: Integer
14565
14567
  # @param Name: 采样截图模板名称,长度限制:64 个字符。
14566
14568
  # @type Name: String
14567
14569
  # @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
@@ -14595,8 +14597,6 @@ module TencentCloud
14595
14597
  # @type Format: String
14596
14598
  # @param Comment: 模板描述信息,长度限制:256 个字符。
14597
14599
  # @type Comment: String
14598
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
14599
- # @type SubAppId: Integer
14600
14600
  # @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
14601
14601
  # <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
14602
14602
  # <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
@@ -14605,10 +14605,11 @@ module TencentCloud
14605
14605
  # 默认值:black 。
14606
14606
  # @type FillType: String
14607
14607
 
14608
- attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :Format, :Comment, :SubAppId, :FillType
14608
+ attr_accessor :Definition, :SubAppId, :Name, :Width, :Height, :ResolutionAdaptive, :SampleType, :SampleInterval, :Format, :Comment, :FillType
14609
14609
 
14610
- def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, format=nil, comment=nil, subappid=nil, filltype=nil)
14610
+ def initialize(definition=nil, subappid=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, sampletype=nil, sampleinterval=nil, format=nil, comment=nil, filltype=nil)
14611
14611
  @Definition = definition
14612
+ @SubAppId = subappid
14612
14613
  @Name = name
14613
14614
  @Width = width
14614
14615
  @Height = height
@@ -14617,12 +14618,12 @@ module TencentCloud
14617
14618
  @SampleInterval = sampleinterval
14618
14619
  @Format = format
14619
14620
  @Comment = comment
14620
- @SubAppId = subappid
14621
14621
  @FillType = filltype
14622
14622
  end
14623
14623
 
14624
14624
  def deserialize(params)
14625
14625
  @Definition = params['Definition']
14626
+ @SubAppId = params['SubAppId']
14626
14627
  @Name = params['Name']
14627
14628
  @Width = params['Width']
14628
14629
  @Height = params['Height']
@@ -14631,7 +14632,6 @@ module TencentCloud
14631
14632
  @SampleInterval = params['SampleInterval']
14632
14633
  @Format = params['Format']
14633
14634
  @Comment = params['Comment']
14634
- @SubAppId = params['SubAppId']
14635
14635
  @FillType = params['FillType']
14636
14636
  end
14637
14637
  end
@@ -14656,6 +14656,8 @@ module TencentCloud
14656
14656
  class ModifySnapshotByTimeOffsetTemplateRequest < TencentCloud::Common::AbstractModel
14657
14657
  # @param Definition: 指定时间点截图模板唯一标识。
14658
14658
  # @type Definition: Integer
14659
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
14660
+ # @type SubAppId: Integer
14659
14661
  # @param Name: 指定时间点截图模板名称,长度限制:64 个字符。
14660
14662
  # @type Name: String
14661
14663
  # @param Width: 截图宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
@@ -14681,8 +14683,6 @@ module TencentCloud
14681
14683
  # @type Format: String
14682
14684
  # @param Comment: 模板描述信息,长度限制:256 个字符。
14683
14685
  # @type Comment: String
14684
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
14685
- # @type SubAppId: Integer
14686
14686
  # @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
14687
14687
  # <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
14688
14688
  # <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
@@ -14691,29 +14691,29 @@ module TencentCloud
14691
14691
  # 默认值:black 。
14692
14692
  # @type FillType: String
14693
14693
 
14694
- attr_accessor :Definition, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Comment, :SubAppId, :FillType
14694
+ attr_accessor :Definition, :SubAppId, :Name, :Width, :Height, :ResolutionAdaptive, :Format, :Comment, :FillType
14695
14695
 
14696
- def initialize(definition=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, comment=nil, subappid=nil, filltype=nil)
14696
+ def initialize(definition=nil, subappid=nil, name=nil, width=nil, height=nil, resolutionadaptive=nil, format=nil, comment=nil, filltype=nil)
14697
14697
  @Definition = definition
14698
+ @SubAppId = subappid
14698
14699
  @Name = name
14699
14700
  @Width = width
14700
14701
  @Height = height
14701
14702
  @ResolutionAdaptive = resolutionadaptive
14702
14703
  @Format = format
14703
14704
  @Comment = comment
14704
- @SubAppId = subappid
14705
14705
  @FillType = filltype
14706
14706
  end
14707
14707
 
14708
14708
  def deserialize(params)
14709
14709
  @Definition = params['Definition']
14710
+ @SubAppId = params['SubAppId']
14710
14711
  @Name = params['Name']
14711
14712
  @Width = params['Width']
14712
14713
  @Height = params['Height']
14713
14714
  @ResolutionAdaptive = params['ResolutionAdaptive']
14714
14715
  @Format = params['Format']
14715
14716
  @Comment = params['Comment']
14716
- @SubAppId = params['SubAppId']
14717
14717
  @FillType = params['FillType']
14718
14718
  end
14719
14719
  end
@@ -14912,6 +14912,8 @@ module TencentCloud
14912
14912
  class ModifyTranscodeTemplateRequest < TencentCloud::Common::AbstractModel
14913
14913
  # @param Definition: 转码模板唯一标识。
14914
14914
  # @type Definition: Integer
14915
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
14916
+ # @type SubAppId: Integer
14915
14917
  # @param Container: 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
14916
14918
  # @type Container: String
14917
14919
  # @param Name: 转码模板名称,长度限制:64 个字符。
@@ -14932,13 +14934,12 @@ module TencentCloud
14932
14934
  # @type AudioTemplate: :class:`Tencentcloud::Vod.v20180717.models.AudioTemplateInfoForUpdate`
14933
14935
  # @param TEHDConfig: 极速高清转码参数。
14934
14936
  # @type TEHDConfig: :class:`Tencentcloud::Vod.v20180717.models.TEHDConfigForUpdate`
14935
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
14936
- # @type SubAppId: Integer
14937
14937
 
14938
- attr_accessor :Definition, :Container, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig, :SubAppId
14938
+ attr_accessor :Definition, :SubAppId, :Container, :Name, :Comment, :RemoveVideo, :RemoveAudio, :VideoTemplate, :AudioTemplate, :TEHDConfig
14939
14939
 
14940
- def initialize(definition=nil, container=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil, subappid=nil)
14940
+ def initialize(definition=nil, subappid=nil, container=nil, name=nil, comment=nil, removevideo=nil, removeaudio=nil, videotemplate=nil, audiotemplate=nil, tehdconfig=nil)
14941
14941
  @Definition = definition
14942
+ @SubAppId = subappid
14942
14943
  @Container = container
14943
14944
  @Name = name
14944
14945
  @Comment = comment
@@ -14947,11 +14948,11 @@ module TencentCloud
14947
14948
  @VideoTemplate = videotemplate
14948
14949
  @AudioTemplate = audiotemplate
14949
14950
  @TEHDConfig = tehdconfig
14950
- @SubAppId = subappid
14951
14951
  end
14952
14952
 
14953
14953
  def deserialize(params)
14954
14954
  @Definition = params['Definition']
14955
+ @SubAppId = params['SubAppId']
14955
14956
  @Container = params['Container']
14956
14957
  @Name = params['Name']
14957
14958
  @Comment = params['Comment']
@@ -14969,7 +14970,6 @@ module TencentCloud
14969
14970
  @TEHDConfig = TEHDConfigForUpdate.new
14970
14971
  @TEHDConfig.deserialize(params['TEHDConfig'])
14971
14972
  end
14972
- @SubAppId = params['SubAppId']
14973
14973
  end
14974
14974
  end
14975
14975
 
@@ -15093,6 +15093,8 @@ module TencentCloud
15093
15093
  class ModifyWatermarkTemplateRequest < TencentCloud::Common::AbstractModel
15094
15094
  # @param Definition: 水印模板唯一标识。
15095
15095
  # @type Definition: Integer
15096
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
15097
+ # @type SubAppId: Integer
15096
15098
  # @param Name: 水印模板名称,长度限制:64 个字符。
15097
15099
  # @type Name: String
15098
15100
  # @param Comment: 模板描述信息,长度限制:256 个字符。
@@ -15117,13 +15119,12 @@ module TencentCloud
15117
15119
  # @type TextTemplate: :class:`Tencentcloud::Vod.v20180717.models.TextWatermarkTemplateInputForUpdate`
15118
15120
  # @param SvgTemplate: SVG 水印模板,该字段仅对 SVG 水印模板有效。
15119
15121
  # @type SvgTemplate: :class:`Tencentcloud::Vod.v20180717.models.SvgWatermarkInputForUpdate`
15120
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
15121
- # @type SubAppId: Integer
15122
15122
 
15123
- attr_accessor :Definition, :Name, :Comment, :CoordinateOrigin, :XPos, :YPos, :ImageTemplate, :TextTemplate, :SvgTemplate, :SubAppId
15123
+ attr_accessor :Definition, :SubAppId, :Name, :Comment, :CoordinateOrigin, :XPos, :YPos, :ImageTemplate, :TextTemplate, :SvgTemplate
15124
15124
 
15125
- def initialize(definition=nil, name=nil, comment=nil, coordinateorigin=nil, xpos=nil, ypos=nil, imagetemplate=nil, texttemplate=nil, svgtemplate=nil, subappid=nil)
15125
+ def initialize(definition=nil, subappid=nil, name=nil, comment=nil, coordinateorigin=nil, xpos=nil, ypos=nil, imagetemplate=nil, texttemplate=nil, svgtemplate=nil)
15126
15126
  @Definition = definition
15127
+ @SubAppId = subappid
15127
15128
  @Name = name
15128
15129
  @Comment = comment
15129
15130
  @CoordinateOrigin = coordinateorigin
@@ -15132,11 +15133,11 @@ module TencentCloud
15132
15133
  @ImageTemplate = imagetemplate
15133
15134
  @TextTemplate = texttemplate
15134
15135
  @SvgTemplate = svgtemplate
15135
- @SubAppId = subappid
15136
15136
  end
15137
15137
 
15138
15138
  def deserialize(params)
15139
15139
  @Definition = params['Definition']
15140
+ @SubAppId = params['SubAppId']
15140
15141
  @Name = params['Name']
15141
15142
  @Comment = params['Comment']
15142
15143
  @CoordinateOrigin = params['CoordinateOrigin']
@@ -15154,7 +15155,6 @@ module TencentCloud
15154
15155
  @SvgTemplate = SvgWatermarkInputForUpdate.new
15155
15156
  @SvgTemplate.deserialize(params['SvgTemplate'])
15156
15157
  end
15157
- @SubAppId = params['SubAppId']
15158
15158
  end
15159
15159
  end
15160
15160
 
@@ -17395,7 +17395,7 @@ module TencentCloud
17395
17395
  # @type FileId: String
17396
17396
  # @param Definition: 图片智能识别模板 ID,当前固定填 10。
17397
17397
  # @type Definition: Integer
17398
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
17398
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
17399
17399
  # @type SubAppId: Integer
17400
17400
 
17401
17401
  attr_accessor :FileId, :Definition, :SubAppId
@@ -20215,7 +20215,7 @@ module TencentCloud
20215
20215
  # @type FileId: String
20216
20216
  # @param SourceDefinition: 发布视频所对应的转码模板 ID,为0代表原始视频。
20217
20217
  # @type SourceDefinition: Integer
20218
- # @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
20218
+ # @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
20219
20219
  # @type SubAppId: Integer
20220
20220
 
20221
20221
  attr_accessor :FileId, :SourceDefinition, :SubAppId
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: 1.0.321
4
+ version: 1.0.324
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-05-27 00:00:00.000000000 Z
11
+ date: 2022-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common