tencentcloud-sdk-mrs 1.0.342 → 1.0.343

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200910/models.rb +47 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e15a33f423a14d9a46aaf9fbc77c8bf8186f2f7
4
- data.tar.gz: b80440dbe7316556b712e1428ee9c38ec72704b1
3
+ metadata.gz: 2aaa6b335254a0de2b5d8422a6446c6129510e67
4
+ data.tar.gz: 7db4ac71a2fb5c59a5df22c538096bd64932b602
5
5
  SHA512:
6
- metadata.gz: dd132721b07c51140bdf0d2781536d024114015295fbf1bec57e065202cc5cf724378a756052261f25c664a3fe4d2e5fda80e850c566cb8f9d0688c0ae679b35
7
- data.tar.gz: 4e502fb439a43850aa0e392777eec34f841947be6e0f8245069fee9ab4925babc88aea9200c59927b7294e954758b7689d26f5f6d1742abfa7d7162cf5fcc723
6
+ metadata.gz: 05e05bbd04a9999cede9288c41b9b9b2041d978dc7039e7cf52e2d93cd635e8e256344dd8282abf912b5392fc9ab517232b21c4e3cd5087c39583b0b9afc2229
7
+ data.tar.gz: 00c82ff7f929fcdbb5e7817d1d726c45bc5c17d6bbca4f04663215bfec8dd7bf23b64690d0df0b3c52fea26c295598ac871e12643d678ed2b7b495b3405c6f9b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.342
1
+ 1.0.343
@@ -163,6 +163,38 @@ module TencentCloud
163
163
  end
164
164
  end
165
165
 
166
+ # 坐标
167
+ class Coordinate < TencentCloud::Common::AbstractModel
168
+ # @param X: 左上角x坐标
169
+ # 注意:此字段可能返回 null,表示取不到有效值。
170
+ # @type X: Integer
171
+ # @param Y: 左上角y坐标
172
+ # 注意:此字段可能返回 null,表示取不到有效值。
173
+ # @type Y: Integer
174
+ # @param Width: 宽度,单位像素
175
+ # 注意:此字段可能返回 null,表示取不到有效值。
176
+ # @type Width: Integer
177
+ # @param Height: 高度,单位像素
178
+ # 注意:此字段可能返回 null,表示取不到有效值。
179
+ # @type Height: Integer
180
+
181
+ attr_accessor :X, :Y, :Width, :Height
182
+
183
+ def initialize(x=nil, y=nil, width=nil, height=nil)
184
+ @X = x
185
+ @Y = y
186
+ @Width = width
187
+ @Height = height
188
+ end
189
+
190
+ def deserialize(params)
191
+ @X = params['X']
192
+ @Y = params['Y']
193
+ @Width = params['Width']
194
+ @Height = params['Height']
195
+ end
196
+ end
197
+
166
198
  # 描述
167
199
  class Desc < TencentCloud::Common::AbstractModel
168
200
  # @param Text: 描述
@@ -1225,10 +1257,16 @@ module TencentCloud
1225
1257
  # @param ItemString: 项目原文
1226
1258
  # 注意:此字段可能返回 null,表示取不到有效值。
1227
1259
  # @type ItemString: String
1260
+ # @param Id: 指标项ID
1261
+ # 注意:此字段可能返回 null,表示取不到有效值。
1262
+ # @type Id: Integer
1263
+ # @param Coords: 指标项坐标位置
1264
+ # 注意:此字段可能返回 null,表示取不到有效值。
1265
+ # @type Coords: :class:`Tencentcloud::Mrs.v20200910.models.Coordinate`
1228
1266
 
1229
- attr_accessor :Code, :Scode, :Name, :Sname, :Result, :Unit, :Range, :Arrow, :Normal, :ItemString
1267
+ attr_accessor :Code, :Scode, :Name, :Sname, :Result, :Unit, :Range, :Arrow, :Normal, :ItemString, :Id, :Coords
1230
1268
 
1231
- def initialize(code=nil, scode=nil, name=nil, sname=nil, result=nil, unit=nil, range=nil, arrow=nil, normal=nil, itemstring=nil)
1269
+ def initialize(code=nil, scode=nil, name=nil, sname=nil, result=nil, unit=nil, range=nil, arrow=nil, normal=nil, itemstring=nil, id=nil, coords=nil)
1232
1270
  @Code = code
1233
1271
  @Scode = scode
1234
1272
  @Name = name
@@ -1239,6 +1277,8 @@ module TencentCloud
1239
1277
  @Arrow = arrow
1240
1278
  @Normal = normal
1241
1279
  @ItemString = itemstring
1280
+ @Id = id
1281
+ @Coords = coords
1242
1282
  end
1243
1283
 
1244
1284
  def deserialize(params)
@@ -1252,6 +1292,11 @@ module TencentCloud
1252
1292
  @Arrow = params['Arrow']
1253
1293
  @Normal = params['Normal']
1254
1294
  @ItemString = params['ItemString']
1295
+ @Id = params['Id']
1296
+ unless params['Coords'].nil?
1297
+ @Coords = Coordinate.new
1298
+ @Coords.deserialize(params['Coords'])
1299
+ end
1255
1300
  end
1256
1301
  end
1257
1302
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mrs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.342
4
+ version: 1.0.343
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-06-26 00:00:00.000000000 Z
11
+ date: 2022-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common