tencentcloud-sdk-python-cwp 3.1.26__tar.gz → 3.1.29__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_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/models.py +45 -0
  5. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_cwp-3.1.29/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_cwp-3.1.26/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
  13. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/cwp_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_cwp-3.1.26 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cwp
3
- Version: 3.1.26
3
+ Version: 3.1.29
4
4
  Summary: Tencent Cloud Cwp 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.26
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.29
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-cwp',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.26,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.29,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Cwp SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.26'
17
+ __version__ = '3.1.29'
@@ -86383,6 +86383,8 @@ class NetAttackEventInfo(AbstractModel):
86383
86383
  :type HostOpProcessTree: str
86384
86384
  :param _IPAnalyse: IP分析
86385
86385
  :type IPAnalyse: :class:`tencentcloud.cwp.v20180228.models.IPAnalyse`
86386
+ :param _NetResponsePayload: 响应数据包 base64编码
86387
+ :type NetResponsePayload: str
86386
86388
  """
86387
86389
  self._Status = None
86388
86390
  self._SrcIP = None
@@ -86408,6 +86410,7 @@ class NetAttackEventInfo(AbstractModel):
86408
86410
  self._HostOpType = None
86409
86411
  self._HostOpProcessTree = None
86410
86412
  self._IPAnalyse = None
86413
+ self._NetResponsePayload = None
86411
86414
 
86412
86415
  @property
86413
86416
  def Status(self):
@@ -86673,6 +86676,17 @@ class NetAttackEventInfo(AbstractModel):
86673
86676
  def IPAnalyse(self, IPAnalyse):
86674
86677
  self._IPAnalyse = IPAnalyse
86675
86678
 
86679
+ @property
86680
+ def NetResponsePayload(self):
86681
+ r"""响应数据包 base64编码
86682
+ :rtype: str
86683
+ """
86684
+ return self._NetResponsePayload
86685
+
86686
+ @NetResponsePayload.setter
86687
+ def NetResponsePayload(self, NetResponsePayload):
86688
+ self._NetResponsePayload = NetResponsePayload
86689
+
86676
86690
 
86677
86691
  def _deserialize(self, params):
86678
86692
  self._Status = params.get("Status")
@@ -86703,6 +86717,7 @@ class NetAttackEventInfo(AbstractModel):
86703
86717
  if params.get("IPAnalyse") is not None:
86704
86718
  self._IPAnalyse = IPAnalyse()
86705
86719
  self._IPAnalyse._deserialize(params.get("IPAnalyse"))
86720
+ self._NetResponsePayload = params.get("NetResponsePayload")
86706
86721
  memeber_set = set(params.keys())
86707
86722
  for name, value in vars(self).items():
86708
86723
  property_name = name[1:]
@@ -87611,6 +87626,8 @@ class PrivilegeEscalationProcess(AbstractModel):
87611
87626
  :type MachineExtraInfo: :class:`tencentcloud.cwp.v20180228.models.MachineExtraInfo`
87612
87627
  :param _Pid: 进程id
87613
87628
  :type Pid: int
87629
+ :param _Count: 告警数量
87630
+ :type Count: int
87614
87631
  """
87615
87632
  self._Id = None
87616
87633
  self._Uuid = None
@@ -87632,6 +87649,7 @@ class PrivilegeEscalationProcess(AbstractModel):
87632
87649
  self._MachineName = None
87633
87650
  self._MachineExtraInfo = None
87634
87651
  self._Pid = None
87652
+ self._Count = None
87635
87653
 
87636
87654
  @property
87637
87655
  def Id(self):
@@ -87853,6 +87871,17 @@ class PrivilegeEscalationProcess(AbstractModel):
87853
87871
  def Pid(self, Pid):
87854
87872
  self._Pid = Pid
87855
87873
 
87874
+ @property
87875
+ def Count(self):
87876
+ r"""告警数量
87877
+ :rtype: int
87878
+ """
87879
+ return self._Count
87880
+
87881
+ @Count.setter
87882
+ def Count(self, Count):
87883
+ self._Count = Count
87884
+
87856
87885
 
87857
87886
  def _deserialize(self, params):
87858
87887
  self._Id = params.get("Id")
@@ -87877,6 +87906,7 @@ class PrivilegeEscalationProcess(AbstractModel):
87877
87906
  self._MachineExtraInfo = MachineExtraInfo()
87878
87907
  self._MachineExtraInfo._deserialize(params.get("MachineExtraInfo"))
87879
87908
  self._Pid = params.get("Pid")
87909
+ self._Count = params.get("Count")
87880
87910
  memeber_set = set(params.keys())
87881
87911
  for name, value in vars(self).items():
87882
87912
  property_name = name[1:]
@@ -87946,6 +87976,8 @@ class PrivilegeEventInfo(AbstractModel):
87946
87976
  :type MachineStatus: str
87947
87977
  :param _ModifyTime: 处理时间
87948
87978
  :type ModifyTime: str
87979
+ :param _Count: 告警数量
87980
+ :type Count: int
87949
87981
  """
87950
87982
  self._Id = None
87951
87983
  self._Uuid = None
@@ -87973,6 +88005,7 @@ class PrivilegeEventInfo(AbstractModel):
87973
88005
  self._NewCaps = None
87974
88006
  self._MachineStatus = None
87975
88007
  self._ModifyTime = None
88008
+ self._Count = None
87976
88009
 
87977
88010
  @property
87978
88011
  def Id(self):
@@ -88260,6 +88293,17 @@ class PrivilegeEventInfo(AbstractModel):
88260
88293
  def ModifyTime(self, ModifyTime):
88261
88294
  self._ModifyTime = ModifyTime
88262
88295
 
88296
+ @property
88297
+ def Count(self):
88298
+ r"""告警数量
88299
+ :rtype: int
88300
+ """
88301
+ return self._Count
88302
+
88303
+ @Count.setter
88304
+ def Count(self, Count):
88305
+ self._Count = Count
88306
+
88263
88307
 
88264
88308
  def _deserialize(self, params):
88265
88309
  self._Id = params.get("Id")
@@ -88288,6 +88332,7 @@ class PrivilegeEventInfo(AbstractModel):
88288
88332
  self._NewCaps = params.get("NewCaps")
88289
88333
  self._MachineStatus = params.get("MachineStatus")
88290
88334
  self._ModifyTime = params.get("ModifyTime")
88335
+ self._Count = params.get("Count")
88291
88336
  memeber_set = set(params.keys())
88292
88337
  for name, value in vars(self).items():
88293
88338
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cwp
3
- Version: 3.1.26
3
+ Version: 3.1.29
4
4
  Summary: Tencent Cloud Cwp 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.26
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.29
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.29
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.26