tencentcloud-sdk-python-csip 3.1.25__py2.py3-none-any.whl → 3.1.34__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 +111 -1
- {tencentcloud_sdk_python_csip-3.1.25.dist-info → tencentcloud_sdk_python_csip-3.1.34.dist-info}/METADATA +2 -2
- {tencentcloud_sdk_python_csip-3.1.25.dist-info → tencentcloud_sdk_python_csip-3.1.34.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_csip-3.1.25.dist-info → tencentcloud_sdk_python_csip-3.1.34.dist-info}/WHEEL +1 -1
- {tencentcloud_sdk_python_csip-3.1.25.dist-info → tencentcloud_sdk_python_csip-3.1.34.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -157,6 +157,17 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
157
157
|
:type RuleKey: str
|
|
158
158
|
:param _CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
159
159
|
:type CloudType: int
|
|
160
|
+
:param _AIStatus: 告警AI分析状态
|
|
161
|
+
-1 分析失败
|
|
162
|
+
0 未分析
|
|
163
|
+
1 分析中
|
|
164
|
+
2 分析成功,真实告警
|
|
165
|
+
3 分析成功,可疑告警
|
|
166
|
+
:type AIStatus: int
|
|
167
|
+
:param _FirstAlarmTimestamp: 首次告警时间戳(秒级)
|
|
168
|
+
:type FirstAlarmTimestamp: int
|
|
169
|
+
:param _LastAlarmTimestamp: 最后告警时间戳(秒级)
|
|
170
|
+
:type LastAlarmTimestamp: int
|
|
160
171
|
"""
|
|
161
172
|
self._Name = None
|
|
162
173
|
self._Level = None
|
|
@@ -181,6 +192,9 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
181
192
|
self._Evidence = None
|
|
182
193
|
self._RuleKey = None
|
|
183
194
|
self._CloudType = None
|
|
195
|
+
self._AIStatus = None
|
|
196
|
+
self._FirstAlarmTimestamp = None
|
|
197
|
+
self._LastAlarmTimestamp = None
|
|
184
198
|
|
|
185
199
|
@property
|
|
186
200
|
def Name(self):
|
|
@@ -440,6 +454,44 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
440
454
|
def CloudType(self, CloudType):
|
|
441
455
|
self._CloudType = CloudType
|
|
442
456
|
|
|
457
|
+
@property
|
|
458
|
+
def AIStatus(self):
|
|
459
|
+
r"""告警AI分析状态
|
|
460
|
+
-1 分析失败
|
|
461
|
+
0 未分析
|
|
462
|
+
1 分析中
|
|
463
|
+
2 分析成功,真实告警
|
|
464
|
+
3 分析成功,可疑告警
|
|
465
|
+
:rtype: int
|
|
466
|
+
"""
|
|
467
|
+
return self._AIStatus
|
|
468
|
+
|
|
469
|
+
@AIStatus.setter
|
|
470
|
+
def AIStatus(self, AIStatus):
|
|
471
|
+
self._AIStatus = AIStatus
|
|
472
|
+
|
|
473
|
+
@property
|
|
474
|
+
def FirstAlarmTimestamp(self):
|
|
475
|
+
r"""首次告警时间戳(秒级)
|
|
476
|
+
:rtype: int
|
|
477
|
+
"""
|
|
478
|
+
return self._FirstAlarmTimestamp
|
|
479
|
+
|
|
480
|
+
@FirstAlarmTimestamp.setter
|
|
481
|
+
def FirstAlarmTimestamp(self, FirstAlarmTimestamp):
|
|
482
|
+
self._FirstAlarmTimestamp = FirstAlarmTimestamp
|
|
483
|
+
|
|
484
|
+
@property
|
|
485
|
+
def LastAlarmTimestamp(self):
|
|
486
|
+
r"""最后告警时间戳(秒级)
|
|
487
|
+
:rtype: int
|
|
488
|
+
"""
|
|
489
|
+
return self._LastAlarmTimestamp
|
|
490
|
+
|
|
491
|
+
@LastAlarmTimestamp.setter
|
|
492
|
+
def LastAlarmTimestamp(self, LastAlarmTimestamp):
|
|
493
|
+
self._LastAlarmTimestamp = LastAlarmTimestamp
|
|
494
|
+
|
|
443
495
|
|
|
444
496
|
def _deserialize(self, params):
|
|
445
497
|
self._Name = params.get("Name")
|
|
@@ -465,6 +517,9 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
465
517
|
self._Evidence = params.get("Evidence")
|
|
466
518
|
self._RuleKey = params.get("RuleKey")
|
|
467
519
|
self._CloudType = params.get("CloudType")
|
|
520
|
+
self._AIStatus = params.get("AIStatus")
|
|
521
|
+
self._FirstAlarmTimestamp = params.get("FirstAlarmTimestamp")
|
|
522
|
+
self._LastAlarmTimestamp = params.get("LastAlarmTimestamp")
|
|
468
523
|
memeber_set = set(params.keys())
|
|
469
524
|
for name, value in vars(self).items():
|
|
470
525
|
property_name = name[1:]
|
|
@@ -5279,7 +5334,7 @@ class AssetProcessItem(AbstractModel):
|
|
|
5279
5334
|
|
|
5280
5335
|
|
|
5281
5336
|
class AssetRiskItem(AbstractModel):
|
|
5282
|
-
r"""
|
|
5337
|
+
r"""资产视角风险信息
|
|
5283
5338
|
|
|
5284
5339
|
"""
|
|
5285
5340
|
|
|
@@ -5317,6 +5372,8 @@ class AssetRiskItem(AbstractModel):
|
|
|
5317
5372
|
:type Classify: str
|
|
5318
5373
|
:param _StandardTerms: 等保合规
|
|
5319
5374
|
:type StandardTerms: list of StandardTerm
|
|
5375
|
+
:param _AssetType: 资产类型
|
|
5376
|
+
:type AssetType: str
|
|
5320
5377
|
"""
|
|
5321
5378
|
self._AppId = None
|
|
5322
5379
|
self._Provider = None
|
|
@@ -5334,6 +5391,7 @@ class AssetRiskItem(AbstractModel):
|
|
|
5334
5391
|
self._RiskRuleId = None
|
|
5335
5392
|
self._Classify = None
|
|
5336
5393
|
self._StandardTerms = None
|
|
5394
|
+
self._AssetType = None
|
|
5337
5395
|
|
|
5338
5396
|
@property
|
|
5339
5397
|
def AppId(self):
|
|
@@ -5511,6 +5569,17 @@ class AssetRiskItem(AbstractModel):
|
|
|
5511
5569
|
def StandardTerms(self, StandardTerms):
|
|
5512
5570
|
self._StandardTerms = StandardTerms
|
|
5513
5571
|
|
|
5572
|
+
@property
|
|
5573
|
+
def AssetType(self):
|
|
5574
|
+
r"""资产类型
|
|
5575
|
+
:rtype: str
|
|
5576
|
+
"""
|
|
5577
|
+
return self._AssetType
|
|
5578
|
+
|
|
5579
|
+
@AssetType.setter
|
|
5580
|
+
def AssetType(self, AssetType):
|
|
5581
|
+
self._AssetType = AssetType
|
|
5582
|
+
|
|
5514
5583
|
|
|
5515
5584
|
def _deserialize(self, params):
|
|
5516
5585
|
self._AppId = params.get("AppId")
|
|
@@ -5534,6 +5603,7 @@ class AssetRiskItem(AbstractModel):
|
|
|
5534
5603
|
obj = StandardTerm()
|
|
5535
5604
|
obj._deserialize(item)
|
|
5536
5605
|
self._StandardTerms.append(obj)
|
|
5606
|
+
self._AssetType = params.get("AssetType")
|
|
5537
5607
|
memeber_set = set(params.keys())
|
|
5538
5608
|
for name, value in vars(self).items():
|
|
5539
5609
|
property_name = name[1:]
|
|
@@ -14057,12 +14127,15 @@ class DescribeAssetRiskListResponse(AbstractModel):
|
|
|
14057
14127
|
:type AssetRiskList: list of AssetRiskItem
|
|
14058
14128
|
:param _StandardNameList: 等保规范名称集合
|
|
14059
14129
|
:type StandardNameList: list of StandardItem
|
|
14130
|
+
:param _AssetTypeList: 资产类型集合
|
|
14131
|
+
:type AssetTypeList: list of AttributeOptionSet
|
|
14060
14132
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14061
14133
|
:type RequestId: str
|
|
14062
14134
|
"""
|
|
14063
14135
|
self._TotalCount = None
|
|
14064
14136
|
self._AssetRiskList = None
|
|
14065
14137
|
self._StandardNameList = None
|
|
14138
|
+
self._AssetTypeList = None
|
|
14066
14139
|
self._RequestId = None
|
|
14067
14140
|
|
|
14068
14141
|
@property
|
|
@@ -14098,6 +14171,17 @@ class DescribeAssetRiskListResponse(AbstractModel):
|
|
|
14098
14171
|
def StandardNameList(self, StandardNameList):
|
|
14099
14172
|
self._StandardNameList = StandardNameList
|
|
14100
14173
|
|
|
14174
|
+
@property
|
|
14175
|
+
def AssetTypeList(self):
|
|
14176
|
+
r"""资产类型集合
|
|
14177
|
+
:rtype: list of AttributeOptionSet
|
|
14178
|
+
"""
|
|
14179
|
+
return self._AssetTypeList
|
|
14180
|
+
|
|
14181
|
+
@AssetTypeList.setter
|
|
14182
|
+
def AssetTypeList(self, AssetTypeList):
|
|
14183
|
+
self._AssetTypeList = AssetTypeList
|
|
14184
|
+
|
|
14101
14185
|
@property
|
|
14102
14186
|
def RequestId(self):
|
|
14103
14187
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -14124,6 +14208,12 @@ class DescribeAssetRiskListResponse(AbstractModel):
|
|
|
14124
14208
|
obj = StandardItem()
|
|
14125
14209
|
obj._deserialize(item)
|
|
14126
14210
|
self._StandardNameList.append(obj)
|
|
14211
|
+
if params.get("AssetTypeList") is not None:
|
|
14212
|
+
self._AssetTypeList = []
|
|
14213
|
+
for item in params.get("AssetTypeList"):
|
|
14214
|
+
obj = AttributeOptionSet()
|
|
14215
|
+
obj._deserialize(item)
|
|
14216
|
+
self._AssetTypeList.append(obj)
|
|
14127
14217
|
self._RequestId = params.get("RequestId")
|
|
14128
14218
|
|
|
14129
14219
|
|
|
@@ -15407,12 +15497,15 @@ class DescribeCheckViewRisksResponse(AbstractModel):
|
|
|
15407
15497
|
:type CheckViewRiskList: list of CheckViewRiskItem
|
|
15408
15498
|
:param _StandardNameList: 检查视角下cspm规范标签列表
|
|
15409
15499
|
:type StandardNameList: list of StandardItem
|
|
15500
|
+
:param _AssetTypeList: 资产类型集合
|
|
15501
|
+
:type AssetTypeList: list of AttributeOptionSet
|
|
15410
15502
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15411
15503
|
:type RequestId: str
|
|
15412
15504
|
"""
|
|
15413
15505
|
self._TotalCount = None
|
|
15414
15506
|
self._CheckViewRiskList = None
|
|
15415
15507
|
self._StandardNameList = None
|
|
15508
|
+
self._AssetTypeList = None
|
|
15416
15509
|
self._RequestId = None
|
|
15417
15510
|
|
|
15418
15511
|
@property
|
|
@@ -15448,6 +15541,17 @@ class DescribeCheckViewRisksResponse(AbstractModel):
|
|
|
15448
15541
|
def StandardNameList(self, StandardNameList):
|
|
15449
15542
|
self._StandardNameList = StandardNameList
|
|
15450
15543
|
|
|
15544
|
+
@property
|
|
15545
|
+
def AssetTypeList(self):
|
|
15546
|
+
r"""资产类型集合
|
|
15547
|
+
:rtype: list of AttributeOptionSet
|
|
15548
|
+
"""
|
|
15549
|
+
return self._AssetTypeList
|
|
15550
|
+
|
|
15551
|
+
@AssetTypeList.setter
|
|
15552
|
+
def AssetTypeList(self, AssetTypeList):
|
|
15553
|
+
self._AssetTypeList = AssetTypeList
|
|
15554
|
+
|
|
15451
15555
|
@property
|
|
15452
15556
|
def RequestId(self):
|
|
15453
15557
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -15474,6 +15578,12 @@ class DescribeCheckViewRisksResponse(AbstractModel):
|
|
|
15474
15578
|
obj = StandardItem()
|
|
15475
15579
|
obj._deserialize(item)
|
|
15476
15580
|
self._StandardNameList.append(obj)
|
|
15581
|
+
if params.get("AssetTypeList") is not None:
|
|
15582
|
+
self._AssetTypeList = []
|
|
15583
|
+
for item in params.get("AssetTypeList"):
|
|
15584
|
+
obj = AttributeOptionSet()
|
|
15585
|
+
obj._deserialize(item)
|
|
15586
|
+
self._AssetTypeList.append(obj)
|
|
15477
15587
|
self._RequestId = params.get("RequestId")
|
|
15478
15588
|
|
|
15479
15589
|
|
|
@@ -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.34
|
|
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.34
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256
|
|
1
|
+
tencentcloud/__init__.py,sha256=-Z1hTxhJXpn9Uitiw4nt8_PRp2coEelVSDZc-Qhm_3Y,629
|
|
2
2
|
tencentcloud/csip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/csip/v20221121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/csip/v20221121/csip_client.py,sha256=TePNovcD8MV5ra-9ijpm_BoD5ddfl5f82Z7bAUxUrRw,76706
|
|
5
5
|
tencentcloud/csip/v20221121/csip_client_async.py,sha256=EsnpFYnwPyQVRENVNO7_9b9omJv7mn_aYzOAUFrJF3Q,51403
|
|
6
6
|
tencentcloud/csip/v20221121/errorcodes.py,sha256=tQq2byfzCpkRMLmW2QNKwIYBoudFePHil-JJw8TnPFE,2200
|
|
7
|
-
tencentcloud/csip/v20221121/models.py,sha256=
|
|
8
|
-
tencentcloud_sdk_python_csip-3.1.
|
|
9
|
-
tencentcloud_sdk_python_csip-3.1.
|
|
10
|
-
tencentcloud_sdk_python_csip-3.1.
|
|
11
|
-
tencentcloud_sdk_python_csip-3.1.
|
|
7
|
+
tencentcloud/csip/v20221121/models.py,sha256=Vvs3pub3Zk28aw__f27LBpSij_c-XTw9eYijeiKmNvY,1057612
|
|
8
|
+
tencentcloud_sdk_python_csip-3.1.34.dist-info/METADATA,sha256=UV_VhHfcwDA_DDWzJ8rjXDfytZ8yDjdVXvL-EiHsrvU,1500
|
|
9
|
+
tencentcloud_sdk_python_csip-3.1.34.dist-info/WHEEL,sha256=I3glN-nznogni2CWkAvi6vPRkBhTbVeYvJZnIsln6uc,109
|
|
10
|
+
tencentcloud_sdk_python_csip-3.1.34.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
11
|
+
tencentcloud_sdk_python_csip-3.1.34.dist-info/RECORD,,
|
|
File without changes
|