tencentcloud-sdk-python 3.0.1292__py2.py3-none-any.whl → 3.0.1293__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/apm/v20210622/apm_client.py +1 -1
- tencentcloud/apm/v20210622/errorcodes.py +3 -3
- tencentcloud/apm/v20210622/models.py +119 -271
- tencentcloud/bh/v20230418/models.py +15 -0
- tencentcloud/cfs/v20190719/errorcodes.py +6 -3
- tencentcloud/ckafka/v20190819/models.py +45 -0
- tencentcloud/clb/v20180317/models.py +32 -0
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +740 -23
- tencentcloud/cwp/v20180228/models.py +2 -2
- tencentcloud/dnspod/v20210323/models.py +37 -37
- tencentcloud/ess/v20201111/models.py +49 -2
- tencentcloud/essbasic/v20210526/models.py +152 -0
- tencentcloud/mna/v20210119/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +661 -8
- tencentcloud/ocr/v20181119/ocr_client.py +49 -3
- tencentcloud/sqlserver/v20180328/models.py +73 -2
- tencentcloud/tdmq/v20200217/models.py +543 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +69 -0
- tencentcloud/teo/v20220901/models.py +2 -0
- tencentcloud/teo/v20220901/teo_client.py +1 -1
- tencentcloud/thpc/v20211109/models.py +10 -12
- tencentcloud/thpc/v20220401/models.py +30 -36
- tencentcloud/thpc/v20230321/models.py +12 -14
- tencentcloud/trocket/v20230308/models.py +396 -0
- tencentcloud/trocket/v20230308/trocket_client.py +23 -0
- tencentcloud/trtc/v20190722/models.py +17 -0
- tencentcloud/tse/v20201207/models.py +32 -0
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +66 -88
- tencentcloud/waf/v20180125/waf_client.py +3 -1
- {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/RECORD +38 -38
- {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/top_level.txt +0 -0
@@ -199,6 +199,104 @@ class ConsumeGroupItem(AbstractModel):
|
|
199
199
|
|
200
200
|
|
201
201
|
|
202
|
+
class ConsumerClient(AbstractModel):
|
203
|
+
"""消费者客户端
|
204
|
+
|
205
|
+
"""
|
206
|
+
|
207
|
+
def __init__(self):
|
208
|
+
r"""
|
209
|
+
:param _ClientId: 客户端ID
|
210
|
+
:type ClientId: str
|
211
|
+
:param _ClientAddr: 客户端地址
|
212
|
+
:type ClientAddr: str
|
213
|
+
:param _Language: 客户端SDK语言
|
214
|
+
:type Language: str
|
215
|
+
:param _Version: 客户端SDK版本
|
216
|
+
:type Version: str
|
217
|
+
:param _ConsumerLag: 客户端消费堆积
|
218
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
219
|
+
:type ConsumerLag: int
|
220
|
+
"""
|
221
|
+
self._ClientId = None
|
222
|
+
self._ClientAddr = None
|
223
|
+
self._Language = None
|
224
|
+
self._Version = None
|
225
|
+
self._ConsumerLag = None
|
226
|
+
|
227
|
+
@property
|
228
|
+
def ClientId(self):
|
229
|
+
"""客户端ID
|
230
|
+
:rtype: str
|
231
|
+
"""
|
232
|
+
return self._ClientId
|
233
|
+
|
234
|
+
@ClientId.setter
|
235
|
+
def ClientId(self, ClientId):
|
236
|
+
self._ClientId = ClientId
|
237
|
+
|
238
|
+
@property
|
239
|
+
def ClientAddr(self):
|
240
|
+
"""客户端地址
|
241
|
+
:rtype: str
|
242
|
+
"""
|
243
|
+
return self._ClientAddr
|
244
|
+
|
245
|
+
@ClientAddr.setter
|
246
|
+
def ClientAddr(self, ClientAddr):
|
247
|
+
self._ClientAddr = ClientAddr
|
248
|
+
|
249
|
+
@property
|
250
|
+
def Language(self):
|
251
|
+
"""客户端SDK语言
|
252
|
+
:rtype: str
|
253
|
+
"""
|
254
|
+
return self._Language
|
255
|
+
|
256
|
+
@Language.setter
|
257
|
+
def Language(self, Language):
|
258
|
+
self._Language = Language
|
259
|
+
|
260
|
+
@property
|
261
|
+
def Version(self):
|
262
|
+
"""客户端SDK版本
|
263
|
+
:rtype: str
|
264
|
+
"""
|
265
|
+
return self._Version
|
266
|
+
|
267
|
+
@Version.setter
|
268
|
+
def Version(self, Version):
|
269
|
+
self._Version = Version
|
270
|
+
|
271
|
+
@property
|
272
|
+
def ConsumerLag(self):
|
273
|
+
"""客户端消费堆积
|
274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
275
|
+
:rtype: int
|
276
|
+
"""
|
277
|
+
return self._ConsumerLag
|
278
|
+
|
279
|
+
@ConsumerLag.setter
|
280
|
+
def ConsumerLag(self, ConsumerLag):
|
281
|
+
self._ConsumerLag = ConsumerLag
|
282
|
+
|
283
|
+
|
284
|
+
def _deserialize(self, params):
|
285
|
+
self._ClientId = params.get("ClientId")
|
286
|
+
self._ClientAddr = params.get("ClientAddr")
|
287
|
+
self._Language = params.get("Language")
|
288
|
+
self._Version = params.get("Version")
|
289
|
+
self._ConsumerLag = params.get("ConsumerLag")
|
290
|
+
memeber_set = set(params.keys())
|
291
|
+
for name, value in vars(self).items():
|
292
|
+
property_name = name[1:]
|
293
|
+
if property_name in memeber_set:
|
294
|
+
memeber_set.remove(property_name)
|
295
|
+
if len(memeber_set) > 0:
|
296
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
297
|
+
|
298
|
+
|
299
|
+
|
202
300
|
class CreateConsumerGroupRequest(AbstractModel):
|
203
301
|
"""CreateConsumerGroup请求参数结构体
|
204
302
|
|
@@ -2273,6 +2371,191 @@ class DeleteTopicResponse(AbstractModel):
|
|
2273
2371
|
self._RequestId = params.get("RequestId")
|
2274
2372
|
|
2275
2373
|
|
2374
|
+
class DescribeConsumerClientRequest(AbstractModel):
|
2375
|
+
"""DescribeConsumerClient请求参数结构体
|
2376
|
+
|
2377
|
+
"""
|
2378
|
+
|
2379
|
+
def __init__(self):
|
2380
|
+
r"""
|
2381
|
+
:param _InstanceId: 集群ID
|
2382
|
+
:type InstanceId: str
|
2383
|
+
:param _ClientId: 客户端ID
|
2384
|
+
:type ClientId: str
|
2385
|
+
:param _Filters: 查询条件列表
|
2386
|
+
:type Filters: list of Filter
|
2387
|
+
:param _Offset: 查询起始位置
|
2388
|
+
:type Offset: int
|
2389
|
+
:param _Limit: 查询结果限制数量
|
2390
|
+
:type Limit: int
|
2391
|
+
:param _ConsumerGroup: 消费组名称
|
2392
|
+
:type ConsumerGroup: str
|
2393
|
+
"""
|
2394
|
+
self._InstanceId = None
|
2395
|
+
self._ClientId = None
|
2396
|
+
self._Filters = None
|
2397
|
+
self._Offset = None
|
2398
|
+
self._Limit = None
|
2399
|
+
self._ConsumerGroup = None
|
2400
|
+
|
2401
|
+
@property
|
2402
|
+
def InstanceId(self):
|
2403
|
+
"""集群ID
|
2404
|
+
:rtype: str
|
2405
|
+
"""
|
2406
|
+
return self._InstanceId
|
2407
|
+
|
2408
|
+
@InstanceId.setter
|
2409
|
+
def InstanceId(self, InstanceId):
|
2410
|
+
self._InstanceId = InstanceId
|
2411
|
+
|
2412
|
+
@property
|
2413
|
+
def ClientId(self):
|
2414
|
+
"""客户端ID
|
2415
|
+
:rtype: str
|
2416
|
+
"""
|
2417
|
+
return self._ClientId
|
2418
|
+
|
2419
|
+
@ClientId.setter
|
2420
|
+
def ClientId(self, ClientId):
|
2421
|
+
self._ClientId = ClientId
|
2422
|
+
|
2423
|
+
@property
|
2424
|
+
def Filters(self):
|
2425
|
+
"""查询条件列表
|
2426
|
+
:rtype: list of Filter
|
2427
|
+
"""
|
2428
|
+
return self._Filters
|
2429
|
+
|
2430
|
+
@Filters.setter
|
2431
|
+
def Filters(self, Filters):
|
2432
|
+
self._Filters = Filters
|
2433
|
+
|
2434
|
+
@property
|
2435
|
+
def Offset(self):
|
2436
|
+
"""查询起始位置
|
2437
|
+
:rtype: int
|
2438
|
+
"""
|
2439
|
+
return self._Offset
|
2440
|
+
|
2441
|
+
@Offset.setter
|
2442
|
+
def Offset(self, Offset):
|
2443
|
+
self._Offset = Offset
|
2444
|
+
|
2445
|
+
@property
|
2446
|
+
def Limit(self):
|
2447
|
+
"""查询结果限制数量
|
2448
|
+
:rtype: int
|
2449
|
+
"""
|
2450
|
+
return self._Limit
|
2451
|
+
|
2452
|
+
@Limit.setter
|
2453
|
+
def Limit(self, Limit):
|
2454
|
+
self._Limit = Limit
|
2455
|
+
|
2456
|
+
@property
|
2457
|
+
def ConsumerGroup(self):
|
2458
|
+
"""消费组名称
|
2459
|
+
:rtype: str
|
2460
|
+
"""
|
2461
|
+
return self._ConsumerGroup
|
2462
|
+
|
2463
|
+
@ConsumerGroup.setter
|
2464
|
+
def ConsumerGroup(self, ConsumerGroup):
|
2465
|
+
self._ConsumerGroup = ConsumerGroup
|
2466
|
+
|
2467
|
+
|
2468
|
+
def _deserialize(self, params):
|
2469
|
+
self._InstanceId = params.get("InstanceId")
|
2470
|
+
self._ClientId = params.get("ClientId")
|
2471
|
+
if params.get("Filters") is not None:
|
2472
|
+
self._Filters = []
|
2473
|
+
for item in params.get("Filters"):
|
2474
|
+
obj = Filter()
|
2475
|
+
obj._deserialize(item)
|
2476
|
+
self._Filters.append(obj)
|
2477
|
+
self._Offset = params.get("Offset")
|
2478
|
+
self._Limit = params.get("Limit")
|
2479
|
+
self._ConsumerGroup = params.get("ConsumerGroup")
|
2480
|
+
memeber_set = set(params.keys())
|
2481
|
+
for name, value in vars(self).items():
|
2482
|
+
property_name = name[1:]
|
2483
|
+
if property_name in memeber_set:
|
2484
|
+
memeber_set.remove(property_name)
|
2485
|
+
if len(memeber_set) > 0:
|
2486
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2487
|
+
|
2488
|
+
|
2489
|
+
|
2490
|
+
class DescribeConsumerClientResponse(AbstractModel):
|
2491
|
+
"""DescribeConsumerClient返回参数结构体
|
2492
|
+
|
2493
|
+
"""
|
2494
|
+
|
2495
|
+
def __init__(self):
|
2496
|
+
r"""
|
2497
|
+
:param _Client: 客户端详情
|
2498
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2499
|
+
:type Client: :class:`tencentcloud.trocket.v20230308.models.ConsumerClient`
|
2500
|
+
:param _TopicList: 主题消费信息
|
2501
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2502
|
+
:type TopicList: list of TopicConsumeStats
|
2503
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2504
|
+
:type RequestId: str
|
2505
|
+
"""
|
2506
|
+
self._Client = None
|
2507
|
+
self._TopicList = None
|
2508
|
+
self._RequestId = None
|
2509
|
+
|
2510
|
+
@property
|
2511
|
+
def Client(self):
|
2512
|
+
"""客户端详情
|
2513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2514
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.ConsumerClient`
|
2515
|
+
"""
|
2516
|
+
return self._Client
|
2517
|
+
|
2518
|
+
@Client.setter
|
2519
|
+
def Client(self, Client):
|
2520
|
+
self._Client = Client
|
2521
|
+
|
2522
|
+
@property
|
2523
|
+
def TopicList(self):
|
2524
|
+
"""主题消费信息
|
2525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2526
|
+
:rtype: list of TopicConsumeStats
|
2527
|
+
"""
|
2528
|
+
return self._TopicList
|
2529
|
+
|
2530
|
+
@TopicList.setter
|
2531
|
+
def TopicList(self, TopicList):
|
2532
|
+
self._TopicList = TopicList
|
2533
|
+
|
2534
|
+
@property
|
2535
|
+
def RequestId(self):
|
2536
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2537
|
+
:rtype: str
|
2538
|
+
"""
|
2539
|
+
return self._RequestId
|
2540
|
+
|
2541
|
+
@RequestId.setter
|
2542
|
+
def RequestId(self, RequestId):
|
2543
|
+
self._RequestId = RequestId
|
2544
|
+
|
2545
|
+
|
2546
|
+
def _deserialize(self, params):
|
2547
|
+
if params.get("Client") is not None:
|
2548
|
+
self._Client = ConsumerClient()
|
2549
|
+
self._Client._deserialize(params.get("Client"))
|
2550
|
+
if params.get("TopicList") is not None:
|
2551
|
+
self._TopicList = []
|
2552
|
+
for item in params.get("TopicList"):
|
2553
|
+
obj = TopicConsumeStats()
|
2554
|
+
obj._deserialize(item)
|
2555
|
+
self._TopicList.append(obj)
|
2556
|
+
self._RequestId = params.get("RequestId")
|
2557
|
+
|
2558
|
+
|
2276
2559
|
class DescribeConsumerGroupListRequest(AbstractModel):
|
2277
2560
|
"""DescribeConsumerGroupList请求参数结构体
|
2278
2561
|
|
@@ -12318,6 +12601,119 @@ class TagFilter(AbstractModel):
|
|
12318
12601
|
|
12319
12602
|
|
12320
12603
|
|
12604
|
+
class TopicConsumeStats(AbstractModel):
|
12605
|
+
"""主题消费进度
|
12606
|
+
|
12607
|
+
"""
|
12608
|
+
|
12609
|
+
def __init__(self):
|
12610
|
+
r"""
|
12611
|
+
:param _Topic: 主题名称
|
12612
|
+
:type Topic: str
|
12613
|
+
:param _TopicType: 主题类型
|
12614
|
+
:type TopicType: str
|
12615
|
+
:param _QueueNum: 单节点主题队列数量
|
12616
|
+
:type QueueNum: int
|
12617
|
+
:param _ConsumerLag: 消费堆积
|
12618
|
+
:type ConsumerLag: int
|
12619
|
+
:param _SubString: 订阅规则
|
12620
|
+
:type SubString: str
|
12621
|
+
:param _LastUpdateTime: 最后消费进度更新时间
|
12622
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12623
|
+
:type LastUpdateTime: int
|
12624
|
+
"""
|
12625
|
+
self._Topic = None
|
12626
|
+
self._TopicType = None
|
12627
|
+
self._QueueNum = None
|
12628
|
+
self._ConsumerLag = None
|
12629
|
+
self._SubString = None
|
12630
|
+
self._LastUpdateTime = None
|
12631
|
+
|
12632
|
+
@property
|
12633
|
+
def Topic(self):
|
12634
|
+
"""主题名称
|
12635
|
+
:rtype: str
|
12636
|
+
"""
|
12637
|
+
return self._Topic
|
12638
|
+
|
12639
|
+
@Topic.setter
|
12640
|
+
def Topic(self, Topic):
|
12641
|
+
self._Topic = Topic
|
12642
|
+
|
12643
|
+
@property
|
12644
|
+
def TopicType(self):
|
12645
|
+
"""主题类型
|
12646
|
+
:rtype: str
|
12647
|
+
"""
|
12648
|
+
return self._TopicType
|
12649
|
+
|
12650
|
+
@TopicType.setter
|
12651
|
+
def TopicType(self, TopicType):
|
12652
|
+
self._TopicType = TopicType
|
12653
|
+
|
12654
|
+
@property
|
12655
|
+
def QueueNum(self):
|
12656
|
+
"""单节点主题队列数量
|
12657
|
+
:rtype: int
|
12658
|
+
"""
|
12659
|
+
return self._QueueNum
|
12660
|
+
|
12661
|
+
@QueueNum.setter
|
12662
|
+
def QueueNum(self, QueueNum):
|
12663
|
+
self._QueueNum = QueueNum
|
12664
|
+
|
12665
|
+
@property
|
12666
|
+
def ConsumerLag(self):
|
12667
|
+
"""消费堆积
|
12668
|
+
:rtype: int
|
12669
|
+
"""
|
12670
|
+
return self._ConsumerLag
|
12671
|
+
|
12672
|
+
@ConsumerLag.setter
|
12673
|
+
def ConsumerLag(self, ConsumerLag):
|
12674
|
+
self._ConsumerLag = ConsumerLag
|
12675
|
+
|
12676
|
+
@property
|
12677
|
+
def SubString(self):
|
12678
|
+
"""订阅规则
|
12679
|
+
:rtype: str
|
12680
|
+
"""
|
12681
|
+
return self._SubString
|
12682
|
+
|
12683
|
+
@SubString.setter
|
12684
|
+
def SubString(self, SubString):
|
12685
|
+
self._SubString = SubString
|
12686
|
+
|
12687
|
+
@property
|
12688
|
+
def LastUpdateTime(self):
|
12689
|
+
"""最后消费进度更新时间
|
12690
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12691
|
+
:rtype: int
|
12692
|
+
"""
|
12693
|
+
return self._LastUpdateTime
|
12694
|
+
|
12695
|
+
@LastUpdateTime.setter
|
12696
|
+
def LastUpdateTime(self, LastUpdateTime):
|
12697
|
+
self._LastUpdateTime = LastUpdateTime
|
12698
|
+
|
12699
|
+
|
12700
|
+
def _deserialize(self, params):
|
12701
|
+
self._Topic = params.get("Topic")
|
12702
|
+
self._TopicType = params.get("TopicType")
|
12703
|
+
self._QueueNum = params.get("QueueNum")
|
12704
|
+
self._ConsumerLag = params.get("ConsumerLag")
|
12705
|
+
self._SubString = params.get("SubString")
|
12706
|
+
self._LastUpdateTime = params.get("LastUpdateTime")
|
12707
|
+
memeber_set = set(params.keys())
|
12708
|
+
for name, value in vars(self).items():
|
12709
|
+
property_name = name[1:]
|
12710
|
+
if property_name in memeber_set:
|
12711
|
+
memeber_set.remove(property_name)
|
12712
|
+
if len(memeber_set) > 0:
|
12713
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12714
|
+
|
12715
|
+
|
12716
|
+
|
12321
12717
|
class TopicItem(AbstractModel):
|
12322
12718
|
"""列表上的主题信息
|
12323
12719
|
|
@@ -394,6 +394,29 @@ class TrocketClient(AbstractClient):
|
|
394
394
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
395
395
|
|
396
396
|
|
397
|
+
def DescribeConsumerClient(self, request):
|
398
|
+
"""查询消费者客户端详情
|
399
|
+
|
400
|
+
:param request: Request instance for DescribeConsumerClient.
|
401
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeConsumerClientRequest`
|
402
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeConsumerClientResponse`
|
403
|
+
|
404
|
+
"""
|
405
|
+
try:
|
406
|
+
params = request._serialize()
|
407
|
+
headers = request.headers
|
408
|
+
body = self.call("DescribeConsumerClient", params, headers=headers)
|
409
|
+
response = json.loads(body)
|
410
|
+
model = models.DescribeConsumerClientResponse()
|
411
|
+
model._deserialize(response["Response"])
|
412
|
+
return model
|
413
|
+
except Exception as e:
|
414
|
+
if isinstance(e, TencentCloudSDKException):
|
415
|
+
raise
|
416
|
+
else:
|
417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
418
|
+
|
419
|
+
|
397
420
|
def DescribeConsumerGroup(self, request):
|
398
421
|
"""查询消费组详情
|
399
422
|
|
@@ -197,6 +197,8 @@ class AgentConfig(AbstractModel):
|
|
197
197
|
- 0表示当服务端语音识别检测出的完整一句话后,自动触发一轮新的对话。
|
198
198
|
- 1表示客户端在收到字幕消息后,自行决定是否手动发送聊天信令触发一轮新的对话。
|
199
199
|
:type TurnDetectionMode: int
|
200
|
+
:param _FilterOneWord: 是否过滤掉用户只说了一个字的句子,true表示过滤,false表示不过滤,默认值为true
|
201
|
+
:type FilterOneWord: bool
|
200
202
|
"""
|
201
203
|
self._UserId = None
|
202
204
|
self._UserSig = None
|
@@ -206,6 +208,7 @@ class AgentConfig(AbstractModel):
|
|
206
208
|
self._InterruptMode = None
|
207
209
|
self._InterruptSpeechDuration = None
|
208
210
|
self._TurnDetectionMode = None
|
211
|
+
self._FilterOneWord = None
|
209
212
|
|
210
213
|
@property
|
211
214
|
def UserId(self):
|
@@ -297,6 +300,17 @@ class AgentConfig(AbstractModel):
|
|
297
300
|
def TurnDetectionMode(self, TurnDetectionMode):
|
298
301
|
self._TurnDetectionMode = TurnDetectionMode
|
299
302
|
|
303
|
+
@property
|
304
|
+
def FilterOneWord(self):
|
305
|
+
"""是否过滤掉用户只说了一个字的句子,true表示过滤,false表示不过滤,默认值为true
|
306
|
+
:rtype: bool
|
307
|
+
"""
|
308
|
+
return self._FilterOneWord
|
309
|
+
|
310
|
+
@FilterOneWord.setter
|
311
|
+
def FilterOneWord(self, FilterOneWord):
|
312
|
+
self._FilterOneWord = FilterOneWord
|
313
|
+
|
300
314
|
|
301
315
|
def _deserialize(self, params):
|
302
316
|
self._UserId = params.get("UserId")
|
@@ -307,6 +321,7 @@ class AgentConfig(AbstractModel):
|
|
307
321
|
self._InterruptMode = params.get("InterruptMode")
|
308
322
|
self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
|
309
323
|
self._TurnDetectionMode = params.get("TurnDetectionMode")
|
324
|
+
self._FilterOneWord = params.get("FilterOneWord")
|
310
325
|
memeber_set = set(params.keys())
|
311
326
|
for name, value in vars(self).items():
|
312
327
|
property_name = name[1:]
|
@@ -14062,6 +14077,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
14062
14077
|
:param _TargetUserId: TranscriptionMode为1时必填,机器人只会拉该userid的流,忽略房间里其他用户。
|
14063
14078
|
:type TargetUserId: str
|
14064
14079
|
:param _TargetUserIdList: 机器人订阅的用户列表
|
14080
|
+
仅 TranscriptionMode 为 1或者 TranscriptionMode 为无限上麦模式支持传入多个用户列表
|
14065
14081
|
:type TargetUserIdList: list of str
|
14066
14082
|
"""
|
14067
14083
|
self._UserId = None
|
@@ -14162,6 +14178,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
14162
14178
|
@property
|
14163
14179
|
def TargetUserIdList(self):
|
14164
14180
|
"""机器人订阅的用户列表
|
14181
|
+
仅 TranscriptionMode 为 1或者 TranscriptionMode 为无限上麦模式支持传入多个用户列表
|
14165
14182
|
:rtype: list of str
|
14166
14183
|
"""
|
14167
14184
|
return self._TargetUserIdList
|
@@ -20149,6 +20149,9 @@ class GovernanceNamespace(AbstractModel):
|
|
20149
20149
|
:param _ServiceExportTo: 该命名空间下的服务对哪些命名空间可见
|
20150
20150
|
注意:此字段可能返回 null,表示取不到有效值。
|
20151
20151
|
:type ServiceExportTo: list of str
|
20152
|
+
:param _SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
20153
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20154
|
+
:type SyncToGlobalRegistry: bool
|
20152
20155
|
"""
|
20153
20156
|
self._Name = None
|
20154
20157
|
self._Comment = None
|
@@ -20164,6 +20167,7 @@ class GovernanceNamespace(AbstractModel):
|
|
20164
20167
|
self._RemoveUserIds = None
|
20165
20168
|
self._RemoveGroupIds = None
|
20166
20169
|
self._ServiceExportTo = None
|
20170
|
+
self._SyncToGlobalRegistry = None
|
20167
20171
|
|
20168
20172
|
@property
|
20169
20173
|
def Name(self):
|
@@ -20333,6 +20337,18 @@ class GovernanceNamespace(AbstractModel):
|
|
20333
20337
|
def ServiceExportTo(self, ServiceExportTo):
|
20334
20338
|
self._ServiceExportTo = ServiceExportTo
|
20335
20339
|
|
20340
|
+
@property
|
20341
|
+
def SyncToGlobalRegistry(self):
|
20342
|
+
"""是否开启同步到全局注册中心
|
20343
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20344
|
+
:rtype: bool
|
20345
|
+
"""
|
20346
|
+
return self._SyncToGlobalRegistry
|
20347
|
+
|
20348
|
+
@SyncToGlobalRegistry.setter
|
20349
|
+
def SyncToGlobalRegistry(self, SyncToGlobalRegistry):
|
20350
|
+
self._SyncToGlobalRegistry = SyncToGlobalRegistry
|
20351
|
+
|
20336
20352
|
|
20337
20353
|
def _deserialize(self, params):
|
20338
20354
|
self._Name = params.get("Name")
|
@@ -20349,6 +20365,7 @@ class GovernanceNamespace(AbstractModel):
|
|
20349
20365
|
self._RemoveUserIds = params.get("RemoveUserIds")
|
20350
20366
|
self._RemoveGroupIds = params.get("RemoveGroupIds")
|
20351
20367
|
self._ServiceExportTo = params.get("ServiceExportTo")
|
20368
|
+
self._SyncToGlobalRegistry = params.get("SyncToGlobalRegistry")
|
20352
20369
|
memeber_set = set(params.keys())
|
20353
20370
|
for name, value in vars(self).items():
|
20354
20371
|
property_name = name[1:]
|
@@ -20550,6 +20567,8 @@ class GovernanceService(AbstractModel):
|
|
20550
20567
|
:param _Revision: 该服务信息摘要签名
|
20551
20568
|
注意:此字段可能返回 null,表示取不到有效值。
|
20552
20569
|
:type Revision: str
|
20570
|
+
:param _SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
20571
|
+
:type SyncToGlobalRegistry: bool
|
20553
20572
|
"""
|
20554
20573
|
self._Name = None
|
20555
20574
|
self._Namespace = None
|
@@ -20569,6 +20588,7 @@ class GovernanceService(AbstractModel):
|
|
20569
20588
|
self._RemoveGroupIds = None
|
20570
20589
|
self._ExportTo = None
|
20571
20590
|
self._Revision = None
|
20591
|
+
self._SyncToGlobalRegistry = None
|
20572
20592
|
|
20573
20593
|
@property
|
20574
20594
|
def Name(self):
|
@@ -20784,6 +20804,17 @@ class GovernanceService(AbstractModel):
|
|
20784
20804
|
def Revision(self, Revision):
|
20785
20805
|
self._Revision = Revision
|
20786
20806
|
|
20807
|
+
@property
|
20808
|
+
def SyncToGlobalRegistry(self):
|
20809
|
+
"""是否开启同步到全局注册中心
|
20810
|
+
:rtype: bool
|
20811
|
+
"""
|
20812
|
+
return self._SyncToGlobalRegistry
|
20813
|
+
|
20814
|
+
@SyncToGlobalRegistry.setter
|
20815
|
+
def SyncToGlobalRegistry(self, SyncToGlobalRegistry):
|
20816
|
+
self._SyncToGlobalRegistry = SyncToGlobalRegistry
|
20817
|
+
|
20787
20818
|
|
20788
20819
|
def _deserialize(self, params):
|
20789
20820
|
self._Name = params.get("Name")
|
@@ -20809,6 +20840,7 @@ class GovernanceService(AbstractModel):
|
|
20809
20840
|
self._RemoveGroupIds = params.get("RemoveGroupIds")
|
20810
20841
|
self._ExportTo = params.get("ExportTo")
|
20811
20842
|
self._Revision = params.get("Revision")
|
20843
|
+
self._SyncToGlobalRegistry = params.get("SyncToGlobalRegistry")
|
20812
20844
|
memeber_set = set(params.keys())
|
20813
20845
|
for name, value in vars(self).items():
|
20814
20846
|
property_name = name[1:]
|
@@ -494,6 +494,9 @@ INVALIDPARAMETERVALUE_VPNCONNCIDRCONFLICT = 'InvalidParameterValue.VpnConnCidrCo
|
|
494
494
|
# VPN通道探测ip冲突。
|
495
495
|
INVALIDPARAMETERVALUE_VPNCONNHEALTHCHECKIPCONFLICT = 'InvalidParameterValue.VpnConnHealthCheckIpConflict'
|
496
496
|
|
497
|
+
# SPD规则源目IP有重叠。
|
498
|
+
INVALIDPARAMETERVALUE_VPNCONNSPDCIDRCONFLICT = 'InvalidParameterValue.VpnConnSpdCidrConflict'
|
499
|
+
|
497
500
|
# 参数Zone的值与CDC所在Zone冲突。
|
498
501
|
INVALIDPARAMETERVALUE_ZONECONFLICT = 'InvalidParameterValue.ZoneConflict'
|
499
502
|
|
@@ -800,6 +803,9 @@ UNSUPPORTEDOPERATION_CCNORDINARYACCOUNTREFUSEATTACH = 'UnsupportedOperation.CcnO
|
|
800
803
|
# 指定的路由表不存在。
|
801
804
|
UNSUPPORTEDOPERATION_CCNROUTETABLENOTEXIST = 'UnsupportedOperation.CcnRouteTableNotExist'
|
802
805
|
|
806
|
+
# 流量计量类型云联网暂不支持跨境
|
807
|
+
UNSUPPORTEDOPERATION_CCNTRAFFICMETERINGUNABLECROSSBORDER = 'UnsupportedOperation.CcnTrafficMeteringUnableCrossBorder'
|
808
|
+
|
803
809
|
# CDC子网不支持创建非本地网关类型的路由。
|
804
810
|
UNSUPPORTEDOPERATION_CDCSUBNETNOTSUPPORTUNLOCALGATEWAY = 'UnsupportedOperation.CdcSubnetNotSupportUnLocalGateway'
|
805
811
|
|