tencentcloud-sdk-python-csip 3.1.134__tar.gz → 3.1.147__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 (17) hide show
  1. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/setup.py +1 -1
  3. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/csip/v20221121/models.py +48 -3
  5. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_csip-3.1.147/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_csip-3.1.134/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/README.rst +0 -0
  9. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/csip/__init__.py +0 -0
  11. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/csip/v20221121/__init__.py +0 -0
  12. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/csip/v20221121/csip_client.py +0 -0
  13. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/csip/v20221121/csip_client_async.py +0 -0
  14. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_csip-3.1.134 → tencentcloud_sdk_python_csip-3.1.147}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.1.134
3
+ Version: 3.1.147
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.134
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.147
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -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.1.134,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.147,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Csip SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.134'
17
+ __version__ = '3.1.147'
@@ -64106,13 +64106,13 @@ class FilterDataObject(AbstractModel):
64106
64106
 
64107
64107
 
64108
64108
  class Filters(AbstractModel):
64109
- r"""过滤条件。同一 Name 下多个 Values 为或关系;不同 Name 之间为且关系
64109
+ r"""过滤条件。同一 Name 下多个 Values 为或关系;不同 Name 之间为且关系。支持的 Name:ResultStatus(通过状态)、AssetName(资产名称/ID模糊)、IP(IP地址模糊)、Tag(资产标签模糊)
64110
64110
 
64111
64111
  """
64112
64112
 
64113
64113
  def __init__(self):
64114
64114
  r"""
64115
- :param _Name: 过滤条件名称
64115
+ :param _Name: 过滤条件名称。取值:ResultStatus(通过状态,Values: PASS/NOT_PASS)、AssetName(资产名称/ID,模糊匹配)、IP(IP地址,模糊匹配)、Tag(资产标签,模糊匹配)
64116
64116
  :type Name: str
64117
64117
  :param _Values: 过滤条件值列表
64118
64118
  :type Values: list of str
@@ -64125,7 +64125,7 @@ class Filters(AbstractModel):
64125
64125
 
64126
64126
  @property
64127
64127
  def Name(self):
64128
- r"""过滤条件名称
64128
+ r"""过滤条件名称。取值:ResultStatus(通过状态,Values: PASS/NOT_PASS)、AssetName(资产名称/ID,模糊匹配)、IP(IP地址,模糊匹配)、Tag(资产标签,模糊匹配)
64129
64129
  :rtype: str
64130
64130
  """
64131
64131
  return self._Name
@@ -67611,6 +67611,12 @@ class Machine(AbstractModel):
67611
67611
  :type ContainerCount: int
67612
67612
  :param _CpuCoreCount: <p>核数</p>
67613
67613
  :type CpuCoreCount: int
67614
+ :param _MigrationRequired: <p>是否支持迁移</p>
67615
+ :type MigrationRequired: bool
67616
+ :param _IsSupportXSPM: <p>是否支持暴露面扫描</p>
67617
+ :type IsSupportXSPM: bool
67618
+ :param _CanUnbind: <p>是否能解绑</p>
67619
+ :type CanUnbind: bool
67614
67620
  """
67615
67621
  self._AgentStatus = None
67616
67622
  self._AgentVersion = None
@@ -67644,6 +67650,9 @@ class Machine(AbstractModel):
67644
67650
  self._ContainerDefendStatus = None
67645
67651
  self._ContainerCount = None
67646
67652
  self._CpuCoreCount = None
67653
+ self._MigrationRequired = None
67654
+ self._IsSupportXSPM = None
67655
+ self._CanUnbind = None
67647
67656
 
67648
67657
  @property
67649
67658
  def AgentStatus(self):
@@ -67997,6 +68006,39 @@ class Machine(AbstractModel):
67997
68006
  def CpuCoreCount(self, CpuCoreCount):
67998
68007
  self._CpuCoreCount = CpuCoreCount
67999
68008
 
68009
+ @property
68010
+ def MigrationRequired(self):
68011
+ r"""<p>是否支持迁移</p>
68012
+ :rtype: bool
68013
+ """
68014
+ return self._MigrationRequired
68015
+
68016
+ @MigrationRequired.setter
68017
+ def MigrationRequired(self, MigrationRequired):
68018
+ self._MigrationRequired = MigrationRequired
68019
+
68020
+ @property
68021
+ def IsSupportXSPM(self):
68022
+ r"""<p>是否支持暴露面扫描</p>
68023
+ :rtype: bool
68024
+ """
68025
+ return self._IsSupportXSPM
68026
+
68027
+ @IsSupportXSPM.setter
68028
+ def IsSupportXSPM(self, IsSupportXSPM):
68029
+ self._IsSupportXSPM = IsSupportXSPM
68030
+
68031
+ @property
68032
+ def CanUnbind(self):
68033
+ r"""<p>是否能解绑</p>
68034
+ :rtype: bool
68035
+ """
68036
+ return self._CanUnbind
68037
+
68038
+ @CanUnbind.setter
68039
+ def CanUnbind(self, CanUnbind):
68040
+ self._CanUnbind = CanUnbind
68041
+
68000
68042
 
68001
68043
  def _deserialize(self, params):
68002
68044
  self._AgentStatus = params.get("AgentStatus")
@@ -68045,6 +68087,9 @@ class Machine(AbstractModel):
68045
68087
  self._ContainerDefendStatus = params.get("ContainerDefendStatus")
68046
68088
  self._ContainerCount = params.get("ContainerCount")
68047
68089
  self._CpuCoreCount = params.get("CpuCoreCount")
68090
+ self._MigrationRequired = params.get("MigrationRequired")
68091
+ self._IsSupportXSPM = params.get("IsSupportXSPM")
68092
+ self._CanUnbind = params.get("CanUnbind")
68048
68093
  memeber_set = set(params.keys())
68049
68094
  for name, value in vars(self).items():
68050
68095
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.1.134
3
+ Version: 3.1.147
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.134
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.147
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.147
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.134