tencentcloud-sdk-python-csip 3.0.1419__tar.gz → 3.0.1425__tar.gz

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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/setup.py +1 -1
  3. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud/csip/v20221121/models.py +32 -2
  5. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-csip-3.0.1425/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-csip-3.0.1419/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/README.rst +0 -0
  9. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud/csip/__init__.py +0 -0
  11. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud/csip/v20221121/__init__.py +0 -0
  12. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud/csip/v20221121/csip_client.py +0 -0
  13. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-csip-3.0.1419 → tencentcloud-sdk-python-csip-3.0.1425}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.0.1419
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
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-csip',
11
- install_requires=["tencentcloud-sdk-python-common>=3.0.1419,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1425,<4.0.0"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Csip SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1419'
17
+ __version__ = '3.0.1425'
@@ -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: 1.2
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.0.1419
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.0.1425
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1419