tencentcloud-sdk-mps 3.0.1083 → 3.0.1090

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +173 -22
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 404faa788599098c16c62488fb5220503ebc9ac3
4
- data.tar.gz: 4290b188dbf7548240d9eb92eda866d085ae774c
3
+ metadata.gz: d9c6fdeff270be40c1e2ee1612791ba5cd9db861
4
+ data.tar.gz: e6def85ec2f08adb3449205d7a455f7e639486f4
5
5
  SHA512:
6
- metadata.gz: eaa26798d81bd723d21e7789dfbaa72658e3ce3ab8e5c8028c7ff0ecc2d64fb494ae235e8315f04bc66cc01d4965434bfe2bd8d074e79745024a6206e7e570f6
7
- data.tar.gz: 9f0f7a6f07cd8550084bc726e667aac88eb37f8d2824cdd876d683d5e346267870f3067804de2a12f7d3b8d80c73432de1ebac46303b2f74ed7159d4174f2f80
6
+ metadata.gz: 2d30a8e2ffe5992117eccb4e821118e5a4c72baeaaaf79162ec1384cff639e224b46df0e1fe04180a8b8fee3545160465d53ab276f5481f1f8795f1624e6f682
7
+ data.tar.gz: 2ef469c512871c587f7e49f80dc20ca214e47e2ff81e4f228620c3e1933bac7df3d7b316fbae9b82e5ea414cda205434b0c484d4a3692633be9dbad93f77e879
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1083
1
+ 3.0.1090
@@ -5248,7 +5248,7 @@ module TencentCloud
5248
5248
 
5249
5249
  # 嵌入盲水印配置
5250
5250
  class BlindWatermarkEmbedInfo < TencentCloud::Common::AbstractModel
5251
- # @param EmbedText: 盲水印文字,需要经过 URL 安全的 Base64 编码。
5251
+ # @param EmbedText: 盲水印文字,经过URL安全的Base64编码的4Byte数据。Base64解码之后,少于4Byte将会填充0x00到4Byte,超过4Byte将会截断为4Byte。
5252
5252
  # 注意:此字段可能返回 null,表示取不到有效值。
5253
5253
  # @type EmbedText: String
5254
5254
 
@@ -7214,10 +7214,12 @@ module TencentCloud
7214
7214
  # @type PbKeyLen: Integer
7215
7215
  # @param SourceAddresses: SRT对端地址,当Mode为CALLER时必填,且只能填1组。
7216
7216
  # @type SourceAddresses: Array
7217
+ # @param FEC: SRT FEC 设置
7218
+ # @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECSimpleOptions`
7217
7219
 
7218
- attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses
7220
+ attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses, :FEC
7219
7221
 
7220
- def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil)
7222
+ def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil, fec=nil)
7221
7223
  @Mode = mode
7222
7224
  @StreamId = streamid
7223
7225
  @Latency = latency
@@ -7227,6 +7229,7 @@ module TencentCloud
7227
7229
  @Passphrase = passphrase
7228
7230
  @PbKeyLen = pbkeylen
7229
7231
  @SourceAddresses = sourceaddresses
7232
+ @FEC = fec
7230
7233
  end
7231
7234
 
7232
7235
  def deserialize(params)
@@ -7246,6 +7249,10 @@ module TencentCloud
7246
7249
  @SourceAddresses << srtsourceaddressreq_tmp
7247
7250
  end
7248
7251
  end
7252
+ unless params['FEC'].nil?
7253
+ @FEC = SRTFECSimpleOptions.new
7254
+ @FEC.deserialize(params['FEC'])
7255
+ end
7249
7256
  end
7250
7257
  end
7251
7258
 
@@ -7533,10 +7540,12 @@ module TencentCloud
7533
7540
  # @type PbKeyLen: Integer
7534
7541
  # @param Mode: SRT模式,可选[LISTENER|CALLER],默认为CALLER。
7535
7542
  # @type Mode: String
7543
+ # @param FEC: SRT FEC 设置
7544
+ # @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECFullOptions`
7536
7545
 
7537
- attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode
7546
+ attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :FEC
7538
7547
 
7539
- def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil)
7548
+ def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, fec=nil)
7540
7549
  @Destinations = destinations
7541
7550
  @StreamId = streamid
7542
7551
  @Latency = latency
@@ -7546,6 +7555,7 @@ module TencentCloud
7546
7555
  @Passphrase = passphrase
7547
7556
  @PbKeyLen = pbkeylen
7548
7557
  @Mode = mode
7558
+ @FEC = fec
7549
7559
  end
7550
7560
 
7551
7561
  def deserialize(params)
@@ -7565,6 +7575,10 @@ module TencentCloud
7565
7575
  @Passphrase = params['Passphrase']
7566
7576
  @PbKeyLen = params['PbKeyLen']
7567
7577
  @Mode = params['Mode']
7578
+ unless params['FEC'].nil?
7579
+ @FEC = SRTFECFullOptions.new
7580
+ @FEC.deserialize(params['FEC'])
7581
+ end
7568
7582
  end
7569
7583
  end
7570
7584
 
@@ -10705,10 +10719,12 @@ module TencentCloud
10705
10719
  # @param SourceAddresses: SRT对端地址。
10706
10720
  # 注意:此字段可能返回 null,表示取不到有效值。
10707
10721
  # @type SourceAddresses: Array
10722
+ # @param FEC: FEC 设置
10723
+ # @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECSimpleOptions`
10708
10724
 
10709
- attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses
10725
+ attr_accessor :Mode, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :SourceAddresses, :FEC
10710
10726
 
10711
- def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil)
10727
+ def initialize(mode=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, sourceaddresses=nil, fec=nil)
10712
10728
  @Mode = mode
10713
10729
  @StreamId = streamid
10714
10730
  @Latency = latency
@@ -10718,6 +10734,7 @@ module TencentCloud
10718
10734
  @Passphrase = passphrase
10719
10735
  @PbKeyLen = pbkeylen
10720
10736
  @SourceAddresses = sourceaddresses
10737
+ @FEC = fec
10721
10738
  end
10722
10739
 
10723
10740
  def deserialize(params)
@@ -10737,6 +10754,10 @@ module TencentCloud
10737
10754
  @SourceAddresses << srtsourceaddressresp_tmp
10738
10755
  end
10739
10756
  end
10757
+ unless params['FEC'].nil?
10758
+ @FEC = SRTFECSimpleOptions.new
10759
+ @FEC.deserialize(params['FEC'])
10760
+ end
10740
10761
  end
10741
10762
  end
10742
10763
 
@@ -11253,10 +11274,12 @@ module TencentCloud
11253
11274
  # @param SourceAddresses: 服务器监听地址,SRT模式为LISTENER时使用。
11254
11275
  # 注意:此字段可能返回 null,表示取不到有效值。
11255
11276
  # @type SourceAddresses: Array
11277
+ # @param FEC: FEC 配置
11278
+ # @type FEC: :class:`Tencentcloud::Mps.v20190612.models.SRTFECFullOptions`
11256
11279
 
11257
- attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :SourceAddresses
11280
+ attr_accessor :Destinations, :StreamId, :Latency, :RecvLatency, :PeerLatency, :PeerIdleTimeout, :Passphrase, :PbKeyLen, :Mode, :SourceAddresses, :FEC
11258
11281
 
11259
- def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, sourceaddresses=nil)
11282
+ def initialize(destinations=nil, streamid=nil, latency=nil, recvlatency=nil, peerlatency=nil, peeridletimeout=nil, passphrase=nil, pbkeylen=nil, mode=nil, sourceaddresses=nil, fec=nil)
11260
11283
  @Destinations = destinations
11261
11284
  @StreamId = streamid
11262
11285
  @Latency = latency
@@ -11267,6 +11290,7 @@ module TencentCloud
11267
11290
  @PbKeyLen = pbkeylen
11268
11291
  @Mode = mode
11269
11292
  @SourceAddresses = sourceaddresses
11293
+ @FEC = fec
11270
11294
  end
11271
11295
 
11272
11296
  def deserialize(params)
@@ -11294,6 +11318,10 @@ module TencentCloud
11294
11318
  @SourceAddresses << outputsrtsourceaddressresp_tmp
11295
11319
  end
11296
11320
  end
11321
+ unless params['FEC'].nil?
11322
+ @FEC = SRTFECFullOptions.new
11323
+ @FEC.deserialize(params['FEC'])
11324
+ end
11297
11325
  end
11298
11326
  end
11299
11327
 
@@ -16615,15 +16643,19 @@ module TencentCloud
16615
16643
  # @param Paragraphs: 分段结果。
16616
16644
  # 注意:此字段可能返回 null,表示取不到有效值。
16617
16645
  # @type Paragraphs: Array
16646
+ # @param MindMapUrl: 摘要思维导图地址
16647
+ # 注意:此字段可能返回 null,表示取不到有效值。
16648
+ # @type MindMapUrl: String
16618
16649
 
16619
- attr_accessor :Description, :Confidence, :Title, :Keywords, :Paragraphs
16650
+ attr_accessor :Description, :Confidence, :Title, :Keywords, :Paragraphs, :MindMapUrl
16620
16651
 
16621
- def initialize(description=nil, confidence=nil, title=nil, keywords=nil, paragraphs=nil)
16652
+ def initialize(description=nil, confidence=nil, title=nil, keywords=nil, paragraphs=nil, mindmapurl=nil)
16622
16653
  @Description = description
16623
16654
  @Confidence = confidence
16624
16655
  @Title = title
16625
16656
  @Keywords = keywords
16626
16657
  @Paragraphs = paragraphs
16658
+ @MindMapUrl = mindmapurl
16627
16659
  end
16628
16660
 
16629
16661
  def deserialize(params)
@@ -16639,6 +16671,7 @@ module TencentCloud
16639
16671
  @Paragraphs << aiparagraphinfo_tmp
16640
16672
  end
16641
16673
  end
16674
+ @MindMapUrl = params['MindMapUrl']
16642
16675
  end
16643
16676
  end
16644
16677
 
@@ -22017,6 +22050,54 @@ module TencentCloud
22017
22050
  end
22018
22051
  end
22019
22052
 
22053
+ # SRT FEC 高级配置
22054
+ class SRTFECFullOptions < TencentCloud::Common::AbstractModel
22055
+ # @param Enable: 是否开启 FEC
22056
+ # @type Enable: Boolean
22057
+ # @param Cols: FEC 数据包 Layout 列数量. 取值范围>0
22058
+ # @type Cols: Integer
22059
+ # @param Rows: FEC 数据包 Layout 行数量. 取值范围 >=2 或者 <=-2
22060
+ # @type Rows: Integer
22061
+ # @param ARQ: FEC 开启的情况下,ARQ的策略。取值 "always", "onreq", "never"
22062
+ # @type ARQ: String
22063
+ # @param Layout: FEC 数据包 Layout 组织形式,取值 "even", "staircase"
22064
+ # @type Layout: String
22065
+
22066
+ attr_accessor :Enable, :Cols, :Rows, :ARQ, :Layout
22067
+
22068
+ def initialize(enable=nil, cols=nil, rows=nil, arq=nil, layout=nil)
22069
+ @Enable = enable
22070
+ @Cols = cols
22071
+ @Rows = rows
22072
+ @ARQ = arq
22073
+ @Layout = layout
22074
+ end
22075
+
22076
+ def deserialize(params)
22077
+ @Enable = params['Enable']
22078
+ @Cols = params['Cols']
22079
+ @Rows = params['Rows']
22080
+ @ARQ = params['ARQ']
22081
+ @Layout = params['Layout']
22082
+ end
22083
+ end
22084
+
22085
+ # SRT FEC 设置
22086
+ class SRTFECSimpleOptions < TencentCloud::Common::AbstractModel
22087
+ # @param Enable: 是否开启 FEC
22088
+ # @type Enable: Boolean
22089
+
22090
+ attr_accessor :Enable
22091
+
22092
+ def initialize(enable=nil)
22093
+ @Enable = enable
22094
+ end
22095
+
22096
+ def deserialize(params)
22097
+ @Enable = params['Enable']
22098
+ end
22099
+ end
22100
+
22020
22101
  # SRT输入源地址。
22021
22102
  class SRTSourceAddressReq < TencentCloud::Common::AbstractModel
22022
22103
  # @param Ip: 对端IP或域名。
@@ -23684,21 +23765,38 @@ module TencentCloud
23684
23765
  # @param Path: 要压制到视频中的字幕文件地址。
23685
23766
  # 注意:此字段可能返回 null,表示取不到有效值。
23686
23767
  # @type Path: String
23687
- # @param StreamIndex: 指定要压制到视频中的字幕轨道,如果有指定Path,则Path 优先级更高。Path 和 StreamIndex 至少指定一个。
23768
+ # @param StreamIndex: 指定要压制到视频中的字幕轨道,Path 和 StreamIndex 至少指定一个;如果指定了Path,则优先使用Path。
23769
+ # Streamindex的取值须与源文件中的字幕轨索引一致。例如,源文件中的字幕轨为stream#0:3,则StreamIndex应为3,否则可能导致任务处理失败。
23770
+
23771
+
23688
23772
  # 注意:此字段可能返回 null,表示取不到有效值。
23689
23773
  # @type StreamIndex: Integer
23690
- # @param FontType: 字体类型,
23774
+ # @param FontType: 字体类型,支持:
23691
23775
  # <li>hei.ttf:黑体</li>
23692
23776
  # <li>song.ttf:宋体</li>
23693
- # <li>simkai.ttf:楷体</li>
23777
+ # <li>kai.ttf(推荐)或 simkai.ttf:楷体</li>
23778
+ # <li>msyh.ttf:微软雅黑</li>
23779
+ # <li>msyhbd.ttf:微软雅黑加粗</li>
23780
+ # <li>hkjgt.ttf:华康金刚体</li>
23781
+ # <li>dhttx.ttf:典黑体特细</li>
23782
+ # <li>xqgdzt.ttf:喜鹊古字典体</li>
23783
+ # <li>qpcyt.ttf:巧拼超圆体</li>
23694
23784
  # <li>arial.ttf:仅支持英文</li>
23695
- # 默认hei.ttf
23785
+ # <li>dinalternate.ttf:DIN Alternate Bold</li>
23786
+ # <li>helveticalt.ttf:Helvetica</li>
23787
+ # <li>helveticains.ttf:Helvetica Inserat</li>
23788
+ # <li>trajanpro.ttf:TrajanPro-Bold</li>
23789
+ # <li>korean.ttf:韩语</li>
23790
+ # <li>japanese.ttf:日语</li>
23791
+ # <li>thai.ttf:泰语</li>
23792
+ # 默认:hei.ttf 黑体。
23696
23793
  # 注意:此字段可能返回 null,表示取不到有效值。
23697
23794
  # @type FontType: String
23698
23795
  # @param FontSize: 字体大小,格式:Npx,N 为数值,不指定则以字幕文件中为准。
23796
+ # 默认源视频高度的5%。
23699
23797
  # 注意:此字段可能返回 null,表示取不到有效值。
23700
23798
  # @type FontSize: String
23701
- # @param FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)
23799
+ # @param FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
23702
23800
  # 注意:此字段可能返回 null,表示取不到有效值。
23703
23801
  # @type FontColor: String
23704
23802
  # @param FontAlpha: 文字透明度,取值范围:(0, 1]
@@ -23707,16 +23805,63 @@ module TencentCloud
23707
23805
  # 默认值:1。
23708
23806
  # 注意:此字段可能返回 null,表示取不到有效值。
23709
23807
  # @type FontAlpha: Float
23808
+ # @param YPos: 字幕y轴坐标位置,指定此参数会忽略字幕文件自带坐标;支持像素和百分比格式:
23809
+
23810
+ # - 像素:Npx,N范围:[0,4096]。
23811
+ # - 百分百:N%,N范围:[0,100];例如10%表示字幕y坐标=10%*源视频高度。
23812
+
23813
+ # 默认值:源视频高度*4%。
23814
+ # 注意:坐标轴原点在源视频中轴线底部,字幕基准点在字幕中轴线底部,参考下图:
23815
+ # ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
23710
23816
 
23711
- attr_accessor :Path, :StreamIndex, :FontType, :FontSize, :FontColor, :FontAlpha
23817
+ # 注意:此字段可能返回 null,表示取不到有效值。
23818
+ # @type YPos: String
23819
+ # @param BoardY: 字幕背景底板的y轴坐标位置;支持像素和百分比格式:
23820
+
23821
+ # - 像素:Npx,N范围:[0,4096]。
23822
+ # - 百分百:N%,N范围:[0,100];例如10%表示字幕背景底板y坐标=10%*源视频高度。
23823
+
23824
+ # 不传表示不开启字幕背景底板。
23825
+ # 注意:坐标轴原点位于源视频的中轴线底部,字幕背景底板的基准点在其中轴线底部,参考下图:
23826
+ # ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
23712
23827
 
23713
- def initialize(path=nil, streamindex=nil, fonttype=nil, fontsize=nil, fontcolor=nil, fontalpha=nil)
23828
+ # 注意:此字段可能返回 null,表示取不到有效值。
23829
+ # @type BoardY: String
23830
+ # @param BoardWidth: 底板的宽度,单位为像素,取值范围:[0,4096]。
23831
+ # 默认源视频宽像素的90%。
23832
+
23833
+ # 注意:此字段可能返回 null,表示取不到有效值。
23834
+ # @type BoardWidth: Integer
23835
+ # @param BoardHeight: 底板的高度。单位为像素,取值范围:[0,4096]。
23836
+ # 默认为源视频高像素的15%。
23837
+ # 注意:此字段可能返回 null,表示取不到有效值。
23838
+ # @type BoardHeight: Integer
23839
+ # @param BoardColor: 底板颜色。格式:0xRRGGBB,
23840
+ # 默认值:0x000000(黑色)。
23841
+ # 注意:此字段可能返回 null,表示取不到有效值。
23842
+ # @type BoardColor: String
23843
+ # @param BoardAlpha: 字幕背景板透明度,取值范围:[0, 1]
23844
+ # <li>0:完全透明</li>
23845
+ # <li>1:完全不透明</li>
23846
+ # 默认值:0.8。
23847
+ # 注意:此字段可能返回 null,表示取不到有效值。
23848
+ # @type BoardAlpha: Float
23849
+
23850
+ attr_accessor :Path, :StreamIndex, :FontType, :FontSize, :FontColor, :FontAlpha, :YPos, :BoardY, :BoardWidth, :BoardHeight, :BoardColor, :BoardAlpha
23851
+
23852
+ def initialize(path=nil, streamindex=nil, fonttype=nil, fontsize=nil, fontcolor=nil, fontalpha=nil, ypos=nil, boardy=nil, boardwidth=nil, boardheight=nil, boardcolor=nil, boardalpha=nil)
23714
23853
  @Path = path
23715
23854
  @StreamIndex = streamindex
23716
23855
  @FontType = fonttype
23717
23856
  @FontSize = fontsize
23718
23857
  @FontColor = fontcolor
23719
23858
  @FontAlpha = fontalpha
23859
+ @YPos = ypos
23860
+ @BoardY = boardy
23861
+ @BoardWidth = boardwidth
23862
+ @BoardHeight = boardheight
23863
+ @BoardColor = boardcolor
23864
+ @BoardAlpha = boardalpha
23720
23865
  end
23721
23866
 
23722
23867
  def deserialize(params)
@@ -23726,6 +23871,12 @@ module TencentCloud
23726
23871
  @FontSize = params['FontSize']
23727
23872
  @FontColor = params['FontColor']
23728
23873
  @FontAlpha = params['FontAlpha']
23874
+ @YPos = params['YPos']
23875
+ @BoardY = params['BoardY']
23876
+ @BoardWidth = params['BoardWidth']
23877
+ @BoardHeight = params['BoardHeight']
23878
+ @BoardColor = params['BoardColor']
23879
+ @BoardAlpha = params['BoardAlpha']
23729
23880
  end
23730
23881
  end
23731
23882
 
@@ -25661,10 +25812,10 @@ module TencentCloud
25661
25812
  # @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
25662
25813
  # @type UpdateTime: String
25663
25814
  # @param CoordinateOrigin: 原点位置,可选值:
25664
- # <li>topLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
25665
- # <li>topRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
25666
- # <li>bottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
25667
- # <li>bottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下。;</li>
25815
+ # <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
25816
+ # <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
25817
+ # <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
25818
+ # <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
25668
25819
  # @type CoordinateOrigin: String
25669
25820
 
25670
25821
  attr_accessor :Definition, :Type, :Name, :Comment, :XPos, :YPos, :ImageTemplate, :TextTemplate, :SvgTemplate, :CreateTime, :UpdateTime, :CoordinateOrigin
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mps
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1083
4
+ version: 3.0.1090
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-17 00:00:00.000000000 Z
11
+ date: 2025-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common