tencentcloud-sdk-weilingwith 3.0.696 → 3.0.697
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/v20230427/client.rb +1268 -20
- data/lib/v20230427/models.rb +1679 -10
- metadata +2 -2
data/lib/v20230427/client.rb
CHANGED
@@ -29,16 +29,952 @@ module TencentCloud
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
+
# 添加告警处理记录
|
33
|
+
|
34
|
+
# @param request: Request instance for AddAlarmProcessRecord.
|
35
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::AddAlarmProcessRecordRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::AddAlarmProcessRecordResponse`
|
37
|
+
def AddAlarmProcessRecord(request)
|
38
|
+
body = send_request('AddAlarmProcessRecord', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = AddAlarmProcessRecordResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 单个/批量新增设备
|
57
|
+
|
58
|
+
# @param request: Request instance for BatchCreateDevice.
|
59
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::BatchCreateDeviceRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::BatchCreateDeviceResponse`
|
61
|
+
def BatchCreateDevice(request)
|
62
|
+
body = send_request('BatchCreateDevice', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = BatchCreateDeviceResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 批量消警
|
81
|
+
|
82
|
+
# @param request: Request instance for BatchKillAlarm.
|
83
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::BatchKillAlarmRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::BatchKillAlarmResponse`
|
85
|
+
def BatchKillAlarm(request)
|
86
|
+
body = send_request('BatchKillAlarm', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = BatchKillAlarmResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 批量消息上报
|
105
|
+
|
106
|
+
# @param request: Request instance for BatchReportAppMessage.
|
107
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::BatchReportAppMessageRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::BatchReportAppMessageResponse`
|
109
|
+
def BatchReportAppMessage(request)
|
110
|
+
body = send_request('BatchReportAppMessage', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = BatchReportAppMessageResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 变更告警状态
|
129
|
+
|
130
|
+
# @param request: Request instance for ChangeAlarmStatus.
|
131
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::ChangeAlarmStatusRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::ChangeAlarmStatusResponse`
|
133
|
+
def ChangeAlarmStatus(request)
|
134
|
+
body = send_request('ChangeAlarmStatus', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = ChangeAlarmStatusResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 云台控制
|
153
|
+
|
154
|
+
# @param request: Request instance for ControlCameraPTZ.
|
155
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::ControlCameraPTZRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::ControlCameraPTZResponse`
|
157
|
+
def ControlCameraPTZ(request)
|
158
|
+
body = send_request('ControlCameraPTZ', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = ControlCameraPTZResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 设备控制(单个、批量控制)
|
177
|
+
|
178
|
+
# @param request: Request instance for ControlDevice.
|
179
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::ControlDeviceRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::ControlDeviceResponse`
|
181
|
+
def ControlDevice(request)
|
182
|
+
body = send_request('ControlDevice', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = ControlDeviceResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 调用方应用,创建调用租户API的授权令牌。
|
201
|
+
|
202
|
+
# @param request: Request instance for CreateApplicationToken.
|
203
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::CreateApplicationTokenRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::CreateApplicationTokenResponse`
|
205
|
+
def CreateApplicationToken(request)
|
206
|
+
body = send_request('CreateApplicationToken', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = CreateApplicationTokenResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 动作列表查询
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeActionList.
|
227
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeActionListRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeActionListResponse`
|
229
|
+
def DescribeActionList(request)
|
230
|
+
body = send_request('DescribeActionList', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeActionListResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 根据标签获取行政区划列表
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeAdministrationByTag.
|
251
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeAdministrationByTagRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeAdministrationByTagResponse`
|
253
|
+
def DescribeAdministrationByTag(request)
|
254
|
+
body = send_request('DescribeAdministrationByTag', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeAdministrationByTagResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 告警级别枚举获取
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeAlarmLevelList.
|
275
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmLevelListRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmLevelListResponse`
|
277
|
+
def DescribeAlarmLevelList(request)
|
278
|
+
body = send_request('DescribeAlarmLevelList', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeAlarmLevelListResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 告警列表查询
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribeAlarmList.
|
299
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmListRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmListResponse`
|
301
|
+
def DescribeAlarmList(request)
|
302
|
+
body = send_request('DescribeAlarmList', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeAlarmListResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 用来查询系统中的告警状态列表
|
321
|
+
|
322
|
+
# @param request: Request instance for DescribeAlarmStatusList.
|
323
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmStatusListRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmStatusListResponse`
|
325
|
+
def DescribeAlarmStatusList(request)
|
326
|
+
body = send_request('DescribeAlarmStatusList', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DescribeAlarmStatusListResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
344
|
+
# 告警类型获取
|
345
|
+
|
346
|
+
# @param request: Request instance for DescribeAlarmTypeList.
|
347
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmTypeListRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeAlarmTypeListResponse`
|
349
|
+
def DescribeAlarmTypeList(request)
|
350
|
+
body = send_request('DescribeAlarmTypeList', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DescribeAlarmTypeListResponse.new
|
354
|
+
model.deserialize(response['Response'])
|
355
|
+
model
|
356
|
+
else
|
357
|
+
code = response['Response']['Error']['Code']
|
358
|
+
message = response['Response']['Error']['Message']
|
359
|
+
reqid = response['Response']['RequestId']
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
361
|
+
end
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
363
|
+
raise e
|
364
|
+
rescue StandardError => e
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
366
|
+
end
|
367
|
+
|
32
368
|
# 查询指定空间关联的应用列表
|
33
369
|
|
34
|
-
# @param request: Request instance for DescribeApplicationList.
|
35
|
-
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeApplicationListRequest`
|
36
|
-
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeApplicationListResponse`
|
37
|
-
def DescribeApplicationList(request)
|
38
|
-
body = send_request('DescribeApplicationList', request.serialize)
|
370
|
+
# @param request: Request instance for DescribeApplicationList.
|
371
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeApplicationListRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeApplicationListResponse`
|
373
|
+
def DescribeApplicationList(request)
|
374
|
+
body = send_request('DescribeApplicationList', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DescribeApplicationListResponse.new
|
378
|
+
model.deserialize(response['Response'])
|
379
|
+
model
|
380
|
+
else
|
381
|
+
code = response['Response']['Error']['Code']
|
382
|
+
message = response['Response']['Error']['Message']
|
383
|
+
reqid = response['Response']['RequestId']
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
385
|
+
end
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
387
|
+
raise e
|
388
|
+
rescue StandardError => e
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
390
|
+
end
|
391
|
+
|
392
|
+
# 查询建筑列表
|
393
|
+
|
394
|
+
# @param request: Request instance for DescribeBuildingList.
|
395
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeBuildingListRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeBuildingListResponse`
|
397
|
+
def DescribeBuildingList(request)
|
398
|
+
body = send_request('DescribeBuildingList', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeBuildingListResponse.new
|
402
|
+
model.deserialize(response['Response'])
|
403
|
+
model
|
404
|
+
else
|
405
|
+
code = response['Response']['Error']['Code']
|
406
|
+
message = response['Response']['Error']['Message']
|
407
|
+
reqid = response['Response']['RequestId']
|
408
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
409
|
+
end
|
410
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
411
|
+
raise e
|
412
|
+
rescue StandardError => e
|
413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
414
|
+
end
|
415
|
+
|
416
|
+
# 查询建筑三维模型
|
417
|
+
|
418
|
+
# @param request: Request instance for DescribeBuildingModel.
|
419
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeBuildingModelRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeBuildingModelResponse`
|
421
|
+
def DescribeBuildingModel(request)
|
422
|
+
body = send_request('DescribeBuildingModel', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeBuildingModelResponse.new
|
426
|
+
model.deserialize(response['Response'])
|
427
|
+
model
|
428
|
+
else
|
429
|
+
code = response['Response']['Error']['Code']
|
430
|
+
message = response['Response']['Error']['Message']
|
431
|
+
reqid = response['Response']['RequestId']
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
433
|
+
end
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
435
|
+
raise e
|
436
|
+
rescue StandardError => e
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
|
+
end
|
439
|
+
|
440
|
+
# 查询建筑信息
|
441
|
+
|
442
|
+
# @param request: Request instance for DescribeBuildingProfile.
|
443
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeBuildingProfileRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeBuildingProfileResponse`
|
445
|
+
def DescribeBuildingProfile(request)
|
446
|
+
body = send_request('DescribeBuildingProfile', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DescribeBuildingProfileResponse.new
|
450
|
+
model.deserialize(response['Response'])
|
451
|
+
model
|
452
|
+
else
|
453
|
+
code = response['Response']['Error']['Code']
|
454
|
+
message = response['Response']['Error']['Message']
|
455
|
+
reqid = response['Response']['RequestId']
|
456
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
457
|
+
end
|
458
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
459
|
+
raise e
|
460
|
+
rescue StandardError => e
|
461
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
462
|
+
end
|
463
|
+
|
464
|
+
# 获取视频扩展信息
|
465
|
+
|
466
|
+
# @param request: Request instance for DescribeCameraExtendInfo.
|
467
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeCameraExtendInfoRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeCameraExtendInfoResponse`
|
469
|
+
def DescribeCameraExtendInfo(request)
|
470
|
+
body = send_request('DescribeCameraExtendInfo', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DescribeCameraExtendInfoResponse.new
|
474
|
+
model.deserialize(response['Response'])
|
475
|
+
model
|
476
|
+
else
|
477
|
+
code = response['Response']['Error']['Code']
|
478
|
+
message = response['Response']['Error']['Message']
|
479
|
+
reqid = response['Response']['RequestId']
|
480
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
481
|
+
end
|
482
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
483
|
+
raise e
|
484
|
+
rescue StandardError => e
|
485
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
|
+
end
|
487
|
+
|
488
|
+
# 通过城市id查询工作空间列表
|
489
|
+
|
490
|
+
# @param request: Request instance for DescribeCityWorkspaceList.
|
491
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeCityWorkspaceListRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeCityWorkspaceListResponse`
|
493
|
+
def DescribeCityWorkspaceList(request)
|
494
|
+
body = send_request('DescribeCityWorkspaceList', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeCityWorkspaceListResponse.new
|
498
|
+
model.deserialize(response['Response'])
|
499
|
+
model
|
500
|
+
else
|
501
|
+
code = response['Response']['Error']['Code']
|
502
|
+
message = response['Response']['Error']['Message']
|
503
|
+
reqid = response['Response']['RequestId']
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
505
|
+
end
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
507
|
+
raise e
|
508
|
+
rescue StandardError => e
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
510
|
+
end
|
511
|
+
|
512
|
+
# 设备列表查询/单个查询(支持通过筛选条件查询,设备类型、标签、PID、空间)
|
513
|
+
|
514
|
+
# @param request: Request instance for DescribeDeviceList.
|
515
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceListRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceListResponse`
|
517
|
+
def DescribeDeviceList(request)
|
518
|
+
body = send_request('DescribeDeviceList', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DescribeDeviceListResponse.new
|
522
|
+
model.deserialize(response['Response'])
|
523
|
+
model
|
524
|
+
else
|
525
|
+
code = response['Response']['Error']['Code']
|
526
|
+
message = response['Response']['Error']['Message']
|
527
|
+
reqid = response['Response']['RequestId']
|
528
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
529
|
+
end
|
530
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
531
|
+
raise e
|
532
|
+
rescue StandardError => e
|
533
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
534
|
+
end
|
535
|
+
|
536
|
+
# 获取设备影子数据
|
537
|
+
|
538
|
+
# @param request: Request instance for DescribeDeviceShadowList.
|
539
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceShadowListRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceShadowListResponse`
|
541
|
+
def DescribeDeviceShadowList(request)
|
542
|
+
body = send_request('DescribeDeviceShadowList', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DescribeDeviceShadowListResponse.new
|
546
|
+
model.deserialize(response['Response'])
|
547
|
+
model
|
548
|
+
else
|
549
|
+
code = response['Response']['Error']['Code']
|
550
|
+
message = response['Response']['Error']['Message']
|
551
|
+
reqid = response['Response']['RequestId']
|
552
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
553
|
+
end
|
554
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
555
|
+
raise e
|
556
|
+
rescue StandardError => e
|
557
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
558
|
+
end
|
559
|
+
|
560
|
+
# 设备状态获取
|
561
|
+
|
562
|
+
# @param request: Request instance for DescribeDeviceStatusList.
|
563
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceStatusListRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceStatusListResponse`
|
565
|
+
def DescribeDeviceStatusList(request)
|
566
|
+
body = send_request('DescribeDeviceStatusList', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DescribeDeviceStatusListResponse.new
|
570
|
+
model.deserialize(response['Response'])
|
571
|
+
model
|
572
|
+
else
|
573
|
+
code = response['Response']['Error']['Code']
|
574
|
+
message = response['Response']['Error']['Message']
|
575
|
+
reqid = response['Response']['RequestId']
|
576
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
577
|
+
end
|
578
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
579
|
+
raise e
|
580
|
+
rescue StandardError => e
|
581
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
582
|
+
end
|
583
|
+
|
584
|
+
# 设备状态统计
|
585
|
+
|
586
|
+
# @param request: Request instance for DescribeDeviceStatusStat.
|
587
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceStatusStatRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceStatusStatResponse`
|
589
|
+
def DescribeDeviceStatusStat(request)
|
590
|
+
body = send_request('DescribeDeviceStatusStat', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DescribeDeviceStatusStatResponse.new
|
594
|
+
model.deserialize(response['Response'])
|
595
|
+
model
|
596
|
+
else
|
597
|
+
code = response['Response']['Error']['Code']
|
598
|
+
message = response['Response']['Error']['Message']
|
599
|
+
reqid = response['Response']['RequestId']
|
600
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
601
|
+
end
|
602
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
603
|
+
raise e
|
604
|
+
rescue StandardError => e
|
605
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
606
|
+
end
|
607
|
+
|
608
|
+
# 标签列表查询
|
609
|
+
|
610
|
+
# @param request: Request instance for DescribeDeviceTagList.
|
611
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceTagListRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceTagListResponse`
|
613
|
+
def DescribeDeviceTagList(request)
|
614
|
+
body = send_request('DescribeDeviceTagList', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeDeviceTagListResponse.new
|
618
|
+
model.deserialize(response['Response'])
|
619
|
+
model
|
620
|
+
else
|
621
|
+
code = response['Response']['Error']['Code']
|
622
|
+
message = response['Response']['Error']['Message']
|
623
|
+
reqid = response['Response']['RequestId']
|
624
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
625
|
+
end
|
626
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
627
|
+
raise e
|
628
|
+
rescue StandardError => e
|
629
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
630
|
+
end
|
631
|
+
|
632
|
+
# 拉取设备的设备类型列表
|
633
|
+
|
634
|
+
# @param request: Request instance for DescribeDeviceTypeList.
|
635
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceTypeListRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeDeviceTypeListResponse`
|
637
|
+
def DescribeDeviceTypeList(request)
|
638
|
+
body = send_request('DescribeDeviceTypeList', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = DescribeDeviceTypeListResponse.new
|
642
|
+
model.deserialize(response['Response'])
|
643
|
+
model
|
644
|
+
else
|
645
|
+
code = response['Response']['Error']['Code']
|
646
|
+
message = response['Response']['Error']['Message']
|
647
|
+
reqid = response['Response']['RequestId']
|
648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
649
|
+
end
|
650
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
651
|
+
raise e
|
652
|
+
rescue StandardError => e
|
653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
654
|
+
end
|
655
|
+
|
656
|
+
# 查询边缘应用凭证
|
657
|
+
|
658
|
+
# @param request: Request instance for DescribeEdgeApplicationToken.
|
659
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeEdgeApplicationTokenRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeEdgeApplicationTokenResponse`
|
661
|
+
def DescribeEdgeApplicationToken(request)
|
662
|
+
body = send_request('DescribeEdgeApplicationToken', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = DescribeEdgeApplicationTokenResponse.new
|
666
|
+
model.deserialize(response['Response'])
|
667
|
+
model
|
668
|
+
else
|
669
|
+
code = response['Response']['Error']['Code']
|
670
|
+
message = response['Response']['Error']['Message']
|
671
|
+
reqid = response['Response']['RequestId']
|
672
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
673
|
+
end
|
674
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
675
|
+
raise e
|
676
|
+
rescue StandardError => e
|
677
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
678
|
+
end
|
679
|
+
|
680
|
+
# 查询分页构件信息
|
681
|
+
|
682
|
+
# @param request: Request instance for DescribeElementProfilePage.
|
683
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeElementProfilePageRequest`
|
684
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeElementProfilePageResponse`
|
685
|
+
def DescribeElementProfilePage(request)
|
686
|
+
body = send_request('DescribeElementProfilePage', request.serialize)
|
687
|
+
response = JSON.parse(body)
|
688
|
+
if response['Response'].key?('Error') == false
|
689
|
+
model = DescribeElementProfilePageResponse.new
|
690
|
+
model.deserialize(response['Response'])
|
691
|
+
model
|
692
|
+
else
|
693
|
+
code = response['Response']['Error']['Code']
|
694
|
+
message = response['Response']['Error']['Message']
|
695
|
+
reqid = response['Response']['RequestId']
|
696
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
697
|
+
end
|
698
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
699
|
+
raise e
|
700
|
+
rescue StandardError => e
|
701
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
702
|
+
end
|
703
|
+
|
704
|
+
# 查询构件树
|
705
|
+
|
706
|
+
# @param request: Request instance for DescribeElementProfileTree.
|
707
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeElementProfileTreeRequest`
|
708
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeElementProfileTreeResponse`
|
709
|
+
def DescribeElementProfileTree(request)
|
710
|
+
body = send_request('DescribeElementProfileTree', request.serialize)
|
711
|
+
response = JSON.parse(body)
|
712
|
+
if response['Response'].key?('Error') == false
|
713
|
+
model = DescribeElementProfileTreeResponse.new
|
714
|
+
model.deserialize(response['Response'])
|
715
|
+
model
|
716
|
+
else
|
717
|
+
code = response['Response']['Error']['Code']
|
718
|
+
message = response['Response']['Error']['Message']
|
719
|
+
reqid = response['Response']['RequestId']
|
720
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
721
|
+
end
|
722
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
723
|
+
raise e
|
724
|
+
rescue StandardError => e
|
725
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
726
|
+
end
|
727
|
+
|
728
|
+
# 事件列表查询
|
729
|
+
|
730
|
+
# @param request: Request instance for DescribeEventList.
|
731
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeEventListRequest`
|
732
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeEventListResponse`
|
733
|
+
def DescribeEventList(request)
|
734
|
+
body = send_request('DescribeEventList', request.serialize)
|
735
|
+
response = JSON.parse(body)
|
736
|
+
if response['Response'].key?('Error') == false
|
737
|
+
model = DescribeEventListResponse.new
|
738
|
+
model.deserialize(response['Response'])
|
739
|
+
model
|
740
|
+
else
|
741
|
+
code = response['Response']['Error']['Code']
|
742
|
+
message = response['Response']['Error']['Message']
|
743
|
+
reqid = response['Response']['RequestId']
|
744
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
745
|
+
end
|
746
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
747
|
+
raise e
|
748
|
+
rescue StandardError => e
|
749
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
750
|
+
end
|
751
|
+
|
752
|
+
# 获取文件下载URL
|
753
|
+
|
754
|
+
# @param request: Request instance for DescribeFileDownloadURL.
|
755
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeFileDownloadURLRequest`
|
756
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeFileDownloadURLResponse`
|
757
|
+
def DescribeFileDownloadURL(request)
|
758
|
+
body = send_request('DescribeFileDownloadURL', request.serialize)
|
759
|
+
response = JSON.parse(body)
|
760
|
+
if response['Response'].key?('Error') == false
|
761
|
+
model = DescribeFileDownloadURLResponse.new
|
762
|
+
model.deserialize(response['Response'])
|
763
|
+
model
|
764
|
+
else
|
765
|
+
code = response['Response']['Error']['Code']
|
766
|
+
message = response['Response']['Error']['Message']
|
767
|
+
reqid = response['Response']['RequestId']
|
768
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
769
|
+
end
|
770
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
771
|
+
raise e
|
772
|
+
rescue StandardError => e
|
773
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
774
|
+
end
|
775
|
+
|
776
|
+
# 文件上传接口
|
777
|
+
|
778
|
+
# @param request: Request instance for DescribeFileUploadURL.
|
779
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeFileUploadURLRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeFileUploadURLResponse`
|
781
|
+
def DescribeFileUploadURL(request)
|
782
|
+
body = send_request('DescribeFileUploadURL', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = DescribeFileUploadURLResponse.new
|
786
|
+
model.deserialize(response['Response'])
|
787
|
+
model
|
788
|
+
else
|
789
|
+
code = response['Response']['Error']['Code']
|
790
|
+
message = response['Response']['Error']['Message']
|
791
|
+
reqid = response['Response']['RequestId']
|
792
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
793
|
+
end
|
794
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
795
|
+
raise e
|
796
|
+
rescue StandardError => e
|
797
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
798
|
+
end
|
799
|
+
|
800
|
+
# 查询接口列表
|
801
|
+
|
802
|
+
# @param request: Request instance for DescribeInterfaceList.
|
803
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeInterfaceListRequest`
|
804
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeInterfaceListResponse`
|
805
|
+
def DescribeInterfaceList(request)
|
806
|
+
body = send_request('DescribeInterfaceList', request.serialize)
|
807
|
+
response = JSON.parse(body)
|
808
|
+
if response['Response'].key?('Error') == false
|
809
|
+
model = DescribeInterfaceListResponse.new
|
810
|
+
model.deserialize(response['Response'])
|
811
|
+
model
|
812
|
+
else
|
813
|
+
code = response['Response']['Error']['Code']
|
814
|
+
message = response['Response']['Error']['Message']
|
815
|
+
reqid = response['Response']['RequestId']
|
816
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
817
|
+
end
|
818
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
819
|
+
raise e
|
820
|
+
rescue StandardError => e
|
821
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
822
|
+
end
|
823
|
+
|
824
|
+
# 联动规则列表查询
|
825
|
+
|
826
|
+
# @param request: Request instance for DescribeLinkRuleList.
|
827
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeLinkRuleListRequest`
|
828
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeLinkRuleListResponse`
|
829
|
+
def DescribeLinkRuleList(request)
|
830
|
+
body = send_request('DescribeLinkRuleList', request.serialize)
|
831
|
+
response = JSON.parse(body)
|
832
|
+
if response['Response'].key?('Error') == false
|
833
|
+
model = DescribeLinkRuleListResponse.new
|
834
|
+
model.deserialize(response['Response'])
|
835
|
+
model
|
836
|
+
else
|
837
|
+
code = response['Response']['Error']['Code']
|
838
|
+
message = response['Response']['Error']['Message']
|
839
|
+
reqid = response['Response']['RequestId']
|
840
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
841
|
+
end
|
842
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
843
|
+
raise e
|
844
|
+
rescue StandardError => e
|
845
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
846
|
+
end
|
847
|
+
|
848
|
+
# 模型列表查询/单个查询(产品模型/标准模型)
|
849
|
+
|
850
|
+
# @param request: Request instance for DescribeModelList.
|
851
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeModelListRequest`
|
852
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeModelListResponse`
|
853
|
+
def DescribeModelList(request)
|
854
|
+
body = send_request('DescribeModelList', request.serialize)
|
855
|
+
response = JSON.parse(body)
|
856
|
+
if response['Response'].key?('Error') == false
|
857
|
+
model = DescribeModelListResponse.new
|
858
|
+
model.deserialize(response['Response'])
|
859
|
+
model
|
860
|
+
else
|
861
|
+
code = response['Response']['Error']['Code']
|
862
|
+
message = response['Response']['Error']['Message']
|
863
|
+
reqid = response['Response']['RequestId']
|
864
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
865
|
+
end
|
866
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
867
|
+
raise e
|
868
|
+
rescue StandardError => e
|
869
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
870
|
+
end
|
871
|
+
|
872
|
+
# 产品列表查询
|
873
|
+
|
874
|
+
# @param request: Request instance for DescribeProductList.
|
875
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeProductListRequest`
|
876
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeProductListResponse`
|
877
|
+
def DescribeProductList(request)
|
878
|
+
body = send_request('DescribeProductList', request.serialize)
|
879
|
+
response = JSON.parse(body)
|
880
|
+
if response['Response'].key?('Error') == false
|
881
|
+
model = DescribeProductListResponse.new
|
882
|
+
model.deserialize(response['Response'])
|
883
|
+
model
|
884
|
+
else
|
885
|
+
code = response['Response']['Error']['Code']
|
886
|
+
message = response['Response']['Error']['Message']
|
887
|
+
reqid = response['Response']['RequestId']
|
888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
889
|
+
end
|
890
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
891
|
+
raise e
|
892
|
+
rescue StandardError => e
|
893
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
894
|
+
end
|
895
|
+
|
896
|
+
# 查询构件属性(详情)
|
897
|
+
|
898
|
+
# @param request: Request instance for DescribePropertyList.
|
899
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribePropertyListRequest`
|
900
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribePropertyListResponse`
|
901
|
+
def DescribePropertyList(request)
|
902
|
+
body = send_request('DescribePropertyList', request.serialize)
|
903
|
+
response = JSON.parse(body)
|
904
|
+
if response['Response'].key?('Error') == false
|
905
|
+
model = DescribePropertyListResponse.new
|
906
|
+
model.deserialize(response['Response'])
|
907
|
+
model
|
908
|
+
else
|
909
|
+
code = response['Response']['Error']['Code']
|
910
|
+
message = response['Response']['Error']['Message']
|
911
|
+
reqid = response['Response']['RequestId']
|
912
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
913
|
+
end
|
914
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
915
|
+
raise e
|
916
|
+
rescue StandardError => e
|
917
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
918
|
+
end
|
919
|
+
|
920
|
+
# 联动规则详情查询
|
921
|
+
|
922
|
+
# @param request: Request instance for DescribeRuleDetail.
|
923
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeRuleDetailRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeRuleDetailResponse`
|
925
|
+
def DescribeRuleDetail(request)
|
926
|
+
body = send_request('DescribeRuleDetail', request.serialize)
|
927
|
+
response = JSON.parse(body)
|
928
|
+
if response['Response'].key?('Error') == false
|
929
|
+
model = DescribeRuleDetailResponse.new
|
930
|
+
model.deserialize(response['Response'])
|
931
|
+
model
|
932
|
+
else
|
933
|
+
code = response['Response']['Error']['Code']
|
934
|
+
message = response['Response']['Error']['Message']
|
935
|
+
reqid = response['Response']['RequestId']
|
936
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
937
|
+
end
|
938
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
939
|
+
raise e
|
940
|
+
rescue StandardError => e
|
941
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
942
|
+
end
|
943
|
+
|
944
|
+
# 查询场景列表
|
945
|
+
|
946
|
+
# @param request: Request instance for DescribeSceneList.
|
947
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeSceneListRequest`
|
948
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeSceneListResponse`
|
949
|
+
def DescribeSceneList(request)
|
950
|
+
body = send_request('DescribeSceneList', request.serialize)
|
951
|
+
response = JSON.parse(body)
|
952
|
+
if response['Response'].key?('Error') == false
|
953
|
+
model = DescribeSceneListResponse.new
|
954
|
+
model.deserialize(response['Response'])
|
955
|
+
model
|
956
|
+
else
|
957
|
+
code = response['Response']['Error']['Code']
|
958
|
+
message = response['Response']['Error']['Message']
|
959
|
+
reqid = response['Response']['RequestId']
|
960
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
961
|
+
end
|
962
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
963
|
+
raise e
|
964
|
+
rescue StandardError => e
|
965
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
966
|
+
end
|
967
|
+
|
968
|
+
# 查询指定空间设备编号列表
|
969
|
+
|
970
|
+
# @param request: Request instance for DescribeSpaceDeviceIdList.
|
971
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceDeviceIdListRequest`
|
972
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceDeviceIdListResponse`
|
973
|
+
def DescribeSpaceDeviceIdList(request)
|
974
|
+
body = send_request('DescribeSpaceDeviceIdList', request.serialize)
|
39
975
|
response = JSON.parse(body)
|
40
976
|
if response['Response'].key?('Error') == false
|
41
|
-
model =
|
977
|
+
model = DescribeSpaceDeviceIdListResponse.new
|
42
978
|
model.deserialize(response['Response'])
|
43
979
|
model
|
44
980
|
else
|
@@ -53,16 +989,16 @@ module TencentCloud
|
|
53
989
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
990
|
end
|
55
991
|
|
56
|
-
#
|
992
|
+
# 查询指定空间下设备与构件绑定关系列表
|
57
993
|
|
58
|
-
# @param request: Request instance for
|
59
|
-
# @type request: :class:`Tencentcloud::weilingwith::V20230427::
|
60
|
-
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::
|
61
|
-
def
|
62
|
-
body = send_request('
|
994
|
+
# @param request: Request instance for DescribeSpaceDeviceRelationList.
|
995
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceDeviceRelationListRequest`
|
996
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceDeviceRelationListResponse`
|
997
|
+
def DescribeSpaceDeviceRelationList(request)
|
998
|
+
body = send_request('DescribeSpaceDeviceRelationList', request.serialize)
|
63
999
|
response = JSON.parse(body)
|
64
1000
|
if response['Response'].key?('Error') == false
|
65
|
-
model =
|
1001
|
+
model = DescribeSpaceDeviceRelationListResponse.new
|
66
1002
|
model.deserialize(response['Response'])
|
67
1003
|
model
|
68
1004
|
else
|
@@ -77,16 +1013,232 @@ module TencentCloud
|
|
77
1013
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
1014
|
end
|
79
1015
|
|
80
|
-
#
|
1016
|
+
# 查询设备绑定的空间信息
|
81
1017
|
|
82
|
-
# @param request: Request instance for
|
83
|
-
# @type request: :class:`Tencentcloud::weilingwith::V20230427::
|
84
|
-
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::
|
85
|
-
def
|
86
|
-
body = send_request('
|
1018
|
+
# @param request: Request instance for DescribeSpaceInfoByDeviceId.
|
1019
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceInfoByDeviceIdRequest`
|
1020
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceInfoByDeviceIdResponse`
|
1021
|
+
def DescribeSpaceInfoByDeviceId(request)
|
1022
|
+
body = send_request('DescribeSpaceInfoByDeviceId', request.serialize)
|
87
1023
|
response = JSON.parse(body)
|
88
1024
|
if response['Response'].key?('Error') == false
|
89
|
-
model =
|
1025
|
+
model = DescribeSpaceInfoByDeviceIdResponse.new
|
1026
|
+
model.deserialize(response['Response'])
|
1027
|
+
model
|
1028
|
+
else
|
1029
|
+
code = response['Response']['Error']['Code']
|
1030
|
+
message = response['Response']['Error']['Message']
|
1031
|
+
reqid = response['Response']['RequestId']
|
1032
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1033
|
+
end
|
1034
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1035
|
+
raise e
|
1036
|
+
rescue StandardError => e
|
1037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# 查询设备绑定的空间层级关系
|
1041
|
+
|
1042
|
+
# @param request: Request instance for DescribeSpaceRelationByDeviceId.
|
1043
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceRelationByDeviceIdRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceRelationByDeviceIdResponse`
|
1045
|
+
def DescribeSpaceRelationByDeviceId(request)
|
1046
|
+
body = send_request('DescribeSpaceRelationByDeviceId', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = DescribeSpaceRelationByDeviceIdResponse.new
|
1050
|
+
model.deserialize(response['Response'])
|
1051
|
+
model
|
1052
|
+
else
|
1053
|
+
code = response['Response']['Error']['Code']
|
1054
|
+
message = response['Response']['Error']['Message']
|
1055
|
+
reqid = response['Response']['RequestId']
|
1056
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1057
|
+
end
|
1058
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1059
|
+
raise e
|
1060
|
+
rescue StandardError => e
|
1061
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
# 查询空间分类
|
1065
|
+
|
1066
|
+
# @param request: Request instance for DescribeSpaceTypeList.
|
1067
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceTypeListRequest`
|
1068
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeSpaceTypeListResponse`
|
1069
|
+
def DescribeSpaceTypeList(request)
|
1070
|
+
body = send_request('DescribeSpaceTypeList', request.serialize)
|
1071
|
+
response = JSON.parse(body)
|
1072
|
+
if response['Response'].key?('Error') == false
|
1073
|
+
model = DescribeSpaceTypeListResponse.new
|
1074
|
+
model.deserialize(response['Response'])
|
1075
|
+
model
|
1076
|
+
else
|
1077
|
+
code = response['Response']['Error']['Code']
|
1078
|
+
message = response['Response']['Error']['Message']
|
1079
|
+
reqid = response['Response']['RequestId']
|
1080
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1081
|
+
end
|
1082
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1083
|
+
raise e
|
1084
|
+
rescue StandardError => e
|
1085
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# 查询租户楼栋数量和楼栋建筑面积
|
1089
|
+
|
1090
|
+
# @param request: Request instance for DescribeTenantBuildingCountAndArea.
|
1091
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeTenantBuildingCountAndAreaRequest`
|
1092
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeTenantBuildingCountAndAreaResponse`
|
1093
|
+
def DescribeTenantBuildingCountAndArea(request)
|
1094
|
+
body = send_request('DescribeTenantBuildingCountAndArea', request.serialize)
|
1095
|
+
response = JSON.parse(body)
|
1096
|
+
if response['Response'].key?('Error') == false
|
1097
|
+
model = DescribeTenantBuildingCountAndAreaResponse.new
|
1098
|
+
model.deserialize(response['Response'])
|
1099
|
+
model
|
1100
|
+
else
|
1101
|
+
code = response['Response']['Error']['Code']
|
1102
|
+
message = response['Response']['Error']['Message']
|
1103
|
+
reqid = response['Response']['RequestId']
|
1104
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1105
|
+
end
|
1106
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1107
|
+
raise e
|
1108
|
+
rescue StandardError => e
|
1109
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
# 查询租户组织部门列表
|
1113
|
+
|
1114
|
+
# @param request: Request instance for DescribeTenantDepartmentList.
|
1115
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeTenantDepartmentListRequest`
|
1116
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeTenantDepartmentListResponse`
|
1117
|
+
def DescribeTenantDepartmentList(request)
|
1118
|
+
body = send_request('DescribeTenantDepartmentList', request.serialize)
|
1119
|
+
response = JSON.parse(body)
|
1120
|
+
if response['Response'].key?('Error') == false
|
1121
|
+
model = DescribeTenantDepartmentListResponse.new
|
1122
|
+
model.deserialize(response['Response'])
|
1123
|
+
model
|
1124
|
+
else
|
1125
|
+
code = response['Response']['Error']['Code']
|
1126
|
+
message = response['Response']['Error']['Message']
|
1127
|
+
reqid = response['Response']['RequestId']
|
1128
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1129
|
+
end
|
1130
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1131
|
+
raise e
|
1132
|
+
rescue StandardError => e
|
1133
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
# 查询租户人员列表
|
1137
|
+
|
1138
|
+
# @param request: Request instance for DescribeTenantUserList.
|
1139
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeTenantUserListRequest`
|
1140
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeTenantUserListResponse`
|
1141
|
+
def DescribeTenantUserList(request)
|
1142
|
+
body = send_request('DescribeTenantUserList', request.serialize)
|
1143
|
+
response = JSON.parse(body)
|
1144
|
+
if response['Response'].key?('Error') == false
|
1145
|
+
model = DescribeTenantUserListResponse.new
|
1146
|
+
model.deserialize(response['Response'])
|
1147
|
+
model
|
1148
|
+
else
|
1149
|
+
code = response['Response']['Error']['Code']
|
1150
|
+
message = response['Response']['Error']['Message']
|
1151
|
+
reqid = response['Response']['RequestId']
|
1152
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1153
|
+
end
|
1154
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1155
|
+
raise e
|
1156
|
+
rescue StandardError => e
|
1157
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
# 云录像接口
|
1161
|
+
|
1162
|
+
# @param request: Request instance for DescribeVideoCloudRecord.
|
1163
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeVideoCloudRecordRequest`
|
1164
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeVideoCloudRecordResponse`
|
1165
|
+
def DescribeVideoCloudRecord(request)
|
1166
|
+
body = send_request('DescribeVideoCloudRecord', request.serialize)
|
1167
|
+
response = JSON.parse(body)
|
1168
|
+
if response['Response'].key?('Error') == false
|
1169
|
+
model = DescribeVideoCloudRecordResponse.new
|
1170
|
+
model.deserialize(response['Response'])
|
1171
|
+
model
|
1172
|
+
else
|
1173
|
+
code = response['Response']['Error']['Code']
|
1174
|
+
message = response['Response']['Error']['Message']
|
1175
|
+
reqid = response['Response']['RequestId']
|
1176
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1177
|
+
end
|
1178
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1179
|
+
raise e
|
1180
|
+
rescue StandardError => e
|
1181
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
# 实时流接口
|
1185
|
+
|
1186
|
+
# @param request: Request instance for DescribeVideoLiveStream.
|
1187
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeVideoLiveStreamRequest`
|
1188
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeVideoLiveStreamResponse`
|
1189
|
+
def DescribeVideoLiveStream(request)
|
1190
|
+
body = send_request('DescribeVideoLiveStream', request.serialize)
|
1191
|
+
response = JSON.parse(body)
|
1192
|
+
if response['Response'].key?('Error') == false
|
1193
|
+
model = DescribeVideoLiveStreamResponse.new
|
1194
|
+
model.deserialize(response['Response'])
|
1195
|
+
model
|
1196
|
+
else
|
1197
|
+
code = response['Response']['Error']['Code']
|
1198
|
+
message = response['Response']['Error']['Message']
|
1199
|
+
reqid = response['Response']['RequestId']
|
1200
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1201
|
+
end
|
1202
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1203
|
+
raise e
|
1204
|
+
rescue StandardError => e
|
1205
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
# 历史流接口
|
1209
|
+
|
1210
|
+
# @param request: Request instance for DescribeVideoRecordStream.
|
1211
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeVideoRecordStreamRequest`
|
1212
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeVideoRecordStreamResponse`
|
1213
|
+
def DescribeVideoRecordStream(request)
|
1214
|
+
body = send_request('DescribeVideoRecordStream', request.serialize)
|
1215
|
+
response = JSON.parse(body)
|
1216
|
+
if response['Response'].key?('Error') == false
|
1217
|
+
model = DescribeVideoRecordStreamResponse.new
|
1218
|
+
model.deserialize(response['Response'])
|
1219
|
+
model
|
1220
|
+
else
|
1221
|
+
code = response['Response']['Error']['Code']
|
1222
|
+
message = response['Response']['Error']['Message']
|
1223
|
+
reqid = response['Response']['RequestId']
|
1224
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1225
|
+
end
|
1226
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1227
|
+
raise e
|
1228
|
+
rescue StandardError => e
|
1229
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
# 查询项目空间楼栋数量与建筑面积
|
1233
|
+
|
1234
|
+
# @param request: Request instance for DescribeWorkSpaceBuildingCountAndArea.
|
1235
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::DescribeWorkSpaceBuildingCountAndAreaRequest`
|
1236
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::DescribeWorkSpaceBuildingCountAndAreaResponse`
|
1237
|
+
def DescribeWorkSpaceBuildingCountAndArea(request)
|
1238
|
+
body = send_request('DescribeWorkSpaceBuildingCountAndArea', request.serialize)
|
1239
|
+
response = JSON.parse(body)
|
1240
|
+
if response['Response'].key?('Error') == false
|
1241
|
+
model = DescribeWorkSpaceBuildingCountAndAreaResponse.new
|
90
1242
|
model.deserialize(response['Response'])
|
91
1243
|
model
|
92
1244
|
else
|
@@ -149,6 +1301,102 @@ module TencentCloud
|
|
149
1301
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
1302
|
end
|
151
1303
|
|
1304
|
+
# 批量修改设备名字
|
1305
|
+
|
1306
|
+
# @param request: Request instance for ModifyDeviceName.
|
1307
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::ModifyDeviceNameRequest`
|
1308
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::ModifyDeviceNameResponse`
|
1309
|
+
def ModifyDeviceName(request)
|
1310
|
+
body = send_request('ModifyDeviceName', request.serialize)
|
1311
|
+
response = JSON.parse(body)
|
1312
|
+
if response['Response'].key?('Error') == false
|
1313
|
+
model = ModifyDeviceNameResponse.new
|
1314
|
+
model.deserialize(response['Response'])
|
1315
|
+
model
|
1316
|
+
else
|
1317
|
+
code = response['Response']['Error']['Code']
|
1318
|
+
message = response['Response']['Error']['Message']
|
1319
|
+
reqid = response['Response']['RequestId']
|
1320
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1321
|
+
end
|
1322
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1323
|
+
raise e
|
1324
|
+
rescue StandardError => e
|
1325
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
# 单条消息上报
|
1329
|
+
|
1330
|
+
# @param request: Request instance for ReportAppMessage.
|
1331
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::ReportAppMessageRequest`
|
1332
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::ReportAppMessageResponse`
|
1333
|
+
def ReportAppMessage(request)
|
1334
|
+
body = send_request('ReportAppMessage', request.serialize)
|
1335
|
+
response = JSON.parse(body)
|
1336
|
+
if response['Response'].key?('Error') == false
|
1337
|
+
model = ReportAppMessageResponse.new
|
1338
|
+
model.deserialize(response['Response'])
|
1339
|
+
model
|
1340
|
+
else
|
1341
|
+
code = response['Response']['Error']['Code']
|
1342
|
+
message = response['Response']['Error']['Message']
|
1343
|
+
reqid = response['Response']['RequestId']
|
1344
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1345
|
+
end
|
1346
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1347
|
+
raise e
|
1348
|
+
rescue StandardError => e
|
1349
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
# 断流接口
|
1353
|
+
|
1354
|
+
# @param request: Request instance for StopVideoStreaming.
|
1355
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::StopVideoStreamingRequest`
|
1356
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::StopVideoStreamingResponse`
|
1357
|
+
def StopVideoStreaming(request)
|
1358
|
+
body = send_request('StopVideoStreaming', request.serialize)
|
1359
|
+
response = JSON.parse(body)
|
1360
|
+
if response['Response'].key?('Error') == false
|
1361
|
+
model = StopVideoStreamingResponse.new
|
1362
|
+
model.deserialize(response['Response'])
|
1363
|
+
model
|
1364
|
+
else
|
1365
|
+
code = response['Response']['Error']['Code']
|
1366
|
+
message = response['Response']['Error']['Message']
|
1367
|
+
reqid = response['Response']['RequestId']
|
1368
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1369
|
+
end
|
1370
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1371
|
+
raise e
|
1372
|
+
rescue StandardError => e
|
1373
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
# 修改工作空间园区属性
|
1377
|
+
|
1378
|
+
# @param request: Request instance for UpdateWorkspaceParkAttributes.
|
1379
|
+
# @type request: :class:`Tencentcloud::weilingwith::V20230427::UpdateWorkspaceParkAttributesRequest`
|
1380
|
+
# @rtype: :class:`Tencentcloud::weilingwith::V20230427::UpdateWorkspaceParkAttributesResponse`
|
1381
|
+
def UpdateWorkspaceParkAttributes(request)
|
1382
|
+
body = send_request('UpdateWorkspaceParkAttributes', request.serialize)
|
1383
|
+
response = JSON.parse(body)
|
1384
|
+
if response['Response'].key?('Error') == false
|
1385
|
+
model = UpdateWorkspaceParkAttributesResponse.new
|
1386
|
+
model.deserialize(response['Response'])
|
1387
|
+
model
|
1388
|
+
else
|
1389
|
+
code = response['Response']['Error']['Code']
|
1390
|
+
message = response['Response']['Error']['Message']
|
1391
|
+
reqid = response['Response']['RequestId']
|
1392
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1393
|
+
end
|
1394
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1395
|
+
raise e
|
1396
|
+
rescue StandardError => e
|
1397
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1398
|
+
end
|
1399
|
+
|
152
1400
|
|
153
1401
|
end
|
154
1402
|
end
|