tencentcloud-sdk-python-csip 3.0.1459__tar.gz → 3.0.1479__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.
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/setup.py +1 -1
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud/csip/v20221121/models.py +84 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-csip-3.0.1479/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-csip-3.0.1459/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/README.rst +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/setup.cfg +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud/csip/__init__.py +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud/csip/v20221121/__init__.py +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud/csip/v20221121/csip_client.py +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-csip-3.0.1459 → tencentcloud-sdk-python-csip-3.0.1479}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1479,<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(),
|
|
@@ -155,6 +155,8 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
155
155
|
:type Evidence: str
|
|
156
156
|
:param _RuleKey: 告警规则标识
|
|
157
157
|
:type RuleKey: str
|
|
158
|
+
:param _CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
159
|
+
:type CloudType: int
|
|
158
160
|
"""
|
|
159
161
|
self._Name = None
|
|
160
162
|
self._Level = None
|
|
@@ -178,6 +180,7 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
178
180
|
self._IsSupportEditWhiteAccount = None
|
|
179
181
|
self._Evidence = None
|
|
180
182
|
self._RuleKey = None
|
|
183
|
+
self._CloudType = None
|
|
181
184
|
|
|
182
185
|
@property
|
|
183
186
|
def Name(self):
|
|
@@ -426,6 +429,17 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
426
429
|
def RuleKey(self, RuleKey):
|
|
427
430
|
self._RuleKey = RuleKey
|
|
428
431
|
|
|
432
|
+
@property
|
|
433
|
+
def CloudType(self):
|
|
434
|
+
r"""云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
435
|
+
:rtype: int
|
|
436
|
+
"""
|
|
437
|
+
return self._CloudType
|
|
438
|
+
|
|
439
|
+
@CloudType.setter
|
|
440
|
+
def CloudType(self, CloudType):
|
|
441
|
+
self._CloudType = CloudType
|
|
442
|
+
|
|
429
443
|
|
|
430
444
|
def _deserialize(self, params):
|
|
431
445
|
self._Name = params.get("Name")
|
|
@@ -450,6 +464,7 @@ class AccessKeyAlarm(AbstractModel):
|
|
|
450
464
|
self._IsSupportEditWhiteAccount = params.get("IsSupportEditWhiteAccount")
|
|
451
465
|
self._Evidence = params.get("Evidence")
|
|
452
466
|
self._RuleKey = params.get("RuleKey")
|
|
467
|
+
self._CloudType = params.get("CloudType")
|
|
453
468
|
memeber_set = set(params.keys())
|
|
454
469
|
for name, value in vars(self).items():
|
|
455
470
|
property_name = name[1:]
|
|
@@ -643,6 +658,8 @@ class AccessKeyAsset(AbstractModel):
|
|
|
643
658
|
:param _CheckStatus: 0 表示已检测
|
|
644
659
|
1 表示检测中
|
|
645
660
|
:type CheckStatus: int
|
|
661
|
+
:param _CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
662
|
+
:type CloudType: int
|
|
646
663
|
"""
|
|
647
664
|
self._ID = None
|
|
648
665
|
self._Name = None
|
|
@@ -661,6 +678,7 @@ class AccessKeyAsset(AbstractModel):
|
|
|
661
678
|
self._LastAccessTime = None
|
|
662
679
|
self._Status = None
|
|
663
680
|
self._CheckStatus = None
|
|
681
|
+
self._CloudType = None
|
|
664
682
|
|
|
665
683
|
@property
|
|
666
684
|
def ID(self):
|
|
@@ -858,6 +876,17 @@ class AccessKeyAsset(AbstractModel):
|
|
|
858
876
|
def CheckStatus(self, CheckStatus):
|
|
859
877
|
self._CheckStatus = CheckStatus
|
|
860
878
|
|
|
879
|
+
@property
|
|
880
|
+
def CloudType(self):
|
|
881
|
+
r"""云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
882
|
+
:rtype: int
|
|
883
|
+
"""
|
|
884
|
+
return self._CloudType
|
|
885
|
+
|
|
886
|
+
@CloudType.setter
|
|
887
|
+
def CloudType(self, CloudType):
|
|
888
|
+
self._CloudType = CloudType
|
|
889
|
+
|
|
861
890
|
|
|
862
891
|
def _deserialize(self, params):
|
|
863
892
|
self._ID = params.get("ID")
|
|
@@ -887,6 +916,7 @@ class AccessKeyAsset(AbstractModel):
|
|
|
887
916
|
self._LastAccessTime = params.get("LastAccessTime")
|
|
888
917
|
self._Status = params.get("Status")
|
|
889
918
|
self._CheckStatus = params.get("CheckStatus")
|
|
919
|
+
self._CloudType = params.get("CloudType")
|
|
890
920
|
memeber_set = set(params.keys())
|
|
891
921
|
for name, value in vars(self).items():
|
|
892
922
|
property_name = name[1:]
|
|
@@ -1298,6 +1328,8 @@ class AccessKeyUser(AbstractModel):
|
|
|
1298
1328
|
:type LoginFlag: int
|
|
1299
1329
|
:param _CheckStatus: 0 表示已检测 1 表示检测中
|
|
1300
1330
|
:type CheckStatus: int
|
|
1331
|
+
:param _CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
1332
|
+
:type CloudType: int
|
|
1301
1333
|
"""
|
|
1302
1334
|
self._ID = None
|
|
1303
1335
|
self._Name = None
|
|
@@ -1318,6 +1350,7 @@ class AccessKeyUser(AbstractModel):
|
|
|
1318
1350
|
self._ActionFlag = None
|
|
1319
1351
|
self._LoginFlag = None
|
|
1320
1352
|
self._CheckStatus = None
|
|
1353
|
+
self._CloudType = None
|
|
1321
1354
|
|
|
1322
1355
|
@property
|
|
1323
1356
|
def ID(self):
|
|
@@ -1534,6 +1567,17 @@ class AccessKeyUser(AbstractModel):
|
|
|
1534
1567
|
def CheckStatus(self, CheckStatus):
|
|
1535
1568
|
self._CheckStatus = CheckStatus
|
|
1536
1569
|
|
|
1570
|
+
@property
|
|
1571
|
+
def CloudType(self):
|
|
1572
|
+
r"""云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
1573
|
+
:rtype: int
|
|
1574
|
+
"""
|
|
1575
|
+
return self._CloudType
|
|
1576
|
+
|
|
1577
|
+
@CloudType.setter
|
|
1578
|
+
def CloudType(self, CloudType):
|
|
1579
|
+
self._CloudType = CloudType
|
|
1580
|
+
|
|
1537
1581
|
|
|
1538
1582
|
def _deserialize(self, params):
|
|
1539
1583
|
self._ID = params.get("ID")
|
|
@@ -1565,6 +1609,7 @@ class AccessKeyUser(AbstractModel):
|
|
|
1565
1609
|
self._ActionFlag = params.get("ActionFlag")
|
|
1566
1610
|
self._LoginFlag = params.get("LoginFlag")
|
|
1567
1611
|
self._CheckStatus = params.get("CheckStatus")
|
|
1612
|
+
self._CloudType = params.get("CloudType")
|
|
1568
1613
|
memeber_set = set(params.keys())
|
|
1569
1614
|
for name, value in vars(self).items():
|
|
1570
1615
|
property_name = name[1:]
|
|
@@ -32397,6 +32442,7 @@ class SourceIPAsset(AbstractModel):
|
|
|
32397
32442
|
:param _Region: IP地域
|
|
32398
32443
|
:type Region: str
|
|
32399
32444
|
:param _EventType: 调用方式
|
|
32445
|
+
-1:未统计
|
|
32400
32446
|
0:控制台调用
|
|
32401
32447
|
1:API
|
|
32402
32448
|
:type EventType: int
|
|
@@ -32426,6 +32472,11 @@ class SourceIPAsset(AbstractModel):
|
|
|
32426
32472
|
:type ShowStatus: bool
|
|
32427
32473
|
:param _ISP: 运营商字段
|
|
32428
32474
|
:type ISP: str
|
|
32475
|
+
:param _VpcInfo: 账号外vpc信息
|
|
32476
|
+
:type VpcInfo: list of SourceIPVpcInfo
|
|
32477
|
+
:param _CloudType: 云类型
|
|
32478
|
+
0为腾讯云
|
|
32479
|
+
:type CloudType: int
|
|
32429
32480
|
"""
|
|
32430
32481
|
self._ID = None
|
|
32431
32482
|
self._SourceIP = None
|
|
@@ -32444,6 +32495,8 @@ class SourceIPAsset(AbstractModel):
|
|
|
32444
32495
|
self._Nickname = None
|
|
32445
32496
|
self._ShowStatus = None
|
|
32446
32497
|
self._ISP = None
|
|
32498
|
+
self._VpcInfo = None
|
|
32499
|
+
self._CloudType = None
|
|
32447
32500
|
|
|
32448
32501
|
@property
|
|
32449
32502
|
def ID(self):
|
|
@@ -32503,6 +32556,7 @@ class SourceIPAsset(AbstractModel):
|
|
|
32503
32556
|
@property
|
|
32504
32557
|
def EventType(self):
|
|
32505
32558
|
r"""调用方式
|
|
32559
|
+
-1:未统计
|
|
32506
32560
|
0:控制台调用
|
|
32507
32561
|
1:API
|
|
32508
32562
|
:rtype: int
|
|
@@ -32638,6 +32692,29 @@ class SourceIPAsset(AbstractModel):
|
|
|
32638
32692
|
def ISP(self, ISP):
|
|
32639
32693
|
self._ISP = ISP
|
|
32640
32694
|
|
|
32695
|
+
@property
|
|
32696
|
+
def VpcInfo(self):
|
|
32697
|
+
r"""账号外vpc信息
|
|
32698
|
+
:rtype: list of SourceIPVpcInfo
|
|
32699
|
+
"""
|
|
32700
|
+
return self._VpcInfo
|
|
32701
|
+
|
|
32702
|
+
@VpcInfo.setter
|
|
32703
|
+
def VpcInfo(self, VpcInfo):
|
|
32704
|
+
self._VpcInfo = VpcInfo
|
|
32705
|
+
|
|
32706
|
+
@property
|
|
32707
|
+
def CloudType(self):
|
|
32708
|
+
r"""云类型
|
|
32709
|
+
0为腾讯云
|
|
32710
|
+
:rtype: int
|
|
32711
|
+
"""
|
|
32712
|
+
return self._CloudType
|
|
32713
|
+
|
|
32714
|
+
@CloudType.setter
|
|
32715
|
+
def CloudType(self, CloudType):
|
|
32716
|
+
self._CloudType = CloudType
|
|
32717
|
+
|
|
32641
32718
|
|
|
32642
32719
|
def _deserialize(self, params):
|
|
32643
32720
|
self._ID = params.get("ID")
|
|
@@ -32667,6 +32744,13 @@ class SourceIPAsset(AbstractModel):
|
|
|
32667
32744
|
self._Nickname = params.get("Nickname")
|
|
32668
32745
|
self._ShowStatus = params.get("ShowStatus")
|
|
32669
32746
|
self._ISP = params.get("ISP")
|
|
32747
|
+
if params.get("VpcInfo") is not None:
|
|
32748
|
+
self._VpcInfo = []
|
|
32749
|
+
for item in params.get("VpcInfo"):
|
|
32750
|
+
obj = SourceIPVpcInfo()
|
|
32751
|
+
obj._deserialize(item)
|
|
32752
|
+
self._VpcInfo.append(obj)
|
|
32753
|
+
self._CloudType = params.get("CloudType")
|
|
32670
32754
|
memeber_set = set(params.keys())
|
|
32671
32755
|
for name, value in vars(self).items():
|
|
32672
32756
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1479
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|