tencentcloud-sdk-python-csip 3.0.1419__py2.py3-none-any.whl → 3.0.1425__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/csip/v20221121/models.py +32 -2
- {tencentcloud_sdk_python_csip-3.0.1419.dist-info → tencentcloud_sdk_python_csip-3.0.1425.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_csip-3.0.1425.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_csip-3.0.1419.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_csip-3.0.1419.dist-info → tencentcloud_sdk_python_csip-3.0.1425.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_csip-3.0.1419.dist-info → tencentcloud_sdk_python_csip-3.0.1425.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -10186,11 +10186,14 @@ class CreateAccessKeyCheckTaskRequest(AbstractModel):
|
|
|
10186
10186
|
:type AccessKeyList: list of str
|
|
10187
10187
|
:param _SubUinList: 账号uin列表
|
|
10188
10188
|
:type SubUinList: list of str
|
|
10189
|
+
:param _RiskRuleIDList: 风险规则id列表
|
|
10190
|
+
:type RiskRuleIDList: list of int
|
|
10189
10191
|
"""
|
|
10190
10192
|
self._MemberId = None
|
|
10191
10193
|
self._RiskIDList = None
|
|
10192
10194
|
self._AccessKeyList = None
|
|
10193
10195
|
self._SubUinList = None
|
|
10196
|
+
self._RiskRuleIDList = None
|
|
10194
10197
|
|
|
10195
10198
|
@property
|
|
10196
10199
|
def MemberId(self):
|
|
@@ -10236,12 +10239,24 @@ class CreateAccessKeyCheckTaskRequest(AbstractModel):
|
|
|
10236
10239
|
def SubUinList(self, SubUinList):
|
|
10237
10240
|
self._SubUinList = SubUinList
|
|
10238
10241
|
|
|
10242
|
+
@property
|
|
10243
|
+
def RiskRuleIDList(self):
|
|
10244
|
+
"""风险规则id列表
|
|
10245
|
+
:rtype: list of int
|
|
10246
|
+
"""
|
|
10247
|
+
return self._RiskRuleIDList
|
|
10248
|
+
|
|
10249
|
+
@RiskRuleIDList.setter
|
|
10250
|
+
def RiskRuleIDList(self, RiskRuleIDList):
|
|
10251
|
+
self._RiskRuleIDList = RiskRuleIDList
|
|
10252
|
+
|
|
10239
10253
|
|
|
10240
10254
|
def _deserialize(self, params):
|
|
10241
10255
|
self._MemberId = params.get("MemberId")
|
|
10242
10256
|
self._RiskIDList = params.get("RiskIDList")
|
|
10243
10257
|
self._AccessKeyList = params.get("AccessKeyList")
|
|
10244
10258
|
self._SubUinList = params.get("SubUinList")
|
|
10259
|
+
self._RiskRuleIDList = params.get("RiskRuleIDList")
|
|
10245
10260
|
memeber_set = set(params.keys())
|
|
10246
10261
|
for name, value in vars(self).items():
|
|
10247
10262
|
property_name = name[1:]
|
|
@@ -12030,7 +12045,7 @@ class DeleteRiskScanTaskRequest(AbstractModel):
|
|
|
12030
12045
|
|
|
12031
12046
|
def __init__(self):
|
|
12032
12047
|
r"""
|
|
12033
|
-
:param _TaskIdList: 任务id 列表
|
|
12048
|
+
:param _TaskIdList: 任务id 和目标AppID列表
|
|
12034
12049
|
:type TaskIdList: list of TaskIdListKey
|
|
12035
12050
|
:param _MemberId: 集团账号的成员id
|
|
12036
12051
|
:type MemberId: list of str
|
|
@@ -12040,7 +12055,7 @@ class DeleteRiskScanTaskRequest(AbstractModel):
|
|
|
12040
12055
|
|
|
12041
12056
|
@property
|
|
12042
12057
|
def TaskIdList(self):
|
|
12043
|
-
"""任务id 列表
|
|
12058
|
+
"""任务id 和目标AppID列表
|
|
12044
12059
|
:rtype: list of TaskIdListKey
|
|
12045
12060
|
"""
|
|
12046
12061
|
return self._TaskIdList
|
|
@@ -33394,8 +33409,11 @@ class TaskIdListKey(AbstractModel):
|
|
|
33394
33409
|
r"""
|
|
33395
33410
|
:param _TaskId: 任务ID
|
|
33396
33411
|
:type TaskId: str
|
|
33412
|
+
:param _TargetAppId: APP ID
|
|
33413
|
+
:type TargetAppId: str
|
|
33397
33414
|
"""
|
|
33398
33415
|
self._TaskId = None
|
|
33416
|
+
self._TargetAppId = None
|
|
33399
33417
|
|
|
33400
33418
|
@property
|
|
33401
33419
|
def TaskId(self):
|
|
@@ -33408,9 +33426,21 @@ class TaskIdListKey(AbstractModel):
|
|
|
33408
33426
|
def TaskId(self, TaskId):
|
|
33409
33427
|
self._TaskId = TaskId
|
|
33410
33428
|
|
|
33429
|
+
@property
|
|
33430
|
+
def TargetAppId(self):
|
|
33431
|
+
"""APP ID
|
|
33432
|
+
:rtype: str
|
|
33433
|
+
"""
|
|
33434
|
+
return self._TargetAppId
|
|
33435
|
+
|
|
33436
|
+
@TargetAppId.setter
|
|
33437
|
+
def TargetAppId(self, TargetAppId):
|
|
33438
|
+
self._TargetAppId = TargetAppId
|
|
33439
|
+
|
|
33411
33440
|
|
|
33412
33441
|
def _deserialize(self, params):
|
|
33413
33442
|
self._TaskId = params.get("TaskId")
|
|
33443
|
+
self._TargetAppId = params.get("TargetAppId")
|
|
33414
33444
|
memeber_set = set(params.keys())
|
|
33415
33445
|
for name, value in vars(self).items():
|
|
33416
33446
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1425
|
|
4
4
|
Summary: Tencent Cloud Csip SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1425)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=P-yWjZUVYjJ2OzOXka6_js8vKz6taTctRl6AFDhVcRc,631
|
|
2
|
+
tencentcloud/csip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/csip/v20221121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/csip/v20221121/csip_client.py,sha256=Gcs-n3wF0N8zZUamhygnvI6NBdjco0xGYrt5a6ZGuwM,75696
|
|
5
|
+
tencentcloud/csip/v20221121/errorcodes.py,sha256=tQq2byfzCpkRMLmW2QNKwIYBoudFePHil-JJw8TnPFE,2200
|
|
6
|
+
tencentcloud/csip/v20221121/models.py,sha256=54M0DWFKqf4EChXS2Ju7PkZSqc6tYE3pCU34xSNsBwg,1020714
|
|
7
|
+
tencentcloud_sdk_python_csip-3.0.1425.dist-info/METADATA,sha256=PcwbXxSyysJt8jXOHU9v5dcngAeTZURI4e33CjFnEUQ,1508
|
|
8
|
+
tencentcloud_sdk_python_csip-3.0.1425.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_csip-3.0.1425.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_csip-3.0.1425.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=5tmwfz0hOltF19OweN1bQyunyKtdD55x3SrHJ1pODAM,631
|
|
2
|
-
tencentcloud/csip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/csip/v20221121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/csip/v20221121/csip_client.py,sha256=Gcs-n3wF0N8zZUamhygnvI6NBdjco0xGYrt5a6ZGuwM,75696
|
|
5
|
-
tencentcloud/csip/v20221121/errorcodes.py,sha256=tQq2byfzCpkRMLmW2QNKwIYBoudFePHil-JJw8TnPFE,2200
|
|
6
|
-
tencentcloud/csip/v20221121/models.py,sha256=d9x5LSYOk38lqdpDZBjlV8QO-fbq1HZYiTGZ12WoBQE,1019838
|
|
7
|
-
tencentcloud_sdk_python_csip-3.0.1419.dist-info/METADATA,sha256=cgcJOeWw3jj8uhM-pU7lxAcAZ01KywXKhLkIZU0Zaqk,1508
|
|
8
|
-
tencentcloud_sdk_python_csip-3.0.1419.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_csip-3.0.1419.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_csip-3.0.1419.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|