tencentcloud-sdk-python 3.0.1464__py2.py3-none-any.whl → 3.0.1466__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/ai3d/v20250513/ai3d_client.py +2 -2
- tencentcloud/ai3d/v20250513/models.py +2 -2
- tencentcloud/billing/v20180709/models.py +2 -2
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/models.py +184 -0
- tencentcloud/cdn/v20180606/cdn_client.py +0 -74
- tencentcloud/cdn/v20180606/models.py +0 -546
- tencentcloud/cfw/v20190904/models.py +167 -2
- tencentcloud/ckafka/v20190819/models.py +50 -2
- tencentcloud/ctem/v20231128/models.py +441 -0
- tencentcloud/emr/v20190103/models.py +49 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -3
- tencentcloud/ess/v20201111/models.py +7 -7
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +165 -0
- tencentcloud/lcic/v20220817/models.py +24 -6
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +280 -10
- tencentcloud/lke/v20231130/lke_client.py +0 -46
- tencentcloud/lke/v20231130/models.py +0 -192
- tencentcloud/lkeap/v20240522/lkeap_client.py +5 -2
- tencentcloud/mongodb/v20190725/models.py +76 -48
- tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
- tencentcloud/mps/v20190612/errorcodes.py +42 -0
- tencentcloud/mps/v20190612/models.py +810 -43
- tencentcloud/mps/v20190612/mps_client.py +92 -0
- tencentcloud/organization/v20210331/models.py +6 -6
- tencentcloud/redis/v20180412/models.py +16 -12
- tencentcloud/redis/v20180412/redis_client.py +2 -2
- tencentcloud/tcss/v20201101/models.py +30 -0
- tencentcloud/teo/v20220901/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +28 -12
- tencentcloud/tse/v20201207/models.py +76 -0
- tencentcloud/tse/v20201207/tse_client.py +1 -1
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1176 -101
- tencentcloud/waf/v20180125/waf_client.py +1 -1
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/RECORD +44 -44
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/top_level.txt +0 -0
@@ -435,6 +435,29 @@ class MpsClient(AbstractClient):
|
|
435
435
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
436
436
|
|
437
437
|
|
438
|
+
def CreateSmartEraseTemplate(self, request):
|
439
|
+
r"""创建自定义智能擦除模板
|
440
|
+
|
441
|
+
:param request: Request instance for CreateSmartEraseTemplate.
|
442
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.CreateSmartEraseTemplateRequest`
|
443
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.CreateSmartEraseTemplateResponse`
|
444
|
+
|
445
|
+
"""
|
446
|
+
try:
|
447
|
+
params = request._serialize()
|
448
|
+
headers = request.headers
|
449
|
+
body = self.call("CreateSmartEraseTemplate", params, headers=headers)
|
450
|
+
response = json.loads(body)
|
451
|
+
model = models.CreateSmartEraseTemplateResponse()
|
452
|
+
model._deserialize(response["Response"])
|
453
|
+
return model
|
454
|
+
except Exception as e:
|
455
|
+
if isinstance(e, TencentCloudSDKException):
|
456
|
+
raise
|
457
|
+
else:
|
458
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
459
|
+
|
460
|
+
|
438
461
|
def CreateSmartSubtitleTemplate(self, request):
|
439
462
|
r"""创建自定义智能字幕模板
|
440
463
|
|
@@ -1024,6 +1047,29 @@ class MpsClient(AbstractClient):
|
|
1024
1047
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1025
1048
|
|
1026
1049
|
|
1050
|
+
def DeleteSmartEraseTemplate(self, request):
|
1051
|
+
r"""删除用户自定义智能擦除模板。
|
1052
|
+
|
1053
|
+
:param request: Request instance for DeleteSmartEraseTemplate.
|
1054
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.DeleteSmartEraseTemplateRequest`
|
1055
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DeleteSmartEraseTemplateResponse`
|
1056
|
+
|
1057
|
+
"""
|
1058
|
+
try:
|
1059
|
+
params = request._serialize()
|
1060
|
+
headers = request.headers
|
1061
|
+
body = self.call("DeleteSmartEraseTemplate", params, headers=headers)
|
1062
|
+
response = json.loads(body)
|
1063
|
+
model = models.DeleteSmartEraseTemplateResponse()
|
1064
|
+
model._deserialize(response["Response"])
|
1065
|
+
return model
|
1066
|
+
except Exception as e:
|
1067
|
+
if isinstance(e, TencentCloudSDKException):
|
1068
|
+
raise
|
1069
|
+
else:
|
1070
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1071
|
+
|
1072
|
+
|
1027
1073
|
def DeleteSmartSubtitleTemplate(self, request):
|
1028
1074
|
r"""删除用户自定义智能字幕模板。
|
1029
1075
|
|
@@ -1645,6 +1691,29 @@ class MpsClient(AbstractClient):
|
|
1645
1691
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1646
1692
|
|
1647
1693
|
|
1694
|
+
def DescribeSmartEraseTemplates(self, request):
|
1695
|
+
r"""根据智能擦除模板唯一标识,获取智能擦除模板详情列表。返回结果包含符合条件的所有用户自定义智能擦除模板及系统预置智能擦除模板
|
1696
|
+
|
1697
|
+
:param request: Request instance for DescribeSmartEraseTemplates.
|
1698
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.DescribeSmartEraseTemplatesRequest`
|
1699
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DescribeSmartEraseTemplatesResponse`
|
1700
|
+
|
1701
|
+
"""
|
1702
|
+
try:
|
1703
|
+
params = request._serialize()
|
1704
|
+
headers = request.headers
|
1705
|
+
body = self.call("DescribeSmartEraseTemplates", params, headers=headers)
|
1706
|
+
response = json.loads(body)
|
1707
|
+
model = models.DescribeSmartEraseTemplatesResponse()
|
1708
|
+
model._deserialize(response["Response"])
|
1709
|
+
return model
|
1710
|
+
except Exception as e:
|
1711
|
+
if isinstance(e, TencentCloudSDKException):
|
1712
|
+
raise
|
1713
|
+
else:
|
1714
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1715
|
+
|
1716
|
+
|
1648
1717
|
def DescribeSmartSubtitleTemplates(self, request):
|
1649
1718
|
r"""根据智能字幕 模板唯一标识,获取智能字幕模板详情列表。返回结果包含符合条件的所有用户自定义智能字幕模板及系统预置智能字幕模板
|
1650
1719
|
|
@@ -2650,6 +2719,29 @@ class MpsClient(AbstractClient):
|
|
2650
2719
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2651
2720
|
|
2652
2721
|
|
2722
|
+
def ModifySmartEraseTemplate(self, request):
|
2723
|
+
r"""修改用户自定义智能擦除模板。
|
2724
|
+
|
2725
|
+
:param request: Request instance for ModifySmartEraseTemplate.
|
2726
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.ModifySmartEraseTemplateRequest`
|
2727
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ModifySmartEraseTemplateResponse`
|
2728
|
+
|
2729
|
+
"""
|
2730
|
+
try:
|
2731
|
+
params = request._serialize()
|
2732
|
+
headers = request.headers
|
2733
|
+
body = self.call("ModifySmartEraseTemplate", params, headers=headers)
|
2734
|
+
response = json.loads(body)
|
2735
|
+
model = models.ModifySmartEraseTemplateResponse()
|
2736
|
+
model._deserialize(response["Response"])
|
2737
|
+
return model
|
2738
|
+
except Exception as e:
|
2739
|
+
if isinstance(e, TencentCloudSDKException):
|
2740
|
+
raise
|
2741
|
+
else:
|
2742
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2743
|
+
|
2744
|
+
|
2653
2745
|
def ModifySmartSubtitleTemplate(self, request):
|
2654
2746
|
r"""修改用户自定义智能字幕模板。
|
2655
2747
|
|
@@ -2346,7 +2346,7 @@ class CreateOrganizationMemberRequest(AbstractModel):
|
|
2346
2346
|
:type Name: str
|
2347
2347
|
:param _PolicyType: 关系策略。取值:Financial
|
2348
2348
|
:type PolicyType: str
|
2349
|
-
:param _PermissionIds: 成员财务权限ID列表。取值:1-查看账单、2-查看余额、3
|
2349
|
+
:param _PermissionIds: 成员财务权限ID列表。取值:1-查看账单、2-查看余额、3-资金划拨(若需要开启资金划拨权限,请联系您的商务经理内部开通。)、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析、9-预算管理、10-信用额度设置(若需要开启信用额度设置权限,请联系您的商务经理内部开通。),1、2 默认必须
|
2350
2350
|
:type PermissionIds: list of int non-negative
|
2351
2351
|
:param _NodeId: 成员所属部门的节点ID。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
|
2352
2352
|
:type NodeId: int
|
@@ -2401,7 +2401,7 @@ class CreateOrganizationMemberRequest(AbstractModel):
|
|
2401
2401
|
|
2402
2402
|
@property
|
2403
2403
|
def PermissionIds(self):
|
2404
|
-
r"""成员财务权限ID列表。取值:1-查看账单、2-查看余额、3
|
2404
|
+
r"""成员财务权限ID列表。取值:1-查看账单、2-查看余额、3-资金划拨(若需要开启资金划拨权限,请联系您的商务经理内部开通。)、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析、9-预算管理、10-信用额度设置(若需要开启信用额度设置权限,请联系您的商务经理内部开通。),1、2 默认必须
|
2405
2405
|
:rtype: list of int non-negative
|
2406
2406
|
"""
|
2407
2407
|
return self._PermissionIds
|
@@ -10167,7 +10167,7 @@ class InviteOrganizationMemberRequest(AbstractModel):
|
|
10167
10167
|
:type Name: str
|
10168
10168
|
:param _PolicyType: 关系策略。取值:Financial
|
10169
10169
|
:type PolicyType: str
|
10170
|
-
:param _PermissionIds: 成员财务权限ID列表。取值:1-查看账单、2-查看余额、3
|
10170
|
+
:param _PermissionIds: 成员财务权限ID列表。取值:1-查看账单、2-查看余额、3-资金划拨(若需要开启资金划拨权限,请联系您的商务经理内部开通。)、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析、9-预算管理、10-信用额度设置(若需要开启信用额度设置权限,请联系您的商务经理内部开通。),1、2 默认必须
|
10171
10171
|
:type PermissionIds: list of int non-negative
|
10172
10172
|
:param _NodeId: 成员所属部门的节点ID。可以通过[DescribeOrganizationNodes](https://cloud.tencent.com/document/product/850/82926)获取
|
10173
10173
|
:type NodeId: int
|
@@ -10231,7 +10231,7 @@ class InviteOrganizationMemberRequest(AbstractModel):
|
|
10231
10231
|
|
10232
10232
|
@property
|
10233
10233
|
def PermissionIds(self):
|
10234
|
-
r"""成员财务权限ID列表。取值:1-查看账单、2-查看余额、3
|
10234
|
+
r"""成员财务权限ID列表。取值:1-查看账单、2-查看余额、3-资金划拨(若需要开启资金划拨权限,请联系您的商务经理内部开通。)、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析、9-预算管理、10-信用额度设置(若需要开启信用额度设置权限,请联系您的商务经理内部开通。),1、2 默认必须
|
10235
10235
|
:rtype: list of int non-negative
|
10236
10236
|
"""
|
10237
10237
|
return self._PermissionIds
|
@@ -20636,7 +20636,7 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
20636
20636
|
:param _PolicyType: 关系策略类型。PolicyType不为空,PermissionIds不能为空。取值:Financial
|
20637
20637
|
:type PolicyType: str
|
20638
20638
|
:param _PermissionIds: 成员财务权限ID列表。PermissionIds不为空,PolicyType不能为空。
|
20639
|
-
取值:1-查看账单、2-查看余额、3
|
20639
|
+
取值:1-查看账单、2-查看余额、3-资金划拨(若需要开启资金划拨权限,请联系您的商务经理内部开通。)、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析、9-预算管理、10-信用额度设置(若需要开启信用额度设置权限,请联系您的商务经理内部开通。),1、2 默认必须
|
20640
20640
|
:type PermissionIds: list of int non-negative
|
20641
20641
|
:param _IsAllowQuit: 是否允许成员退出组织。取值:Allow-允许、Denied-不允许
|
20642
20642
|
:type IsAllowQuit: str
|
@@ -20701,7 +20701,7 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
20701
20701
|
@property
|
20702
20702
|
def PermissionIds(self):
|
20703
20703
|
r"""成员财务权限ID列表。PermissionIds不为空,PolicyType不能为空。
|
20704
|
-
取值:1-查看账单、2-查看余额、3
|
20704
|
+
取值:1-查看账单、2-查看余额、3-资金划拨(若需要开启资金划拨权限,请联系您的商务经理内部开通。)、4-合并出账、5-开票、6-优惠继承、7-代付费、8-成本分析、9-预算管理、10-信用额度设置(若需要开启信用额度设置权限,请联系您的商务经理内部开通。),1、2 默认必须
|
20705
20705
|
:rtype: list of int non-negative
|
20706
20706
|
"""
|
20707
20707
|
return self._PermissionIds
|
@@ -5009,7 +5009,7 @@ class DescribeInstanceAccountRequest(AbstractModel):
|
|
5009
5009
|
r"""
|
5010
5010
|
:param _InstanceId: 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
|
5011
5011
|
:type InstanceId: str
|
5012
|
-
:param _Limit:
|
5012
|
+
:param _Limit: 分页大小。默认值为20,最小值为1,最大值为100。
|
5013
5013
|
:type Limit: int
|
5014
5014
|
:param _Offset: 分页偏移量。取Limit整数倍。计算公式:offset=limit*(页码-1)。
|
5015
5015
|
:type Offset: int
|
@@ -5031,7 +5031,7 @@ class DescribeInstanceAccountRequest(AbstractModel):
|
|
5031
5031
|
|
5032
5032
|
@property
|
5033
5033
|
def Limit(self):
|
5034
|
-
r"""
|
5034
|
+
r"""分页大小。默认值为20,最小值为1,最大值为100。
|
5035
5035
|
:rtype: int
|
5036
5036
|
"""
|
5037
5037
|
return self._Limit
|
@@ -14014,6 +14014,8 @@ class InstanceSet(AbstractModel):
|
|
14014
14014
|
:param _CloseTime: 实例隔离开始的时间。
|
14015
14015
|
:type CloseTime: str
|
14016
14016
|
:param _SlaveReadWeight: 从节点读取权重。
|
14017
|
+
- 0:表示关闭副本只读。
|
14018
|
+
- 100:表示开启副本只读。
|
14017
14019
|
:type SlaveReadWeight: int
|
14018
14020
|
:param _InstanceTags: 实例关联的标签信息。
|
14019
14021
|
:type InstanceTags: list of InstanceTagInfo
|
@@ -14510,6 +14512,8 @@ class InstanceSet(AbstractModel):
|
|
14510
14512
|
@property
|
14511
14513
|
def SlaveReadWeight(self):
|
14512
14514
|
r"""从节点读取权重。
|
14515
|
+
- 0:表示关闭副本只读。
|
14516
|
+
- 100:表示开启副本只读。
|
14513
14517
|
:rtype: int
|
14514
14518
|
"""
|
14515
14519
|
return self._SlaveReadWeight
|
@@ -16900,11 +16904,11 @@ class ModifyInstanceBackupModeRequest(AbstractModel):
|
|
16900
16904
|
|
16901
16905
|
def __init__(self):
|
16902
16906
|
r"""
|
16903
|
-
:param _InstanceId: 实例的ID
|
16907
|
+
:param _InstanceId: 实例的ID。请登录 [Redis 控制台](https://console.cloud.tencent.com/redis/instance/list)在实例列表复制实例 ID。
|
16904
16908
|
:type InstanceId: str
|
16905
16909
|
:param _BackupMode: 备份模式:
|
16906
|
-
- SecondLevelBackup
|
16907
|
-
- NormalLevelBackup
|
16910
|
+
- SecondLevelBackup 秒级备份。
|
16911
|
+
- NormalLevelBackup 普通备份。
|
16908
16912
|
:type BackupMode: str
|
16909
16913
|
"""
|
16910
16914
|
self._InstanceId = None
|
@@ -16912,7 +16916,7 @@ class ModifyInstanceBackupModeRequest(AbstractModel):
|
|
16912
16916
|
|
16913
16917
|
@property
|
16914
16918
|
def InstanceId(self):
|
16915
|
-
r"""实例的ID
|
16919
|
+
r"""实例的ID。请登录 [Redis 控制台](https://console.cloud.tencent.com/redis/instance/list)在实例列表复制实例 ID。
|
16916
16920
|
:rtype: str
|
16917
16921
|
"""
|
16918
16922
|
return self._InstanceId
|
@@ -16924,8 +16928,8 @@ class ModifyInstanceBackupModeRequest(AbstractModel):
|
|
16924
16928
|
@property
|
16925
16929
|
def BackupMode(self):
|
16926
16930
|
r"""备份模式:
|
16927
|
-
- SecondLevelBackup
|
16928
|
-
- NormalLevelBackup
|
16931
|
+
- SecondLevelBackup 秒级备份。
|
16932
|
+
- NormalLevelBackup 普通备份。
|
16929
16933
|
:rtype: str
|
16930
16934
|
"""
|
16931
16935
|
return self._BackupMode
|
@@ -16955,7 +16959,7 @@ class ModifyInstanceBackupModeResponse(AbstractModel):
|
|
16955
16959
|
|
16956
16960
|
def __init__(self):
|
16957
16961
|
r"""
|
16958
|
-
:param _TaskId: 任务ID
|
16962
|
+
:param _TaskId: 任务 ID。
|
16959
16963
|
:type TaskId: int
|
16960
16964
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16961
16965
|
:type RequestId: str
|
@@ -16965,7 +16969,7 @@ class ModifyInstanceBackupModeResponse(AbstractModel):
|
|
16965
16969
|
|
16966
16970
|
@property
|
16967
16971
|
def TaskId(self):
|
16968
|
-
r"""任务ID
|
16972
|
+
r"""任务 ID。
|
16969
16973
|
:rtype: int
|
16970
16974
|
"""
|
16971
16975
|
return self._TaskId
|
@@ -17000,7 +17004,7 @@ class ModifyInstanceEventRequest(AbstractModel):
|
|
17000
17004
|
r"""
|
17001
17005
|
:param _InstanceId: 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis#/)在实例列表复制实例 ID。
|
17002
17006
|
:type InstanceId: str
|
17003
|
-
:param _EventId: 事件 ID。请通过 DescribeInstanceEvents 获取需修改的事件 ID。
|
17007
|
+
:param _EventId: 事件 ID。请通过 [DescribeInstanceEvents](https://cloud.tencent.com/document/product/239/104779) 获取需修改的事件 ID。
|
17004
17008
|
:type EventId: int
|
17005
17009
|
:param _StartTime: 修改事件执行的计划开始时间。
|
17006
17010
|
:type StartTime: str
|
@@ -17033,7 +17037,7 @@ class ModifyInstanceEventRequest(AbstractModel):
|
|
17033
17037
|
|
17034
17038
|
@property
|
17035
17039
|
def EventId(self):
|
17036
|
-
r"""事件 ID。请通过 DescribeInstanceEvents 获取需修改的事件 ID。
|
17040
|
+
r"""事件 ID。请通过 [DescribeInstanceEvents](https://cloud.tencent.com/document/product/239/104779) 获取需修改的事件 ID。
|
17037
17041
|
:rtype: int
|
17038
17042
|
"""
|
17039
17043
|
return self._EventId
|
@@ -625,7 +625,7 @@ class RedisClient(AbstractClient):
|
|
625
625
|
|
626
626
|
|
627
627
|
def DescribeInstanceAccount(self, request):
|
628
|
-
r"""本接口(DescribeInstanceAccount
|
628
|
+
r"""本接口(DescribeInstanceAccount)用于查看实例账号信息。
|
629
629
|
|
630
630
|
:param request: Request instance for DescribeInstanceAccount.
|
631
631
|
:type request: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceAccountRequest`
|
@@ -1961,7 +1961,7 @@ class RedisClient(AbstractClient):
|
|
1961
1961
|
|
1962
1962
|
|
1963
1963
|
def ModifyInstanceBackupMode(self, request):
|
1964
|
-
r"""
|
1964
|
+
r"""本接口(ModifyInstanceBackupMode)用于修改实例的备份模式。
|
1965
1965
|
|
1966
1966
|
:param request: Request instance for ModifyInstanceBackupMode.
|
1967
1967
|
:type request: :class:`tencentcloud.redis.v20180412.models.ModifyInstanceBackupModeRequest`
|
@@ -79519,6 +79519,10 @@ class VulInfo(AbstractModel):
|
|
79519
79519
|
:type DefenceHostCount: int
|
79520
79520
|
:param _DefendedCount: 已防御攻击次数
|
79521
79521
|
:type DefendedCount: int
|
79522
|
+
:param _RaspOpenNodeCount: 漏洞对应机器的应用防护开启数量
|
79523
|
+
:type RaspOpenNodeCount: int
|
79524
|
+
:param _RaspClosedNodeCount: 漏洞对应机器的应用防护关闭数量
|
79525
|
+
:type RaspClosedNodeCount: int
|
79522
79526
|
"""
|
79523
79527
|
self._Name = None
|
79524
79528
|
self._Tags = None
|
@@ -79537,6 +79541,8 @@ class VulInfo(AbstractModel):
|
|
79537
79541
|
self._DefenceScope = None
|
79538
79542
|
self._DefenceHostCount = None
|
79539
79543
|
self._DefendedCount = None
|
79544
|
+
self._RaspOpenNodeCount = None
|
79545
|
+
self._RaspClosedNodeCount = None
|
79540
79546
|
|
79541
79547
|
@property
|
79542
79548
|
def Name(self):
|
@@ -79725,6 +79731,28 @@ class VulInfo(AbstractModel):
|
|
79725
79731
|
def DefendedCount(self, DefendedCount):
|
79726
79732
|
self._DefendedCount = DefendedCount
|
79727
79733
|
|
79734
|
+
@property
|
79735
|
+
def RaspOpenNodeCount(self):
|
79736
|
+
r"""漏洞对应机器的应用防护开启数量
|
79737
|
+
:rtype: int
|
79738
|
+
"""
|
79739
|
+
return self._RaspOpenNodeCount
|
79740
|
+
|
79741
|
+
@RaspOpenNodeCount.setter
|
79742
|
+
def RaspOpenNodeCount(self, RaspOpenNodeCount):
|
79743
|
+
self._RaspOpenNodeCount = RaspOpenNodeCount
|
79744
|
+
|
79745
|
+
@property
|
79746
|
+
def RaspClosedNodeCount(self):
|
79747
|
+
r"""漏洞对应机器的应用防护关闭数量
|
79748
|
+
:rtype: int
|
79749
|
+
"""
|
79750
|
+
return self._RaspClosedNodeCount
|
79751
|
+
|
79752
|
+
@RaspClosedNodeCount.setter
|
79753
|
+
def RaspClosedNodeCount(self, RaspClosedNodeCount):
|
79754
|
+
self._RaspClosedNodeCount = RaspClosedNodeCount
|
79755
|
+
|
79728
79756
|
|
79729
79757
|
def _deserialize(self, params):
|
79730
79758
|
self._Name = params.get("Name")
|
@@ -79744,6 +79772,8 @@ class VulInfo(AbstractModel):
|
|
79744
79772
|
self._DefenceScope = params.get("DefenceScope")
|
79745
79773
|
self._DefenceHostCount = params.get("DefenceHostCount")
|
79746
79774
|
self._DefendedCount = params.get("DefendedCount")
|
79775
|
+
self._RaspOpenNodeCount = params.get("RaspOpenNodeCount")
|
79776
|
+
self._RaspClosedNodeCount = params.get("RaspClosedNodeCount")
|
79747
79777
|
memeber_set = set(params.keys())
|
79748
79778
|
for name, value in vars(self).items():
|
79749
79779
|
property_name = name[1:]
|
@@ -40915,6 +40915,8 @@ class MultiPathGateway(AbstractModel):
|
|
40915
40915
|
:type RegionId: str
|
40916
40916
|
:param _Lines: 线路信息,当查询网关信息详情 DescribeMultiPathGateway 的时候会返回,当查询网关列表 DescribeMultiPathGateways 的时候不会返回。
|
40917
40917
|
:type Lines: list of MultiPathGatewayLine
|
40918
|
+
:param _NeedConfirm: 网关回源 IP 列表发生了变化是否需要重新确认,取值有:<li>true:回源 IP 列表发生了变化,需要确认;</li><li>false:回源 IP 列表未发生变化,无需确认。</li>
|
40919
|
+
:type NeedConfirm: str
|
40918
40920
|
"""
|
40919
40921
|
self._GatewayId = None
|
40920
40922
|
self._GatewayName = None
|
@@ -40924,6 +40926,7 @@ class MultiPathGateway(AbstractModel):
|
|
40924
40926
|
self._GatewayIP = None
|
40925
40927
|
self._RegionId = None
|
40926
40928
|
self._Lines = None
|
40929
|
+
self._NeedConfirm = None
|
40927
40930
|
|
40928
40931
|
@property
|
40929
40932
|
def GatewayId(self):
|
@@ -41019,6 +41022,17 @@ class MultiPathGateway(AbstractModel):
|
|
41019
41022
|
def Lines(self, Lines):
|
41020
41023
|
self._Lines = Lines
|
41021
41024
|
|
41025
|
+
@property
|
41026
|
+
def NeedConfirm(self):
|
41027
|
+
r"""网关回源 IP 列表发生了变化是否需要重新确认,取值有:<li>true:回源 IP 列表发生了变化,需要确认;</li><li>false:回源 IP 列表未发生变化,无需确认。</li>
|
41028
|
+
:rtype: str
|
41029
|
+
"""
|
41030
|
+
return self._NeedConfirm
|
41031
|
+
|
41032
|
+
@NeedConfirm.setter
|
41033
|
+
def NeedConfirm(self, NeedConfirm):
|
41034
|
+
self._NeedConfirm = NeedConfirm
|
41035
|
+
|
41022
41036
|
|
41023
41037
|
def _deserialize(self, params):
|
41024
41038
|
self._GatewayId = params.get("GatewayId")
|
@@ -41034,6 +41048,7 @@ class MultiPathGateway(AbstractModel):
|
|
41034
41048
|
obj = MultiPathGatewayLine()
|
41035
41049
|
obj._deserialize(item)
|
41036
41050
|
self._Lines.append(obj)
|
41051
|
+
self._NeedConfirm = params.get("NeedConfirm")
|
41037
41052
|
memeber_set = set(params.keys())
|
41038
41053
|
for name, value in vars(self).items():
|
41039
41054
|
property_name = name[1:]
|
@@ -8566,15 +8566,19 @@ class McuLayout(AbstractModel):
|
|
8566
8566
|
白色:0xFFFFFF。
|
8567
8567
|
灰色:0x999999。
|
8568
8568
|
:type BackGroundColor: str
|
8569
|
-
:param _BackgroundImageUrl:
|
8570
|
-
|
8569
|
+
:param _BackgroundImageUrl: 子画面的占位图片url,填写该参数,当用户关闭摄像头或未进入TRTC房间时,会在布局位置填充为指定图片。若指定图片与布局位置尺寸比例不一致,则会对图片进行拉伸处理,优先级高于BackGroundColor。支持png、jpg、jpeg、bmp、gif、webm格式。图片大小限制不超过5MB。
|
8570
|
+
注:
|
8571
|
+
1,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,占位图片将不会生效。
|
8572
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,占位图片将不会生效。
|
8571
8573
|
:type BackgroundImageUrl: str
|
8572
8574
|
:param _CustomCrop: 客户自定义裁剪,针对原始输入流裁剪
|
8573
8575
|
:type CustomCrop: :class:`tencentcloud.trtc.v20190722.models.McuCustomCrop`
|
8574
8576
|
:param _BackgroundRenderMode: 子背景图在输出时的显示模式:0为裁剪,1为缩放并显示背景,2为缩放并显示黑底,3为变比例伸缩,4为自定义渲染。不填默认为3。
|
8575
8577
|
:type BackgroundRenderMode: int
|
8576
8578
|
:param _TransparentUrl: 子画面的透明模版url,指向一张包含透明通道的模板图片。填写该参数,后台混流时会提取该模板图片的透明通道,将其缩放作为目标画面的透明通道,再和其他画面进行混合。您可以通过透明模版实现目标画面的半透明效果和任意形状裁剪(如圆角、星形、心形等)。 支持png格式。图片大小限制不超过5MB。
|
8577
|
-
注:
|
8579
|
+
注:
|
8580
|
+
1,模板图片宽高比应接近目标画面宽高比,以避免缩放适配目标画面时出现模板效果变形;2,透明模版只有RenderMode为0(裁剪)时才生效;3,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,透明模版将不会生效。
|
8581
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,透明模版将不会生效。
|
8578
8582
|
:type TransparentUrl: str
|
8579
8583
|
:param _BackgroundCustomRender: 子背景图的自定义渲染参数,当BackgroundRenderMode为4时必须配置。
|
8580
8584
|
:type BackgroundCustomRender: :class:`tencentcloud.trtc.v20190722.models.McuBackgroundCustomRender`
|
@@ -8701,8 +8705,10 @@ bit1:上行流缩放是否生效。
|
|
8701
8705
|
|
8702
8706
|
@property
|
8703
8707
|
def BackgroundImageUrl(self):
|
8704
|
-
r"""
|
8705
|
-
|
8708
|
+
r"""子画面的占位图片url,填写该参数,当用户关闭摄像头或未进入TRTC房间时,会在布局位置填充为指定图片。若指定图片与布局位置尺寸比例不一致,则会对图片进行拉伸处理,优先级高于BackGroundColor。支持png、jpg、jpeg、bmp、gif、webm格式。图片大小限制不超过5MB。
|
8709
|
+
注:
|
8710
|
+
1,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,占位图片将不会生效。
|
8711
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,占位图片将不会生效。
|
8706
8712
|
:rtype: str
|
8707
8713
|
"""
|
8708
8714
|
return self._BackgroundImageUrl
|
@@ -8736,7 +8742,9 @@ bit1:上行流缩放是否生效。
|
|
8736
8742
|
@property
|
8737
8743
|
def TransparentUrl(self):
|
8738
8744
|
r"""子画面的透明模版url,指向一张包含透明通道的模板图片。填写该参数,后台混流时会提取该模板图片的透明通道,将其缩放作为目标画面的透明通道,再和其他画面进行混合。您可以通过透明模版实现目标画面的半透明效果和任意形状裁剪(如圆角、星形、心形等)。 支持png格式。图片大小限制不超过5MB。
|
8739
|
-
注:
|
8745
|
+
注:
|
8746
|
+
1,模板图片宽高比应接近目标画面宽高比,以避免缩放适配目标画面时出现模板效果变形;2,透明模版只有RenderMode为0(裁剪)时才生效;3,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,透明模版将不会生效。
|
8747
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,透明模版将不会生效。
|
8740
8748
|
:rtype: str
|
8741
8749
|
"""
|
8742
8750
|
return self._TransparentUrl
|
@@ -9623,8 +9631,10 @@ class McuVideoParams(AbstractModel):
|
|
9623
9631
|
白色:0xFFFFFF。
|
9624
9632
|
灰色:0x999999。
|
9625
9633
|
:type BackGroundColor: str
|
9626
|
-
:param _BackgroundImageUrl:
|
9627
|
-
|
9634
|
+
:param _BackgroundImageUrl: 整个画布的背景图片url,优先级高于BackGroundColor。支持png、jpg、jpeg格式。图片大小限制不超过5MB。
|
9635
|
+
注:
|
9636
|
+
1,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,背景图片将不会生效。
|
9637
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,背景图片将不会生效。
|
9628
9638
|
:type BackgroundImageUrl: str
|
9629
9639
|
:param _WaterMarkList: 混流布局的水印参数。
|
9630
9640
|
:type WaterMarkList: list of McuWaterMarkParams
|
@@ -9680,8 +9690,10 @@ class McuVideoParams(AbstractModel):
|
|
9680
9690
|
|
9681
9691
|
@property
|
9682
9692
|
def BackgroundImageUrl(self):
|
9683
|
-
r"""
|
9684
|
-
|
9693
|
+
r"""整个画布的背景图片url,优先级高于BackGroundColor。支持png、jpg、jpeg格式。图片大小限制不超过5MB。
|
9694
|
+
注:
|
9695
|
+
1,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,背景图片将不会生效。
|
9696
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,背景图片将不会生效。
|
9685
9697
|
:rtype: str
|
9686
9698
|
"""
|
9687
9699
|
return self._BackgroundImageUrl
|
@@ -9747,7 +9759,9 @@ class McuWaterMarkImage(AbstractModel):
|
|
9747
9759
|
def __init__(self):
|
9748
9760
|
r"""
|
9749
9761
|
:param _WaterMarkUrl: 水印图片URL地址,支持png、jpg、jpeg格式。图片大小限制不超过5MB。
|
9750
|
-
|
9762
|
+
注:
|
9763
|
+
1,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,水印图片将不会生效。
|
9764
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,水印图片将不会生效。
|
9751
9765
|
:type WaterMarkUrl: str
|
9752
9766
|
:param _WaterMarkWidth: 水印在输出时的宽。单位为像素值。
|
9753
9767
|
:type WaterMarkWidth: int
|
@@ -9773,7 +9787,9 @@ class McuWaterMarkImage(AbstractModel):
|
|
9773
9787
|
@property
|
9774
9788
|
def WaterMarkUrl(self):
|
9775
9789
|
r"""水印图片URL地址,支持png、jpg、jpeg格式。图片大小限制不超过5MB。
|
9776
|
-
|
9790
|
+
注:
|
9791
|
+
1,您需要确保图片链接的可访问性,后台单次下载超时时间为10秒,最多重试3次,若最终图片下载失败,水印图片将不会生效。
|
9792
|
+
2,url可支持字符集:【'0-9','a-z','A-Z','-', '.', '_', '~', ':', '/', '?', '#', '[', ']','@', '!', '&', '(', ')', '*', '+', ',', '%', '=', ';', '|'】,您需要确保url字符在可支持字符集内,若存在可支持字符集外的字符,水印图片将不会生效。
|
9777
9793
|
:rtype: str
|
9778
9794
|
"""
|
9779
9795
|
return self._WaterMarkUrl
|