tencentcloud-sdk-python 3.0.1357__py2.py3-none-any.whl → 3.0.1359__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bh/v20230418/bh_client.py +115 -0
- tencentcloud/bh/v20230418/errorcodes.py +15 -0
- tencentcloud/bh/v20230418/models.py +854 -28
- tencentcloud/bpaas/v20181217/models.py +0 -54
- tencentcloud/ccc/v20200210/ccc_client.py +69 -0
- tencentcloud/ccc/v20200210/models.py +559 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +15 -0
- tencentcloud/chc/v20230418/chc_client.py +23 -0
- tencentcloud/chc/v20230418/models.py +185 -2
- tencentcloud/clb/v20180317/models.py +17 -0
- tencentcloud/cls/v20201016/cls_client.py +23 -0
- tencentcloud/cls/v20201016/models.py +79 -0
- tencentcloud/cwp/v20180228/cwp_client.py +1 -1
- tencentcloud/cwp/v20180228/models.py +4 -4
- tencentcloud/es/v20180416/models.py +57 -6
- tencentcloud/es/v20250101/__init__.py +0 -0
- tencentcloud/es/v20250101/errorcodes.py +45 -0
- tencentcloud/es/v20250101/es_client.py +228 -0
- tencentcloud/es/v20250101/models.py +2168 -0
- tencentcloud/ess/v20201111/ess_client.py +34 -0
- tencentcloud/ess/v20201111/models.py +137 -2
- tencentcloud/essbasic/v20210526/essbasic_client.py +33 -0
- tencentcloud/essbasic/v20210526/models.py +120 -0
- tencentcloud/hunyuan/v20230901/errorcodes.py +27 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +46 -0
- tencentcloud/hunyuan/v20230901/models.py +345 -0
- tencentcloud/lcic/v20220817/models.py +15 -0
- tencentcloud/live/v20180801/models.py +2 -14
- tencentcloud/lke/v20231130/models.py +232 -2
- tencentcloud/lkeap/v20240522/lkeap_client.py +3 -3
- tencentcloud/monitor/v20180724/errorcodes.py +3 -0
- tencentcloud/monitor/v20180724/models.py +34 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/models.py +38 -20
- tencentcloud/ocr/v20181119/models.py +2 -2
- tencentcloud/sts/v20180813/errorcodes.py +9 -0
- tencentcloud/sts/v20180813/models.py +171 -0
- tencentcloud/sts/v20180813/sts_client.py +23 -0
- tencentcloud/tcr/v20190924/models.py +10 -6
- tencentcloud/tdmq/v20200217/models.py +68 -0
- tencentcloud/tione/v20211111/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +384 -0
- tencentcloud/tione/v20211111/tione_client.py +23 -0
- tencentcloud/trtc/v20190722/models.py +4 -10
- tencentcloud/trtc/v20190722/trtc_client.py +4 -0
- tencentcloud/tse/v20201207/models.py +0 -298
- tencentcloud/tsf/v20180326/models.py +6 -110
- tencentcloud/tsf/v20180326/tsf_client.py +3 -1
- tencentcloud/waf/v20180125/models.py +473 -0
- tencentcloud/waf/v20180125/waf_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1359.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1359.dist-info}/RECORD +57 -53
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1359.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1359.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1359.dist-info}/top_level.txt +0 -0
@@ -294,6 +294,257 @@ class AICallExtractResultInfo(AbstractModel):
|
|
294
294
|
|
295
295
|
|
296
296
|
|
297
|
+
class AILatencyDetail(AbstractModel):
|
298
|
+
"""AI时延明细
|
299
|
+
|
300
|
+
"""
|
301
|
+
|
302
|
+
def __init__(self):
|
303
|
+
r"""
|
304
|
+
:param _RoundId: 对话ID
|
305
|
+
:type RoundId: str
|
306
|
+
:param _ASRLatency: asr时延(毫秒)
|
307
|
+
:type ASRLatency: int
|
308
|
+
:param _TTSLatency: tts时延(毫秒)
|
309
|
+
:type TTSLatency: int
|
310
|
+
:param _LLMLatency: llm时延(毫秒)
|
311
|
+
:type LLMLatency: int
|
312
|
+
:param _ETELatency: 端到端时延(毫秒)
|
313
|
+
:type ETELatency: int
|
314
|
+
"""
|
315
|
+
self._RoundId = None
|
316
|
+
self._ASRLatency = None
|
317
|
+
self._TTSLatency = None
|
318
|
+
self._LLMLatency = None
|
319
|
+
self._ETELatency = None
|
320
|
+
|
321
|
+
@property
|
322
|
+
def RoundId(self):
|
323
|
+
"""对话ID
|
324
|
+
:rtype: str
|
325
|
+
"""
|
326
|
+
return self._RoundId
|
327
|
+
|
328
|
+
@RoundId.setter
|
329
|
+
def RoundId(self, RoundId):
|
330
|
+
self._RoundId = RoundId
|
331
|
+
|
332
|
+
@property
|
333
|
+
def ASRLatency(self):
|
334
|
+
"""asr时延(毫秒)
|
335
|
+
:rtype: int
|
336
|
+
"""
|
337
|
+
return self._ASRLatency
|
338
|
+
|
339
|
+
@ASRLatency.setter
|
340
|
+
def ASRLatency(self, ASRLatency):
|
341
|
+
self._ASRLatency = ASRLatency
|
342
|
+
|
343
|
+
@property
|
344
|
+
def TTSLatency(self):
|
345
|
+
"""tts时延(毫秒)
|
346
|
+
:rtype: int
|
347
|
+
"""
|
348
|
+
return self._TTSLatency
|
349
|
+
|
350
|
+
@TTSLatency.setter
|
351
|
+
def TTSLatency(self, TTSLatency):
|
352
|
+
self._TTSLatency = TTSLatency
|
353
|
+
|
354
|
+
@property
|
355
|
+
def LLMLatency(self):
|
356
|
+
"""llm时延(毫秒)
|
357
|
+
:rtype: int
|
358
|
+
"""
|
359
|
+
return self._LLMLatency
|
360
|
+
|
361
|
+
@LLMLatency.setter
|
362
|
+
def LLMLatency(self, LLMLatency):
|
363
|
+
self._LLMLatency = LLMLatency
|
364
|
+
|
365
|
+
@property
|
366
|
+
def ETELatency(self):
|
367
|
+
"""端到端时延(毫秒)
|
368
|
+
:rtype: int
|
369
|
+
"""
|
370
|
+
return self._ETELatency
|
371
|
+
|
372
|
+
@ETELatency.setter
|
373
|
+
def ETELatency(self, ETELatency):
|
374
|
+
self._ETELatency = ETELatency
|
375
|
+
|
376
|
+
|
377
|
+
def _deserialize(self, params):
|
378
|
+
self._RoundId = params.get("RoundId")
|
379
|
+
self._ASRLatency = params.get("ASRLatency")
|
380
|
+
self._TTSLatency = params.get("TTSLatency")
|
381
|
+
self._LLMLatency = params.get("LLMLatency")
|
382
|
+
self._ETELatency = params.get("ETELatency")
|
383
|
+
memeber_set = set(params.keys())
|
384
|
+
for name, value in vars(self).items():
|
385
|
+
property_name = name[1:]
|
386
|
+
if property_name in memeber_set:
|
387
|
+
memeber_set.remove(property_name)
|
388
|
+
if len(memeber_set) > 0:
|
389
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
class AILatencyStatistics(AbstractModel):
|
394
|
+
"""AI时延统计
|
395
|
+
|
396
|
+
"""
|
397
|
+
|
398
|
+
def __init__(self):
|
399
|
+
r"""
|
400
|
+
:param _ASRLatency: asr时延统计
|
401
|
+
:type ASRLatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
402
|
+
:param _TTSLatency: tts时延统计
|
403
|
+
:type TTSLatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
404
|
+
:param _LLMLatency: llm时延统计
|
405
|
+
:type LLMLatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
406
|
+
:param _ETELatency: 端到端时延统计
|
407
|
+
:type ETELatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
408
|
+
"""
|
409
|
+
self._ASRLatency = None
|
410
|
+
self._TTSLatency = None
|
411
|
+
self._LLMLatency = None
|
412
|
+
self._ETELatency = None
|
413
|
+
|
414
|
+
@property
|
415
|
+
def ASRLatency(self):
|
416
|
+
"""asr时延统计
|
417
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
418
|
+
"""
|
419
|
+
return self._ASRLatency
|
420
|
+
|
421
|
+
@ASRLatency.setter
|
422
|
+
def ASRLatency(self, ASRLatency):
|
423
|
+
self._ASRLatency = ASRLatency
|
424
|
+
|
425
|
+
@property
|
426
|
+
def TTSLatency(self):
|
427
|
+
"""tts时延统计
|
428
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
429
|
+
"""
|
430
|
+
return self._TTSLatency
|
431
|
+
|
432
|
+
@TTSLatency.setter
|
433
|
+
def TTSLatency(self, TTSLatency):
|
434
|
+
self._TTSLatency = TTSLatency
|
435
|
+
|
436
|
+
@property
|
437
|
+
def LLMLatency(self):
|
438
|
+
"""llm时延统计
|
439
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
440
|
+
"""
|
441
|
+
return self._LLMLatency
|
442
|
+
|
443
|
+
@LLMLatency.setter
|
444
|
+
def LLMLatency(self, LLMLatency):
|
445
|
+
self._LLMLatency = LLMLatency
|
446
|
+
|
447
|
+
@property
|
448
|
+
def ETELatency(self):
|
449
|
+
"""端到端时延统计
|
450
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
451
|
+
"""
|
452
|
+
return self._ETELatency
|
453
|
+
|
454
|
+
@ETELatency.setter
|
455
|
+
def ETELatency(self, ETELatency):
|
456
|
+
self._ETELatency = ETELatency
|
457
|
+
|
458
|
+
|
459
|
+
def _deserialize(self, params):
|
460
|
+
if params.get("ASRLatency") is not None:
|
461
|
+
self._ASRLatency = AILatencyStatisticsInfo()
|
462
|
+
self._ASRLatency._deserialize(params.get("ASRLatency"))
|
463
|
+
if params.get("TTSLatency") is not None:
|
464
|
+
self._TTSLatency = AILatencyStatisticsInfo()
|
465
|
+
self._TTSLatency._deserialize(params.get("TTSLatency"))
|
466
|
+
if params.get("LLMLatency") is not None:
|
467
|
+
self._LLMLatency = AILatencyStatisticsInfo()
|
468
|
+
self._LLMLatency._deserialize(params.get("LLMLatency"))
|
469
|
+
if params.get("ETELatency") is not None:
|
470
|
+
self._ETELatency = AILatencyStatisticsInfo()
|
471
|
+
self._ETELatency._deserialize(params.get("ETELatency"))
|
472
|
+
memeber_set = set(params.keys())
|
473
|
+
for name, value in vars(self).items():
|
474
|
+
property_name = name[1:]
|
475
|
+
if property_name in memeber_set:
|
476
|
+
memeber_set.remove(property_name)
|
477
|
+
if len(memeber_set) > 0:
|
478
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
479
|
+
|
480
|
+
|
481
|
+
|
482
|
+
class AILatencyStatisticsInfo(AbstractModel):
|
483
|
+
"""AI时延统计
|
484
|
+
|
485
|
+
"""
|
486
|
+
|
487
|
+
def __init__(self):
|
488
|
+
r"""
|
489
|
+
:param _MinLatency: 最小值
|
490
|
+
:type MinLatency: int
|
491
|
+
:param _MiddleLatency: 中位数
|
492
|
+
:type MiddleLatency: int
|
493
|
+
:param _P90Latency: p90
|
494
|
+
:type P90Latency: int
|
495
|
+
"""
|
496
|
+
self._MinLatency = None
|
497
|
+
self._MiddleLatency = None
|
498
|
+
self._P90Latency = None
|
499
|
+
|
500
|
+
@property
|
501
|
+
def MinLatency(self):
|
502
|
+
"""最小值
|
503
|
+
:rtype: int
|
504
|
+
"""
|
505
|
+
return self._MinLatency
|
506
|
+
|
507
|
+
@MinLatency.setter
|
508
|
+
def MinLatency(self, MinLatency):
|
509
|
+
self._MinLatency = MinLatency
|
510
|
+
|
511
|
+
@property
|
512
|
+
def MiddleLatency(self):
|
513
|
+
"""中位数
|
514
|
+
:rtype: int
|
515
|
+
"""
|
516
|
+
return self._MiddleLatency
|
517
|
+
|
518
|
+
@MiddleLatency.setter
|
519
|
+
def MiddleLatency(self, MiddleLatency):
|
520
|
+
self._MiddleLatency = MiddleLatency
|
521
|
+
|
522
|
+
@property
|
523
|
+
def P90Latency(self):
|
524
|
+
"""p90
|
525
|
+
:rtype: int
|
526
|
+
"""
|
527
|
+
return self._P90Latency
|
528
|
+
|
529
|
+
@P90Latency.setter
|
530
|
+
def P90Latency(self, P90Latency):
|
531
|
+
self._P90Latency = P90Latency
|
532
|
+
|
533
|
+
|
534
|
+
def _deserialize(self, params):
|
535
|
+
self._MinLatency = params.get("MinLatency")
|
536
|
+
self._MiddleLatency = params.get("MiddleLatency")
|
537
|
+
self._P90Latency = params.get("P90Latency")
|
538
|
+
memeber_set = set(params.keys())
|
539
|
+
for name, value in vars(self).items():
|
540
|
+
property_name = name[1:]
|
541
|
+
if property_name in memeber_set:
|
542
|
+
memeber_set.remove(property_name)
|
543
|
+
if len(memeber_set) > 0:
|
544
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
545
|
+
|
546
|
+
|
547
|
+
|
297
548
|
class AITransferItem(AbstractModel):
|
298
549
|
"""AI转人工配置项
|
299
550
|
|
@@ -5960,6 +6211,156 @@ class DescribeAICallExtractResultResponse(AbstractModel):
|
|
5960
6211
|
self._RequestId = params.get("RequestId")
|
5961
6212
|
|
5962
6213
|
|
6214
|
+
class DescribeAILatencyRequest(AbstractModel):
|
6215
|
+
"""DescribeAILatency请求参数结构体
|
6216
|
+
|
6217
|
+
"""
|
6218
|
+
|
6219
|
+
def __init__(self):
|
6220
|
+
r"""
|
6221
|
+
:param _SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
6222
|
+
:type SdkAppId: int
|
6223
|
+
:param _SessionId: 会话 ID
|
6224
|
+
:type SessionId: str
|
6225
|
+
:param _StartTime: 查找起始时间
|
6226
|
+
:type StartTime: int
|
6227
|
+
:param _EndTime: 1737350008
|
6228
|
+
:type EndTime: int
|
6229
|
+
"""
|
6230
|
+
self._SdkAppId = None
|
6231
|
+
self._SessionId = None
|
6232
|
+
self._StartTime = None
|
6233
|
+
self._EndTime = None
|
6234
|
+
|
6235
|
+
@property
|
6236
|
+
def SdkAppId(self):
|
6237
|
+
"""应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
6238
|
+
:rtype: int
|
6239
|
+
"""
|
6240
|
+
return self._SdkAppId
|
6241
|
+
|
6242
|
+
@SdkAppId.setter
|
6243
|
+
def SdkAppId(self, SdkAppId):
|
6244
|
+
self._SdkAppId = SdkAppId
|
6245
|
+
|
6246
|
+
@property
|
6247
|
+
def SessionId(self):
|
6248
|
+
"""会话 ID
|
6249
|
+
:rtype: str
|
6250
|
+
"""
|
6251
|
+
return self._SessionId
|
6252
|
+
|
6253
|
+
@SessionId.setter
|
6254
|
+
def SessionId(self, SessionId):
|
6255
|
+
self._SessionId = SessionId
|
6256
|
+
|
6257
|
+
@property
|
6258
|
+
def StartTime(self):
|
6259
|
+
"""查找起始时间
|
6260
|
+
:rtype: int
|
6261
|
+
"""
|
6262
|
+
return self._StartTime
|
6263
|
+
|
6264
|
+
@StartTime.setter
|
6265
|
+
def StartTime(self, StartTime):
|
6266
|
+
self._StartTime = StartTime
|
6267
|
+
|
6268
|
+
@property
|
6269
|
+
def EndTime(self):
|
6270
|
+
"""1737350008
|
6271
|
+
:rtype: int
|
6272
|
+
"""
|
6273
|
+
return self._EndTime
|
6274
|
+
|
6275
|
+
@EndTime.setter
|
6276
|
+
def EndTime(self, EndTime):
|
6277
|
+
self._EndTime = EndTime
|
6278
|
+
|
6279
|
+
|
6280
|
+
def _deserialize(self, params):
|
6281
|
+
self._SdkAppId = params.get("SdkAppId")
|
6282
|
+
self._SessionId = params.get("SessionId")
|
6283
|
+
self._StartTime = params.get("StartTime")
|
6284
|
+
self._EndTime = params.get("EndTime")
|
6285
|
+
memeber_set = set(params.keys())
|
6286
|
+
for name, value in vars(self).items():
|
6287
|
+
property_name = name[1:]
|
6288
|
+
if property_name in memeber_set:
|
6289
|
+
memeber_set.remove(property_name)
|
6290
|
+
if len(memeber_set) > 0:
|
6291
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6292
|
+
|
6293
|
+
|
6294
|
+
|
6295
|
+
class DescribeAILatencyResponse(AbstractModel):
|
6296
|
+
"""DescribeAILatency返回参数结构体
|
6297
|
+
|
6298
|
+
"""
|
6299
|
+
|
6300
|
+
def __init__(self):
|
6301
|
+
r"""
|
6302
|
+
:param _AILatencyDetail: 时延明细数据
|
6303
|
+
-1表示无对应数据
|
6304
|
+
:type AILatencyDetail: list of AILatencyDetail
|
6305
|
+
:param _AILatencyStatistics: 时延统计数据
|
6306
|
+
-1表示无对应数据
|
6307
|
+
:type AILatencyStatistics: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatistics`
|
6308
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6309
|
+
:type RequestId: str
|
6310
|
+
"""
|
6311
|
+
self._AILatencyDetail = None
|
6312
|
+
self._AILatencyStatistics = None
|
6313
|
+
self._RequestId = None
|
6314
|
+
|
6315
|
+
@property
|
6316
|
+
def AILatencyDetail(self):
|
6317
|
+
"""时延明细数据
|
6318
|
+
-1表示无对应数据
|
6319
|
+
:rtype: list of AILatencyDetail
|
6320
|
+
"""
|
6321
|
+
return self._AILatencyDetail
|
6322
|
+
|
6323
|
+
@AILatencyDetail.setter
|
6324
|
+
def AILatencyDetail(self, AILatencyDetail):
|
6325
|
+
self._AILatencyDetail = AILatencyDetail
|
6326
|
+
|
6327
|
+
@property
|
6328
|
+
def AILatencyStatistics(self):
|
6329
|
+
"""时延统计数据
|
6330
|
+
-1表示无对应数据
|
6331
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatistics`
|
6332
|
+
"""
|
6333
|
+
return self._AILatencyStatistics
|
6334
|
+
|
6335
|
+
@AILatencyStatistics.setter
|
6336
|
+
def AILatencyStatistics(self, AILatencyStatistics):
|
6337
|
+
self._AILatencyStatistics = AILatencyStatistics
|
6338
|
+
|
6339
|
+
@property
|
6340
|
+
def RequestId(self):
|
6341
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6342
|
+
:rtype: str
|
6343
|
+
"""
|
6344
|
+
return self._RequestId
|
6345
|
+
|
6346
|
+
@RequestId.setter
|
6347
|
+
def RequestId(self, RequestId):
|
6348
|
+
self._RequestId = RequestId
|
6349
|
+
|
6350
|
+
|
6351
|
+
def _deserialize(self, params):
|
6352
|
+
if params.get("AILatencyDetail") is not None:
|
6353
|
+
self._AILatencyDetail = []
|
6354
|
+
for item in params.get("AILatencyDetail"):
|
6355
|
+
obj = AILatencyDetail()
|
6356
|
+
obj._deserialize(item)
|
6357
|
+
self._AILatencyDetail.append(obj)
|
6358
|
+
if params.get("AILatencyStatistics") is not None:
|
6359
|
+
self._AILatencyStatistics = AILatencyStatistics()
|
6360
|
+
self._AILatencyStatistics._deserialize(params.get("AILatencyStatistics"))
|
6361
|
+
self._RequestId = params.get("RequestId")
|
6362
|
+
|
6363
|
+
|
5963
6364
|
class DescribeActiveCarrierPrivilegeNumberRequest(AbstractModel):
|
5964
6365
|
"""DescribeActiveCarrierPrivilegeNumber请求参数结构体
|
5965
6366
|
|
@@ -11046,6 +11447,85 @@ class Filter(AbstractModel):
|
|
11046
11447
|
|
11047
11448
|
|
11048
11449
|
|
11450
|
+
class ForceMemberOfflineRequest(AbstractModel):
|
11451
|
+
"""ForceMemberOffline请求参数结构体
|
11452
|
+
|
11453
|
+
"""
|
11454
|
+
|
11455
|
+
def __init__(self):
|
11456
|
+
r"""
|
11457
|
+
:param _SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
11458
|
+
:type SdkAppId: int
|
11459
|
+
:param _UserId: 客服ID
|
11460
|
+
:type UserId: str
|
11461
|
+
"""
|
11462
|
+
self._SdkAppId = None
|
11463
|
+
self._UserId = None
|
11464
|
+
|
11465
|
+
@property
|
11466
|
+
def SdkAppId(self):
|
11467
|
+
"""应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
11468
|
+
:rtype: int
|
11469
|
+
"""
|
11470
|
+
return self._SdkAppId
|
11471
|
+
|
11472
|
+
@SdkAppId.setter
|
11473
|
+
def SdkAppId(self, SdkAppId):
|
11474
|
+
self._SdkAppId = SdkAppId
|
11475
|
+
|
11476
|
+
@property
|
11477
|
+
def UserId(self):
|
11478
|
+
"""客服ID
|
11479
|
+
:rtype: str
|
11480
|
+
"""
|
11481
|
+
return self._UserId
|
11482
|
+
|
11483
|
+
@UserId.setter
|
11484
|
+
def UserId(self, UserId):
|
11485
|
+
self._UserId = UserId
|
11486
|
+
|
11487
|
+
|
11488
|
+
def _deserialize(self, params):
|
11489
|
+
self._SdkAppId = params.get("SdkAppId")
|
11490
|
+
self._UserId = params.get("UserId")
|
11491
|
+
memeber_set = set(params.keys())
|
11492
|
+
for name, value in vars(self).items():
|
11493
|
+
property_name = name[1:]
|
11494
|
+
if property_name in memeber_set:
|
11495
|
+
memeber_set.remove(property_name)
|
11496
|
+
if len(memeber_set) > 0:
|
11497
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
11498
|
+
|
11499
|
+
|
11500
|
+
|
11501
|
+
class ForceMemberOfflineResponse(AbstractModel):
|
11502
|
+
"""ForceMemberOffline返回参数结构体
|
11503
|
+
|
11504
|
+
"""
|
11505
|
+
|
11506
|
+
def __init__(self):
|
11507
|
+
r"""
|
11508
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11509
|
+
:type RequestId: str
|
11510
|
+
"""
|
11511
|
+
self._RequestId = None
|
11512
|
+
|
11513
|
+
@property
|
11514
|
+
def RequestId(self):
|
11515
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11516
|
+
:rtype: str
|
11517
|
+
"""
|
11518
|
+
return self._RequestId
|
11519
|
+
|
11520
|
+
@RequestId.setter
|
11521
|
+
def RequestId(self, RequestId):
|
11522
|
+
self._RequestId = RequestId
|
11523
|
+
|
11524
|
+
|
11525
|
+
def _deserialize(self, params):
|
11526
|
+
self._RequestId = params.get("RequestId")
|
11527
|
+
|
11528
|
+
|
11049
11529
|
class HangUpCallRequest(AbstractModel):
|
11050
11530
|
"""HangUpCall请求参数结构体
|
11051
11531
|
|
@@ -13271,6 +13751,85 @@ class ResetExtensionPasswordResponse(AbstractModel):
|
|
13271
13751
|
self._RequestId = params.get("RequestId")
|
13272
13752
|
|
13273
13753
|
|
13754
|
+
class RestoreMemberOnlineRequest(AbstractModel):
|
13755
|
+
"""RestoreMemberOnline请求参数结构体
|
13756
|
+
|
13757
|
+
"""
|
13758
|
+
|
13759
|
+
def __init__(self):
|
13760
|
+
r"""
|
13761
|
+
:param _SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
13762
|
+
:type SdkAppId: int
|
13763
|
+
:param _UserId: 客服ID
|
13764
|
+
:type UserId: str
|
13765
|
+
"""
|
13766
|
+
self._SdkAppId = None
|
13767
|
+
self._UserId = None
|
13768
|
+
|
13769
|
+
@property
|
13770
|
+
def SdkAppId(self):
|
13771
|
+
"""应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
13772
|
+
:rtype: int
|
13773
|
+
"""
|
13774
|
+
return self._SdkAppId
|
13775
|
+
|
13776
|
+
@SdkAppId.setter
|
13777
|
+
def SdkAppId(self, SdkAppId):
|
13778
|
+
self._SdkAppId = SdkAppId
|
13779
|
+
|
13780
|
+
@property
|
13781
|
+
def UserId(self):
|
13782
|
+
"""客服ID
|
13783
|
+
:rtype: str
|
13784
|
+
"""
|
13785
|
+
return self._UserId
|
13786
|
+
|
13787
|
+
@UserId.setter
|
13788
|
+
def UserId(self, UserId):
|
13789
|
+
self._UserId = UserId
|
13790
|
+
|
13791
|
+
|
13792
|
+
def _deserialize(self, params):
|
13793
|
+
self._SdkAppId = params.get("SdkAppId")
|
13794
|
+
self._UserId = params.get("UserId")
|
13795
|
+
memeber_set = set(params.keys())
|
13796
|
+
for name, value in vars(self).items():
|
13797
|
+
property_name = name[1:]
|
13798
|
+
if property_name in memeber_set:
|
13799
|
+
memeber_set.remove(property_name)
|
13800
|
+
if len(memeber_set) > 0:
|
13801
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13802
|
+
|
13803
|
+
|
13804
|
+
|
13805
|
+
class RestoreMemberOnlineResponse(AbstractModel):
|
13806
|
+
"""RestoreMemberOnline返回参数结构体
|
13807
|
+
|
13808
|
+
"""
|
13809
|
+
|
13810
|
+
def __init__(self):
|
13811
|
+
r"""
|
13812
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13813
|
+
:type RequestId: str
|
13814
|
+
"""
|
13815
|
+
self._RequestId = None
|
13816
|
+
|
13817
|
+
@property
|
13818
|
+
def RequestId(self):
|
13819
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13820
|
+
:rtype: str
|
13821
|
+
"""
|
13822
|
+
return self._RequestId
|
13823
|
+
|
13824
|
+
@RequestId.setter
|
13825
|
+
def RequestId(self, RequestId):
|
13826
|
+
self._RequestId = RequestId
|
13827
|
+
|
13828
|
+
|
13829
|
+
def _deserialize(self, params):
|
13830
|
+
self._RequestId = params.get("RequestId")
|
13831
|
+
|
13832
|
+
|
13274
13833
|
class ResumePredictiveDialingCampaignRequest(AbstractModel):
|
13275
13834
|
"""ResumePredictiveDialingCampaign请求参数结构体
|
13276
13835
|
|
@@ -326,7 +326,7 @@ class CdbClient(AbstractClient):
|
|
326
326
|
|
327
327
|
|
328
328
|
def CreateAuditLogFile(self, request):
|
329
|
-
"""
|
329
|
+
"""本接口(CreateAuditLogFile)用于创建云数据库实例的审计日志文件。
|
330
330
|
|
331
331
|
:param request: Request instance for CreateAuditLogFile.
|
332
332
|
:type request: :class:`tencentcloud.cdb.v20170320.models.CreateAuditLogFileRequest`
|
@@ -6333,6 +6333,8 @@ class CreateAuditLogFileRequest(AbstractModel):
|
|
6333
6333
|
:type Filter: :class:`tencentcloud.cdb.v20170320.models.AuditLogFilter`
|
6334
6334
|
:param _LogFilter: 过滤条件。可按设置的过滤条件过滤日志。
|
6335
6335
|
:type LogFilter: list of InstanceAuditLogFilters
|
6336
|
+
:param _ColumnFilter: 下载筛选列
|
6337
|
+
:type ColumnFilter: list of str
|
6336
6338
|
"""
|
6337
6339
|
self._InstanceId = None
|
6338
6340
|
self._StartTime = None
|
@@ -6341,6 +6343,7 @@ class CreateAuditLogFileRequest(AbstractModel):
|
|
6341
6343
|
self._OrderBy = None
|
6342
6344
|
self._Filter = None
|
6343
6345
|
self._LogFilter = None
|
6346
|
+
self._ColumnFilter = None
|
6344
6347
|
|
6345
6348
|
@property
|
6346
6349
|
def InstanceId(self):
|
@@ -6422,6 +6425,17 @@ class CreateAuditLogFileRequest(AbstractModel):
|
|
6422
6425
|
def LogFilter(self, LogFilter):
|
6423
6426
|
self._LogFilter = LogFilter
|
6424
6427
|
|
6428
|
+
@property
|
6429
|
+
def ColumnFilter(self):
|
6430
|
+
"""下载筛选列
|
6431
|
+
:rtype: list of str
|
6432
|
+
"""
|
6433
|
+
return self._ColumnFilter
|
6434
|
+
|
6435
|
+
@ColumnFilter.setter
|
6436
|
+
def ColumnFilter(self, ColumnFilter):
|
6437
|
+
self._ColumnFilter = ColumnFilter
|
6438
|
+
|
6425
6439
|
|
6426
6440
|
def _deserialize(self, params):
|
6427
6441
|
self._InstanceId = params.get("InstanceId")
|
@@ -6438,6 +6452,7 @@ class CreateAuditLogFileRequest(AbstractModel):
|
|
6438
6452
|
obj = InstanceAuditLogFilters()
|
6439
6453
|
obj._deserialize(item)
|
6440
6454
|
self._LogFilter.append(obj)
|
6455
|
+
self._ColumnFilter = params.get("ColumnFilter")
|
6441
6456
|
memeber_set = set(params.keys())
|
6442
6457
|
for name, value in vars(self).items():
|
6443
6458
|
property_name = name[1:]
|
@@ -325,6 +325,29 @@ class ChcClient(AbstractClient):
|
|
325
325
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
326
326
|
|
327
327
|
|
328
|
+
def CreateSpeciallyQuitWorkOrder(self, request):
|
329
|
+
"""创建临时设备退出工单
|
330
|
+
|
331
|
+
:param request: Request instance for CreateSpeciallyQuitWorkOrder.
|
332
|
+
:type request: :class:`tencentcloud.chc.v20230418.models.CreateSpeciallyQuitWorkOrderRequest`
|
333
|
+
:rtype: :class:`tencentcloud.chc.v20230418.models.CreateSpeciallyQuitWorkOrderResponse`
|
334
|
+
|
335
|
+
"""
|
336
|
+
try:
|
337
|
+
params = request._serialize()
|
338
|
+
headers = request.headers
|
339
|
+
body = self.call("CreateSpeciallyQuitWorkOrder", params, headers=headers)
|
340
|
+
response = json.loads(body)
|
341
|
+
model = models.CreateSpeciallyQuitWorkOrderResponse()
|
342
|
+
model._deserialize(response["Response"])
|
343
|
+
return model
|
344
|
+
except Exception as e:
|
345
|
+
if isinstance(e, TencentCloudSDKException):
|
346
|
+
raise
|
347
|
+
else:
|
348
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
349
|
+
|
350
|
+
|
328
351
|
def DescribeAvailableModelList(self, request):
|
329
352
|
"""获取机房内可用的型号列表
|
330
353
|
|