tencentcloud-sdk-iotexplorer 3.0.852 → 3.0.854
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/v20190423/models.rb +41 -2
- 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: 5ab6f4e7e4178090fb92872f28f4dc55e18054ce
|
4
|
+
data.tar.gz: 25bdce38640fb594747349f2ec1265aeb45101d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 418cbe75ca95d3af6206fdcd2262d042b9210d2ea3936798a5426bac951e9ff6b9a3fe8a796bedf5ec8c569c6c1ad6738c60e7afe589cf253a42fe2362eeb1be
|
7
|
+
data.tar.gz: aef01ff66cdb351a20027a951fca7d7dccf3b8f8d63b4426534222cd1b38d705ef829de3e60cc9b8bbd92cc3166f02137087be5902c077b92584479c5920685e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.854
|
data/lib/v20190423/models.rb
CHANGED
@@ -6318,14 +6318,18 @@ module TencentCloud
|
|
6318
6318
|
# @type TWeCallPkgList: Array
|
6319
6319
|
# @param Total: 总数
|
6320
6320
|
# @type Total: Integer
|
6321
|
+
# @param TWeCallCategoryPkgList: 分类统计
|
6322
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6323
|
+
# @type TWeCallCategoryPkgList: Array
|
6321
6324
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6322
6325
|
# @type RequestId: String
|
6323
6326
|
|
6324
|
-
attr_accessor :TWeCallPkgList, :Total, :RequestId
|
6327
|
+
attr_accessor :TWeCallPkgList, :Total, :TWeCallCategoryPkgList, :RequestId
|
6325
6328
|
|
6326
|
-
def initialize(twecallpkglist=nil, total=nil, requestid=nil)
|
6329
|
+
def initialize(twecallpkglist=nil, total=nil, twecallcategorypkglist=nil, requestid=nil)
|
6327
6330
|
@TWeCallPkgList = twecallpkglist
|
6328
6331
|
@Total = total
|
6332
|
+
@TWeCallCategoryPkgList = twecallcategorypkglist
|
6329
6333
|
@RequestId = requestid
|
6330
6334
|
end
|
6331
6335
|
|
@@ -6339,6 +6343,14 @@ module TencentCloud
|
|
6339
6343
|
end
|
6340
6344
|
end
|
6341
6345
|
@Total = params['Total']
|
6346
|
+
unless params['TWeCallCategoryPkgList'].nil?
|
6347
|
+
@TWeCallCategoryPkgList = []
|
6348
|
+
params['TWeCallCategoryPkgList'].each do |i|
|
6349
|
+
twecallcategorypkginfo_tmp = TWeCallCategoryPkgInfo.new
|
6350
|
+
twecallcategorypkginfo_tmp.deserialize(i)
|
6351
|
+
@TWeCallCategoryPkgList << twecallcategorypkginfo_tmp
|
6352
|
+
end
|
6353
|
+
end
|
6342
6354
|
@RequestId = params['RequestId']
|
6343
6355
|
end
|
6344
6356
|
end
|
@@ -8743,6 +8755,33 @@ module TencentCloud
|
|
8743
8755
|
end
|
8744
8756
|
end
|
8745
8757
|
|
8758
|
+
# TWeCall分类统计数据
|
8759
|
+
class TWeCallCategoryPkgInfo < TencentCloud::Common::AbstractModel
|
8760
|
+
# @param PkgType: 类型
|
8761
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8762
|
+
# @type PkgType: Integer
|
8763
|
+
# @param All: 总数
|
8764
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8765
|
+
# @type All: Integer
|
8766
|
+
# @param Used: 已使用数
|
8767
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8768
|
+
# @type Used: Integer
|
8769
|
+
|
8770
|
+
attr_accessor :PkgType, :All, :Used
|
8771
|
+
|
8772
|
+
def initialize(pkgtype=nil, all=nil, used=nil)
|
8773
|
+
@PkgType = pkgtype
|
8774
|
+
@All = all
|
8775
|
+
@Used = used
|
8776
|
+
end
|
8777
|
+
|
8778
|
+
def deserialize(params)
|
8779
|
+
@PkgType = params['PkgType']
|
8780
|
+
@All = params['All']
|
8781
|
+
@Used = params['Used']
|
8782
|
+
end
|
8783
|
+
end
|
8784
|
+
|
8746
8785
|
# TWeCall信息
|
8747
8786
|
class TWeCallInfo < TencentCloud::Common::AbstractModel
|
8748
8787
|
# @param ModelId: 小程序ID
|
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.854
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|