tencentcloud-sdk-iotexplorer 3.0.434 → 3.0.435
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190423/models.rb +31 -8
- 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: 196ccd327dc96bf626b27d5a6a9183ab137e8e05
|
4
|
+
data.tar.gz: f41ca166518ecb539e980075badeff7865a9ee21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb07f0855549d2b577e73a4e5279817c70df8ef96262e66f59cb1bebb97c1e90b9a9f3b02417085532957c75ad2f27854a2d0e726e9f15393c01066cb61fd202
|
7
|
+
data.tar.gz: 09793e3cfa05ba3d19812120dee1c67f2520ffb67a0ec61233cc5949504011070f4f25ecf897bfe149b5e8f95220993bc2518932cd8a20d4818eaaf1af087edf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.435
|
data/lib/v20190423/models.rb
CHANGED
@@ -189,10 +189,13 @@ module TencentCloud
|
|
189
189
|
# @param DevStatus: 状态
|
190
190
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
191
191
|
# @type DevStatus: String
|
192
|
+
# @param ProductOwnerName: 产品拥有者名称
|
193
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
194
|
+
# @type ProductOwnerName: String
|
192
195
|
|
193
|
-
attr_accessor :ProductId, :ProductName, :ProjectId, :DataProtocol, :CategoryId, :ProductType, :NetType, :DevStatus
|
196
|
+
attr_accessor :ProductId, :ProductName, :ProjectId, :DataProtocol, :CategoryId, :ProductType, :NetType, :DevStatus, :ProductOwnerName
|
194
197
|
|
195
|
-
def initialize(productid=nil, productname=nil, projectid=nil, dataprotocol=nil, categoryid=nil, producttype=nil, nettype=nil, devstatus=nil)
|
198
|
+
def initialize(productid=nil, productname=nil, projectid=nil, dataprotocol=nil, categoryid=nil, producttype=nil, nettype=nil, devstatus=nil, productownername=nil)
|
196
199
|
@ProductId = productid
|
197
200
|
@ProductName = productname
|
198
201
|
@ProjectId = projectid
|
@@ -201,6 +204,7 @@ module TencentCloud
|
|
201
204
|
@ProductType = producttype
|
202
205
|
@NetType = nettype
|
203
206
|
@DevStatus = devstatus
|
207
|
+
@ProductOwnerName = productownername
|
204
208
|
end
|
205
209
|
|
206
210
|
def deserialize(params)
|
@@ -212,6 +216,7 @@ module TencentCloud
|
|
212
216
|
@ProductType = params['ProductType']
|
213
217
|
@NetType = params['NetType']
|
214
218
|
@DevStatus = params['DevStatus']
|
219
|
+
@ProductOwnerName = params['ProductOwnerName']
|
215
220
|
end
|
216
221
|
end
|
217
222
|
|
@@ -1506,19 +1511,23 @@ module TencentCloud
|
|
1506
1511
|
# @type Offset: Integer
|
1507
1512
|
# @param Limit: 分页大小
|
1508
1513
|
# @type Limit: Integer
|
1514
|
+
# @param ProductSource: 是否跨账号绑定产品
|
1515
|
+
# @type ProductSource: Integer
|
1509
1516
|
|
1510
|
-
attr_accessor :GatewayProductId, :Offset, :Limit
|
1517
|
+
attr_accessor :GatewayProductId, :Offset, :Limit, :ProductSource
|
1511
1518
|
|
1512
|
-
def initialize(gatewayproductid=nil, offset=nil, limit=nil)
|
1519
|
+
def initialize(gatewayproductid=nil, offset=nil, limit=nil, productsource=nil)
|
1513
1520
|
@GatewayProductId = gatewayproductid
|
1514
1521
|
@Offset = offset
|
1515
1522
|
@Limit = limit
|
1523
|
+
@ProductSource = productsource
|
1516
1524
|
end
|
1517
1525
|
|
1518
1526
|
def deserialize(params)
|
1519
1527
|
@GatewayProductId = params['GatewayProductId']
|
1520
1528
|
@Offset = params['Offset']
|
1521
1529
|
@Limit = params['Limit']
|
1530
|
+
@ProductSource = params['ProductSource']
|
1522
1531
|
end
|
1523
1532
|
end
|
1524
1533
|
|
@@ -1584,15 +1593,23 @@ module TencentCloud
|
|
1584
1593
|
# @param GatewayName: 网关产品名称
|
1585
1594
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1586
1595
|
# @type GatewayName: String
|
1596
|
+
# @param GatewayProductOwnerName: 设备对应产品所属的主账号名称
|
1597
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1598
|
+
# @type GatewayProductOwnerName: String
|
1599
|
+
# @param GatewayProductOwnerUin: 设备对应产品所属的主账号 UIN
|
1600
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1601
|
+
# @type GatewayProductOwnerUin: String
|
1587
1602
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1588
1603
|
# @type RequestId: String
|
1589
1604
|
|
1590
|
-
attr_accessor :GatewayProductId, :GatewayDeviceName, :GatewayName, :RequestId
|
1605
|
+
attr_accessor :GatewayProductId, :GatewayDeviceName, :GatewayName, :GatewayProductOwnerName, :GatewayProductOwnerUin, :RequestId
|
1591
1606
|
|
1592
|
-
def initialize(gatewayproductid=nil, gatewaydevicename=nil, gatewayname=nil, requestid=nil)
|
1607
|
+
def initialize(gatewayproductid=nil, gatewaydevicename=nil, gatewayname=nil, gatewayproductownername=nil, gatewayproductowneruin=nil, requestid=nil)
|
1593
1608
|
@GatewayProductId = gatewayproductid
|
1594
1609
|
@GatewayDeviceName = gatewaydevicename
|
1595
1610
|
@GatewayName = gatewayname
|
1611
|
+
@GatewayProductOwnerName = gatewayproductownername
|
1612
|
+
@GatewayProductOwnerUin = gatewayproductowneruin
|
1596
1613
|
@RequestId = requestid
|
1597
1614
|
end
|
1598
1615
|
|
@@ -1600,6 +1617,8 @@ module TencentCloud
|
|
1600
1617
|
@GatewayProductId = params['GatewayProductId']
|
1601
1618
|
@GatewayDeviceName = params['GatewayDeviceName']
|
1602
1619
|
@GatewayName = params['GatewayName']
|
1620
|
+
@GatewayProductOwnerName = params['GatewayProductOwnerName']
|
1621
|
+
@GatewayProductOwnerUin = params['GatewayProductOwnerUin']
|
1603
1622
|
@RequestId = params['RequestId']
|
1604
1623
|
end
|
1605
1624
|
end
|
@@ -2181,14 +2200,17 @@ module TencentCloud
|
|
2181
2200
|
# @type Limit: Integer
|
2182
2201
|
# @param ProjectId: 项目Id
|
2183
2202
|
# @type ProjectId: String
|
2203
|
+
# @param ProductSource: 是否跨账号产品
|
2204
|
+
# @type ProductSource: Integer
|
2184
2205
|
|
2185
|
-
attr_accessor :GatewayProductId, :Offset, :Limit, :ProjectId
|
2206
|
+
attr_accessor :GatewayProductId, :Offset, :Limit, :ProjectId, :ProductSource
|
2186
2207
|
|
2187
|
-
def initialize(gatewayproductid=nil, offset=nil, limit=nil, projectid=nil)
|
2208
|
+
def initialize(gatewayproductid=nil, offset=nil, limit=nil, projectid=nil, productsource=nil)
|
2188
2209
|
@GatewayProductId = gatewayproductid
|
2189
2210
|
@Offset = offset
|
2190
2211
|
@Limit = limit
|
2191
2212
|
@ProjectId = projectid
|
2213
|
+
@ProductSource = productsource
|
2192
2214
|
end
|
2193
2215
|
|
2194
2216
|
def deserialize(params)
|
@@ -2196,6 +2218,7 @@ module TencentCloud
|
|
2196
2218
|
@Offset = params['Offset']
|
2197
2219
|
@Limit = params['Limit']
|
2198
2220
|
@ProjectId = params['ProjectId']
|
2221
|
+
@ProductSource = params['ProductSource']
|
2199
2222
|
end
|
2200
2223
|
end
|
2201
2224
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.435
|
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-10-
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|