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
tencentcloud/__init__.py
CHANGED
@@ -8874,11 +8874,14 @@ class OwnNumberApplyDetailItem(AbstractModel):
|
|
8874
8874
|
:type MaxCallCount: int
|
8875
8875
|
:param _MaxCallPSec: 每秒最大并发数
|
8876
8876
|
:type MaxCallPSec: int
|
8877
|
+
:param _OutboundCalleeFormat: 呼出被叫格式,使用 {+E.164} 或 {E.164},
|
8878
|
+
:type OutboundCalleeFormat: str
|
8877
8879
|
"""
|
8878
8880
|
self._CallType = None
|
8879
8881
|
self._PhoneNumber = None
|
8880
8882
|
self._MaxCallCount = None
|
8881
8883
|
self._MaxCallPSec = None
|
8884
|
+
self._OutboundCalleeFormat = None
|
8882
8885
|
|
8883
8886
|
@property
|
8884
8887
|
def CallType(self):
|
@@ -8912,12 +8915,21 @@ class OwnNumberApplyDetailItem(AbstractModel):
|
|
8912
8915
|
def MaxCallPSec(self, MaxCallPSec):
|
8913
8916
|
self._MaxCallPSec = MaxCallPSec
|
8914
8917
|
|
8918
|
+
@property
|
8919
|
+
def OutboundCalleeFormat(self):
|
8920
|
+
return self._OutboundCalleeFormat
|
8921
|
+
|
8922
|
+
@OutboundCalleeFormat.setter
|
8923
|
+
def OutboundCalleeFormat(self, OutboundCalleeFormat):
|
8924
|
+
self._OutboundCalleeFormat = OutboundCalleeFormat
|
8925
|
+
|
8915
8926
|
|
8916
8927
|
def _deserialize(self, params):
|
8917
8928
|
self._CallType = params.get("CallType")
|
8918
8929
|
self._PhoneNumber = params.get("PhoneNumber")
|
8919
8930
|
self._MaxCallCount = params.get("MaxCallCount")
|
8920
8931
|
self._MaxCallPSec = params.get("MaxCallPSec")
|
8932
|
+
self._OutboundCalleeFormat = params.get("OutboundCalleeFormat")
|
8921
8933
|
memeber_set = set(params.keys())
|
8922
8934
|
for name, value in vars(self).items():
|
8923
8935
|
property_name = name[1:]
|
@@ -26459,9 +26459,12 @@ class ReadonlyNode(AbstractModel):
|
|
26459
26459
|
:type IsRandomZone: str
|
26460
26460
|
:param _Zone: 指定该节点分布在哪个可用区。
|
26461
26461
|
:type Zone: str
|
26462
|
+
:param _NodeId: 升级集群版实例时,如果要调整只读节点可用区,需要指定节点id。
|
26463
|
+
:type NodeId: str
|
26462
26464
|
"""
|
26463
26465
|
self._IsRandomZone = None
|
26464
26466
|
self._Zone = None
|
26467
|
+
self._NodeId = None
|
26465
26468
|
|
26466
26469
|
@property
|
26467
26470
|
def IsRandomZone(self):
|
@@ -26479,10 +26482,19 @@ class ReadonlyNode(AbstractModel):
|
|
26479
26482
|
def Zone(self, Zone):
|
26480
26483
|
self._Zone = Zone
|
26481
26484
|
|
26485
|
+
@property
|
26486
|
+
def NodeId(self):
|
26487
|
+
return self._NodeId
|
26488
|
+
|
26489
|
+
@NodeId.setter
|
26490
|
+
def NodeId(self, NodeId):
|
26491
|
+
self._NodeId = NodeId
|
26492
|
+
|
26482
26493
|
|
26483
26494
|
def _deserialize(self, params):
|
26484
26495
|
self._IsRandomZone = params.get("IsRandomZone")
|
26485
26496
|
self._Zone = params.get("Zone")
|
26497
|
+
self._NodeId = params.get("NodeId")
|
26486
26498
|
memeber_set = set(params.keys())
|
26487
26499
|
for name, value in vars(self).items():
|
26488
26500
|
property_name = name[1:]
|
@@ -221,6 +221,9 @@ class BackUpJobDisplay(AbstractModel):
|
|
221
221
|
:param _BackupCosInfo: 备份实例中关于cos的信息
|
222
222
|
注意:此字段可能返回 null,表示取不到有效值。
|
223
223
|
:type BackupCosInfo: :class:`tencentcloud.cdwdoris.v20211228.models.BackupCosInfo`
|
224
|
+
:param _IsUserDefineBucket: 是否使用的自定义桶
|
225
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
226
|
+
:type IsUserDefineBucket: bool
|
224
227
|
"""
|
225
228
|
self._JobId = None
|
226
229
|
self._Snapshot = None
|
@@ -234,6 +237,7 @@ class BackUpJobDisplay(AbstractModel):
|
|
234
237
|
self._DorisSourceInfo = None
|
235
238
|
self._JobStatusNum = None
|
236
239
|
self._BackupCosInfo = None
|
240
|
+
self._IsUserDefineBucket = None
|
237
241
|
|
238
242
|
@property
|
239
243
|
def JobId(self):
|
@@ -331,6 +335,14 @@ class BackUpJobDisplay(AbstractModel):
|
|
331
335
|
def BackupCosInfo(self, BackupCosInfo):
|
332
336
|
self._BackupCosInfo = BackupCosInfo
|
333
337
|
|
338
|
+
@property
|
339
|
+
def IsUserDefineBucket(self):
|
340
|
+
return self._IsUserDefineBucket
|
341
|
+
|
342
|
+
@IsUserDefineBucket.setter
|
343
|
+
def IsUserDefineBucket(self, IsUserDefineBucket):
|
344
|
+
self._IsUserDefineBucket = IsUserDefineBucket
|
345
|
+
|
334
346
|
|
335
347
|
def _deserialize(self, params):
|
336
348
|
self._JobId = params.get("JobId")
|
@@ -349,6 +361,7 @@ class BackUpJobDisplay(AbstractModel):
|
|
349
361
|
if params.get("BackupCosInfo") is not None:
|
350
362
|
self._BackupCosInfo = BackupCosInfo()
|
351
363
|
self._BackupCosInfo._deserialize(params.get("BackupCosInfo"))
|
364
|
+
self._IsUserDefineBucket = params.get("IsUserDefineBucket")
|
352
365
|
memeber_set = set(params.keys())
|
353
366
|
for name, value in vars(self).items():
|
354
367
|
property_name = name[1:]
|
@@ -1338,7 +1338,9 @@ class CfwClient(AbstractClient):
|
|
1338
1338
|
|
1339
1339
|
|
1340
1340
|
def DescribeNatSwitchList(self, request):
|
1341
|
-
"""
|
1341
|
+
"""旧接口,不再维护
|
1342
|
+
|
1343
|
+
查询NAT边界防火墙开关列表
|
1342
1344
|
|
1343
1345
|
:param request: Request instance for DescribeNatSwitchList.
|
1344
1346
|
:type request: :class:`tencentcloud.cfw.v20190904.models.DescribeNatSwitchListRequest`
|
@@ -3634,6 +3634,12 @@ class CreateRuleItem(AbstractModel):
|
|
3634
3634
|
:param _TargetType: 访问目的类型:入向规则时类型可以为ip,net,template,instance,group,tag;出向规则时可以为 ip,net,domain,template,location
|
3635
3635
|
:type TargetType: str
|
3636
3636
|
:param _Protocol: 协议,可选的值: TCP UDP ICMP ANY HTTP HTTPS HTTP/HTTPS SMTP SMTPS SMTP/SMTPS FTP DNS
|
3637
|
+
1. 入方向 旁路防火墙/全局规则 仅支持TCP
|
3638
|
+
|
3639
|
+
2.出方向 旁路防火墙/全局规则 仅支持TCP HTTP/HTTPS TLS/SSL
|
3640
|
+
|
3641
|
+
3.domain 请选择七层协议 如HTTP/HTTPS
|
3642
|
+
|
3637
3643
|
:type Protocol: str
|
3638
3644
|
:param _RuleAction: 访问控制策略中设置的流量通过云防火墙的方式。取值: accept:放行 drop:拒绝 log:观察
|
3639
3645
|
:type RuleAction: str
|
@@ -7822,7 +7828,7 @@ true为启用,false为不启用
|
|
7822
7828
|
:type Port: str
|
7823
7829
|
:param _Protocol: 协议;TCP/UDP/ICMP/ANY
|
7824
7830
|
:type Protocol: str
|
7825
|
-
:param _ServiceTemplateId: 端口协议类型参数模板id;协议端口模板id
|
7831
|
+
:param _ServiceTemplateId: 端口协议类型参数模板id;协议端口模板id
|
7826
7832
|
:type ServiceTemplateId: str
|
7827
7833
|
:param _RuleUuid: 规则的uuid
|
7828
7834
|
:type RuleUuid: int
|
@@ -11689,7 +11695,7 @@ class EdgeIpInfo(AbstractModel):
|
|
11689
11695
|
r"""
|
11690
11696
|
:param _PublicIp: 公网IP
|
11691
11697
|
:type PublicIp: str
|
11692
|
-
:param _PublicIpType: 公网 IP 类型
|
11698
|
+
:param _PublicIpType: 公网 IP 类型 1 公网,2 弹性,3 弹性ipv6,4 anycastIP, 6 HighQualityEIP
|
11693
11699
|
注意:此字段可能返回 null,表示取不到有效值。
|
11694
11700
|
:type PublicIpType: int
|
11695
11701
|
:param _InstanceId: 实例ID
|
@@ -6177,7 +6177,7 @@ class CreateTopicRequest(AbstractModel):
|
|
6177
6177
|
:type RetentionMs: int
|
6178
6178
|
:param _SegmentMs: Segment分片滚动的时长,单位ms,当前最小为3600000ms
|
6179
6179
|
:type SegmentMs: int
|
6180
|
-
:param _MaxMessageBytes: 主题消息最大值,单位为 Byte,最小值1024Byte(即1KB),最大值为
|
6180
|
+
:param _MaxMessageBytes: 主题消息最大值,单位为 Byte,最小值1024Byte(即1KB),最大值为12582912Byte(即12MB)
|
6181
6181
|
:type MaxMessageBytes: int
|
6182
6182
|
:param _EnableAclRule: 预设ACL规则, 1:打开 0:关闭,默认不打开
|
6183
6183
|
:type EnableAclRule: int
|
@@ -3364,7 +3364,7 @@ OPEN:公网属性, INTERNAL:内网属性。
|
|
3364
3364
|
:type LoadBalancerName: str
|
3365
3365
|
:param _VpcId: 负载均衡后端目标设备所属的网络 ID,如vpc-12345678,可以通过 [DescribeVpcEx](https://cloud.tencent.com/document/product/215/1372) 接口获取。 不填此参数则默认为DefaultVPC。创建内网负载均衡实例时,此参数必填。
|
3366
3366
|
:type VpcId: str
|
3367
|
-
:param _SubnetId: 在私有网络内购买内网负载均衡实例的情况下,必须指定子网 ID,内网负载均衡实例的 VIP
|
3367
|
+
:param _SubnetId: 在私有网络内购买内网负载均衡实例的情况下,必须指定子网 ID,内网负载均衡实例的 VIP 将从这个子网中产生。创建内网负载均衡实例时,此参数必填,创建公网IPv4负载均衡实例时,不支持指定该参数。
|
3368
3368
|
:type SubnetId: str
|
3369
3369
|
:param _ProjectId: 负载均衡实例所属的项目 ID,可以通过 [DescribeProject](https://cloud.tencent.com/document/api/651/78725) 接口获取。不填此参数则视为默认项目。
|
3370
3370
|
:type ProjectId: int
|
@@ -3416,6 +3416,10 @@ OPEN:公网属性, INTERNAL:内网属性。
|
|
3416
3416
|
:type Egress: str
|
3417
3417
|
:param _LBChargePrepaid: 负载均衡实例的预付费相关属性
|
3418
3418
|
:type LBChargePrepaid: :class:`tencentcloud.clb.v20180317.models.LBChargePrepaid`
|
3419
|
+
:param _LBChargeType: 负载均衡实例计费类型,取值:POSTPAID_BY_HOUR,PREPAID,默认是POSTPAID_BY_HOUR。
|
3420
|
+
:type LBChargeType: str
|
3421
|
+
:param _AccessLogTopicId: 七层访问日志主题ID
|
3422
|
+
:type AccessLogTopicId: str
|
3419
3423
|
"""
|
3420
3424
|
self._LoadBalancerType = None
|
3421
3425
|
self._Forward = None
|
@@ -3445,6 +3449,8 @@ OPEN:公网属性, INTERNAL:内网属性。
|
|
3445
3449
|
self._DynamicVip = None
|
3446
3450
|
self._Egress = None
|
3447
3451
|
self._LBChargePrepaid = None
|
3452
|
+
self._LBChargeType = None
|
3453
|
+
self._AccessLogTopicId = None
|
3448
3454
|
|
3449
3455
|
@property
|
3450
3456
|
def LoadBalancerType(self):
|
@@ -3670,6 +3676,22 @@ OPEN:公网属性, INTERNAL:内网属性。
|
|
3670
3676
|
def LBChargePrepaid(self, LBChargePrepaid):
|
3671
3677
|
self._LBChargePrepaid = LBChargePrepaid
|
3672
3678
|
|
3679
|
+
@property
|
3680
|
+
def LBChargeType(self):
|
3681
|
+
return self._LBChargeType
|
3682
|
+
|
3683
|
+
@LBChargeType.setter
|
3684
|
+
def LBChargeType(self, LBChargeType):
|
3685
|
+
self._LBChargeType = LBChargeType
|
3686
|
+
|
3687
|
+
@property
|
3688
|
+
def AccessLogTopicId(self):
|
3689
|
+
return self._AccessLogTopicId
|
3690
|
+
|
3691
|
+
@AccessLogTopicId.setter
|
3692
|
+
def AccessLogTopicId(self, AccessLogTopicId):
|
3693
|
+
self._AccessLogTopicId = AccessLogTopicId
|
3694
|
+
|
3673
3695
|
|
3674
3696
|
def _deserialize(self, params):
|
3675
3697
|
self._LoadBalancerType = params.get("LoadBalancerType")
|
@@ -3716,6 +3738,8 @@ OPEN:公网属性, INTERNAL:内网属性。
|
|
3716
3738
|
if params.get("LBChargePrepaid") is not None:
|
3717
3739
|
self._LBChargePrepaid = LBChargePrepaid()
|
3718
3740
|
self._LBChargePrepaid._deserialize(params.get("LBChargePrepaid"))
|
3741
|
+
self._LBChargeType = params.get("LBChargeType")
|
3742
|
+
self._AccessLogTopicId = params.get("AccessLogTopicId")
|
3719
3743
|
memeber_set = set(params.keys())
|
3720
3744
|
for name, value in vars(self).items():
|
3721
3745
|
property_name = name[1:]
|
@@ -2838,7 +2838,9 @@ class CwpClient(AbstractClient):
|
|
2838
2838
|
|
2839
2839
|
|
2840
2840
|
def DescribeAttackSource(self, request):
|
2841
|
-
"""
|
2841
|
+
"""已废弃
|
2842
|
+
|
2843
|
+
查询攻击溯源
|
2842
2844
|
|
2843
2845
|
:param request: Request instance for DescribeAttackSource.
|
2844
2846
|
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackSourceRequest`
|
@@ -2861,7 +2863,9 @@ class CwpClient(AbstractClient):
|
|
2861
2863
|
|
2862
2864
|
|
2863
2865
|
def DescribeAttackSourceEvents(self, request):
|
2864
|
-
"""
|
2866
|
+
"""已废弃
|
2867
|
+
|
2868
|
+
查询攻击溯源事件
|
2865
2869
|
|
2866
2870
|
:param request: Request instance for DescribeAttackSourceEvents.
|
2867
2871
|
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeAttackSourceEventsRequest`
|
@@ -4321,7 +4321,7 @@ class AssetProcessBaseInfo(AbstractModel):
|
|
4321
4321
|
:type ParentProcessName: str
|
4322
4322
|
:param _Status: 进程状态
|
4323
4323
|
:type Status: str
|
4324
|
-
:param _HasSign: 数字签名:0无,1有, 999 空,仅
|
4324
|
+
:param _HasSign: 数字签名:0无,1有, 999 空,仅Windows
|
4325
4325
|
:type HasSign: int
|
4326
4326
|
:param _InstallByPackage: 是否通过安装包安装::0否,1是, 999 空,仅linux
|
4327
4327
|
:type InstallByPackage: int
|
@@ -4924,9 +4924,9 @@ class AssetUserBaseInfo(AbstractModel):
|
|
4924
4924
|
:type Name: str
|
4925
4925
|
:param _ProjectId: 主机业务组ID
|
4926
4926
|
:type ProjectId: int
|
4927
|
-
:param _UserType: 账号类型:0访客用户,1标准用户,2管理员用户 ,999为空,仅
|
4927
|
+
:param _UserType: 账号类型:0访客用户,1标准用户,2管理员用户 ,999为空,仅Windows
|
4928
4928
|
:type UserType: int
|
4929
|
-
:param _IsDomain: 是否域账号:0否, 1是,2否, 999为空 仅
|
4929
|
+
:param _IsDomain: 是否域账号:0否, 1是,2否, 999为空 仅Windows
|
4930
4930
|
:type IsDomain: int
|
4931
4931
|
:param _IsSudo: 是否有sudo权限,1是,0否, 999为空, 仅linux
|
4932
4932
|
:type IsSudo: int
|
@@ -5290,9 +5290,9 @@ class AssetUserDetail(AbstractModel):
|
|
5290
5290
|
:type LastLoginTime: str
|
5291
5291
|
:param _Name: 账号名称
|
5292
5292
|
:type Name: str
|
5293
|
-
:param _UserType: 账号类型:0访客用户,1标准用户,2管理员用户 ,999为空,仅
|
5293
|
+
:param _UserType: 账号类型:0访客用户,1标准用户,2管理员用户 ,999为空,仅Windows
|
5294
5294
|
:type UserType: int
|
5295
|
-
:param _IsDomain: 是否域账号:0否, 1是, 999为空 仅
|
5295
|
+
:param _IsDomain: 是否域账号:0否, 1是, 999为空 仅Windows
|
5296
5296
|
:type IsDomain: int
|
5297
5297
|
:param _IsSshLogin: 是否允许ssh登录,1是,0否, 999为空, 仅linux
|
5298
5298
|
:type IsSshLogin: int
|
@@ -6070,7 +6070,7 @@ class AssetWebFrameBaseInfo(AbstractModel):
|
|
6070
6070
|
:param _Tag: 主机标签
|
6071
6071
|
注意:此字段可能返回 null,表示取不到有效值。
|
6072
6072
|
:type Tag: list of MachineTag
|
6073
|
-
:param _Name:
|
6073
|
+
:param _Name: Web应用名
|
6074
6074
|
:type Name: str
|
6075
6075
|
:param _Version: 版本
|
6076
6076
|
:type Version: str
|
@@ -6822,7 +6822,7 @@ class AssetWebServiceBaseInfo(AbstractModel):
|
|
6822
6822
|
:param _Tag: 主机标签
|
6823
6823
|
注意:此字段可能返回 null,表示取不到有效值。
|
6824
6824
|
:type Tag: list of MachineTag
|
6825
|
-
:param _Name:
|
6825
|
+
:param _Name: 服务名
|
6826
6826
|
:type Name: str
|
6827
6827
|
:param _Version: 版本
|
6828
6828
|
:type Version: str
|
@@ -40688,7 +40688,7 @@ class DescribeMalwareWhiteListRequest(AbstractModel):
|
|
40688
40688
|
:type Filters: list of Filter
|
40689
40689
|
:param _Order: 排序方式: [ASC:升序|DESC:降序]
|
40690
40690
|
:type Order: str
|
40691
|
-
:param _By: 可选排序列: [EventsCount]
|
40691
|
+
:param _By: 可选排序列: [EventsCount|CreateTime|ModifyTime]
|
40692
40692
|
:type By: str
|
40693
40693
|
"""
|
40694
40694
|
self._Offset = None
|
@@ -46946,7 +46946,7 @@ class DescribeSecurityBroadcastsRequest(AbstractModel):
|
|
46946
46946
|
:type BeginDate: str
|
46947
46947
|
:param _EndDate: 筛选发布日期:结束时间
|
46948
46948
|
:type EndDate: str
|
46949
|
-
:param _BroadcastType: 过滤安全播报类型:0-紧急通知,1-功能更新,2-行业荣誉,3
|
46949
|
+
:param _BroadcastType: 过滤安全播报类型:0-紧急通知,1-功能更新,2-行业荣誉,3-版本发布,4-最佳实践
|
46950
46950
|
:type BroadcastType: str
|
46951
46951
|
"""
|
46952
46952
|
self._Offset = None
|
@@ -54669,22 +54669,7 @@ class ExportAssetAppListRequest(AbstractModel):
|
|
54669
54669
|
r"""
|
54670
54670
|
:param _Quuid: 查询指定Quuid主机的信息
|
54671
54671
|
:type Quuid: str
|
54672
|
-
:param _Filters:
|
54673
|
-
<li>AppName- string - 是否必填:否 - 应用名搜索</li>
|
54674
|
-
<li>IP - String - 是否必填:否 - 主机ip</li>
|
54675
|
-
<li>MachineName - String - 是否必填:否 - 主机名称</li>
|
54676
|
-
<li>InstanceID - string - 是否必填:否 - 实例ID</li>
|
54677
|
-
<li>Type - int - 是否必填:否 - 类型 : 仅linux
|
54678
|
-
0: 全部
|
54679
|
-
1: 运维
|
54680
|
-
2 : 数据库
|
54681
|
-
3 : 安全
|
54682
|
-
4 : 可疑应用
|
54683
|
-
5 : 系统架构
|
54684
|
-
6 : 系统应用
|
54685
|
-
7 : WEB服务
|
54686
|
-
99:其他</li>
|
54687
|
-
<li>OsType - uint64 - 是否必填:否 - windows/linux</li>
|
54672
|
+
:param _Filters: 过滤条件。<li>AppName- string - 是否必填:否 - 应用名搜索</li><li>IP - String - 是否必填:否 - 主机ip</li><li>MachineName - String - 是否必填:否 - 主机名称</li><li>InstanceID - string - 是否必填:否 - 实例ID</li><li>Type - int - 是否必填:否 - 类型 : 仅linux0: 全部1: 运维2 : 数据库3 : 安全4 : 可疑应用5 : 系统架构6 : 系统应用7 : WEB服务99:其他</li><li>OsType - uint64 - 是否必填:否 - Windows/Linux</li>
|
54688
54673
|
:type Filters: list of AssetFilters
|
54689
54674
|
:param _Order: 排序方式,asc升序 或 desc降序
|
54690
54675
|
:type Order: str
|
@@ -66996,7 +66981,8 @@ class MachineSimple(AbstractModel):
|
|
66996
66981
|
:type Tag: list of MachineTag
|
66997
66982
|
:param _RegionInfo: 地域信息
|
66998
66983
|
:type RegionInfo: :class:`tencentcloud.cwp.v20180228.models.RegionInfo`
|
66999
|
-
:param _InstanceState:
|
66984
|
+
:param _InstanceState: 实例状态请参考CVM实例列表InstanceState值
|
66985
|
+
https://cloud.tencent.com/document/api/213/15753#Instance
|
67000
66986
|
:type InstanceState: str
|
67001
66987
|
:param _ProjectId: 项目ID
|
67002
66988
|
:type ProjectId: int
|
@@ -67825,6 +67811,9 @@ class MalwareInfo(AbstractModel):
|
|
67825
67811
|
:param _MachineExtraInfo: 附加信息
|
67826
67812
|
注意:此字段可能返回 null,表示取不到有效值。
|
67827
67813
|
:type MachineExtraInfo: :class:`tencentcloud.cwp.v20180228.models.MachineExtraInfo`
|
67814
|
+
:param _References: 参考链接
|
67815
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
67816
|
+
:type References: list of str
|
67828
67817
|
"""
|
67829
67818
|
self._VirusName = None
|
67830
67819
|
self._FileSize = None
|
@@ -67856,6 +67845,7 @@ class MalwareInfo(AbstractModel):
|
|
67856
67845
|
self._ModifyTime = None
|
67857
67846
|
self._StrFileAccessTime = None
|
67858
67847
|
self._MachineExtraInfo = None
|
67848
|
+
self._References = None
|
67859
67849
|
|
67860
67850
|
@property
|
67861
67851
|
def VirusName(self):
|
@@ -68097,6 +68087,14 @@ class MalwareInfo(AbstractModel):
|
|
68097
68087
|
def MachineExtraInfo(self, MachineExtraInfo):
|
68098
68088
|
self._MachineExtraInfo = MachineExtraInfo
|
68099
68089
|
|
68090
|
+
@property
|
68091
|
+
def References(self):
|
68092
|
+
return self._References
|
68093
|
+
|
68094
|
+
@References.setter
|
68095
|
+
def References(self, References):
|
68096
|
+
self._References = References
|
68097
|
+
|
68100
68098
|
|
68101
68099
|
def _deserialize(self, params):
|
68102
68100
|
self._VirusName = params.get("VirusName")
|
@@ -68131,6 +68129,7 @@ class MalwareInfo(AbstractModel):
|
|
68131
68129
|
if params.get("MachineExtraInfo") is not None:
|
68132
68130
|
self._MachineExtraInfo = MachineExtraInfo()
|
68133
68131
|
self._MachineExtraInfo._deserialize(params.get("MachineExtraInfo"))
|
68132
|
+
self._References = params.get("References")
|
68134
68133
|
memeber_set = set(params.keys())
|
68135
68134
|
for name, value in vars(self).items():
|
68136
68135
|
property_name = name[1:]
|
@@ -68401,6 +68400,8 @@ class MalwareWhiteListInfo(AbstractModel):
|
|
68401
68400
|
:type CreateTime: str
|
68402
68401
|
:param _EventsCount: 受影响记录
|
68403
68402
|
:type EventsCount: int
|
68403
|
+
:param _ModifyTime: 规则修改时间
|
68404
|
+
:type ModifyTime: str
|
68404
68405
|
"""
|
68405
68406
|
self._Id = None
|
68406
68407
|
self._QuuidList = None
|
@@ -68413,6 +68414,7 @@ class MalwareWhiteListInfo(AbstractModel):
|
|
68413
68414
|
self._FileExtension = None
|
68414
68415
|
self._CreateTime = None
|
68415
68416
|
self._EventsCount = None
|
68417
|
+
self._ModifyTime = None
|
68416
68418
|
|
68417
68419
|
@property
|
68418
68420
|
def Id(self):
|
@@ -68502,6 +68504,14 @@ class MalwareWhiteListInfo(AbstractModel):
|
|
68502
68504
|
def EventsCount(self, EventsCount):
|
68503
68505
|
self._EventsCount = EventsCount
|
68504
68506
|
|
68507
|
+
@property
|
68508
|
+
def ModifyTime(self):
|
68509
|
+
return self._ModifyTime
|
68510
|
+
|
68511
|
+
@ModifyTime.setter
|
68512
|
+
def ModifyTime(self, ModifyTime):
|
68513
|
+
self._ModifyTime = ModifyTime
|
68514
|
+
|
68505
68515
|
|
68506
68516
|
def _deserialize(self, params):
|
68507
68517
|
self._Id = params.get("Id")
|
@@ -68515,6 +68525,7 @@ class MalwareWhiteListInfo(AbstractModel):
|
|
68515
68525
|
self._FileExtension = params.get("FileExtension")
|
68516
68526
|
self._CreateTime = params.get("CreateTime")
|
68517
68527
|
self._EventsCount = params.get("EventsCount")
|
68528
|
+
self._ModifyTime = params.get("ModifyTime")
|
68518
68529
|
memeber_set = set(params.keys())
|
68519
68530
|
for name, value in vars(self).items():
|
68520
68531
|
property_name = name[1:]
|
@@ -77533,6 +77544,9 @@ class RansomDefenseRollbackTask(AbstractModel):
|
|
77533
77544
|
:type ModifyTime: str
|
77534
77545
|
:param _RegionInfo: 可用区信息
|
77535
77546
|
:type RegionInfo: :class:`tencentcloud.cwp.v20180228.models.RegionInfo`
|
77547
|
+
:param _InstanceId: 主机示例ID
|
77548
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
77549
|
+
:type InstanceId: str
|
77536
77550
|
"""
|
77537
77551
|
self._Id = None
|
77538
77552
|
self._Uuid = None
|
@@ -77544,6 +77558,7 @@ class RansomDefenseRollbackTask(AbstractModel):
|
|
77544
77558
|
self._BackupTime = None
|
77545
77559
|
self._ModifyTime = None
|
77546
77560
|
self._RegionInfo = None
|
77561
|
+
self._InstanceId = None
|
77547
77562
|
|
77548
77563
|
@property
|
77549
77564
|
def Id(self):
|
@@ -77625,6 +77640,14 @@ class RansomDefenseRollbackTask(AbstractModel):
|
|
77625
77640
|
def RegionInfo(self, RegionInfo):
|
77626
77641
|
self._RegionInfo = RegionInfo
|
77627
77642
|
|
77643
|
+
@property
|
77644
|
+
def InstanceId(self):
|
77645
|
+
return self._InstanceId
|
77646
|
+
|
77647
|
+
@InstanceId.setter
|
77648
|
+
def InstanceId(self, InstanceId):
|
77649
|
+
self._InstanceId = InstanceId
|
77650
|
+
|
77628
77651
|
|
77629
77652
|
def _deserialize(self, params):
|
77630
77653
|
self._Id = params.get("Id")
|
@@ -77639,6 +77662,7 @@ class RansomDefenseRollbackTask(AbstractModel):
|
|
77639
77662
|
if params.get("RegionInfo") is not None:
|
77640
77663
|
self._RegionInfo = RegionInfo()
|
77641
77664
|
self._RegionInfo._deserialize(params.get("RegionInfo"))
|
77665
|
+
self._InstanceId = params.get("InstanceId")
|
77642
77666
|
memeber_set = set(params.keys())
|
77643
77667
|
for name, value in vars(self).items():
|
77644
77668
|
property_name = name[1:]
|
@@ -78145,6 +78169,9 @@ class RansomDefenseStrategyMachineBackupInfo(AbstractModel):
|
|
78145
78169
|
:param _BackupSuccessCount: 备份成功次数
|
78146
78170
|
注意:此字段可能返回 null,表示取不到有效值。
|
78147
78171
|
:type BackupSuccessCount: int
|
78172
|
+
:param _HostVersion: 版本信息:0-基础版 1-专业版 2-旗舰版 3-普惠版
|
78173
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
78174
|
+
:type HostVersion: int
|
78148
78175
|
"""
|
78149
78176
|
self._Uuid = None
|
78150
78177
|
self._Quuid = None
|
@@ -78166,6 +78193,7 @@ class RansomDefenseStrategyMachineBackupInfo(AbstractModel):
|
|
78166
78193
|
self._RollBackPercent = None
|
78167
78194
|
self._RollBackStatus = None
|
78168
78195
|
self._BackupSuccessCount = None
|
78196
|
+
self._HostVersion = None
|
78169
78197
|
|
78170
78198
|
@property
|
78171
78199
|
def Uuid(self):
|
@@ -78327,6 +78355,14 @@ class RansomDefenseStrategyMachineBackupInfo(AbstractModel):
|
|
78327
78355
|
def BackupSuccessCount(self, BackupSuccessCount):
|
78328
78356
|
self._BackupSuccessCount = BackupSuccessCount
|
78329
78357
|
|
78358
|
+
@property
|
78359
|
+
def HostVersion(self):
|
78360
|
+
return self._HostVersion
|
78361
|
+
|
78362
|
+
@HostVersion.setter
|
78363
|
+
def HostVersion(self, HostVersion):
|
78364
|
+
self._HostVersion = HostVersion
|
78365
|
+
|
78330
78366
|
|
78331
78367
|
def _deserialize(self, params):
|
78332
78368
|
self._Uuid = params.get("Uuid")
|
@@ -78361,6 +78397,7 @@ class RansomDefenseStrategyMachineBackupInfo(AbstractModel):
|
|
78361
78397
|
self._RollBackPercent = params.get("RollBackPercent")
|
78362
78398
|
self._RollBackStatus = params.get("RollBackStatus")
|
78363
78399
|
self._BackupSuccessCount = params.get("BackupSuccessCount")
|
78400
|
+
self._HostVersion = params.get("HostVersion")
|
78364
78401
|
memeber_set = set(params.keys())
|
78365
78402
|
for name, value in vars(self).items():
|
78366
78403
|
property_name = name[1:]
|
@@ -84207,9 +84244,9 @@ class SeparateMalwaresResponse(AbstractModel):
|
|
84207
84244
|
|
84208
84245
|
def __init__(self):
|
84209
84246
|
r"""
|
84210
|
-
:param _SuccessIds: 隔离成功的
|
84247
|
+
:param _SuccessIds: 隔离成功的ID数组,若无则返回空数组
|
84211
84248
|
:type SuccessIds: list of int non-negative
|
84212
|
-
:param _FailedIds: 隔离失败的
|
84249
|
+
:param _FailedIds: 隔离失败的ID数组,若无则返回空数组
|
84213
84250
|
:type FailedIds: list of int non-negative
|
84214
84251
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
84215
84252
|
:type RequestId: str
|
@@ -8005,6 +8005,9 @@ class DataEngineInfo(AbstractModel):
|
|
8005
8005
|
:param _EngineNetworkName: 引擎所在网络名称
|
8006
8006
|
注意:此字段可能返回 null,表示取不到有效值。
|
8007
8007
|
:type EngineNetworkName: str
|
8008
|
+
:param _IsPoolMode: 是否使用预留池
|
8009
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8010
|
+
:type IsPoolMode: str
|
8008
8011
|
"""
|
8009
8012
|
self._DataEngineName = None
|
8010
8013
|
self._EngineType = None
|
@@ -8059,6 +8062,7 @@ class DataEngineInfo(AbstractModel):
|
|
8059
8062
|
self._EngineResourceUsedCU = None
|
8060
8063
|
self._AccessInfos = None
|
8061
8064
|
self._EngineNetworkName = None
|
8065
|
+
self._IsPoolMode = None
|
8062
8066
|
|
8063
8067
|
@property
|
8064
8068
|
def DataEngineName(self):
|
@@ -8484,6 +8488,14 @@ class DataEngineInfo(AbstractModel):
|
|
8484
8488
|
def EngineNetworkName(self, EngineNetworkName):
|
8485
8489
|
self._EngineNetworkName = EngineNetworkName
|
8486
8490
|
|
8491
|
+
@property
|
8492
|
+
def IsPoolMode(self):
|
8493
|
+
return self._IsPoolMode
|
8494
|
+
|
8495
|
+
@IsPoolMode.setter
|
8496
|
+
def IsPoolMode(self, IsPoolMode):
|
8497
|
+
self._IsPoolMode = IsPoolMode
|
8498
|
+
|
8487
8499
|
|
8488
8500
|
def _deserialize(self, params):
|
8489
8501
|
self._DataEngineName = params.get("DataEngineName")
|
@@ -8558,6 +8570,7 @@ class DataEngineInfo(AbstractModel):
|
|
8558
8570
|
obj._deserialize(item)
|
8559
8571
|
self._AccessInfos.append(obj)
|
8560
8572
|
self._EngineNetworkName = params.get("EngineNetworkName")
|
8573
|
+
self._IsPoolMode = params.get("IsPoolMode")
|
8561
8574
|
memeber_set = set(params.keys())
|
8562
8575
|
for name, value in vars(self).items():
|
8563
8576
|
property_name = name[1:]
|
@@ -4136,12 +4136,15 @@ class DeleteUserManagerUserListRequest(AbstractModel):
|
|
4136
4136
|
:type DisplayStrategy: str
|
4137
4137
|
:param _UserGroupList: 用户组
|
4138
4138
|
:type UserGroupList: list of UserAndGroup
|
4139
|
+
:param _DeleteHomeDir: 是否删除家目录,只针对cvm集群
|
4140
|
+
:type DeleteHomeDir: bool
|
4139
4141
|
"""
|
4140
4142
|
self._InstanceId = None
|
4141
4143
|
self._UserNameList = None
|
4142
4144
|
self._TkeClusterId = None
|
4143
4145
|
self._DisplayStrategy = None
|
4144
4146
|
self._UserGroupList = None
|
4147
|
+
self._DeleteHomeDir = None
|
4145
4148
|
|
4146
4149
|
@property
|
4147
4150
|
def InstanceId(self):
|
@@ -4183,6 +4186,14 @@ class DeleteUserManagerUserListRequest(AbstractModel):
|
|
4183
4186
|
def UserGroupList(self, UserGroupList):
|
4184
4187
|
self._UserGroupList = UserGroupList
|
4185
4188
|
|
4189
|
+
@property
|
4190
|
+
def DeleteHomeDir(self):
|
4191
|
+
return self._DeleteHomeDir
|
4192
|
+
|
4193
|
+
@DeleteHomeDir.setter
|
4194
|
+
def DeleteHomeDir(self, DeleteHomeDir):
|
4195
|
+
self._DeleteHomeDir = DeleteHomeDir
|
4196
|
+
|
4186
4197
|
|
4187
4198
|
def _deserialize(self, params):
|
4188
4199
|
self._InstanceId = params.get("InstanceId")
|
@@ -4195,6 +4206,7 @@ class DeleteUserManagerUserListRequest(AbstractModel):
|
|
4195
4206
|
obj = UserAndGroup()
|
4196
4207
|
obj._deserialize(item)
|
4197
4208
|
self._UserGroupList.append(obj)
|
4209
|
+
self._DeleteHomeDir = params.get("DeleteHomeDir")
|
4198
4210
|
memeber_set = set(params.keys())
|
4199
4211
|
for name, value in vars(self).items():
|
4200
4212
|
property_name = name[1:]
|
@@ -4519,10 +4519,18 @@ class CreateEmbedWebUrlRequest(AbstractModel):
|
|
4519
4519
|
<li>PREVIEW_FLOW_DETAIL:生成查看合同详情的嵌入页面(仅支持PC端)</li></ul>
|
4520
4520
|
:type EmbedType: str
|
4521
4521
|
:param _BusinessId: WEB嵌入的业务资源ID
|
4522
|
-
|
4523
|
-
|
4524
|
-
<
|
4522
|
+
|
4523
|
+
当EmbedType取值
|
4524
|
+
<ul>
|
4525
|
+
<li>为PREVIEW_SEAL_DETAIL,必填,取值为印章id。</li>
|
4526
|
+
<li>为CREATE_TEMPLATE,非必填,取值为资源id。*资源Id获取可使用接口[上传文件](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)*</li>
|
4527
|
+
<li>为MODIFY_TEMPLATE,PREVIEW_TEMPLATE,必填,取值为模板id。</li>
|
4528
|
+
<li>为PREVIEW_FLOW,PREVIEW_FLOW_DETAIL,必填,取值为合同id。</li>
|
4525
4529
|
</ul>
|
4530
|
+
|
4531
|
+
注意:
|
4532
|
+
1. CREATE_TEMPLATE中的BusinessId仅支持PDF文件类型, 如果您的文件不是PDF, 请使用接口[创建文件转换任务
|
4533
|
+
](https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi) 和[查询转换任务状态](https://qian.tencent.com/developers/companyApis/templatesAndFiles/GetTaskResultApi) 来进行转换成PDF资源。
|
4526
4534
|
:type BusinessId: str
|
4527
4535
|
:param _Agent: 代理企业和员工的信息。
|
4528
4536
|
<br/>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
@@ -16509,9 +16517,17 @@ class EmbedUrlOption(AbstractModel):
|
|
16509
16517
|
<ul><li> <b>true</b> :允许在模板预览页展示控件</li>
|
16510
16518
|
<li> <b>false</b> :(默认)不允许在模板预览页展示控件</li></ul>
|
16511
16519
|
:type ShowTemplateComponent: bool
|
16520
|
+
:param _SkipUploadFile: 跳过上传文件,默认为false(展示上传文件页)
|
16521
|
+
- false: 展示上传文件页
|
16522
|
+
- true: 不展示上传文件页
|
16523
|
+
|
16524
|
+
|
16525
|
+
注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**,
|
16526
|
+
:type SkipUploadFile: bool
|
16512
16527
|
"""
|
16513
16528
|
self._ShowFlowDetailComponent = None
|
16514
16529
|
self._ShowTemplateComponent = None
|
16530
|
+
self._SkipUploadFile = None
|
16515
16531
|
|
16516
16532
|
@property
|
16517
16533
|
def ShowFlowDetailComponent(self):
|
@@ -16529,10 +16545,19 @@ class EmbedUrlOption(AbstractModel):
|
|
16529
16545
|
def ShowTemplateComponent(self, ShowTemplateComponent):
|
16530
16546
|
self._ShowTemplateComponent = ShowTemplateComponent
|
16531
16547
|
|
16548
|
+
@property
|
16549
|
+
def SkipUploadFile(self):
|
16550
|
+
return self._SkipUploadFile
|
16551
|
+
|
16552
|
+
@SkipUploadFile.setter
|
16553
|
+
def SkipUploadFile(self, SkipUploadFile):
|
16554
|
+
self._SkipUploadFile = SkipUploadFile
|
16555
|
+
|
16532
16556
|
|
16533
16557
|
def _deserialize(self, params):
|
16534
16558
|
self._ShowFlowDetailComponent = params.get("ShowFlowDetailComponent")
|
16535
16559
|
self._ShowTemplateComponent = params.get("ShowTemplateComponent")
|
16560
|
+
self._SkipUploadFile = params.get("SkipUploadFile")
|
16536
16561
|
memeber_set = set(params.keys())
|
16537
16562
|
for name, value in vars(self).items():
|
16538
16563
|
property_name = name[1:]
|