tencentcloud-sdk-python-csip 3.0.1394__tar.gz → 3.0.1406__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.1394 → tencentcloud-sdk-python-csip-3.0.1406}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/setup.py +1 -1
  3. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud/csip/v20221121/csip_client.py +23 -0
  5. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud/csip/v20221121/models.py +782 -0
  6. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-csip-3.0.1406/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-csip-3.0.1394/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/README.rst +0 -0
  10. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud/csip/__init__.py +0 -0
  12. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud/csip/v20221121/__init__.py +0 -0
  13. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-csip-3.0.1394 → tencentcloud-sdk-python-csip-3.0.1406}/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.1394
3
+ Version: 3.0.1406
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.1394"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1406"],
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.1394'
17
+ __version__ = '3.0.1406'
@@ -371,6 +371,29 @@ class CsipClient(AbstractClient):
371
371
  raise TencentCloudSDKException(type(e).__name__, str(e))
372
372
 
373
373
 
374
+ def DescribeExposures(self, request):
375
+ """互联网暴露资产列表
376
+
377
+ :param request: Request instance for DescribeExposures.
378
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeExposuresRequest`
379
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeExposuresResponse`
380
+
381
+ """
382
+ try:
383
+ params = request._serialize()
384
+ headers = request.headers
385
+ body = self.call("DescribeExposures", params, headers=headers)
386
+ response = json.loads(body)
387
+ model = models.DescribeExposuresResponse()
388
+ model._deserialize(response["Response"])
389
+ return model
390
+ except Exception as e:
391
+ if isinstance(e, TencentCloudSDKException):
392
+ raise
393
+ else:
394
+ raise TencentCloudSDKException(type(e).__name__, str(e))
395
+
396
+
374
397
  def DescribeGatewayAssets(self, request):
375
398
  """获取网关列表
376
399
 
@@ -10783,6 +10783,185 @@ class DescribeDomainAssetsResponse(AbstractModel):
10783
10783
  self._RequestId = params.get("RequestId")
10784
10784
 
10785
10785
 
10786
+ class DescribeExposuresRequest(AbstractModel):
10787
+ """DescribeExposures请求参数结构体
10788
+
10789
+ """
10790
+
10791
+ def __init__(self):
10792
+ r"""
10793
+ :param _MemberId: 集团账号的成员id
10794
+ :type MemberId: list of str
10795
+ :param _Filters: 过滤内容
10796
+ :type Filters: list of Filters
10797
+ :param _Limit: 分页大小
10798
+ :type Limit: int
10799
+ :param _Offset: 偏移量
10800
+ :type Offset: int
10801
+ :param _Order: 排序类型
10802
+ :type Order: str
10803
+ :param _By: 排序字段
10804
+ :type By: str
10805
+ """
10806
+ self._MemberId = None
10807
+ self._Filters = None
10808
+ self._Limit = None
10809
+ self._Offset = None
10810
+ self._Order = None
10811
+ self._By = None
10812
+
10813
+ @property
10814
+ def MemberId(self):
10815
+ """集团账号的成员id
10816
+ :rtype: list of str
10817
+ """
10818
+ return self._MemberId
10819
+
10820
+ @MemberId.setter
10821
+ def MemberId(self, MemberId):
10822
+ self._MemberId = MemberId
10823
+
10824
+ @property
10825
+ def Filters(self):
10826
+ """过滤内容
10827
+ :rtype: list of Filters
10828
+ """
10829
+ return self._Filters
10830
+
10831
+ @Filters.setter
10832
+ def Filters(self, Filters):
10833
+ self._Filters = Filters
10834
+
10835
+ @property
10836
+ def Limit(self):
10837
+ """分页大小
10838
+ :rtype: int
10839
+ """
10840
+ return self._Limit
10841
+
10842
+ @Limit.setter
10843
+ def Limit(self, Limit):
10844
+ self._Limit = Limit
10845
+
10846
+ @property
10847
+ def Offset(self):
10848
+ """偏移量
10849
+ :rtype: int
10850
+ """
10851
+ return self._Offset
10852
+
10853
+ @Offset.setter
10854
+ def Offset(self, Offset):
10855
+ self._Offset = Offset
10856
+
10857
+ @property
10858
+ def Order(self):
10859
+ """排序类型
10860
+ :rtype: str
10861
+ """
10862
+ return self._Order
10863
+
10864
+ @Order.setter
10865
+ def Order(self, Order):
10866
+ self._Order = Order
10867
+
10868
+ @property
10869
+ def By(self):
10870
+ """排序字段
10871
+ :rtype: str
10872
+ """
10873
+ return self._By
10874
+
10875
+ @By.setter
10876
+ def By(self, By):
10877
+ self._By = By
10878
+
10879
+
10880
+ def _deserialize(self, params):
10881
+ self._MemberId = params.get("MemberId")
10882
+ if params.get("Filters") is not None:
10883
+ self._Filters = []
10884
+ for item in params.get("Filters"):
10885
+ obj = Filters()
10886
+ obj._deserialize(item)
10887
+ self._Filters.append(obj)
10888
+ self._Limit = params.get("Limit")
10889
+ self._Offset = params.get("Offset")
10890
+ self._Order = params.get("Order")
10891
+ self._By = params.get("By")
10892
+ memeber_set = set(params.keys())
10893
+ for name, value in vars(self).items():
10894
+ property_name = name[1:]
10895
+ if property_name in memeber_set:
10896
+ memeber_set.remove(property_name)
10897
+ if len(memeber_set) > 0:
10898
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10899
+
10900
+
10901
+
10902
+ class DescribeExposuresResponse(AbstractModel):
10903
+ """DescribeExposures返回参数结构体
10904
+
10905
+ """
10906
+
10907
+ def __init__(self):
10908
+ r"""
10909
+ :param _TotalCount: 互联网暴露资产数量
10910
+ :type TotalCount: int
10911
+ :param _ExposeList: 互联网暴露资产列表
10912
+ :type ExposeList: list of ExposesItem
10913
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10914
+ :type RequestId: str
10915
+ """
10916
+ self._TotalCount = None
10917
+ self._ExposeList = None
10918
+ self._RequestId = None
10919
+
10920
+ @property
10921
+ def TotalCount(self):
10922
+ """互联网暴露资产数量
10923
+ :rtype: int
10924
+ """
10925
+ return self._TotalCount
10926
+
10927
+ @TotalCount.setter
10928
+ def TotalCount(self, TotalCount):
10929
+ self._TotalCount = TotalCount
10930
+
10931
+ @property
10932
+ def ExposeList(self):
10933
+ """互联网暴露资产列表
10934
+ :rtype: list of ExposesItem
10935
+ """
10936
+ return self._ExposeList
10937
+
10938
+ @ExposeList.setter
10939
+ def ExposeList(self, ExposeList):
10940
+ self._ExposeList = ExposeList
10941
+
10942
+ @property
10943
+ def RequestId(self):
10944
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10945
+ :rtype: str
10946
+ """
10947
+ return self._RequestId
10948
+
10949
+ @RequestId.setter
10950
+ def RequestId(self, RequestId):
10951
+ self._RequestId = RequestId
10952
+
10953
+
10954
+ def _deserialize(self, params):
10955
+ self._TotalCount = params.get("TotalCount")
10956
+ if params.get("ExposeList") is not None:
10957
+ self._ExposeList = []
10958
+ for item in params.get("ExposeList"):
10959
+ obj = ExposesItem()
10960
+ obj._deserialize(item)
10961
+ self._ExposeList.append(obj)
10962
+ self._RequestId = params.get("RequestId")
10963
+
10964
+
10786
10965
  class DescribeGatewayAssetsRequest(AbstractModel):
10787
10966
  """DescribeGatewayAssets请求参数结构体
10788
10967
 
@@ -14617,13 +14796,61 @@ class DescribeTopAttackInfoRequest(AbstractModel):
14617
14796
 
14618
14797
  def __init__(self):
14619
14798
  r"""
14799
+ :param _StartTime: 起始时间
14800
+ :type StartTime: str
14801
+ :param _EndTime: 结束时间
14802
+ :type EndTime: str
14803
+ :param _QueryType: 1:攻击类型 2:攻击者
14804
+ :type QueryType: int
14620
14805
  :param _MemberId: 集团账号的成员id
14621
14806
  :type MemberId: list of str
14622
14807
  :param _OperatedMemberId: 被调用的集团账号的成员id
14623
14808
  :type OperatedMemberId: list of str
14809
+ :param _AssetName: 资产名称
14810
+ :type AssetName: str
14811
+ :param _AssetType: 0: 默认全部 1:资产ID 2:域名
14812
+ :type AssetType: int
14624
14813
  """
14814
+ self._StartTime = None
14815
+ self._EndTime = None
14816
+ self._QueryType = None
14625
14817
  self._MemberId = None
14626
14818
  self._OperatedMemberId = None
14819
+ self._AssetName = None
14820
+ self._AssetType = None
14821
+
14822
+ @property
14823
+ def StartTime(self):
14824
+ """起始时间
14825
+ :rtype: str
14826
+ """
14827
+ return self._StartTime
14828
+
14829
+ @StartTime.setter
14830
+ def StartTime(self, StartTime):
14831
+ self._StartTime = StartTime
14832
+
14833
+ @property
14834
+ def EndTime(self):
14835
+ """结束时间
14836
+ :rtype: str
14837
+ """
14838
+ return self._EndTime
14839
+
14840
+ @EndTime.setter
14841
+ def EndTime(self, EndTime):
14842
+ self._EndTime = EndTime
14843
+
14844
+ @property
14845
+ def QueryType(self):
14846
+ """1:攻击类型 2:攻击者
14847
+ :rtype: int
14848
+ """
14849
+ return self._QueryType
14850
+
14851
+ @QueryType.setter
14852
+ def QueryType(self, QueryType):
14853
+ self._QueryType = QueryType
14627
14854
 
14628
14855
  @property
14629
14856
  def MemberId(self):
@@ -14647,10 +14874,37 @@ class DescribeTopAttackInfoRequest(AbstractModel):
14647
14874
  def OperatedMemberId(self, OperatedMemberId):
14648
14875
  self._OperatedMemberId = OperatedMemberId
14649
14876
 
14877
+ @property
14878
+ def AssetName(self):
14879
+ """资产名称
14880
+ :rtype: str
14881
+ """
14882
+ return self._AssetName
14883
+
14884
+ @AssetName.setter
14885
+ def AssetName(self, AssetName):
14886
+ self._AssetName = AssetName
14887
+
14888
+ @property
14889
+ def AssetType(self):
14890
+ """0: 默认全部 1:资产ID 2:域名
14891
+ :rtype: int
14892
+ """
14893
+ return self._AssetType
14894
+
14895
+ @AssetType.setter
14896
+ def AssetType(self, AssetType):
14897
+ self._AssetType = AssetType
14898
+
14650
14899
 
14651
14900
  def _deserialize(self, params):
14901
+ self._StartTime = params.get("StartTime")
14902
+ self._EndTime = params.get("EndTime")
14903
+ self._QueryType = params.get("QueryType")
14652
14904
  self._MemberId = params.get("MemberId")
14653
14905
  self._OperatedMemberId = params.get("OperatedMemberId")
14906
+ self._AssetName = params.get("AssetName")
14907
+ self._AssetType = params.get("AssetType")
14654
14908
  memeber_set = set(params.keys())
14655
14909
  for name, value in vars(self).items():
14656
14910
  property_name = name[1:]
@@ -16291,6 +16545,462 @@ class Element(AbstractModel):
16291
16545
 
16292
16546
 
16293
16547
 
16548
+ class ExposesItem(AbstractModel):
16549
+ """暴露资产
16550
+
16551
+ """
16552
+
16553
+ def __init__(self):
16554
+ r"""
16555
+ :param _Provider: 云厂商
16556
+ :type Provider: str
16557
+ :param _CloudAccountName: 云账号名称
16558
+ :type CloudAccountName: str
16559
+ :param _CloudAccountId: 云账号
16560
+ :type CloudAccountId: str
16561
+ :param _Domain: 域名
16562
+ :type Domain: str
16563
+ :param _Ip: IP
16564
+ :type Ip: str
16565
+ :param _Port: 端口或者端口范围
16566
+ :type Port: str
16567
+ :param _Status: 开放
16568
+ :type Status: str
16569
+ :param _RiskType: 风险类型
16570
+ :type RiskType: str
16571
+ :param _AclType: acl类型
16572
+ :type AclType: str
16573
+ :param _AclList: acl列表
16574
+ :type AclList: str
16575
+ :param _AssetId: 资产ID
16576
+ :type AssetId: str
16577
+ :param _InstanceName: 实例名称
16578
+ :type InstanceName: str
16579
+ :param _AssetType: 资产类型
16580
+ :type AssetType: str
16581
+ :param _PortServiceCount: 端口服务数量
16582
+ :type PortServiceCount: int
16583
+ :param _HighRiskPortServiceCount: 高危端口数量
16584
+ :type HighRiskPortServiceCount: int
16585
+ :param _WebAppCount: web应用数量
16586
+ :type WebAppCount: int
16587
+ :param _RiskWebAppCount: 有风险web应用数量
16588
+ :type RiskWebAppCount: int
16589
+ :param _WeakPasswordCount: 弱口令数量
16590
+ :type WeakPasswordCount: int
16591
+ :param _VulCount: 漏洞数量
16592
+ :type VulCount: int
16593
+ :param _CreateTime: 首次发现时间
16594
+ :type CreateTime: str
16595
+ :param _UpdateTime: 最近更新时间
16596
+ :type UpdateTime: str
16597
+ :param _AssetTypeName: 实例类型名称
16598
+ :type AssetTypeName: str
16599
+ :param _DisplayStatus: 开放状态
16600
+ :type DisplayStatus: str
16601
+ :param _DisplayRiskType: 端口状态
16602
+ :type DisplayRiskType: str
16603
+ :param _ScanTaskStatus: 扫描任务状态
16604
+ :type ScanTaskStatus: str
16605
+ :param _Uuid: uuid
16606
+ :type Uuid: str
16607
+ :param _HasScan: 是否进行过安全体检
16608
+ :type HasScan: str
16609
+ :param _AppId: 租户ID
16610
+ :type AppId: int
16611
+ :param _AppIdStr: 租户ID字符串
16612
+ :type AppIdStr: str
16613
+ """
16614
+ self._Provider = None
16615
+ self._CloudAccountName = None
16616
+ self._CloudAccountId = None
16617
+ self._Domain = None
16618
+ self._Ip = None
16619
+ self._Port = None
16620
+ self._Status = None
16621
+ self._RiskType = None
16622
+ self._AclType = None
16623
+ self._AclList = None
16624
+ self._AssetId = None
16625
+ self._InstanceName = None
16626
+ self._AssetType = None
16627
+ self._PortServiceCount = None
16628
+ self._HighRiskPortServiceCount = None
16629
+ self._WebAppCount = None
16630
+ self._RiskWebAppCount = None
16631
+ self._WeakPasswordCount = None
16632
+ self._VulCount = None
16633
+ self._CreateTime = None
16634
+ self._UpdateTime = None
16635
+ self._AssetTypeName = None
16636
+ self._DisplayStatus = None
16637
+ self._DisplayRiskType = None
16638
+ self._ScanTaskStatus = None
16639
+ self._Uuid = None
16640
+ self._HasScan = None
16641
+ self._AppId = None
16642
+ self._AppIdStr = None
16643
+
16644
+ @property
16645
+ def Provider(self):
16646
+ """云厂商
16647
+ :rtype: str
16648
+ """
16649
+ return self._Provider
16650
+
16651
+ @Provider.setter
16652
+ def Provider(self, Provider):
16653
+ self._Provider = Provider
16654
+
16655
+ @property
16656
+ def CloudAccountName(self):
16657
+ """云账号名称
16658
+ :rtype: str
16659
+ """
16660
+ return self._CloudAccountName
16661
+
16662
+ @CloudAccountName.setter
16663
+ def CloudAccountName(self, CloudAccountName):
16664
+ self._CloudAccountName = CloudAccountName
16665
+
16666
+ @property
16667
+ def CloudAccountId(self):
16668
+ """云账号
16669
+ :rtype: str
16670
+ """
16671
+ return self._CloudAccountId
16672
+
16673
+ @CloudAccountId.setter
16674
+ def CloudAccountId(self, CloudAccountId):
16675
+ self._CloudAccountId = CloudAccountId
16676
+
16677
+ @property
16678
+ def Domain(self):
16679
+ """域名
16680
+ :rtype: str
16681
+ """
16682
+ return self._Domain
16683
+
16684
+ @Domain.setter
16685
+ def Domain(self, Domain):
16686
+ self._Domain = Domain
16687
+
16688
+ @property
16689
+ def Ip(self):
16690
+ """IP
16691
+ :rtype: str
16692
+ """
16693
+ return self._Ip
16694
+
16695
+ @Ip.setter
16696
+ def Ip(self, Ip):
16697
+ self._Ip = Ip
16698
+
16699
+ @property
16700
+ def Port(self):
16701
+ """端口或者端口范围
16702
+ :rtype: str
16703
+ """
16704
+ return self._Port
16705
+
16706
+ @Port.setter
16707
+ def Port(self, Port):
16708
+ self._Port = Port
16709
+
16710
+ @property
16711
+ def Status(self):
16712
+ """开放
16713
+ :rtype: str
16714
+ """
16715
+ return self._Status
16716
+
16717
+ @Status.setter
16718
+ def Status(self, Status):
16719
+ self._Status = Status
16720
+
16721
+ @property
16722
+ def RiskType(self):
16723
+ """风险类型
16724
+ :rtype: str
16725
+ """
16726
+ return self._RiskType
16727
+
16728
+ @RiskType.setter
16729
+ def RiskType(self, RiskType):
16730
+ self._RiskType = RiskType
16731
+
16732
+ @property
16733
+ def AclType(self):
16734
+ """acl类型
16735
+ :rtype: str
16736
+ """
16737
+ return self._AclType
16738
+
16739
+ @AclType.setter
16740
+ def AclType(self, AclType):
16741
+ self._AclType = AclType
16742
+
16743
+ @property
16744
+ def AclList(self):
16745
+ """acl列表
16746
+ :rtype: str
16747
+ """
16748
+ return self._AclList
16749
+
16750
+ @AclList.setter
16751
+ def AclList(self, AclList):
16752
+ self._AclList = AclList
16753
+
16754
+ @property
16755
+ def AssetId(self):
16756
+ """资产ID
16757
+ :rtype: str
16758
+ """
16759
+ return self._AssetId
16760
+
16761
+ @AssetId.setter
16762
+ def AssetId(self, AssetId):
16763
+ self._AssetId = AssetId
16764
+
16765
+ @property
16766
+ def InstanceName(self):
16767
+ """实例名称
16768
+ :rtype: str
16769
+ """
16770
+ return self._InstanceName
16771
+
16772
+ @InstanceName.setter
16773
+ def InstanceName(self, InstanceName):
16774
+ self._InstanceName = InstanceName
16775
+
16776
+ @property
16777
+ def AssetType(self):
16778
+ """资产类型
16779
+ :rtype: str
16780
+ """
16781
+ return self._AssetType
16782
+
16783
+ @AssetType.setter
16784
+ def AssetType(self, AssetType):
16785
+ self._AssetType = AssetType
16786
+
16787
+ @property
16788
+ def PortServiceCount(self):
16789
+ """端口服务数量
16790
+ :rtype: int
16791
+ """
16792
+ return self._PortServiceCount
16793
+
16794
+ @PortServiceCount.setter
16795
+ def PortServiceCount(self, PortServiceCount):
16796
+ self._PortServiceCount = PortServiceCount
16797
+
16798
+ @property
16799
+ def HighRiskPortServiceCount(self):
16800
+ """高危端口数量
16801
+ :rtype: int
16802
+ """
16803
+ return self._HighRiskPortServiceCount
16804
+
16805
+ @HighRiskPortServiceCount.setter
16806
+ def HighRiskPortServiceCount(self, HighRiskPortServiceCount):
16807
+ self._HighRiskPortServiceCount = HighRiskPortServiceCount
16808
+
16809
+ @property
16810
+ def WebAppCount(self):
16811
+ """web应用数量
16812
+ :rtype: int
16813
+ """
16814
+ return self._WebAppCount
16815
+
16816
+ @WebAppCount.setter
16817
+ def WebAppCount(self, WebAppCount):
16818
+ self._WebAppCount = WebAppCount
16819
+
16820
+ @property
16821
+ def RiskWebAppCount(self):
16822
+ """有风险web应用数量
16823
+ :rtype: int
16824
+ """
16825
+ return self._RiskWebAppCount
16826
+
16827
+ @RiskWebAppCount.setter
16828
+ def RiskWebAppCount(self, RiskWebAppCount):
16829
+ self._RiskWebAppCount = RiskWebAppCount
16830
+
16831
+ @property
16832
+ def WeakPasswordCount(self):
16833
+ """弱口令数量
16834
+ :rtype: int
16835
+ """
16836
+ return self._WeakPasswordCount
16837
+
16838
+ @WeakPasswordCount.setter
16839
+ def WeakPasswordCount(self, WeakPasswordCount):
16840
+ self._WeakPasswordCount = WeakPasswordCount
16841
+
16842
+ @property
16843
+ def VulCount(self):
16844
+ """漏洞数量
16845
+ :rtype: int
16846
+ """
16847
+ return self._VulCount
16848
+
16849
+ @VulCount.setter
16850
+ def VulCount(self, VulCount):
16851
+ self._VulCount = VulCount
16852
+
16853
+ @property
16854
+ def CreateTime(self):
16855
+ """首次发现时间
16856
+ :rtype: str
16857
+ """
16858
+ return self._CreateTime
16859
+
16860
+ @CreateTime.setter
16861
+ def CreateTime(self, CreateTime):
16862
+ self._CreateTime = CreateTime
16863
+
16864
+ @property
16865
+ def UpdateTime(self):
16866
+ """最近更新时间
16867
+ :rtype: str
16868
+ """
16869
+ return self._UpdateTime
16870
+
16871
+ @UpdateTime.setter
16872
+ def UpdateTime(self, UpdateTime):
16873
+ self._UpdateTime = UpdateTime
16874
+
16875
+ @property
16876
+ def AssetTypeName(self):
16877
+ """实例类型名称
16878
+ :rtype: str
16879
+ """
16880
+ return self._AssetTypeName
16881
+
16882
+ @AssetTypeName.setter
16883
+ def AssetTypeName(self, AssetTypeName):
16884
+ self._AssetTypeName = AssetTypeName
16885
+
16886
+ @property
16887
+ def DisplayStatus(self):
16888
+ """开放状态
16889
+ :rtype: str
16890
+ """
16891
+ return self._DisplayStatus
16892
+
16893
+ @DisplayStatus.setter
16894
+ def DisplayStatus(self, DisplayStatus):
16895
+ self._DisplayStatus = DisplayStatus
16896
+
16897
+ @property
16898
+ def DisplayRiskType(self):
16899
+ """端口状态
16900
+ :rtype: str
16901
+ """
16902
+ return self._DisplayRiskType
16903
+
16904
+ @DisplayRiskType.setter
16905
+ def DisplayRiskType(self, DisplayRiskType):
16906
+ self._DisplayRiskType = DisplayRiskType
16907
+
16908
+ @property
16909
+ def ScanTaskStatus(self):
16910
+ """扫描任务状态
16911
+ :rtype: str
16912
+ """
16913
+ return self._ScanTaskStatus
16914
+
16915
+ @ScanTaskStatus.setter
16916
+ def ScanTaskStatus(self, ScanTaskStatus):
16917
+ self._ScanTaskStatus = ScanTaskStatus
16918
+
16919
+ @property
16920
+ def Uuid(self):
16921
+ """uuid
16922
+ :rtype: str
16923
+ """
16924
+ return self._Uuid
16925
+
16926
+ @Uuid.setter
16927
+ def Uuid(self, Uuid):
16928
+ self._Uuid = Uuid
16929
+
16930
+ @property
16931
+ def HasScan(self):
16932
+ """是否进行过安全体检
16933
+ :rtype: str
16934
+ """
16935
+ return self._HasScan
16936
+
16937
+ @HasScan.setter
16938
+ def HasScan(self, HasScan):
16939
+ self._HasScan = HasScan
16940
+
16941
+ @property
16942
+ def AppId(self):
16943
+ """租户ID
16944
+ :rtype: int
16945
+ """
16946
+ return self._AppId
16947
+
16948
+ @AppId.setter
16949
+ def AppId(self, AppId):
16950
+ self._AppId = AppId
16951
+
16952
+ @property
16953
+ def AppIdStr(self):
16954
+ """租户ID字符串
16955
+ :rtype: str
16956
+ """
16957
+ return self._AppIdStr
16958
+
16959
+ @AppIdStr.setter
16960
+ def AppIdStr(self, AppIdStr):
16961
+ self._AppIdStr = AppIdStr
16962
+
16963
+
16964
+ def _deserialize(self, params):
16965
+ self._Provider = params.get("Provider")
16966
+ self._CloudAccountName = params.get("CloudAccountName")
16967
+ self._CloudAccountId = params.get("CloudAccountId")
16968
+ self._Domain = params.get("Domain")
16969
+ self._Ip = params.get("Ip")
16970
+ self._Port = params.get("Port")
16971
+ self._Status = params.get("Status")
16972
+ self._RiskType = params.get("RiskType")
16973
+ self._AclType = params.get("AclType")
16974
+ self._AclList = params.get("AclList")
16975
+ self._AssetId = params.get("AssetId")
16976
+ self._InstanceName = params.get("InstanceName")
16977
+ self._AssetType = params.get("AssetType")
16978
+ self._PortServiceCount = params.get("PortServiceCount")
16979
+ self._HighRiskPortServiceCount = params.get("HighRiskPortServiceCount")
16980
+ self._WebAppCount = params.get("WebAppCount")
16981
+ self._RiskWebAppCount = params.get("RiskWebAppCount")
16982
+ self._WeakPasswordCount = params.get("WeakPasswordCount")
16983
+ self._VulCount = params.get("VulCount")
16984
+ self._CreateTime = params.get("CreateTime")
16985
+ self._UpdateTime = params.get("UpdateTime")
16986
+ self._AssetTypeName = params.get("AssetTypeName")
16987
+ self._DisplayStatus = params.get("DisplayStatus")
16988
+ self._DisplayRiskType = params.get("DisplayRiskType")
16989
+ self._ScanTaskStatus = params.get("ScanTaskStatus")
16990
+ self._Uuid = params.get("Uuid")
16991
+ self._HasScan = params.get("HasScan")
16992
+ self._AppId = params.get("AppId")
16993
+ self._AppIdStr = params.get("AppIdStr")
16994
+ memeber_set = set(params.keys())
16995
+ for name, value in vars(self).items():
16996
+ property_name = name[1:]
16997
+ if property_name in memeber_set:
16998
+ memeber_set.remove(property_name)
16999
+ if len(memeber_set) > 0:
17000
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
17001
+
17002
+
17003
+
16294
17004
  class Filter(AbstractModel):
16295
17005
  """列表查询接口采用新filter 接口,直接传给后台供后台查询过滤
16296
17006
 
@@ -16473,6 +17183,78 @@ class FilterDataObject(AbstractModel):
16473
17183
 
16474
17184
 
16475
17185
 
17186
+ class Filters(AbstractModel):
17187
+ """filter过滤条件
17188
+
17189
+ """
17190
+
17191
+ def __init__(self):
17192
+ r"""
17193
+ :param _Name: 无
17194
+ 注意:此字段可能返回 null,表示取不到有效值。
17195
+ :type Name: str
17196
+ :param _Values: 无
17197
+ 注意:此字段可能返回 null,表示取不到有效值。
17198
+ :type Values: list of str
17199
+ :param _ExactMatch: 模糊匹配
17200
+ 注意:此字段可能返回 null,表示取不到有效值。
17201
+ :type ExactMatch: str
17202
+ """
17203
+ self._Name = None
17204
+ self._Values = None
17205
+ self._ExactMatch = None
17206
+
17207
+ @property
17208
+ def Name(self):
17209
+ """无
17210
+ 注意:此字段可能返回 null,表示取不到有效值。
17211
+ :rtype: str
17212
+ """
17213
+ return self._Name
17214
+
17215
+ @Name.setter
17216
+ def Name(self, Name):
17217
+ self._Name = Name
17218
+
17219
+ @property
17220
+ def Values(self):
17221
+ """无
17222
+ 注意:此字段可能返回 null,表示取不到有效值。
17223
+ :rtype: list of str
17224
+ """
17225
+ return self._Values
17226
+
17227
+ @Values.setter
17228
+ def Values(self, Values):
17229
+ self._Values = Values
17230
+
17231
+ @property
17232
+ def ExactMatch(self):
17233
+ """模糊匹配
17234
+ 注意:此字段可能返回 null,表示取不到有效值。
17235
+ :rtype: str
17236
+ """
17237
+ return self._ExactMatch
17238
+
17239
+ @ExactMatch.setter
17240
+ def ExactMatch(self, ExactMatch):
17241
+ self._ExactMatch = ExactMatch
17242
+
17243
+
17244
+ def _deserialize(self, params):
17245
+ self._Name = params.get("Name")
17246
+ self._Values = params.get("Values")
17247
+ self._ExactMatch = params.get("ExactMatch")
17248
+ memeber_set = set(params.keys())
17249
+ for name, value in vars(self).items():
17250
+ property_name = name[1:]
17251
+ if property_name in memeber_set:
17252
+ memeber_set.remove(property_name)
17253
+ if len(memeber_set) > 0:
17254
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
17255
+
17256
+
17257
+
16476
17258
  class GateWayAsset(AbstractModel):
16477
17259
  """网关资产
16478
17260
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.0.1394
3
+ Version: 3.0.1406
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==3.0.1406
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1394