tencentcloud-sdk-mrs 1.0.342 → 1.0.345

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/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: 48146d81456627531e049db3fc4862db84a61525
4
+ data.tar.gz: 152984b0344c174465329490c78890c232566d2b
5
5
  SHA512:
6
- metadata.gz: dd132721b07c51140bdf0d2781536d024114015295fbf1bec57e065202cc5cf724378a756052261f25c664a3fe4d2e5fda80e850c566cb8f9d0688c0ae679b35
7
- data.tar.gz: 4e502fb439a43850aa0e392777eec34f841947be6e0f8245069fee9ab4925babc88aea9200c59927b7294e954758b7689d26f5f6d1742abfa7d7162cf5fcc723
6
+ metadata.gz: 9aab40e7384051601981ce9936e0e72a22e14af54b6da3bc85f3d646345bc9af0e9db5d0215e6846c81b1a07eea9f3ddb8af8192db8c73688360e25ad1d59f3d
7
+ data.tar.gz: 69a8af144f0053bfa9ed2a7f24cff13f7b0055f6a86302e1285b667fc24739c545d5caac8fe6c06ef082040a1326cdba2789ef519e287a35d52d89aad35396bf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.342
1
+ 1.0.345
@@ -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.345
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-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common