tencentcloud-sdk-python-csip 3.1.3__py2.py3-none-any.whl → 3.1.17__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 +182 -0
- {tencentcloud_sdk_python_csip-3.1.3.dist-info → tencentcloud_sdk_python_csip-3.1.17.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_csip-3.1.17.dist-info/RECORD +11 -0
- tencentcloud_sdk_python_csip-3.1.3.dist-info/RECORD +0 -11
- {tencentcloud_sdk_python_csip-3.1.3.dist-info → tencentcloud_sdk_python_csip-3.1.17.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_csip-3.1.3.dist-info → tencentcloud_sdk_python_csip-3.1.17.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -5235,6 +5235,8 @@ class AssetRiskItem(AbstractModel):
|
|
|
5235
5235
|
:type RiskRuleId: str
|
|
5236
5236
|
:param _Classify: 处置分类
|
|
5237
5237
|
:type Classify: str
|
|
5238
|
+
:param _StandardTerms: 等保合规
|
|
5239
|
+
:type StandardTerms: list of StandardTerm
|
|
5238
5240
|
"""
|
|
5239
5241
|
self._AppId = None
|
|
5240
5242
|
self._Provider = None
|
|
@@ -5251,6 +5253,7 @@ class AssetRiskItem(AbstractModel):
|
|
|
5251
5253
|
self._Severity = None
|
|
5252
5254
|
self._RiskRuleId = None
|
|
5253
5255
|
self._Classify = None
|
|
5256
|
+
self._StandardTerms = None
|
|
5254
5257
|
|
|
5255
5258
|
@property
|
|
5256
5259
|
def AppId(self):
|
|
@@ -5417,6 +5420,17 @@ class AssetRiskItem(AbstractModel):
|
|
|
5417
5420
|
def Classify(self, Classify):
|
|
5418
5421
|
self._Classify = Classify
|
|
5419
5422
|
|
|
5423
|
+
@property
|
|
5424
|
+
def StandardTerms(self):
|
|
5425
|
+
r"""等保合规
|
|
5426
|
+
:rtype: list of StandardTerm
|
|
5427
|
+
"""
|
|
5428
|
+
return self._StandardTerms
|
|
5429
|
+
|
|
5430
|
+
@StandardTerms.setter
|
|
5431
|
+
def StandardTerms(self, StandardTerms):
|
|
5432
|
+
self._StandardTerms = StandardTerms
|
|
5433
|
+
|
|
5420
5434
|
|
|
5421
5435
|
def _deserialize(self, params):
|
|
5422
5436
|
self._AppId = params.get("AppId")
|
|
@@ -5434,6 +5448,12 @@ class AssetRiskItem(AbstractModel):
|
|
|
5434
5448
|
self._Severity = params.get("Severity")
|
|
5435
5449
|
self._RiskRuleId = params.get("RiskRuleId")
|
|
5436
5450
|
self._Classify = params.get("Classify")
|
|
5451
|
+
if params.get("StandardTerms") is not None:
|
|
5452
|
+
self._StandardTerms = []
|
|
5453
|
+
for item in params.get("StandardTerms"):
|
|
5454
|
+
obj = StandardTerm()
|
|
5455
|
+
obj._deserialize(item)
|
|
5456
|
+
self._StandardTerms.append(obj)
|
|
5437
5457
|
memeber_set = set(params.keys())
|
|
5438
5458
|
for name, value in vars(self).items():
|
|
5439
5459
|
property_name = name[1:]
|
|
@@ -9859,6 +9879,8 @@ class CheckViewRiskItem(AbstractModel):
|
|
|
9859
9879
|
:type EventType: str
|
|
9860
9880
|
:param _Classify: 处置分类
|
|
9861
9881
|
:type Classify: str
|
|
9882
|
+
:param _StandardTerms: cspm规范条款
|
|
9883
|
+
:type StandardTerms: list of StandardTerm
|
|
9862
9884
|
"""
|
|
9863
9885
|
self._RiskRuleId = None
|
|
9864
9886
|
self._RiskTitle = None
|
|
@@ -9874,6 +9896,7 @@ class CheckViewRiskItem(AbstractModel):
|
|
|
9874
9896
|
self._AssetType = None
|
|
9875
9897
|
self._EventType = None
|
|
9876
9898
|
self._Classify = None
|
|
9899
|
+
self._StandardTerms = None
|
|
9877
9900
|
|
|
9878
9901
|
@property
|
|
9879
9902
|
def RiskRuleId(self):
|
|
@@ -10029,6 +10052,17 @@ class CheckViewRiskItem(AbstractModel):
|
|
|
10029
10052
|
def Classify(self, Classify):
|
|
10030
10053
|
self._Classify = Classify
|
|
10031
10054
|
|
|
10055
|
+
@property
|
|
10056
|
+
def StandardTerms(self):
|
|
10057
|
+
r"""cspm规范条款
|
|
10058
|
+
:rtype: list of StandardTerm
|
|
10059
|
+
"""
|
|
10060
|
+
return self._StandardTerms
|
|
10061
|
+
|
|
10062
|
+
@StandardTerms.setter
|
|
10063
|
+
def StandardTerms(self, StandardTerms):
|
|
10064
|
+
self._StandardTerms = StandardTerms
|
|
10065
|
+
|
|
10032
10066
|
|
|
10033
10067
|
def _deserialize(self, params):
|
|
10034
10068
|
self._RiskRuleId = params.get("RiskRuleId")
|
|
@@ -10045,6 +10079,12 @@ class CheckViewRiskItem(AbstractModel):
|
|
|
10045
10079
|
self._AssetType = params.get("AssetType")
|
|
10046
10080
|
self._EventType = params.get("EventType")
|
|
10047
10081
|
self._Classify = params.get("Classify")
|
|
10082
|
+
if params.get("StandardTerms") is not None:
|
|
10083
|
+
self._StandardTerms = []
|
|
10084
|
+
for item in params.get("StandardTerms"):
|
|
10085
|
+
obj = StandardTerm()
|
|
10086
|
+
obj._deserialize(item)
|
|
10087
|
+
self._StandardTerms.append(obj)
|
|
10048
10088
|
memeber_set = set(params.keys())
|
|
10049
10089
|
for name, value in vars(self).items():
|
|
10050
10090
|
property_name = name[1:]
|
|
@@ -13935,11 +13975,14 @@ class DescribeAssetRiskListResponse(AbstractModel):
|
|
|
13935
13975
|
:type TotalCount: int
|
|
13936
13976
|
:param _AssetRiskList: 资产视角下风险列表
|
|
13937
13977
|
:type AssetRiskList: list of AssetRiskItem
|
|
13978
|
+
:param _StandardNameList: 等保规范名称集合
|
|
13979
|
+
:type StandardNameList: list of StandardItem
|
|
13938
13980
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13939
13981
|
:type RequestId: str
|
|
13940
13982
|
"""
|
|
13941
13983
|
self._TotalCount = None
|
|
13942
13984
|
self._AssetRiskList = None
|
|
13985
|
+
self._StandardNameList = None
|
|
13943
13986
|
self._RequestId = None
|
|
13944
13987
|
|
|
13945
13988
|
@property
|
|
@@ -13964,6 +14007,17 @@ class DescribeAssetRiskListResponse(AbstractModel):
|
|
|
13964
14007
|
def AssetRiskList(self, AssetRiskList):
|
|
13965
14008
|
self._AssetRiskList = AssetRiskList
|
|
13966
14009
|
|
|
14010
|
+
@property
|
|
14011
|
+
def StandardNameList(self):
|
|
14012
|
+
r"""等保规范名称集合
|
|
14013
|
+
:rtype: list of StandardItem
|
|
14014
|
+
"""
|
|
14015
|
+
return self._StandardNameList
|
|
14016
|
+
|
|
14017
|
+
@StandardNameList.setter
|
|
14018
|
+
def StandardNameList(self, StandardNameList):
|
|
14019
|
+
self._StandardNameList = StandardNameList
|
|
14020
|
+
|
|
13967
14021
|
@property
|
|
13968
14022
|
def RequestId(self):
|
|
13969
14023
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -13984,6 +14038,12 @@ class DescribeAssetRiskListResponse(AbstractModel):
|
|
|
13984
14038
|
obj = AssetRiskItem()
|
|
13985
14039
|
obj._deserialize(item)
|
|
13986
14040
|
self._AssetRiskList.append(obj)
|
|
14041
|
+
if params.get("StandardNameList") is not None:
|
|
14042
|
+
self._StandardNameList = []
|
|
14043
|
+
for item in params.get("StandardNameList"):
|
|
14044
|
+
obj = StandardItem()
|
|
14045
|
+
obj._deserialize(item)
|
|
14046
|
+
self._StandardNameList.append(obj)
|
|
13987
14047
|
self._RequestId = params.get("RequestId")
|
|
13988
14048
|
|
|
13989
14049
|
|
|
@@ -15265,11 +15325,14 @@ class DescribeCheckViewRisksResponse(AbstractModel):
|
|
|
15265
15325
|
:type TotalCount: int
|
|
15266
15326
|
:param _CheckViewRiskList: 检查视角下风险列表
|
|
15267
15327
|
:type CheckViewRiskList: list of CheckViewRiskItem
|
|
15328
|
+
:param _StandardNameList: 检查视角下cspm规范标签列表
|
|
15329
|
+
:type StandardNameList: list of StandardItem
|
|
15268
15330
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15269
15331
|
:type RequestId: str
|
|
15270
15332
|
"""
|
|
15271
15333
|
self._TotalCount = None
|
|
15272
15334
|
self._CheckViewRiskList = None
|
|
15335
|
+
self._StandardNameList = None
|
|
15273
15336
|
self._RequestId = None
|
|
15274
15337
|
|
|
15275
15338
|
@property
|
|
@@ -15294,6 +15357,17 @@ class DescribeCheckViewRisksResponse(AbstractModel):
|
|
|
15294
15357
|
def CheckViewRiskList(self, CheckViewRiskList):
|
|
15295
15358
|
self._CheckViewRiskList = CheckViewRiskList
|
|
15296
15359
|
|
|
15360
|
+
@property
|
|
15361
|
+
def StandardNameList(self):
|
|
15362
|
+
r"""检查视角下cspm规范标签列表
|
|
15363
|
+
:rtype: list of StandardItem
|
|
15364
|
+
"""
|
|
15365
|
+
return self._StandardNameList
|
|
15366
|
+
|
|
15367
|
+
@StandardNameList.setter
|
|
15368
|
+
def StandardNameList(self, StandardNameList):
|
|
15369
|
+
self._StandardNameList = StandardNameList
|
|
15370
|
+
|
|
15297
15371
|
@property
|
|
15298
15372
|
def RequestId(self):
|
|
15299
15373
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -15314,6 +15388,12 @@ class DescribeCheckViewRisksResponse(AbstractModel):
|
|
|
15314
15388
|
obj = CheckViewRiskItem()
|
|
15315
15389
|
obj._deserialize(item)
|
|
15316
15390
|
self._CheckViewRiskList.append(obj)
|
|
15391
|
+
if params.get("StandardNameList") is not None:
|
|
15392
|
+
self._StandardNameList = []
|
|
15393
|
+
for item in params.get("StandardNameList"):
|
|
15394
|
+
obj = StandardItem()
|
|
15395
|
+
obj._deserialize(item)
|
|
15396
|
+
self._StandardNameList.append(obj)
|
|
15317
15397
|
self._RequestId = params.get("RequestId")
|
|
15318
15398
|
|
|
15319
15399
|
|
|
@@ -32947,6 +33027,108 @@ class SourceIPVpcInfo(AbstractModel):
|
|
|
32947
33027
|
|
|
32948
33028
|
|
|
32949
33029
|
|
|
33030
|
+
class StandardItem(AbstractModel):
|
|
33031
|
+
r"""CSPM规范
|
|
33032
|
+
|
|
33033
|
+
"""
|
|
33034
|
+
|
|
33035
|
+
def __init__(self):
|
|
33036
|
+
r"""
|
|
33037
|
+
:param _ID: 规范ID
|
|
33038
|
+
:type ID: int
|
|
33039
|
+
:param _Name: 规范名称
|
|
33040
|
+
:type Name: str
|
|
33041
|
+
"""
|
|
33042
|
+
self._ID = None
|
|
33043
|
+
self._Name = None
|
|
33044
|
+
|
|
33045
|
+
@property
|
|
33046
|
+
def ID(self):
|
|
33047
|
+
r"""规范ID
|
|
33048
|
+
:rtype: int
|
|
33049
|
+
"""
|
|
33050
|
+
return self._ID
|
|
33051
|
+
|
|
33052
|
+
@ID.setter
|
|
33053
|
+
def ID(self, ID):
|
|
33054
|
+
self._ID = ID
|
|
33055
|
+
|
|
33056
|
+
@property
|
|
33057
|
+
def Name(self):
|
|
33058
|
+
r"""规范名称
|
|
33059
|
+
:rtype: str
|
|
33060
|
+
"""
|
|
33061
|
+
return self._Name
|
|
33062
|
+
|
|
33063
|
+
@Name.setter
|
|
33064
|
+
def Name(self, Name):
|
|
33065
|
+
self._Name = Name
|
|
33066
|
+
|
|
33067
|
+
|
|
33068
|
+
def _deserialize(self, params):
|
|
33069
|
+
self._ID = params.get("ID")
|
|
33070
|
+
self._Name = params.get("Name")
|
|
33071
|
+
memeber_set = set(params.keys())
|
|
33072
|
+
for name, value in vars(self).items():
|
|
33073
|
+
property_name = name[1:]
|
|
33074
|
+
if property_name in memeber_set:
|
|
33075
|
+
memeber_set.remove(property_name)
|
|
33076
|
+
if len(memeber_set) > 0:
|
|
33077
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
33078
|
+
|
|
33079
|
+
|
|
33080
|
+
|
|
33081
|
+
class StandardTerm(AbstractModel):
|
|
33082
|
+
r"""CSPM条款
|
|
33083
|
+
|
|
33084
|
+
"""
|
|
33085
|
+
|
|
33086
|
+
def __init__(self):
|
|
33087
|
+
r"""
|
|
33088
|
+
:param _Tag: 标签
|
|
33089
|
+
:type Tag: str
|
|
33090
|
+
:param _Terms: 条款
|
|
33091
|
+
:type Terms: list of str
|
|
33092
|
+
"""
|
|
33093
|
+
self._Tag = None
|
|
33094
|
+
self._Terms = None
|
|
33095
|
+
|
|
33096
|
+
@property
|
|
33097
|
+
def Tag(self):
|
|
33098
|
+
r"""标签
|
|
33099
|
+
:rtype: str
|
|
33100
|
+
"""
|
|
33101
|
+
return self._Tag
|
|
33102
|
+
|
|
33103
|
+
@Tag.setter
|
|
33104
|
+
def Tag(self, Tag):
|
|
33105
|
+
self._Tag = Tag
|
|
33106
|
+
|
|
33107
|
+
@property
|
|
33108
|
+
def Terms(self):
|
|
33109
|
+
r"""条款
|
|
33110
|
+
:rtype: list of str
|
|
33111
|
+
"""
|
|
33112
|
+
return self._Terms
|
|
33113
|
+
|
|
33114
|
+
@Terms.setter
|
|
33115
|
+
def Terms(self, Terms):
|
|
33116
|
+
self._Terms = Terms
|
|
33117
|
+
|
|
33118
|
+
|
|
33119
|
+
def _deserialize(self, params):
|
|
33120
|
+
self._Tag = params.get("Tag")
|
|
33121
|
+
self._Terms = params.get("Terms")
|
|
33122
|
+
memeber_set = set(params.keys())
|
|
33123
|
+
for name, value in vars(self).items():
|
|
33124
|
+
property_name = name[1:]
|
|
33125
|
+
if property_name in memeber_set:
|
|
33126
|
+
memeber_set.remove(property_name)
|
|
33127
|
+
if len(memeber_set) > 0:
|
|
33128
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
33129
|
+
|
|
33130
|
+
|
|
33131
|
+
|
|
32950
33132
|
class StatisticalFilter(AbstractModel):
|
|
32951
33133
|
r"""用户行为分析 统计条件
|
|
32952
33134
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.17
|
|
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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common <4.0.0,>=3.1.17
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=Qsz3f-on2JFqynWVEOMLGvuPkHzKaM7sS9cAM-kAN88,629
|
|
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=TePNovcD8MV5ra-9ijpm_BoD5ddfl5f82Z7bAUxUrRw,76706
|
|
5
|
+
tencentcloud/csip/v20221121/csip_client_async.py,sha256=EsnpFYnwPyQVRENVNO7_9b9omJv7mn_aYzOAUFrJF3Q,51403
|
|
6
|
+
tencentcloud/csip/v20221121/errorcodes.py,sha256=tQq2byfzCpkRMLmW2QNKwIYBoudFePHil-JJw8TnPFE,2200
|
|
7
|
+
tencentcloud/csip/v20221121/models.py,sha256=Wlhik_G8eS6WfMFwXKBrjjTIXfMeQJresGO4Ya71MRw,1051614
|
|
8
|
+
tencentcloud_sdk_python_csip-3.1.17.dist-info/METADATA,sha256=RhZ3Ob-PAwNrH7Lg1COn2NGI9EFX4qS0h8Pi3vpD0xE,1500
|
|
9
|
+
tencentcloud_sdk_python_csip-3.1.17.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
10
|
+
tencentcloud_sdk_python_csip-3.1.17.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_csip-3.1.17.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=gSHjiNBvuQjsyqI8h1z3JjKarGeyHbY5F8nkzo5c02s,628
|
|
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=TePNovcD8MV5ra-9ijpm_BoD5ddfl5f82Z7bAUxUrRw,76706
|
|
5
|
-
tencentcloud/csip/v20221121/csip_client_async.py,sha256=EsnpFYnwPyQVRENVNO7_9b9omJv7mn_aYzOAUFrJF3Q,51403
|
|
6
|
-
tencentcloud/csip/v20221121/errorcodes.py,sha256=tQq2byfzCpkRMLmW2QNKwIYBoudFePHil-JJw8TnPFE,2200
|
|
7
|
-
tencentcloud/csip/v20221121/models.py,sha256=_5Tc8VG1Y5PnDczt6rQxLWI8t72sOdYlVMgaz7MR7ko,1046602
|
|
8
|
-
tencentcloud_sdk_python_csip-3.1.3.dist-info/METADATA,sha256=RXkDKYqkl_P2nZDkeWxF6wDUftT5l47MHUTaIFRJYWA,1498
|
|
9
|
-
tencentcloud_sdk_python_csip-3.1.3.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
10
|
-
tencentcloud_sdk_python_csip-3.1.3.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
-
tencentcloud_sdk_python_csip-3.1.3.dist-info/RECORD,,
|
{tencentcloud_sdk_python_csip-3.1.3.dist-info → tencentcloud_sdk_python_csip-3.1.17.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|