tencentcloud-sdk-iotexplorer 3.0.1017 → 3.0.1018

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8dfb58dd9d4d2577e45eddb9e0ebdf889559e98b
4
- data.tar.gz: 422fa7895cdf7208cc9f67bc52bd6caa3d9f6ef7
3
+ metadata.gz: b1e4370ebc92bb159d810ddafbd8443d33a89736
4
+ data.tar.gz: 132becf9e1a81e80ba709822885fa68dcf255fe1
5
5
  SHA512:
6
- metadata.gz: 52a95ce66ab799949a5e725f501f194cba0f70516b5ed6c62f23a4cfb9ad4220461ce22efaba755554637b2a0caf447d8b4d827c1e5bcf6981606a852fcd23c5
7
- data.tar.gz: d79e238101337b654bfbd345e64b7f3372730cf3c3ad5f43fd54ef6ff18aa96db84121653bd38b53ec0886ca9248f7d3ec3b48b518236299311893f6412e34ff
6
+ metadata.gz: 5d91381ae1fe2ca304d9141e4d0383da1b2591b22e3114eca86cb5daa0179363ee05c0f903790e82d9c24e4aee845b51f45f84b71aa5e277b186d8939157509c
7
+ data.tar.gz: 1f57d281642e6dea282caf46dc03e5c1048b8b81488aadb49343e6de1a256d0d25416131358c5bbdc168e34c31070d137bb95308aa083318ab2d13747080f785
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1017
1
+ 3.0.1018
@@ -53,32 +53,6 @@ module TencentCloud
53
53
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
54
  end
55
55
 
56
- # 微信VOIP功能调整下线
57
-
58
- # 分配License
59
-
60
- # @param request: Request instance for AssignTWeCallLicense.
61
- # @type request: :class:`Tencentcloud::iotexplorer::V20190423::AssignTWeCallLicenseRequest`
62
- # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::AssignTWeCallLicenseResponse`
63
- def AssignTWeCallLicense(request)
64
- body = send_request('AssignTWeCallLicense', request.serialize)
65
- response = JSON.parse(body)
66
- if response['Response'].key?('Error') == false
67
- model = AssignTWeCallLicenseResponse.new
68
- model.deserialize(response['Response'])
69
- model
70
- else
71
- code = response['Response']['Error']['Code']
72
- message = response['Response']['Error']['Message']
73
- reqid = response['Response']['RequestId']
74
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
75
- end
76
- rescue TencentCloud::Common::TencentCloudSDKException => e
77
- raise e
78
- rescue StandardError => e
79
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
80
- end
81
-
82
56
  # 绑定云存用户
83
57
 
84
58
  # @param request: Request instance for BindCloudStorageUser.
@@ -2719,32 +2693,6 @@ module TencentCloud
2719
2693
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2720
2694
  end
2721
2695
 
2722
- # 微信VOIP功能调整下线
2723
-
2724
- # 查询TWeCall包列表
2725
-
2726
- # @param request: Request instance for GetTWeCallPkgList.
2727
- # @type request: :class:`Tencentcloud::iotexplorer::V20190423::GetTWeCallPkgListRequest`
2728
- # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::GetTWeCallPkgListResponse`
2729
- def GetTWeCallPkgList(request)
2730
- body = send_request('GetTWeCallPkgList', request.serialize)
2731
- response = JSON.parse(body)
2732
- if response['Response'].key?('Error') == false
2733
- model = GetTWeCallPkgListResponse.new
2734
- model.deserialize(response['Response'])
2735
- model
2736
- else
2737
- code = response['Response']['Error']['Code']
2738
- message = response['Response']['Error']['Message']
2739
- reqid = response['Response']['RequestId']
2740
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2741
- end
2742
- rescue TencentCloud::Common::TencentCloudSDKException => e
2743
- raise e
2744
- rescue StandardError => e
2745
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2746
- end
2747
-
2748
2696
  # 获取规则列表
2749
2697
 
2750
2698
  # @param request: Request instance for GetTopicRuleList.
@@ -196,46 +196,6 @@ module TencentCloud
196
196
  end
197
197
  end
198
198
 
199
- # AssignTWeCallLicense请求参数结构体
200
- class AssignTWeCallLicenseRequest < TencentCloud::Common::AbstractModel
201
- # @param PkgType: voip类型
202
- # @type PkgType: Integer
203
- # @param MiniProgramAppId: appId
204
- # @type MiniProgramAppId: String
205
- # @param DeductNum: License数,只支持50,500,1000,5000,10000,20000,50000
206
- # @type DeductNum: Integer
207
-
208
- attr_accessor :PkgType, :MiniProgramAppId, :DeductNum
209
-
210
- def initialize(pkgtype=nil, miniprogramappid=nil, deductnum=nil)
211
- @PkgType = pkgtype
212
- @MiniProgramAppId = miniprogramappid
213
- @DeductNum = deductnum
214
- end
215
-
216
- def deserialize(params)
217
- @PkgType = params['PkgType']
218
- @MiniProgramAppId = params['MiniProgramAppId']
219
- @DeductNum = params['DeductNum']
220
- end
221
- end
222
-
223
- # AssignTWeCallLicense返回参数结构体
224
- class AssignTWeCallLicenseResponse < TencentCloud::Common::AbstractModel
225
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
226
- # @type RequestId: String
227
-
228
- attr_accessor :RequestId
229
-
230
- def initialize(requestid=nil)
231
- @RequestId = requestid
232
- end
233
-
234
- def deserialize(params)
235
- @RequestId = params['RequestId']
236
- end
237
- end
238
-
239
199
  # 授权小程序信息
240
200
  class AuthMiniProgramAppInfo < TencentCloud::Common::AbstractModel
241
201
  # @param MiniProgramAppId: 小程序APPID
@@ -7301,84 +7261,6 @@ module TencentCloud
7301
7261
  end
7302
7262
  end
7303
7263
 
7304
- # GetTWeCallPkgList请求参数结构体
7305
- class GetTWeCallPkgListRequest < TencentCloud::Common::AbstractModel
7306
- # @param MiniProgramAppId: appId
7307
- # @type MiniProgramAppId: String
7308
- # @param PkgType: 类型
7309
- # @type PkgType: Array
7310
- # @param Status: 状态
7311
- # @type Status: Array
7312
- # @param Offset: 偏移量
7313
- # @type Offset: Integer
7314
- # @param Limit: 每页数据大小
7315
- # @type Limit: Integer
7316
-
7317
- attr_accessor :MiniProgramAppId, :PkgType, :Status, :Offset, :Limit
7318
- extend Gem::Deprecate
7319
- deprecate :MiniProgramAppId, :none, 2025, 3
7320
- deprecate :MiniProgramAppId=, :none, 2025, 3
7321
-
7322
- def initialize(miniprogramappid=nil, pkgtype=nil, status=nil, offset=nil, limit=nil)
7323
- @MiniProgramAppId = miniprogramappid
7324
- @PkgType = pkgtype
7325
- @Status = status
7326
- @Offset = offset
7327
- @Limit = limit
7328
- end
7329
-
7330
- def deserialize(params)
7331
- @MiniProgramAppId = params['MiniProgramAppId']
7332
- @PkgType = params['PkgType']
7333
- @Status = params['Status']
7334
- @Offset = params['Offset']
7335
- @Limit = params['Limit']
7336
- end
7337
- end
7338
-
7339
- # GetTWeCallPkgList返回参数结构体
7340
- class GetTWeCallPkgListResponse < TencentCloud::Common::AbstractModel
7341
- # @param TWeCallPkgList: 激活状态
7342
- # @type TWeCallPkgList: Array
7343
- # @param Total: 总数
7344
- # @type Total: Integer
7345
- # @param TWeCallCategoryPkgList: 分类统计
7346
- # 注意:此字段可能返回 null,表示取不到有效值。
7347
- # @type TWeCallCategoryPkgList: Array
7348
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7349
- # @type RequestId: String
7350
-
7351
- attr_accessor :TWeCallPkgList, :Total, :TWeCallCategoryPkgList, :RequestId
7352
-
7353
- def initialize(twecallpkglist=nil, total=nil, twecallcategorypkglist=nil, requestid=nil)
7354
- @TWeCallPkgList = twecallpkglist
7355
- @Total = total
7356
- @TWeCallCategoryPkgList = twecallcategorypkglist
7357
- @RequestId = requestid
7358
- end
7359
-
7360
- def deserialize(params)
7361
- unless params['TWeCallPkgList'].nil?
7362
- @TWeCallPkgList = []
7363
- params['TWeCallPkgList'].each do |i|
7364
- twecallpkginfo_tmp = TWeCallPkgInfo.new
7365
- twecallpkginfo_tmp.deserialize(i)
7366
- @TWeCallPkgList << twecallpkginfo_tmp
7367
- end
7368
- end
7369
- @Total = params['Total']
7370
- unless params['TWeCallCategoryPkgList'].nil?
7371
- @TWeCallCategoryPkgList = []
7372
- params['TWeCallCategoryPkgList'].each do |i|
7373
- twecallcategorypkginfo_tmp = TWeCallCategoryPkgInfo.new
7374
- twecallcategorypkginfo_tmp.deserialize(i)
7375
- @TWeCallCategoryPkgList << twecallcategorypkginfo_tmp
7376
- end
7377
- end
7378
- @RequestId = params['RequestId']
7379
- end
7380
- end
7381
-
7382
7264
  # GetTopicRuleList请求参数结构体
7383
7265
  class GetTopicRuleListRequest < TencentCloud::Common::AbstractModel
7384
7266
  # @param PageNum: 请求的页数
@@ -10201,33 +10083,6 @@ module TencentCloud
10201
10083
  end
10202
10084
  end
10203
10085
 
10204
- # TWeCall分类统计数据
10205
- class TWeCallCategoryPkgInfo < TencentCloud::Common::AbstractModel
10206
- # @param PkgType: 类型
10207
- # 注意:此字段可能返回 null,表示取不到有效值。
10208
- # @type PkgType: Integer
10209
- # @param All: 总数
10210
- # 注意:此字段可能返回 null,表示取不到有效值。
10211
- # @type All: Integer
10212
- # @param Used: 已使用数
10213
- # 注意:此字段可能返回 null,表示取不到有效值。
10214
- # @type Used: Integer
10215
-
10216
- attr_accessor :PkgType, :All, :Used
10217
-
10218
- def initialize(pkgtype=nil, all=nil, used=nil)
10219
- @PkgType = pkgtype
10220
- @All = all
10221
- @Used = used
10222
- end
10223
-
10224
- def deserialize(params)
10225
- @PkgType = params['PkgType']
10226
- @All = params['All']
10227
- @Used = params['Used']
10228
- end
10229
- end
10230
-
10231
10086
  # TWeCall信息
10232
10087
  class TWeCallInfo < TencentCloud::Common::AbstractModel
10233
10088
  # @param Sn: Sn信息,SN格式:产品ID_设备名
@@ -10287,53 +10142,6 @@ module TencentCloud
10287
10142
  end
10288
10143
  end
10289
10144
 
10290
- # TWeCall设备信息
10291
- class TWeCallPkgInfo < TencentCloud::Common::AbstractModel
10292
- # @param PkgId: 包ID
10293
- # 注意:此字段可能返回 null,表示取不到有效值。
10294
- # @type PkgId: String
10295
- # @param PkgType: 包类型
10296
- # 注意:此字段可能返回 null,表示取不到有效值。
10297
- # @type PkgType: Integer
10298
- # @param CreateTime: 生效时间
10299
- # 注意:此字段可能返回 null,表示取不到有效值。
10300
- # @type CreateTime: Integer
10301
- # @param ExpireTime: 过期时间
10302
- # 注意:此字段可能返回 null,表示取不到有效值。
10303
- # @type ExpireTime: Integer
10304
- # @param Status: 状态
10305
- # 注意:此字段可能返回 null,表示取不到有效值。
10306
- # @type Status: Integer
10307
- # @param LicenseUsedNum: 已使用
10308
- # 注意:此字段可能返回 null,表示取不到有效值。
10309
- # @type LicenseUsedNum: Integer
10310
- # @param LicenseTotalNum: 总量
10311
- # 注意:此字段可能返回 null,表示取不到有效值。
10312
- # @type LicenseTotalNum: Integer
10313
-
10314
- attr_accessor :PkgId, :PkgType, :CreateTime, :ExpireTime, :Status, :LicenseUsedNum, :LicenseTotalNum
10315
-
10316
- def initialize(pkgid=nil, pkgtype=nil, createtime=nil, expiretime=nil, status=nil, licenseusednum=nil, licensetotalnum=nil)
10317
- @PkgId = pkgid
10318
- @PkgType = pkgtype
10319
- @CreateTime = createtime
10320
- @ExpireTime = expiretime
10321
- @Status = status
10322
- @LicenseUsedNum = licenseusednum
10323
- @LicenseTotalNum = licensetotalnum
10324
- end
10325
-
10326
- def deserialize(params)
10327
- @PkgId = params['PkgId']
10328
- @PkgType = params['PkgType']
10329
- @CreateTime = params['CreateTime']
10330
- @ExpireTime = params['ExpireTime']
10331
- @Status = params['Status']
10332
- @LicenseUsedNum = params['LicenseUsedNum']
10333
- @LicenseTotalNum = params['LicenseTotalNum']
10334
- end
10335
- end
10336
-
10337
10145
  # 缩略图信息
10338
10146
  class ThumbnailURLInfoList < TencentCloud::Common::AbstractModel
10339
10147
  # @param ThumbnailURL: 缩略图访问地址
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.1017
4
+ version: 3.0.1018
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-03-12 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20190423/models.rb
37
- - lib/v20190423/client.rb
38
36
  - lib/tencentcloud-sdk-iotexplorer.rb
37
+ - lib/v20190423/client.rb
38
+ - lib/v20190423/models.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: