tencentcloud-sdk-python-cwp 3.1.28__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.28 → tencentcloud_sdk_python_cwp-3.1.29}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/models.py +30 -0
  5. {tencentcloud_sdk_python_cwp-3.1.28 → 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.28/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
  13. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/cwp_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cwp-3.1.28 → tencentcloud_sdk_python_cwp-3.1.29}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cwp-3.1.28 → 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.28 → 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.28
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.28
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.28,<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.28'
17
+ __version__ = '3.1.29'
@@ -87626,6 +87626,8 @@ class PrivilegeEscalationProcess(AbstractModel):
87626
87626
  :type MachineExtraInfo: :class:`tencentcloud.cwp.v20180228.models.MachineExtraInfo`
87627
87627
  :param _Pid: 进程id
87628
87628
  :type Pid: int
87629
+ :param _Count: 告警数量
87630
+ :type Count: int
87629
87631
  """
87630
87632
  self._Id = None
87631
87633
  self._Uuid = None
@@ -87647,6 +87649,7 @@ class PrivilegeEscalationProcess(AbstractModel):
87647
87649
  self._MachineName = None
87648
87650
  self._MachineExtraInfo = None
87649
87651
  self._Pid = None
87652
+ self._Count = None
87650
87653
 
87651
87654
  @property
87652
87655
  def Id(self):
@@ -87868,6 +87871,17 @@ class PrivilegeEscalationProcess(AbstractModel):
87868
87871
  def Pid(self, Pid):
87869
87872
  self._Pid = Pid
87870
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
+
87871
87885
 
87872
87886
  def _deserialize(self, params):
87873
87887
  self._Id = params.get("Id")
@@ -87892,6 +87906,7 @@ class PrivilegeEscalationProcess(AbstractModel):
87892
87906
  self._MachineExtraInfo = MachineExtraInfo()
87893
87907
  self._MachineExtraInfo._deserialize(params.get("MachineExtraInfo"))
87894
87908
  self._Pid = params.get("Pid")
87909
+ self._Count = params.get("Count")
87895
87910
  memeber_set = set(params.keys())
87896
87911
  for name, value in vars(self).items():
87897
87912
  property_name = name[1:]
@@ -87961,6 +87976,8 @@ class PrivilegeEventInfo(AbstractModel):
87961
87976
  :type MachineStatus: str
87962
87977
  :param _ModifyTime: 处理时间
87963
87978
  :type ModifyTime: str
87979
+ :param _Count: 告警数量
87980
+ :type Count: int
87964
87981
  """
87965
87982
  self._Id = None
87966
87983
  self._Uuid = None
@@ -87988,6 +88005,7 @@ class PrivilegeEventInfo(AbstractModel):
87988
88005
  self._NewCaps = None
87989
88006
  self._MachineStatus = None
87990
88007
  self._ModifyTime = None
88008
+ self._Count = None
87991
88009
 
87992
88010
  @property
87993
88011
  def Id(self):
@@ -88275,6 +88293,17 @@ class PrivilegeEventInfo(AbstractModel):
88275
88293
  def ModifyTime(self, ModifyTime):
88276
88294
  self._ModifyTime = ModifyTime
88277
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
+
88278
88307
 
88279
88308
  def _deserialize(self, params):
88280
88309
  self._Id = params.get("Id")
@@ -88303,6 +88332,7 @@ class PrivilegeEventInfo(AbstractModel):
88303
88332
  self._NewCaps = params.get("NewCaps")
88304
88333
  self._MachineStatus = params.get("MachineStatus")
88305
88334
  self._ModifyTime = params.get("ModifyTime")
88335
+ self._Count = params.get("Count")
88306
88336
  memeber_set = set(params.keys())
88307
88337
  for name, value in vars(self).items():
88308
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.28
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.28
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.28