tencentcloud-sdk-vod 1.0.218 → 1.0.222
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/client.rb +4 -3
- data/lib/v20180717/models.rb +218 -32
- 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: 73729dac9faadf2971cee78eceb626b5517ebe19
|
4
|
+
data.tar.gz: e72dc451675f7aefa0c926efb6583856377a3779
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9a5f7507c9b5e2258cee9b9fc57334c170ed534629ff49d0d3abfaf1e0e8c4e92286f763d84ccd11fc3c5dd526ef8490db0f9041d0879e305901ab1ad563e27
|
7
|
+
data.tar.gz: b7e929094c3fa2aee2977a3d98d703773bc01bb73137c808483db4ff172adeb052560037a2ff2667015fd6ffa95aa30470b949d2d7c7a084d8b72c8ae99d6598
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.222
|
data/lib/v20180717/client.rb
CHANGED
@@ -1309,7 +1309,8 @@ module TencentCloud
|
|
1309
1309
|
end
|
1310
1310
|
|
1311
1311
|
# 该接口用于查询指定日期范围内每天的播放统计数据。
|
1312
|
-
# *
|
1312
|
+
# * 可以查询最近一年的播放统计数据。
|
1313
|
+
# * 结束日期和起始日期的时间跨度最大为90天。
|
1313
1314
|
|
1314
1315
|
# @param request: Request instance for DescribeDailyMediaPlayStat.
|
1315
1316
|
# @type request: :class:`Tencentcloud::vod::V20180717::DescribeDailyMediaPlayStatRequest`
|
@@ -1334,7 +1335,7 @@ module TencentCloud
|
|
1334
1335
|
end
|
1335
1336
|
|
1336
1337
|
# 该接口用于查询每日播放Top100 的媒体文件的播放统计数据。
|
1337
|
-
# *
|
1338
|
+
# * 可以查询最近一年的播放统计数据。
|
1338
1339
|
# * 可以按播放次数或者播放流量查询。
|
1339
1340
|
# * 播放次数统计说明:
|
1340
1341
|
# 1. HLS 文件:访问 M3U8 文件时统计播放次数;访问 TS 文件不统计播放次数。
|
@@ -1363,7 +1364,7 @@ module TencentCloud
|
|
1363
1364
|
end
|
1364
1365
|
|
1365
1366
|
# 该接口用于查询播放统计文件的下载地址。
|
1366
|
-
# *
|
1367
|
+
# * 可以查询最近一年的播放统计文件下载地址,查询的起始日期和结束日期的时间跨度不超过90天。
|
1367
1368
|
# * 云点播每天对前一天的 CDN 请求日志进行分析处理,生成播放统计文件。
|
1368
1369
|
# * 播放统计文件内容包含媒体文件的播放次数、播放流量等统计信息。
|
1369
1370
|
# * 播放次数统计说明:
|
data/lib/v20180717/models.rb
CHANGED
@@ -467,12 +467,19 @@ module TencentCloud
|
|
467
467
|
# 智能分类结果信息
|
468
468
|
class AiAnalysisTaskClassificationOutput < TencentCloud::Common::AbstractModel
|
469
469
|
# @param ClassificationSet: 视频智能分类列表。
|
470
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 ClassificationSetFileUrl 对应的文件中获取。
|
470
471
|
# @type ClassificationSet: Array
|
472
|
+
# @param ClassificationSetFileUrl: 视频智能分类列表文件 URL。文件的内容为 JSON,数据结构与 ClassificationSet 字段一致。 (文件不会永久存储,到达 ClassificationSetFileUrlExpireTime 时间点后文件将被删除)。
|
473
|
+
# @type ClassificationSetFileUrl: String
|
474
|
+
# @param ClassificationSetFileUrlExpireTime: 视频智能分类列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
475
|
+
# @type ClassificationSetFileUrlExpireTime: String
|
471
476
|
|
472
|
-
attr_accessor :ClassificationSet
|
477
|
+
attr_accessor :ClassificationSet, :ClassificationSetFileUrl, :ClassificationSetFileUrlExpireTime
|
473
478
|
|
474
|
-
def initialize(classificationset=nil)
|
479
|
+
def initialize(classificationset=nil, classificationsetfileurl=nil, classificationsetfileurlexpiretime=nil)
|
475
480
|
@ClassificationSet = classificationset
|
481
|
+
@ClassificationSetFileUrl = classificationsetfileurl
|
482
|
+
@ClassificationSetFileUrlExpireTime = classificationsetfileurlexpiretime
|
476
483
|
end
|
477
484
|
|
478
485
|
def deserialize(params)
|
@@ -484,6 +491,8 @@ module TencentCloud
|
|
484
491
|
@ClassificationSet << mediaaianalysisclassificationitem_tmp
|
485
492
|
end
|
486
493
|
end
|
494
|
+
@ClassificationSetFileUrl = params['ClassificationSetFileUrl']
|
495
|
+
@ClassificationSetFileUrlExpireTime = params['ClassificationSetFileUrlExpireTime']
|
487
496
|
end
|
488
497
|
end
|
489
498
|
|
@@ -549,12 +558,19 @@ module TencentCloud
|
|
549
558
|
# 智能封面结果信息
|
550
559
|
class AiAnalysisTaskCoverOutput < TencentCloud::Common::AbstractModel
|
551
560
|
# @param CoverSet: 智能封面列表。
|
561
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 CoverSetFileUrl 对应的文件中获取。
|
552
562
|
# @type CoverSet: Array
|
563
|
+
# @param CoverSetFileUrl: 智能封面列表文件 URL。文件的内容为 JSON,数据结构与 CoverSet 字段一致。 (文件不会永久存储,到达 CoverSetFileUrlExpireTime 时间点后文件将被删除)。
|
564
|
+
# @type CoverSetFileUrl: String
|
565
|
+
# @param CoverSetFileUrlExpireTime: 智能封面列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
566
|
+
# @type CoverSetFileUrlExpireTime: String
|
553
567
|
|
554
|
-
attr_accessor :CoverSet
|
568
|
+
attr_accessor :CoverSet, :CoverSetFileUrl, :CoverSetFileUrlExpireTime
|
555
569
|
|
556
|
-
def initialize(coverset=nil)
|
570
|
+
def initialize(coverset=nil, coversetfileurl=nil, coversetfileurlexpiretime=nil)
|
557
571
|
@CoverSet = coverset
|
572
|
+
@CoverSetFileUrl = coversetfileurl
|
573
|
+
@CoverSetFileUrlExpireTime = coversetfileurlexpiretime
|
558
574
|
end
|
559
575
|
|
560
576
|
def deserialize(params)
|
@@ -566,6 +582,8 @@ module TencentCloud
|
|
566
582
|
@CoverSet << mediaaianalysiscoveritem_tmp
|
567
583
|
end
|
568
584
|
end
|
585
|
+
@CoverSetFileUrl = params['CoverSetFileUrl']
|
586
|
+
@CoverSetFileUrlExpireTime = params['CoverSetFileUrlExpireTime']
|
569
587
|
end
|
570
588
|
end
|
571
589
|
|
@@ -631,12 +649,19 @@ module TencentCloud
|
|
631
649
|
# 智能按帧标签结果信息
|
632
650
|
class AiAnalysisTaskFrameTagOutput < TencentCloud::Common::AbstractModel
|
633
651
|
# @param SegmentSet: 视频按帧标签列表。
|
652
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
634
653
|
# @type SegmentSet: Array
|
654
|
+
# @param SegmentSetFileUrl: 视频按帧标签列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
655
|
+
# @type SegmentSetFileUrl: String
|
656
|
+
# @param SegmentSetFileUrlExpireTime: 视频按帧标签列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
657
|
+
# @type SegmentSetFileUrlExpireTime: String
|
635
658
|
|
636
|
-
attr_accessor :SegmentSet
|
659
|
+
attr_accessor :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
637
660
|
|
638
|
-
def initialize(segmentset=nil)
|
661
|
+
def initialize(segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
639
662
|
@SegmentSet = segmentset
|
663
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
664
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
640
665
|
end
|
641
666
|
|
642
667
|
def deserialize(params)
|
@@ -648,6 +673,8 @@ module TencentCloud
|
|
648
673
|
@SegmentSet << mediaaianalysisframetagsegmentitem_tmp
|
649
674
|
end
|
650
675
|
end
|
676
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
677
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
651
678
|
end
|
652
679
|
end
|
653
680
|
|
@@ -713,12 +740,19 @@ module TencentCloud
|
|
713
740
|
# 智能精彩片段结果信息
|
714
741
|
class AiAnalysisTaskHighlightOutput < TencentCloud::Common::AbstractModel
|
715
742
|
# @param HighlightSet: 视频智能精彩片段列表。
|
743
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 HighlightSetFileUrl 对应的文件中获取。
|
716
744
|
# @type HighlightSet: Array
|
745
|
+
# @param HighlightSetFileUrl: 视频智能精彩片段列表文件 URL。文件的内容为 JSON,数据结构与 HighlightSet 字段一致。 (文件不会永久存储,到达 HighlightSetFileUrlExpireTime 时间点后文件将被删除)。
|
746
|
+
# @type HighlightSetFileUrl: String
|
747
|
+
# @param HighlightSetFileUrlExpireTime: 视频智能精彩片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
748
|
+
# @type HighlightSetFileUrlExpireTime: String
|
717
749
|
|
718
|
-
attr_accessor :HighlightSet
|
750
|
+
attr_accessor :HighlightSet, :HighlightSetFileUrl, :HighlightSetFileUrlExpireTime
|
719
751
|
|
720
|
-
def initialize(highlightset=nil)
|
752
|
+
def initialize(highlightset=nil, highlightsetfileurl=nil, highlightsetfileurlexpiretime=nil)
|
721
753
|
@HighlightSet = highlightset
|
754
|
+
@HighlightSetFileUrl = highlightsetfileurl
|
755
|
+
@HighlightSetFileUrlExpireTime = highlightsetfileurlexpiretime
|
722
756
|
end
|
723
757
|
|
724
758
|
def deserialize(params)
|
@@ -730,6 +764,8 @@ module TencentCloud
|
|
730
764
|
@HighlightSet << mediaaianalysishighlightitem_tmp
|
731
765
|
end
|
732
766
|
end
|
767
|
+
@HighlightSetFileUrl = params['HighlightSetFileUrl']
|
768
|
+
@HighlightSetFileUrlExpireTime = params['HighlightSetFileUrlExpireTime']
|
733
769
|
end
|
734
770
|
end
|
735
771
|
|
@@ -811,12 +847,19 @@ module TencentCloud
|
|
811
847
|
# 智能标签结果信息
|
812
848
|
class AiAnalysisTaskTagOutput < TencentCloud::Common::AbstractModel
|
813
849
|
# @param TagSet: 视频智能标签列表。
|
850
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 TagSetFileUrl 对应的文件中获取。
|
814
851
|
# @type TagSet: Array
|
852
|
+
# @param TagSetFileUrl: 视频智能标签列表文件 URL。文件的内容为 JSON,数据结构与 TagSet 字段一致。 (文件不会永久存储,到达 TagSetFileUrlExpireTime 时间点后文件将被删除)。
|
853
|
+
# @type TagSetFileUrl: String
|
854
|
+
# @param TagSetFileUrlExpireTime: 视频智能标签列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
855
|
+
# @type TagSetFileUrlExpireTime: String
|
815
856
|
|
816
|
-
attr_accessor :TagSet
|
857
|
+
attr_accessor :TagSet, :TagSetFileUrl, :TagSetFileUrlExpireTime
|
817
858
|
|
818
|
-
def initialize(tagset=nil)
|
859
|
+
def initialize(tagset=nil, tagsetfileurl=nil, tagsetfileurlexpiretime=nil)
|
819
860
|
@TagSet = tagset
|
861
|
+
@TagSetFileUrl = tagsetfileurl
|
862
|
+
@TagSetFileUrlExpireTime = tagsetfileurlexpiretime
|
820
863
|
end
|
821
864
|
|
822
865
|
def deserialize(params)
|
@@ -828,6 +871,8 @@ module TencentCloud
|
|
828
871
|
@TagSet << mediaaianalysistagitem_tmp
|
829
872
|
end
|
830
873
|
end
|
874
|
+
@TagSetFileUrl = params['TagSetFileUrl']
|
875
|
+
@TagSetFileUrlExpireTime = params['TagSetFileUrlExpireTime']
|
831
876
|
end
|
832
877
|
end
|
833
878
|
|
@@ -2211,14 +2256,21 @@ module TencentCloud
|
|
2211
2256
|
# <li>block。</li>
|
2212
2257
|
# @type Suggestion: String
|
2213
2258
|
# @param SegmentSet: Asr 文字有涉政、敏感嫌疑的视频片段列表。
|
2259
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2214
2260
|
# @type SegmentSet: Array
|
2261
|
+
# @param SegmentSetFileUrl: Asr 文字有涉政、敏感嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2262
|
+
# @type SegmentSetFileUrl: String
|
2263
|
+
# @param SegmentSetFileUrlExpireTime: Asr 文字有涉政、敏感嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2264
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2215
2265
|
|
2216
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
2266
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2217
2267
|
|
2218
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
2268
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2219
2269
|
@Confidence = confidence
|
2220
2270
|
@Suggestion = suggestion
|
2221
2271
|
@SegmentSet = segmentset
|
2272
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2273
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2222
2274
|
end
|
2223
2275
|
|
2224
2276
|
def deserialize(params)
|
@@ -2232,6 +2284,8 @@ module TencentCloud
|
|
2232
2284
|
@SegmentSet << mediacontentreviewasrtextsegmentitem_tmp
|
2233
2285
|
end
|
2234
2286
|
end
|
2287
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2288
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2235
2289
|
end
|
2236
2290
|
end
|
2237
2291
|
|
@@ -2261,14 +2315,21 @@ module TencentCloud
|
|
2261
2315
|
# <li>block。</li>
|
2262
2316
|
# @type Suggestion: String
|
2263
2317
|
# @param SegmentSet: Ocr 文字有涉政、敏感嫌疑的视频片段列表。
|
2318
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2264
2319
|
# @type SegmentSet: Array
|
2320
|
+
# @param SegmentSetFileUrl: Ocr 文字有涉政、敏感嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2321
|
+
# @type SegmentSetFileUrl: String
|
2322
|
+
# @param SegmentSetFileUrlExpireTime: Ocr 文字有涉政、敏感嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2323
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2265
2324
|
|
2266
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
2325
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2267
2326
|
|
2268
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
2327
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2269
2328
|
@Confidence = confidence
|
2270
2329
|
@Suggestion = suggestion
|
2271
2330
|
@SegmentSet = segmentset
|
2331
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2332
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2272
2333
|
end
|
2273
2334
|
|
2274
2335
|
def deserialize(params)
|
@@ -2282,6 +2343,8 @@ module TencentCloud
|
|
2282
2343
|
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
|
2283
2344
|
end
|
2284
2345
|
end
|
2346
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2347
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2285
2348
|
end
|
2286
2349
|
end
|
2287
2350
|
|
@@ -2317,15 +2380,22 @@ module TencentCloud
|
|
2317
2380
|
# <li>politician:政治人物。</li>
|
2318
2381
|
# @type Label: String
|
2319
2382
|
# @param SegmentSet: 有涉政嫌疑的视频片段列表。
|
2383
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2320
2384
|
# @type SegmentSet: Array
|
2385
|
+
# @param SegmentSetFileUrl: 涉政嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2386
|
+
# @type SegmentSetFileUrl: String
|
2387
|
+
# @param SegmentSetFileUrlExpireTime: 涉政嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2388
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2321
2389
|
|
2322
|
-
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet
|
2390
|
+
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2323
2391
|
|
2324
|
-
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil)
|
2392
|
+
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2325
2393
|
@Confidence = confidence
|
2326
2394
|
@Suggestion = suggestion
|
2327
2395
|
@Label = label
|
2328
2396
|
@SegmentSet = segmentset
|
2397
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2398
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2329
2399
|
end
|
2330
2400
|
|
2331
2401
|
def deserialize(params)
|
@@ -2340,6 +2410,8 @@ module TencentCloud
|
|
2340
2410
|
@SegmentSet << mediacontentreviewpoliticalsegmentitem_tmp
|
2341
2411
|
end
|
2342
2412
|
end
|
2413
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2414
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2343
2415
|
end
|
2344
2416
|
end
|
2345
2417
|
|
@@ -2369,14 +2441,21 @@ module TencentCloud
|
|
2369
2441
|
# <li>block。</li>
|
2370
2442
|
# @type Suggestion: String
|
2371
2443
|
# @param SegmentSet: Asr 文字有涉黄嫌疑的视频片段列表。
|
2444
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2372
2445
|
# @type SegmentSet: Array
|
2446
|
+
# @param SegmentSetFileUrl: Asr 文字有涉黄嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2447
|
+
# @type SegmentSetFileUrl: String
|
2448
|
+
# @param SegmentSetFileUrlExpireTime: Asr 文字有涉黄嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2449
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2373
2450
|
|
2374
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
2451
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2375
2452
|
|
2376
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
2453
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2377
2454
|
@Confidence = confidence
|
2378
2455
|
@Suggestion = suggestion
|
2379
2456
|
@SegmentSet = segmentset
|
2457
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2458
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2380
2459
|
end
|
2381
2460
|
|
2382
2461
|
def deserialize(params)
|
@@ -2390,6 +2469,8 @@ module TencentCloud
|
|
2390
2469
|
@SegmentSet << mediacontentreviewasrtextsegmentitem_tmp
|
2391
2470
|
end
|
2392
2471
|
end
|
2472
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2473
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2393
2474
|
end
|
2394
2475
|
end
|
2395
2476
|
|
@@ -2419,14 +2500,21 @@ module TencentCloud
|
|
2419
2500
|
# <li>block。</li>
|
2420
2501
|
# @type Suggestion: String
|
2421
2502
|
# @param SegmentSet: Ocr 文字有涉黄嫌疑的视频片段列表。
|
2503
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2422
2504
|
# @type SegmentSet: Array
|
2505
|
+
# @param SegmentSetFileUrl: Ocr 文字有涉黄嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2506
|
+
# @type SegmentSetFileUrl: String
|
2507
|
+
# @param SegmentSetFileUrlExpireTime: Ocr 文字有涉黄嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2508
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2423
2509
|
|
2424
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
2510
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2425
2511
|
|
2426
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
2512
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2427
2513
|
@Confidence = confidence
|
2428
2514
|
@Suggestion = suggestion
|
2429
2515
|
@SegmentSet = segmentset
|
2516
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2517
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2430
2518
|
end
|
2431
2519
|
|
2432
2520
|
def deserialize(params)
|
@@ -2440,6 +2528,8 @@ module TencentCloud
|
|
2440
2528
|
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
|
2441
2529
|
end
|
2442
2530
|
end
|
2531
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2532
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2443
2533
|
end
|
2444
2534
|
end
|
2445
2535
|
|
@@ -2475,15 +2565,22 @@ module TencentCloud
|
|
2475
2565
|
# <li>intimacy:亲密行为。</li>
|
2476
2566
|
# @type Label: String
|
2477
2567
|
# @param SegmentSet: 有涉黄嫌疑的视频片段列表。
|
2568
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2478
2569
|
# @type SegmentSet: Array
|
2570
|
+
# @param SegmentSetFileUrl: 涉黄嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2571
|
+
# @type SegmentSetFileUrl: String
|
2572
|
+
# @param SegmentSetFileUrlExpireTime: 涉黄嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2573
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2479
2574
|
|
2480
|
-
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet
|
2575
|
+
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2481
2576
|
|
2482
|
-
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil)
|
2577
|
+
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2483
2578
|
@Confidence = confidence
|
2484
2579
|
@Suggestion = suggestion
|
2485
2580
|
@Label = label
|
2486
2581
|
@SegmentSet = segmentset
|
2582
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2583
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2487
2584
|
end
|
2488
2585
|
|
2489
2586
|
def deserialize(params)
|
@@ -2498,6 +2595,8 @@ module TencentCloud
|
|
2498
2595
|
@SegmentSet << mediacontentreviewsegmentitem_tmp
|
2499
2596
|
end
|
2500
2597
|
end
|
2598
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2599
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2501
2600
|
end
|
2502
2601
|
end
|
2503
2602
|
|
@@ -2527,14 +2626,21 @@ module TencentCloud
|
|
2527
2626
|
# <li>block。</li>
|
2528
2627
|
# @type Suggestion: String
|
2529
2628
|
# @param SegmentSet: Asr 文字有涉违禁嫌疑的视频片段列表。
|
2629
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2530
2630
|
# @type SegmentSet: Array
|
2631
|
+
# @param SegmentSetFileUrl: Asr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2632
|
+
# @type SegmentSetFileUrl: String
|
2633
|
+
# @param SegmentSetFileUrlExpireTime: Asr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2634
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2531
2635
|
|
2532
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
2636
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2533
2637
|
|
2534
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
2638
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2535
2639
|
@Confidence = confidence
|
2536
2640
|
@Suggestion = suggestion
|
2537
2641
|
@SegmentSet = segmentset
|
2642
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2643
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2538
2644
|
end
|
2539
2645
|
|
2540
2646
|
def deserialize(params)
|
@@ -2548,6 +2654,8 @@ module TencentCloud
|
|
2548
2654
|
@SegmentSet << mediacontentreviewasrtextsegmentitem_tmp
|
2549
2655
|
end
|
2550
2656
|
end
|
2657
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2658
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2551
2659
|
end
|
2552
2660
|
end
|
2553
2661
|
|
@@ -2577,14 +2685,21 @@ module TencentCloud
|
|
2577
2685
|
# <li>block。</li>
|
2578
2686
|
# @type Suggestion: String
|
2579
2687
|
# @param SegmentSet: Ocr 文字有涉违禁嫌疑的视频片段列表。
|
2688
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
2580
2689
|
# @type SegmentSet: Array
|
2690
|
+
# @param SegmentSetFileUrl: Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
2691
|
+
# @type SegmentSetFileUrl: String
|
2692
|
+
# @param SegmentSetFileUrlExpireTime: Ocr 文字有涉违禁嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
2693
|
+
# @type SegmentSetFileUrlExpireTime: String
|
2581
2694
|
|
2582
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
2695
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
2583
2696
|
|
2584
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
2697
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
2585
2698
|
@Confidence = confidence
|
2586
2699
|
@Suggestion = suggestion
|
2587
2700
|
@SegmentSet = segmentset
|
2701
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
2702
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
2588
2703
|
end
|
2589
2704
|
|
2590
2705
|
def deserialize(params)
|
@@ -2598,6 +2713,8 @@ module TencentCloud
|
|
2598
2713
|
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
|
2599
2714
|
end
|
2600
2715
|
end
|
2716
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
2717
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
2601
2718
|
end
|
2602
2719
|
end
|
2603
2720
|
|
@@ -3056,14 +3173,21 @@ module TencentCloud
|
|
3056
3173
|
# <li>block。</li>
|
3057
3174
|
# @type Suggestion: String
|
3058
3175
|
# @param SegmentSet: Ocr 文字有涉恐嫌疑的视频片段列表。
|
3176
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
3059
3177
|
# @type SegmentSet: Array
|
3178
|
+
# @param SegmentSetFileUrl: Ocr 文字有涉恐嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达 SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
3179
|
+
# @type SegmentSetFileUrl: String
|
3180
|
+
# @param SegmentSetFileUrlExpireTime: Ocr 文字有涉恐嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
3181
|
+
# @type SegmentSetFileUrlExpireTime: String
|
3060
3182
|
|
3061
|
-
attr_accessor :Confidence, :Suggestion, :SegmentSet
|
3183
|
+
attr_accessor :Confidence, :Suggestion, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
3062
3184
|
|
3063
|
-
def initialize(confidence=nil, suggestion=nil, segmentset=nil)
|
3185
|
+
def initialize(confidence=nil, suggestion=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
3064
3186
|
@Confidence = confidence
|
3065
3187
|
@Suggestion = suggestion
|
3066
3188
|
@SegmentSet = segmentset
|
3189
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
3190
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
3067
3191
|
end
|
3068
3192
|
|
3069
3193
|
def deserialize(params)
|
@@ -3077,6 +3201,8 @@ module TencentCloud
|
|
3077
3201
|
@SegmentSet << mediacontentreviewocrtextsegmentitem_tmp
|
3078
3202
|
end
|
3079
3203
|
end
|
3204
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
3205
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
3080
3206
|
end
|
3081
3207
|
end
|
3082
3208
|
|
@@ -3117,15 +3243,22 @@ module TencentCloud
|
|
3117
3243
|
# <li>scenario:暴恐画面。</li>
|
3118
3244
|
# @type Label: String
|
3119
3245
|
# @param SegmentSet: 有暴恐嫌疑的视频片段列表。
|
3246
|
+
# <font color=red>注意</font> :该列表最多仅展示前 100 个元素。如希望获得完整结果,请从 SegmentSetFileUrl 对应的文件中获取。
|
3120
3247
|
# @type SegmentSet: Array
|
3248
|
+
# @param SegmentSetFileUrl: 暴恐嫌疑的视频片段列表文件 URL。文件的内容为 JSON,数据结构与 SegmentSet 字段一致。 (文件不会永久存储,到达SegmentSetFileUrlExpireTime 时间点后文件将被删除)。
|
3249
|
+
# @type SegmentSetFileUrl: String
|
3250
|
+
# @param SegmentSetFileUrlExpireTime: 暴恐嫌疑的视频片段列表文件 URL 失效时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
3251
|
+
# @type SegmentSetFileUrlExpireTime: String
|
3121
3252
|
|
3122
|
-
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet
|
3253
|
+
attr_accessor :Confidence, :Suggestion, :Label, :SegmentSet, :SegmentSetFileUrl, :SegmentSetFileUrlExpireTime
|
3123
3254
|
|
3124
|
-
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil)
|
3255
|
+
def initialize(confidence=nil, suggestion=nil, label=nil, segmentset=nil, segmentsetfileurl=nil, segmentsetfileurlexpiretime=nil)
|
3125
3256
|
@Confidence = confidence
|
3126
3257
|
@Suggestion = suggestion
|
3127
3258
|
@Label = label
|
3128
3259
|
@SegmentSet = segmentset
|
3260
|
+
@SegmentSetFileUrl = segmentsetfileurl
|
3261
|
+
@SegmentSetFileUrlExpireTime = segmentsetfileurlexpiretime
|
3129
3262
|
end
|
3130
3263
|
|
3131
3264
|
def deserialize(params)
|
@@ -3140,6 +3273,8 @@ module TencentCloud
|
|
3140
3273
|
@SegmentSet << mediacontentreviewsegmentitem_tmp
|
3141
3274
|
end
|
3142
3275
|
end
|
3276
|
+
@SegmentSetFileUrl = params['SegmentSetFileUrl']
|
3277
|
+
@SegmentSetFileUrlExpireTime = params['SegmentSetFileUrlExpireTime']
|
3143
3278
|
end
|
3144
3279
|
end
|
3145
3280
|
|
@@ -9778,10 +9913,13 @@ module TencentCloud
|
|
9778
9913
|
# @param WechatMiniProgramPublishCompleteEvent: 微信小程序发布任务完成事件,当事件类型为 WechatMiniProgramPublishComplete 时有效。
|
9779
9914
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9780
9915
|
# @type WechatMiniProgramPublishCompleteEvent: :class:`Tencentcloud::Vod.v20180717.models.WechatMiniProgramPublishTask`
|
9916
|
+
# @param RestoreMediaCompleteEvent: 视频取回完成事件,当事件类型为RestoreMediaComplete 时有效。
|
9917
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9918
|
+
# @type RestoreMediaCompleteEvent: :class:`Tencentcloud::Vod.v20180717.models.RestoreMediaTask`
|
9781
9919
|
|
9782
|
-
attr_accessor :EventHandle, :EventType, :FileUploadEvent, :ProcedureStateChangeEvent, :FileDeleteEvent, :PullCompleteEvent, :EditMediaCompleteEvent, :SplitMediaCompleteEvent, :ComposeMediaCompleteEvent, :ClipCompleteEvent, :TranscodeCompleteEvent, :CreateImageSpriteCompleteEvent, :ConcatCompleteEvent, :SnapshotByTimeOffsetCompleteEvent, :WechatPublishCompleteEvent, :WechatMiniProgramPublishCompleteEvent
|
9920
|
+
attr_accessor :EventHandle, :EventType, :FileUploadEvent, :ProcedureStateChangeEvent, :FileDeleteEvent, :PullCompleteEvent, :EditMediaCompleteEvent, :SplitMediaCompleteEvent, :ComposeMediaCompleteEvent, :ClipCompleteEvent, :TranscodeCompleteEvent, :CreateImageSpriteCompleteEvent, :ConcatCompleteEvent, :SnapshotByTimeOffsetCompleteEvent, :WechatPublishCompleteEvent, :WechatMiniProgramPublishCompleteEvent, :RestoreMediaCompleteEvent
|
9783
9921
|
|
9784
|
-
def initialize(eventhandle=nil, eventtype=nil, fileuploadevent=nil, procedurestatechangeevent=nil, filedeleteevent=nil, pullcompleteevent=nil, editmediacompleteevent=nil, splitmediacompleteevent=nil, composemediacompleteevent=nil, clipcompleteevent=nil, transcodecompleteevent=nil, createimagespritecompleteevent=nil, concatcompleteevent=nil, snapshotbytimeoffsetcompleteevent=nil, wechatpublishcompleteevent=nil, wechatminiprogrampublishcompleteevent=nil)
|
9922
|
+
def initialize(eventhandle=nil, eventtype=nil, fileuploadevent=nil, procedurestatechangeevent=nil, filedeleteevent=nil, pullcompleteevent=nil, editmediacompleteevent=nil, splitmediacompleteevent=nil, composemediacompleteevent=nil, clipcompleteevent=nil, transcodecompleteevent=nil, createimagespritecompleteevent=nil, concatcompleteevent=nil, snapshotbytimeoffsetcompleteevent=nil, wechatpublishcompleteevent=nil, wechatminiprogrampublishcompleteevent=nil, restoremediacompleteevent=nil)
|
9785
9923
|
@EventHandle = eventhandle
|
9786
9924
|
@EventType = eventtype
|
9787
9925
|
@FileUploadEvent = fileuploadevent
|
@@ -9798,6 +9936,7 @@ module TencentCloud
|
|
9798
9936
|
@SnapshotByTimeOffsetCompleteEvent = snapshotbytimeoffsetcompleteevent
|
9799
9937
|
@WechatPublishCompleteEvent = wechatpublishcompleteevent
|
9800
9938
|
@WechatMiniProgramPublishCompleteEvent = wechatminiprogrampublishcompleteevent
|
9939
|
+
@RestoreMediaCompleteEvent = restoremediacompleteevent
|
9801
9940
|
end
|
9802
9941
|
|
9803
9942
|
def deserialize(params)
|
@@ -9859,6 +9998,10 @@ module TencentCloud
|
|
9859
9998
|
@WechatMiniProgramPublishCompleteEvent = WechatMiniProgramPublishTask.new
|
9860
9999
|
@WechatMiniProgramPublishCompleteEvent.deserialize(params['WechatMiniProgramPublishCompleteEvent'])
|
9861
10000
|
end
|
10001
|
+
unless params['RestoreMediaCompleteEvent'].nil?
|
10002
|
+
@RestoreMediaCompleteEvent = RestoreMediaTask.new
|
10003
|
+
@RestoreMediaCompleteEvent.deserialize(params['RestoreMediaCompleteEvent'])
|
10004
|
+
end
|
9862
10005
|
end
|
9863
10006
|
end
|
9864
10007
|
|
@@ -16384,6 +16527,49 @@ module TencentCloud
|
|
16384
16527
|
end
|
16385
16528
|
end
|
16386
16529
|
|
16530
|
+
# 取回视频任务信息
|
16531
|
+
class RestoreMediaTask < TencentCloud::Common::AbstractModel
|
16532
|
+
# @param FileId: 文件ID。
|
16533
|
+
# @type FileId: String
|
16534
|
+
# @param OriginalStorageClass: 文件原始存储类型。
|
16535
|
+
# @type OriginalStorageClass: String
|
16536
|
+
# @param TargetStorageClass: 文件目标存储类型。对于临时取回,目标存储类型与原始存储类型相同。
|
16537
|
+
# @type TargetStorageClass: String
|
16538
|
+
# @param RestoreTier: 取回模式,取值:
|
16539
|
+
# <li>Expedited:极速模式</li>
|
16540
|
+
# <li>Standard:标准模式</li>
|
16541
|
+
# <li>Bulk:批量模式</li>
|
16542
|
+
# @type RestoreTier: String
|
16543
|
+
# @param RestoreDay: 临时取回副本有效期,单位:天。对于永久取回,取值为0。
|
16544
|
+
# @type RestoreDay: Integer
|
16545
|
+
# @param Status: 该字段已废弃。
|
16546
|
+
# @type Status: Integer
|
16547
|
+
# @param Message: 该字段已废弃。
|
16548
|
+
# @type Message: String
|
16549
|
+
|
16550
|
+
attr_accessor :FileId, :OriginalStorageClass, :TargetStorageClass, :RestoreTier, :RestoreDay, :Status, :Message
|
16551
|
+
|
16552
|
+
def initialize(fileid=nil, originalstorageclass=nil, targetstorageclass=nil, restoretier=nil, restoreday=nil, status=nil, message=nil)
|
16553
|
+
@FileId = fileid
|
16554
|
+
@OriginalStorageClass = originalstorageclass
|
16555
|
+
@TargetStorageClass = targetstorageclass
|
16556
|
+
@RestoreTier = restoretier
|
16557
|
+
@RestoreDay = restoreday
|
16558
|
+
@Status = status
|
16559
|
+
@Message = message
|
16560
|
+
end
|
16561
|
+
|
16562
|
+
def deserialize(params)
|
16563
|
+
@FileId = params['FileId']
|
16564
|
+
@OriginalStorageClass = params['OriginalStorageClass']
|
16565
|
+
@TargetStorageClass = params['TargetStorageClass']
|
16566
|
+
@RestoreTier = params['RestoreTier']
|
16567
|
+
@RestoreDay = params['RestoreDay']
|
16568
|
+
@Status = params['Status']
|
16569
|
+
@Message = params['Message']
|
16570
|
+
end
|
16571
|
+
end
|
16572
|
+
|
16387
16573
|
# 对视频做采样截图任务输入参数类型
|
16388
16574
|
class SampleSnapshotTaskInput < TencentCloud::Common::AbstractModel
|
16389
16575
|
# @param Definition: 采样截图模板 ID。
|
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.
|
4
|
+
version: 1.0.222
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|