tencentcloud-sdk-python 3.0.1255__py2.py3-none-any.whl → 3.0.1257__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/ccc/v20200210/models.py +12 -0
- tencentcloud/cdb/v20170320/models.py +12 -0
- tencentcloud/cdwdoris/v20211228/models.py +13 -0
- tencentcloud/cfw/v20190904/cfw_client.py +3 -1
- tencentcloud/cfw/v20190904/models.py +8 -2
- tencentcloud/ckafka/v20190819/models.py +1 -1
- tencentcloud/clb/v20180317/models.py +25 -1
- tencentcloud/cwp/v20180228/cwp_client.py +6 -2
- tencentcloud/cwp/v20180228/models.py +65 -28
- tencentcloud/dlc/v20210125/models.py +13 -0
- tencentcloud/emr/v20190103/models.py +12 -0
- tencentcloud/ess/v20201111/models.py +28 -3
- tencentcloud/essbasic/v20210526/models.py +26 -3
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +67 -39
- tencentcloud/iss/v20230517/models.py +25 -0
- tencentcloud/mqtt/v20240516/models.py +2 -2
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/organization/v20210331/errorcodes.py +1 -1
- tencentcloud/partners/v20180321/models.py +71 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/pts/v20210728/models.py +13 -0
- tencentcloud/redis/v20180412/models.py +3 -1
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/ssl/v20191205/models.py +43 -2
- tencentcloud/tcss/v20201101/models.py +343 -0
- tencentcloud/tdmq/v20200217/models.py +442 -55
- tencentcloud/tdmq/v20200217/tdmq_client.py +46 -0
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +6 -6
- tencentcloud/trocket/v20230308/models.py +25 -1
- tencentcloud/trocket/v20230308/trocket_client.py +2 -2
- tencentcloud/tsi/v20210325/models.py +135 -0
- tencentcloud/vod/v20180717/models.py +878 -7
- tencentcloud/vpc/v20170312/models.py +3 -4
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/top_level.txt +0 -0
@@ -2699,11 +2699,17 @@ class ChannelCreateEmbedWebUrlRequest(AbstractModel):
|
|
2699
2699
|
:type EmbedType: str
|
2700
2700
|
:param _BusinessId: WEB嵌入的业务资源ID
|
2701
2701
|
|
2702
|
+
当EmbedType取值
|
2702
2703
|
<ul>
|
2703
|
-
<li
|
2704
|
-
<li
|
2705
|
-
<li
|
2704
|
+
<li>为MODIFY_TEMPLATE,PREVIEW_TEMPLATE必填,取值为模板id</li>
|
2705
|
+
<li>为CREATE_TEMPLATE,非必填,取值为资源id。*资源Id获取可使用接口[上传文件](https://qian.tencent.com/developers/partnerApis/files/UploadFiles)*</li>
|
2706
|
+
<li>为PREVIEW_FLOW,PREVIEW_FLOW_DETAIL必填,取值为合同id</li>
|
2707
|
+
<li>为PREVIEW_SEAL_DETAIL必填,取值为印章id</li>
|
2706
2708
|
</ul>
|
2709
|
+
|
2710
|
+
|
2711
|
+
注意:
|
2712
|
+
1. CREATE_TEMPLATE中的BusinessId仅支持PDF文件类型, 如果您的文件不是PDF, 请使用接口[创建文件转换任务](https://qian.tencent.com/developers/partnerApis/files/ChannelCreateConvertTaskApi) 和[查询转换任务状态](https://qian.tencent.com/developers/partnerApis/files/ChannelGetTaskResultApi) 来进行转换成PDF资源。
|
2707
2713
|
:type BusinessId: str
|
2708
2714
|
:param _HiddenComponents: 是否隐藏控件,只有预览模板时生效
|
2709
2715
|
:type HiddenComponents: bool
|
@@ -14412,9 +14418,17 @@ class EmbedUrlOption(AbstractModel):
|
|
14412
14418
|
<ul><li> <b>true</b> :允许在模板预览页展示控件</li>
|
14413
14419
|
<li> <b>false</b> :(默认)不允许在模板预览页展示控件</li></ul>
|
14414
14420
|
:type ShowTemplateComponent: bool
|
14421
|
+
:param _SkipUploadFile: 跳过上传文件,默认为false(展示上传文件页)
|
14422
|
+
- false: 展示上传文件页
|
14423
|
+
- true: 不展示上传文件页
|
14424
|
+
|
14425
|
+
|
14426
|
+
注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**,
|
14427
|
+
:type SkipUploadFile: str
|
14415
14428
|
"""
|
14416
14429
|
self._ShowFlowDetailComponent = None
|
14417
14430
|
self._ShowTemplateComponent = None
|
14431
|
+
self._SkipUploadFile = None
|
14418
14432
|
|
14419
14433
|
@property
|
14420
14434
|
def ShowFlowDetailComponent(self):
|
@@ -14432,10 +14446,19 @@ class EmbedUrlOption(AbstractModel):
|
|
14432
14446
|
def ShowTemplateComponent(self, ShowTemplateComponent):
|
14433
14447
|
self._ShowTemplateComponent = ShowTemplateComponent
|
14434
14448
|
|
14449
|
+
@property
|
14450
|
+
def SkipUploadFile(self):
|
14451
|
+
return self._SkipUploadFile
|
14452
|
+
|
14453
|
+
@SkipUploadFile.setter
|
14454
|
+
def SkipUploadFile(self, SkipUploadFile):
|
14455
|
+
self._SkipUploadFile = SkipUploadFile
|
14456
|
+
|
14435
14457
|
|
14436
14458
|
def _deserialize(self, params):
|
14437
14459
|
self._ShowFlowDetailComponent = params.get("ShowFlowDetailComponent")
|
14438
14460
|
self._ShowTemplateComponent = params.get("ShowTemplateComponent")
|
14461
|
+
self._SkipUploadFile = params.get("SkipUploadFile")
|
14439
14462
|
memeber_set = set(params.keys())
|
14440
14463
|
for name, value in vars(self).items():
|
14441
14464
|
property_name = name[1:]
|
@@ -2169,7 +2169,7 @@ class GaapClient(AbstractClient):
|
|
2169
2169
|
|
2170
2170
|
|
2171
2171
|
def ModifyProxyGroupAttribute(self, request):
|
2172
|
-
"""本接口(ModifyProxyGroupAttribute
|
2172
|
+
"""本接口(ModifyProxyGroupAttribute)用于修改通道组属性,目前仅支持修改通道组名称与项目ID。
|
2173
2173
|
|
2174
2174
|
:param request: Request instance for ModifyProxyGroupAttribute.
|
2175
2175
|
:type request: :class:`tencentcloud.gaap.v20180529.models.ModifyProxyGroupAttributeRequest`
|
@@ -1548,9 +1548,9 @@ class CloseSecurityPolicyRequest(AbstractModel):
|
|
1548
1548
|
|
1549
1549
|
def __init__(self):
|
1550
1550
|
r"""
|
1551
|
-
:param _ProxyId: 通道ID
|
1551
|
+
:param _ProxyId: 通道ID。操作通道组时无需填此参数。
|
1552
1552
|
:type ProxyId: str
|
1553
|
-
:param _PolicyId: 安全组策略ID
|
1553
|
+
:param _PolicyId: 安全组策略ID。操作通道组时须填此参数。
|
1554
1554
|
:type PolicyId: str
|
1555
1555
|
"""
|
1556
1556
|
self._ProxyId = None
|
@@ -2904,7 +2904,7 @@ class CreateProxyGroupRequest(AbstractModel):
|
|
2904
2904
|
:type ProjectId: int
|
2905
2905
|
:param _GroupName: 通道组别名
|
2906
2906
|
:type GroupName: str
|
2907
|
-
:param _RealServerRegion: 源站地域,参考接口
|
2907
|
+
:param _RealServerRegion: 源站地域,参考接口 [https://cloud.tencent.com/document/api/608/36964] 返回参数RegionDetail中的RegionId
|
2908
2908
|
:type RealServerRegion: str
|
2909
2909
|
:param _TagSet: 标签列表
|
2910
2910
|
:type TagSet: list of TagPair
|
@@ -4572,7 +4572,7 @@ class DeleteListenersRequest(AbstractModel):
|
|
4572
4572
|
:type ListenerIds: list of str
|
4573
4573
|
:param _Force: 已绑定源站的监听器是否允许强制删除,1:允许, 0:不允许
|
4574
4574
|
:type Force: int
|
4575
|
-
:param _GroupId: 通道组ID,该参数和
|
4575
|
+
:param _GroupId: 通道组ID,该参数和ProxyId必须设置一个,但不能同时设置。
|
4576
4576
|
:type GroupId: str
|
4577
4577
|
:param _ProxyId: 通道ID,该参数和GroupId必须设置一个,但不能同时设置。
|
4578
4578
|
:type ProxyId: str
|
@@ -5583,6 +5583,33 @@ class DescribeDestRegionsRequest(AbstractModel):
|
|
5583
5583
|
|
5584
5584
|
"""
|
5585
5585
|
|
5586
|
+
def __init__(self):
|
5587
|
+
r"""
|
5588
|
+
:param _QualityType: 通道质量:0表示金牌,1表示银牌。默认不传该参数,表示金牌。本参数确定查询指定通道质量的源站区域
|
5589
|
+
:type QualityType: int
|
5590
|
+
"""
|
5591
|
+
self._QualityType = None
|
5592
|
+
|
5593
|
+
@property
|
5594
|
+
def QualityType(self):
|
5595
|
+
return self._QualityType
|
5596
|
+
|
5597
|
+
@QualityType.setter
|
5598
|
+
def QualityType(self, QualityType):
|
5599
|
+
self._QualityType = QualityType
|
5600
|
+
|
5601
|
+
|
5602
|
+
def _deserialize(self, params):
|
5603
|
+
self._QualityType = params.get("QualityType")
|
5604
|
+
memeber_set = set(params.keys())
|
5605
|
+
for name, value in vars(self).items():
|
5606
|
+
property_name = name[1:]
|
5607
|
+
if property_name in memeber_set:
|
5608
|
+
memeber_set.remove(property_name)
|
5609
|
+
if len(memeber_set) > 0:
|
5610
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5611
|
+
|
5612
|
+
|
5586
5613
|
|
5587
5614
|
class DescribeDestRegionsResponse(AbstractModel):
|
5588
5615
|
"""DescribeDestRegions返回参数结构体
|
@@ -6357,9 +6384,11 @@ class DescribeHTTPListenersRequest(AbstractModel):
|
|
6357
6384
|
|
6358
6385
|
def __init__(self):
|
6359
6386
|
r"""
|
6360
|
-
:param _ProxyId: 通道ID
|
6387
|
+
:param _ProxyId: 通道ID。ListenerId、ProxyId、GroupId须至少填写一个,且ProxyId与GroupId至多只能填写其中一个。
|
6361
6388
|
:type ProxyId: str
|
6362
|
-
:param
|
6389
|
+
:param _GroupId: 通道组ID。ListenerId、ProxyId、GroupId须至少填写一个,且ProxyId与GroupId至多只能填写其中一个。
|
6390
|
+
:type GroupId: str
|
6391
|
+
:param _ListenerId: 过滤条件,按照监听器ID进行精确查询。ListenerId、ProxyId、GroupId须至少填写一个,且ProxyId与GroupId至多只能填写其中一个。
|
6363
6392
|
:type ListenerId: str
|
6364
6393
|
:param _ListenerName: 过滤条件,按照监听器名称进行精确查询
|
6365
6394
|
:type ListenerName: str
|
@@ -6371,17 +6400,15 @@ class DescribeHTTPListenersRequest(AbstractModel):
|
|
6371
6400
|
:type Limit: int
|
6372
6401
|
:param _SearchValue: 过滤条件,支持按照端口或监听器名称进行模糊查询,该参数不能与ListenerName和Port同时使用
|
6373
6402
|
:type SearchValue: str
|
6374
|
-
:param _GroupId: 通道组ID
|
6375
|
-
:type GroupId: str
|
6376
6403
|
"""
|
6377
6404
|
self._ProxyId = None
|
6405
|
+
self._GroupId = None
|
6378
6406
|
self._ListenerId = None
|
6379
6407
|
self._ListenerName = None
|
6380
6408
|
self._Port = None
|
6381
6409
|
self._Offset = None
|
6382
6410
|
self._Limit = None
|
6383
6411
|
self._SearchValue = None
|
6384
|
-
self._GroupId = None
|
6385
6412
|
|
6386
6413
|
@property
|
6387
6414
|
def ProxyId(self):
|
@@ -6391,6 +6418,14 @@ class DescribeHTTPListenersRequest(AbstractModel):
|
|
6391
6418
|
def ProxyId(self, ProxyId):
|
6392
6419
|
self._ProxyId = ProxyId
|
6393
6420
|
|
6421
|
+
@property
|
6422
|
+
def GroupId(self):
|
6423
|
+
return self._GroupId
|
6424
|
+
|
6425
|
+
@GroupId.setter
|
6426
|
+
def GroupId(self, GroupId):
|
6427
|
+
self._GroupId = GroupId
|
6428
|
+
|
6394
6429
|
@property
|
6395
6430
|
def ListenerId(self):
|
6396
6431
|
return self._ListenerId
|
@@ -6439,24 +6474,16 @@ class DescribeHTTPListenersRequest(AbstractModel):
|
|
6439
6474
|
def SearchValue(self, SearchValue):
|
6440
6475
|
self._SearchValue = SearchValue
|
6441
6476
|
|
6442
|
-
@property
|
6443
|
-
def GroupId(self):
|
6444
|
-
return self._GroupId
|
6445
|
-
|
6446
|
-
@GroupId.setter
|
6447
|
-
def GroupId(self, GroupId):
|
6448
|
-
self._GroupId = GroupId
|
6449
|
-
|
6450
6477
|
|
6451
6478
|
def _deserialize(self, params):
|
6452
6479
|
self._ProxyId = params.get("ProxyId")
|
6480
|
+
self._GroupId = params.get("GroupId")
|
6453
6481
|
self._ListenerId = params.get("ListenerId")
|
6454
6482
|
self._ListenerName = params.get("ListenerName")
|
6455
6483
|
self._Port = params.get("Port")
|
6456
6484
|
self._Offset = params.get("Offset")
|
6457
6485
|
self._Limit = params.get("Limit")
|
6458
6486
|
self._SearchValue = params.get("SearchValue")
|
6459
|
-
self._GroupId = params.get("GroupId")
|
6460
6487
|
memeber_set = set(params.keys())
|
6461
6488
|
for name, value in vars(self).items():
|
6462
6489
|
property_name = name[1:]
|
@@ -6528,9 +6555,11 @@ class DescribeHTTPSListenersRequest(AbstractModel):
|
|
6528
6555
|
|
6529
6556
|
def __init__(self):
|
6530
6557
|
r"""
|
6531
|
-
:param _ProxyId:
|
6558
|
+
:param _ProxyId: 通道ID。ListenerId、ProxyId、GroupId须至少填写一个,且ProxyId与GroupId至多只能填写其中一个。
|
6532
6559
|
:type ProxyId: str
|
6533
|
-
:param
|
6560
|
+
:param _GroupId: 通道组ID。ListenerId、ProxyId、GroupId须至少填写一个,且ProxyId与GroupId至多只能填写其中一个。
|
6561
|
+
:type GroupId: str
|
6562
|
+
:param _ListenerId: 过滤条件,根据监听器ID进行精确查询。ListenerId、ProxyId、GroupId须至少填写一个,且ProxyId与GroupId至多只能填写其中一个。
|
6534
6563
|
:type ListenerId: str
|
6535
6564
|
:param _ListenerName: 过滤条件,根据监听器名称进行精确查询。
|
6536
6565
|
:type ListenerName: str
|
@@ -6542,8 +6571,6 @@ class DescribeHTTPSListenersRequest(AbstractModel):
|
|
6542
6571
|
:type Limit: int
|
6543
6572
|
:param _SearchValue: 过滤条件,支持按照端口或监听器名称进行模糊查询
|
6544
6573
|
:type SearchValue: str
|
6545
|
-
:param _GroupId: 过滤条件,通道组ID
|
6546
|
-
:type GroupId: str
|
6547
6574
|
:param _Http3Supported: 支持Http3的开关,其中:
|
6548
6575
|
0,表示不需要支持Http3接入;
|
6549
6576
|
1,表示需要支持Http3接入。
|
@@ -6552,13 +6579,13 @@ class DescribeHTTPSListenersRequest(AbstractModel):
|
|
6552
6579
|
:type Http3Supported: int
|
6553
6580
|
"""
|
6554
6581
|
self._ProxyId = None
|
6582
|
+
self._GroupId = None
|
6555
6583
|
self._ListenerId = None
|
6556
6584
|
self._ListenerName = None
|
6557
6585
|
self._Port = None
|
6558
6586
|
self._Offset = None
|
6559
6587
|
self._Limit = None
|
6560
6588
|
self._SearchValue = None
|
6561
|
-
self._GroupId = None
|
6562
6589
|
self._Http3Supported = None
|
6563
6590
|
|
6564
6591
|
@property
|
@@ -6569,6 +6596,14 @@ class DescribeHTTPSListenersRequest(AbstractModel):
|
|
6569
6596
|
def ProxyId(self, ProxyId):
|
6570
6597
|
self._ProxyId = ProxyId
|
6571
6598
|
|
6599
|
+
@property
|
6600
|
+
def GroupId(self):
|
6601
|
+
return self._GroupId
|
6602
|
+
|
6603
|
+
@GroupId.setter
|
6604
|
+
def GroupId(self, GroupId):
|
6605
|
+
self._GroupId = GroupId
|
6606
|
+
|
6572
6607
|
@property
|
6573
6608
|
def ListenerId(self):
|
6574
6609
|
return self._ListenerId
|
@@ -6617,14 +6652,6 @@ class DescribeHTTPSListenersRequest(AbstractModel):
|
|
6617
6652
|
def SearchValue(self, SearchValue):
|
6618
6653
|
self._SearchValue = SearchValue
|
6619
6654
|
|
6620
|
-
@property
|
6621
|
-
def GroupId(self):
|
6622
|
-
return self._GroupId
|
6623
|
-
|
6624
|
-
@GroupId.setter
|
6625
|
-
def GroupId(self, GroupId):
|
6626
|
-
self._GroupId = GroupId
|
6627
|
-
|
6628
6655
|
@property
|
6629
6656
|
def Http3Supported(self):
|
6630
6657
|
return self._Http3Supported
|
@@ -6636,13 +6663,13 @@ class DescribeHTTPSListenersRequest(AbstractModel):
|
|
6636
6663
|
|
6637
6664
|
def _deserialize(self, params):
|
6638
6665
|
self._ProxyId = params.get("ProxyId")
|
6666
|
+
self._GroupId = params.get("GroupId")
|
6639
6667
|
self._ListenerId = params.get("ListenerId")
|
6640
6668
|
self._ListenerName = params.get("ListenerName")
|
6641
6669
|
self._Port = params.get("Port")
|
6642
6670
|
self._Offset = params.get("Offset")
|
6643
6671
|
self._Limit = params.get("Limit")
|
6644
6672
|
self._SearchValue = params.get("SearchValue")
|
6645
|
-
self._GroupId = params.get("GroupId")
|
6646
6673
|
self._Http3Supported = params.get("Http3Supported")
|
6647
6674
|
memeber_set = set(params.keys())
|
6648
6675
|
for name, value in vars(self).items():
|
@@ -11351,7 +11378,7 @@ class InquiryPriceCreateProxyRequest(AbstractModel):
|
|
11351
11378
|
:type Bandwidth: int
|
11352
11379
|
:param _DestRegion: (旧参数,请切换到RealServerRegion)源站区域名称。
|
11353
11380
|
:type DestRegion: str
|
11354
|
-
:param _Concurrency:
|
11381
|
+
:param _Concurrency: (此参数为旧参数,请填写新参数Concurrent,二者必须填写一个)通道并发量上限,表示同时在线的连接数,单位:万。
|
11355
11382
|
:type Concurrency: int
|
11356
11383
|
:param _RealServerRegion: (新参数)源站区域名称。
|
11357
11384
|
:type RealServerRegion: str
|
@@ -12556,7 +12583,7 @@ class ModifyProxiesAttributeRequest(AbstractModel):
|
|
12556
12583
|
r"""
|
12557
12584
|
:param _InstanceIds: (旧参数,请切换到ProxyIds)一个或多个待操作的通道ID。
|
12558
12585
|
:type InstanceIds: list of str
|
12559
|
-
:param _ProxyName: 通道名称。可任意命名,但不得超过
|
12586
|
+
:param _ProxyName: 通道名称。可任意命名,但不得超过32个字符。
|
12560
12587
|
:type ProxyName: str
|
12561
12588
|
:param _ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
12562
12589
|
更多详细信息请参阅:如何保证幂等性。
|
@@ -12867,7 +12894,7 @@ class ModifyProxyGroupAttributeRequest(AbstractModel):
|
|
12867
12894
|
r"""
|
12868
12895
|
:param _GroupId: 需要修改的通道组ID。
|
12869
12896
|
:type GroupId: str
|
12870
|
-
:param _GroupName: 修改后的通道组名称:不超过30
|
12897
|
+
:param _GroupName: 修改后的通道组名称:不超过30个字符,否则修改失败。
|
12871
12898
|
:type GroupName: str
|
12872
12899
|
:param _ProjectId: 项目ID
|
12873
12900
|
:type ProjectId: int
|
@@ -13343,7 +13370,7 @@ class ModifyTCPListenerAttributeRequest(AbstractModel):
|
|
13343
13370
|
:type ProxyId: str
|
13344
13371
|
:param _ListenerName: 监听器名称
|
13345
13372
|
:type ListenerName: str
|
13346
|
-
:param _Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt
|
13373
|
+
:param _Scheduler: 监听器源站访问策略,其中:rr表示轮询;wrr表示加权轮询;lc表示最小连接数;lrtt表示最小时延。注意:lrtt需要开通白名单;RealServerType 为 DOMAIN 不支持wrr 和 lrtt。
|
13347
13374
|
:type Scheduler: str
|
13348
13375
|
:param _DelayLoop: 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
13349
13376
|
:type DelayLoop: int
|
@@ -14283,7 +14310,7 @@ class ProxyGroupDetail(AbstractModel):
|
|
14283
14310
|
注意:此字段可能返回 null,表示取不到有效值。
|
14284
14311
|
注意:此字段可能返回 null,表示取不到有效值。
|
14285
14312
|
:type FeatureBitmap: int
|
14286
|
-
:param _IsSupportTLSChoice: 是否支持设置
|
14313
|
+
:param _IsSupportTLSChoice: 是否支持设置TLS设置
|
14287
14314
|
0表示不支持;
|
14288
14315
|
1表示支持。
|
14289
14316
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -14544,6 +14571,7 @@ RUNNING表示运行中;
|
|
14544
14571
|
CREATING表示创建中;
|
14545
14572
|
DESTROYING表示销毁中;
|
14546
14573
|
MOVING表示通道迁移中;
|
14574
|
+
CLOSED表示已关闭;
|
14547
14575
|
CHANGING表示部分部署中。
|
14548
14576
|
:type Status: str
|
14549
14577
|
:param _TagSet: 标签列表。
|
@@ -16533,9 +16561,9 @@ class SetTlsVersionRequest(AbstractModel):
|
|
16533
16561
|
r"""
|
16534
16562
|
:param _ListenerId: 监听器ID
|
16535
16563
|
:type ListenerId: str
|
16536
|
-
:param _TLSSupportVersion: TLS
|
16564
|
+
:param _TLSSupportVersion: TLS版本,可选TLSv1.0、TLSv1.1、TLSv1.2、TLSv1.3
|
16537
16565
|
:type TLSSupportVersion: list of str
|
16538
|
-
:param _TLSCiphers:
|
16566
|
+
:param _TLSCiphers: 密码套件包,可选 GAAP_TLS_CIPHERS_STRICT,GAAP_TLS_CIPHERS_GENERAL,GAAP_TLS_CIPHERS_WIDE(默认)
|
16539
16567
|
:type TLSCiphers: str
|
16540
16568
|
"""
|
16541
16569
|
self._ListenerId = None
|
@@ -5269,6 +5269,9 @@ class DescribeDeviceData(AbstractModel):
|
|
5269
5269
|
:param _StreamName: RTMP推流地址自定义streamName
|
5270
5270
|
注意:此字段可能返回 null,表示取不到有效值。
|
5271
5271
|
:type StreamName: str
|
5272
|
+
:param _SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
|
5273
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5274
|
+
:type SilentFrameSwitch: int
|
5272
5275
|
"""
|
5273
5276
|
self._DeviceId = None
|
5274
5277
|
self._Code = None
|
@@ -5300,6 +5303,7 @@ class DescribeDeviceData(AbstractModel):
|
|
5300
5303
|
self._SubscribeSwitch = None
|
5301
5304
|
self._AppName = None
|
5302
5305
|
self._StreamName = None
|
5306
|
+
self._SilentFrameSwitch = None
|
5303
5307
|
|
5304
5308
|
@property
|
5305
5309
|
def DeviceId(self):
|
@@ -5541,6 +5545,14 @@ class DescribeDeviceData(AbstractModel):
|
|
5541
5545
|
def StreamName(self, StreamName):
|
5542
5546
|
self._StreamName = StreamName
|
5543
5547
|
|
5548
|
+
@property
|
5549
|
+
def SilentFrameSwitch(self):
|
5550
|
+
return self._SilentFrameSwitch
|
5551
|
+
|
5552
|
+
@SilentFrameSwitch.setter
|
5553
|
+
def SilentFrameSwitch(self, SilentFrameSwitch):
|
5554
|
+
self._SilentFrameSwitch = SilentFrameSwitch
|
5555
|
+
|
5544
5556
|
|
5545
5557
|
def _deserialize(self, params):
|
5546
5558
|
self._DeviceId = params.get("DeviceId")
|
@@ -5573,6 +5585,7 @@ class DescribeDeviceData(AbstractModel):
|
|
5573
5585
|
self._SubscribeSwitch = params.get("SubscribeSwitch")
|
5574
5586
|
self._AppName = params.get("AppName")
|
5575
5587
|
self._StreamName = params.get("StreamName")
|
5588
|
+
self._SilentFrameSwitch = params.get("SilentFrameSwitch")
|
5576
5589
|
memeber_set = set(params.keys())
|
5577
5590
|
for name, value in vars(self).items():
|
5578
5591
|
property_name = name[1:]
|
@@ -16269,6 +16282,8 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
16269
16282
|
:type AudioSwitch: int
|
16270
16283
|
:param _SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
|
16271
16284
|
:type SubscribeSwitch: int
|
16285
|
+
:param _SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
|
16286
|
+
:type SilentFrameSwitch: int
|
16272
16287
|
"""
|
16273
16288
|
self._DeviceId = None
|
16274
16289
|
self._Name = None
|
@@ -16281,6 +16296,7 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
16281
16296
|
self._ProtocolType = None
|
16282
16297
|
self._AudioSwitch = None
|
16283
16298
|
self._SubscribeSwitch = None
|
16299
|
+
self._SilentFrameSwitch = None
|
16284
16300
|
|
16285
16301
|
@property
|
16286
16302
|
def DeviceId(self):
|
@@ -16370,6 +16386,14 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
16370
16386
|
def SubscribeSwitch(self, SubscribeSwitch):
|
16371
16387
|
self._SubscribeSwitch = SubscribeSwitch
|
16372
16388
|
|
16389
|
+
@property
|
16390
|
+
def SilentFrameSwitch(self):
|
16391
|
+
return self._SilentFrameSwitch
|
16392
|
+
|
16393
|
+
@SilentFrameSwitch.setter
|
16394
|
+
def SilentFrameSwitch(self, SilentFrameSwitch):
|
16395
|
+
self._SilentFrameSwitch = SilentFrameSwitch
|
16396
|
+
|
16373
16397
|
|
16374
16398
|
def _deserialize(self, params):
|
16375
16399
|
self._DeviceId = params.get("DeviceId")
|
@@ -16383,6 +16407,7 @@ class UpdateUserDeviceRequest(AbstractModel):
|
|
16383
16407
|
self._ProtocolType = params.get("ProtocolType")
|
16384
16408
|
self._AudioSwitch = params.get("AudioSwitch")
|
16385
16409
|
self._SubscribeSwitch = params.get("SubscribeSwitch")
|
16410
|
+
self._SilentFrameSwitch = params.get("SilentFrameSwitch")
|
16386
16411
|
memeber_set = set(params.keys())
|
16387
16412
|
for name, value in vars(self).items():
|
16388
16413
|
property_name = name[1:]
|
@@ -321,7 +321,7 @@ class CreateAuthorizationPolicyRequest(AbstractModel):
|
|
321
321
|
:type Username: str
|
322
322
|
:param _ClientId: 客户端
|
323
323
|
:type ClientId: str
|
324
|
-
:param _Ip:
|
324
|
+
:param _Ip: IP地址
|
325
325
|
:type Ip: str
|
326
326
|
:param _Remark: 备注信息
|
327
327
|
:type Remark: str
|
@@ -2458,7 +2458,7 @@ class ModifyAuthorizationPolicyRequest(AbstractModel):
|
|
2458
2458
|
:type Retain: int
|
2459
2459
|
:param _ClientId: 客户端
|
2460
2460
|
:type ClientId: str
|
2461
|
-
:param _Ip:
|
2461
|
+
:param _Ip: IP
|
2462
2462
|
:type Ip: str
|
2463
2463
|
:param _Qos: 0、1、2
|
2464
2464
|
:type Qos: str
|
@@ -11066,6 +11066,7 @@ MyKid 儿童卡
|
|
11066
11066
|
-9101 证件边框不完整告警
|
11067
11067
|
-9102 证件复印件告警
|
11068
11068
|
-9103 证件翻拍告警
|
11069
|
+
-9104 证件PS告警
|
11069
11070
|
-9107 证件反光告警
|
11070
11071
|
-9108 证件模糊告警
|
11071
11072
|
-9109 告警能力未开通
|
@@ -602,7 +602,7 @@ INVALIDPARAMETERVALUE_IDENTITYCENTERZONENAMEALREADYEXIST = 'InvalidParameterValu
|
|
602
602
|
# 策略内容不合法。
|
603
603
|
INVALIDPARAMETERVALUE_POLICYCONTENTINVALID = 'InvalidParameterValue.PolicyContentInvalid'
|
604
604
|
|
605
|
-
# sso
|
605
|
+
# sso登录启用状态值非法
|
606
606
|
INVALIDPARAMETERVALUE_SSOSTATUSINVALID = 'InvalidParameterValue.SSoStatusInvalid'
|
607
607
|
|
608
608
|
# X509证书格式错误。
|
@@ -2635,6 +2635,77 @@ class DescribeAgentPayDealsV2Response(AbstractModel):
|
|
2635
2635
|
self._RequestId = params.get("RequestId")
|
2636
2636
|
|
2637
2637
|
|
2638
|
+
class DescribeAgentRelateBigDealIdsRequest(AbstractModel):
|
2639
|
+
"""DescribeAgentRelateBigDealIds请求参数结构体
|
2640
|
+
|
2641
|
+
"""
|
2642
|
+
|
2643
|
+
def __init__(self):
|
2644
|
+
r"""
|
2645
|
+
:param _BigDealId: 大订单号
|
2646
|
+
:type BigDealId: str
|
2647
|
+
"""
|
2648
|
+
self._BigDealId = None
|
2649
|
+
|
2650
|
+
@property
|
2651
|
+
def BigDealId(self):
|
2652
|
+
return self._BigDealId
|
2653
|
+
|
2654
|
+
@BigDealId.setter
|
2655
|
+
def BigDealId(self, BigDealId):
|
2656
|
+
self._BigDealId = BigDealId
|
2657
|
+
|
2658
|
+
|
2659
|
+
def _deserialize(self, params):
|
2660
|
+
self._BigDealId = params.get("BigDealId")
|
2661
|
+
memeber_set = set(params.keys())
|
2662
|
+
for name, value in vars(self).items():
|
2663
|
+
property_name = name[1:]
|
2664
|
+
if property_name in memeber_set:
|
2665
|
+
memeber_set.remove(property_name)
|
2666
|
+
if len(memeber_set) > 0:
|
2667
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2668
|
+
|
2669
|
+
|
2670
|
+
|
2671
|
+
class DescribeAgentRelateBigDealIdsResponse(AbstractModel):
|
2672
|
+
"""DescribeAgentRelateBigDealIds返回参数结构体
|
2673
|
+
|
2674
|
+
"""
|
2675
|
+
|
2676
|
+
def __init__(self):
|
2677
|
+
r"""
|
2678
|
+
:param _BigDealIdList: 申请合并支付的关联大订单号列表(不包含请求的订单号)
|
2679
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2680
|
+
:type BigDealIdList: list of str
|
2681
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2682
|
+
:type RequestId: str
|
2683
|
+
"""
|
2684
|
+
self._BigDealIdList = None
|
2685
|
+
self._RequestId = None
|
2686
|
+
|
2687
|
+
@property
|
2688
|
+
def BigDealIdList(self):
|
2689
|
+
return self._BigDealIdList
|
2690
|
+
|
2691
|
+
@BigDealIdList.setter
|
2692
|
+
def BigDealIdList(self, BigDealIdList):
|
2693
|
+
self._BigDealIdList = BigDealIdList
|
2694
|
+
|
2695
|
+
@property
|
2696
|
+
def RequestId(self):
|
2697
|
+
return self._RequestId
|
2698
|
+
|
2699
|
+
@RequestId.setter
|
2700
|
+
def RequestId(self, RequestId):
|
2701
|
+
self._RequestId = RequestId
|
2702
|
+
|
2703
|
+
|
2704
|
+
def _deserialize(self, params):
|
2705
|
+
self._BigDealIdList = params.get("BigDealIdList")
|
2706
|
+
self._RequestId = params.get("RequestId")
|
2707
|
+
|
2708
|
+
|
2638
2709
|
class DescribeAgentSelfPayDealsV2Request(AbstractModel):
|
2639
2710
|
"""DescribeAgentSelfPayDealsV2请求参数结构体
|
2640
2711
|
|
@@ -282,6 +282,29 @@ class PartnersClient(AbstractClient):
|
|
282
282
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
283
283
|
|
284
284
|
|
285
|
+
def DescribeAgentRelateBigDealIds(self, request):
|
286
|
+
"""根据大订单号查询关联申请合并支付的其他订单号
|
287
|
+
|
288
|
+
:param request: Request instance for DescribeAgentRelateBigDealIds.
|
289
|
+
:type request: :class:`tencentcloud.partners.v20180321.models.DescribeAgentRelateBigDealIdsRequest`
|
290
|
+
:rtype: :class:`tencentcloud.partners.v20180321.models.DescribeAgentRelateBigDealIdsResponse`
|
291
|
+
|
292
|
+
"""
|
293
|
+
try:
|
294
|
+
params = request._serialize()
|
295
|
+
headers = request.headers
|
296
|
+
body = self.call("DescribeAgentRelateBigDealIds", params, headers=headers)
|
297
|
+
response = json.loads(body)
|
298
|
+
model = models.DescribeAgentRelateBigDealIdsResponse()
|
299
|
+
model._deserialize(response["Response"])
|
300
|
+
return model
|
301
|
+
except Exception as e:
|
302
|
+
if isinstance(e, TencentCloudSDKException):
|
303
|
+
raise
|
304
|
+
else:
|
305
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
306
|
+
|
307
|
+
|
285
308
|
def DescribeAgentSelfPayDealsV2(self, request):
|
286
309
|
"""查询代理商名下指定代客的自付订单(预付费)
|
287
310
|
|
@@ -7172,6 +7172,9 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7172
7172
|
:param _ScenarioName: test-scenario
|
7173
7173
|
注意:此字段可能返回 null,表示取不到有效值。
|
7174
7174
|
:type ScenarioName: str
|
7175
|
+
:param _PayMode: 付费类型
|
7176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7177
|
+
:type PayMode: int
|
7175
7178
|
"""
|
7176
7179
|
self._JobId = None
|
7177
7180
|
self._ScenarioId = None
|
@@ -7216,6 +7219,7 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7216
7219
|
self._Message = None
|
7217
7220
|
self._ProjectName = None
|
7218
7221
|
self._ScenarioName = None
|
7222
|
+
self._PayMode = None
|
7219
7223
|
|
7220
7224
|
@property
|
7221
7225
|
def JobId(self):
|
@@ -7561,6 +7565,14 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7561
7565
|
def ScenarioName(self, ScenarioName):
|
7562
7566
|
self._ScenarioName = ScenarioName
|
7563
7567
|
|
7568
|
+
@property
|
7569
|
+
def PayMode(self):
|
7570
|
+
return self._PayMode
|
7571
|
+
|
7572
|
+
@PayMode.setter
|
7573
|
+
def PayMode(self, PayMode):
|
7574
|
+
self._PayMode = PayMode
|
7575
|
+
|
7564
7576
|
|
7565
7577
|
def _deserialize(self, params):
|
7566
7578
|
self._JobId = params.get("JobId")
|
@@ -7647,6 +7659,7 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7647
7659
|
self._Message = params.get("Message")
|
7648
7660
|
self._ProjectName = params.get("ProjectName")
|
7649
7661
|
self._ScenarioName = params.get("ScenarioName")
|
7662
|
+
self._PayMode = params.get("PayMode")
|
7650
7663
|
memeber_set = set(params.keys())
|
7651
7664
|
for name, value in vars(self).items():
|
7652
7665
|
property_name = name[1:]
|
@@ -2039,7 +2039,9 @@ class CreateInstancesRequest(AbstractModel):
|
|
2039
2039
|
- 1:自动续费。
|
2040
2040
|
- 2:到期不续费。
|
2041
2041
|
:type AutoRenew: int
|
2042
|
-
:param _SecurityGroupIdList: 安全组 ID
|
2042
|
+
:param _SecurityGroupIdList: 安全组 ID 数组。
|
2043
|
+
- 安全组是一种虚拟防火墙,对云数据库实例的网络访问进行控制。创建实例时,建议绑定相应的安全组。
|
2044
|
+
- 请通过 [DescribeInstanceSecurityGroup](https://cloud.tencent.com/document/product/239/34447) 接口获取实例的安全组 ID。
|
2043
2045
|
:type SecurityGroupIdList: list of str
|
2044
2046
|
:param _VPort: 用户自定义的网络端口。默认为6379,范围为 [1024,65535]。
|
2045
2047
|
:type VPort: int
|
@@ -96,7 +96,7 @@ class RedisClient(AbstractClient):
|
|
96
96
|
|
97
97
|
|
98
98
|
def AssociateSecurityGroups(self, request):
|
99
|
-
"""本接口 (AssociateSecurityGroups)
|
99
|
+
"""本接口 (AssociateSecurityGroups) 用于将一个安全组绑定于一个或多个数据库实例。创建实例时,未配置安全组,建议通过该接口,绑定安全组。
|
100
100
|
|
101
101
|
:param request: Request instance for AssociateSecurityGroups.
|
102
102
|
:type request: :class:`tencentcloud.redis.v20180412.models.AssociateSecurityGroupsRequest`
|