tencentcloud-sdk-lcic 3.0.803 → 3.0.804
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/v20220817/models.rb +28 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5059c0638359cd90fae57a9c2ca90691426b345b
|
4
|
+
data.tar.gz: 377e83d4e5fdba2d26c416b8d941e1e230d0545d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9090e0c44b983cb768c49d5622dbdf051de8b91de888450463ef63e6ec230290ba44bebf550b6783c2e4972de019a9049b34fb92205550cd58c0f9b98a24b87f
|
7
|
+
data.tar.gz: 6593459aadb729bdf34510ef23fbc3db8d1f836bb404da6719f95ccaaa48cae220f0d9d2c04a8b45cf7fb37cccdcf09043679f0409287f2d7c8a05b35f98ae02
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.804
|
data/lib/v20220817/models.rb
CHANGED
@@ -708,10 +708,12 @@ module TencentCloud
|
|
708
708
|
# 2. 自动翻页:移除PPT上所有自动翻页设置,并设置为单击鼠标翻页
|
709
709
|
# 3. 已损坏音视频:移除PPT上对损坏音视频的引用
|
710
710
|
# @type AutoHandleUnsupportedElement: Boolean
|
711
|
+
# @param MinScaleResolution: 转码后文档的最小分辨率,不传、传空字符串或分辨率格式错误则使用文档原分辨率。示例:1280x720,注意分辨率宽高中间为英文字母"xyz"的"x"
|
712
|
+
# @type MinScaleResolution: String
|
711
713
|
|
712
|
-
attr_accessor :SdkAppId, :DocumentUrl, :DocumentName, :Owner, :TranscodeType, :Permission, :DocumentType, :DocumentSize, :AutoHandleUnsupportedElement
|
714
|
+
attr_accessor :SdkAppId, :DocumentUrl, :DocumentName, :Owner, :TranscodeType, :Permission, :DocumentType, :DocumentSize, :AutoHandleUnsupportedElement, :MinScaleResolution
|
713
715
|
|
714
|
-
def initialize(sdkappid=nil, documenturl=nil, documentname=nil, owner=nil, transcodetype=nil, permission=nil, documenttype=nil, documentsize=nil, autohandleunsupportedelement=nil)
|
716
|
+
def initialize(sdkappid=nil, documenturl=nil, documentname=nil, owner=nil, transcodetype=nil, permission=nil, documenttype=nil, documentsize=nil, autohandleunsupportedelement=nil, minscaleresolution=nil)
|
715
717
|
@SdkAppId = sdkappid
|
716
718
|
@DocumentUrl = documenturl
|
717
719
|
@DocumentName = documentname
|
@@ -721,6 +723,7 @@ module TencentCloud
|
|
721
723
|
@DocumentType = documenttype
|
722
724
|
@DocumentSize = documentsize
|
723
725
|
@AutoHandleUnsupportedElement = autohandleunsupportedelement
|
726
|
+
@MinScaleResolution = minscaleresolution
|
724
727
|
end
|
725
728
|
|
726
729
|
def deserialize(params)
|
@@ -733,6 +736,7 @@ module TencentCloud
|
|
733
736
|
@DocumentType = params['DocumentType']
|
734
737
|
@DocumentSize = params['DocumentSize']
|
735
738
|
@AutoHandleUnsupportedElement = params['AutoHandleUnsupportedElement']
|
739
|
+
@MinScaleResolution = params['MinScaleResolution']
|
736
740
|
end
|
737
741
|
end
|
738
742
|
|
@@ -1622,12 +1626,16 @@ module TencentCloud
|
|
1622
1626
|
# @type Pages: Integer
|
1623
1627
|
# @param Preview: 课件预览地址
|
1624
1628
|
# @type Preview: String
|
1629
|
+
# @param Resolution: 文档的分辨率
|
1630
|
+
# @type Resolution: String
|
1631
|
+
# @param MinScaleResolution: 转码后文档的最小分辨率,和创建文档时传入的参数一致。
|
1632
|
+
# @type MinScaleResolution: String
|
1625
1633
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1626
1634
|
# @type RequestId: String
|
1627
1635
|
|
1628
|
-
attr_accessor :DocumentId, :DocumentUrl, :DocumentName, :Owner, :SdkAppId, :Permission, :TranscodeResult, :TranscodeType, :TranscodeProgress, :TranscodeState, :TranscodeInfo, :DocumentType, :DocumentSize, :UpdateTime, :Pages, :Preview, :RequestId
|
1636
|
+
attr_accessor :DocumentId, :DocumentUrl, :DocumentName, :Owner, :SdkAppId, :Permission, :TranscodeResult, :TranscodeType, :TranscodeProgress, :TranscodeState, :TranscodeInfo, :DocumentType, :DocumentSize, :UpdateTime, :Pages, :Preview, :Resolution, :MinScaleResolution, :RequestId
|
1629
1637
|
|
1630
|
-
def initialize(documentid=nil, documenturl=nil, documentname=nil, owner=nil, sdkappid=nil, permission=nil, transcoderesult=nil, transcodetype=nil, transcodeprogress=nil, transcodestate=nil, transcodeinfo=nil, documenttype=nil, documentsize=nil, updatetime=nil, pages=nil, preview=nil, requestid=nil)
|
1638
|
+
def initialize(documentid=nil, documenturl=nil, documentname=nil, owner=nil, sdkappid=nil, permission=nil, transcoderesult=nil, transcodetype=nil, transcodeprogress=nil, transcodestate=nil, transcodeinfo=nil, documenttype=nil, documentsize=nil, updatetime=nil, pages=nil, preview=nil, resolution=nil, minscaleresolution=nil, requestid=nil)
|
1631
1639
|
@DocumentId = documentid
|
1632
1640
|
@DocumentUrl = documenturl
|
1633
1641
|
@DocumentName = documentname
|
@@ -1644,6 +1652,8 @@ module TencentCloud
|
|
1644
1652
|
@UpdateTime = updatetime
|
1645
1653
|
@Pages = pages
|
1646
1654
|
@Preview = preview
|
1655
|
+
@Resolution = resolution
|
1656
|
+
@MinScaleResolution = minscaleresolution
|
1647
1657
|
@RequestId = requestid
|
1648
1658
|
end
|
1649
1659
|
|
@@ -1664,6 +1674,8 @@ module TencentCloud
|
|
1664
1674
|
@UpdateTime = params['UpdateTime']
|
1665
1675
|
@Pages = params['Pages']
|
1666
1676
|
@Preview = params['Preview']
|
1677
|
+
@Resolution = params['Resolution']
|
1678
|
+
@MinScaleResolution = params['MinScaleResolution']
|
1667
1679
|
@RequestId = params['RequestId']
|
1668
1680
|
end
|
1669
1681
|
end
|
@@ -2630,10 +2642,16 @@ module TencentCloud
|
|
2630
2642
|
# @param Preview: 课件预览地址
|
2631
2643
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2632
2644
|
# @type Preview: String
|
2645
|
+
# @param Resolution: 文档的分辨率
|
2646
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2647
|
+
# @type Resolution: String
|
2648
|
+
# @param MinScaleResolution: 转码后文档的最小分辨率,和创建文档时传入的参数一致。
|
2649
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2650
|
+
# @type MinScaleResolution: String
|
2633
2651
|
|
2634
|
-
attr_accessor :DocumentId, :DocumentUrl, :DocumentName, :Owner, :SdkAppId, :Permission, :TranscodeResult, :TranscodeType, :TranscodeProgress, :TranscodeState, :TranscodeInfo, :DocumentType, :DocumentSize, :UpdateTime, :Pages, :Width, :Height, :Cover, :Preview
|
2652
|
+
attr_accessor :DocumentId, :DocumentUrl, :DocumentName, :Owner, :SdkAppId, :Permission, :TranscodeResult, :TranscodeType, :TranscodeProgress, :TranscodeState, :TranscodeInfo, :DocumentType, :DocumentSize, :UpdateTime, :Pages, :Width, :Height, :Cover, :Preview, :Resolution, :MinScaleResolution
|
2635
2653
|
|
2636
|
-
def initialize(documentid=nil, documenturl=nil, documentname=nil, owner=nil, sdkappid=nil, permission=nil, transcoderesult=nil, transcodetype=nil, transcodeprogress=nil, transcodestate=nil, transcodeinfo=nil, documenttype=nil, documentsize=nil, updatetime=nil, pages=nil, width=nil, height=nil, cover=nil, preview=nil)
|
2654
|
+
def initialize(documentid=nil, documenturl=nil, documentname=nil, owner=nil, sdkappid=nil, permission=nil, transcoderesult=nil, transcodetype=nil, transcodeprogress=nil, transcodestate=nil, transcodeinfo=nil, documenttype=nil, documentsize=nil, updatetime=nil, pages=nil, width=nil, height=nil, cover=nil, preview=nil, resolution=nil, minscaleresolution=nil)
|
2637
2655
|
@DocumentId = documentid
|
2638
2656
|
@DocumentUrl = documenturl
|
2639
2657
|
@DocumentName = documentname
|
@@ -2653,6 +2671,8 @@ module TencentCloud
|
|
2653
2671
|
@Height = height
|
2654
2672
|
@Cover = cover
|
2655
2673
|
@Preview = preview
|
2674
|
+
@Resolution = resolution
|
2675
|
+
@MinScaleResolution = minscaleresolution
|
2656
2676
|
end
|
2657
2677
|
|
2658
2678
|
def deserialize(params)
|
@@ -2675,6 +2695,8 @@ module TencentCloud
|
|
2675
2695
|
@Height = params['Height']
|
2676
2696
|
@Cover = params['Cover']
|
2677
2697
|
@Preview = params['Preview']
|
2698
|
+
@Resolution = params['Resolution']
|
2699
|
+
@MinScaleResolution = params['MinScaleResolution']
|
2678
2700
|
end
|
2679
2701
|
end
|
2680
2702
|
|