tencentcloud-sdk-python-cwp 3.0.1199__tar.gz → 3.0.1202__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-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/setup.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud/cwp/v20180228/models.py +26 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cwp-3.0.1202/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cwp-3.0.1199/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/README.rst +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud/cwp/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud/cwp/v20180228/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1199 → tencentcloud-sdk-python-cwp-3.0.1202}/tencentcloud_sdk_python_cwp.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-cwp',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1202"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cwp SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -10592,6 +10592,9 @@ class BashEvent(AbstractModel):
|
|
|
10592
10592
|
:param _RegexBashCmd: 自动生成的正则表达式
|
|
10593
10593
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10594
10594
|
:type RegexBashCmd: str
|
|
10595
|
+
:param _HostName: 主机HostName
|
|
10596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10597
|
+
:type HostName: str
|
|
10595
10598
|
"""
|
|
10596
10599
|
self._Id = None
|
|
10597
10600
|
self._Uuid = None
|
|
@@ -10612,6 +10615,7 @@ class BashEvent(AbstractModel):
|
|
|
10612
10615
|
self._ModifyTime = None
|
|
10613
10616
|
self._RuleCategory = None
|
|
10614
10617
|
self._RegexBashCmd = None
|
|
10618
|
+
self._HostName = None
|
|
10615
10619
|
|
|
10616
10620
|
@property
|
|
10617
10621
|
def Id(self):
|
|
@@ -10765,6 +10769,14 @@ class BashEvent(AbstractModel):
|
|
|
10765
10769
|
def RegexBashCmd(self, RegexBashCmd):
|
|
10766
10770
|
self._RegexBashCmd = RegexBashCmd
|
|
10767
10771
|
|
|
10772
|
+
@property
|
|
10773
|
+
def HostName(self):
|
|
10774
|
+
return self._HostName
|
|
10775
|
+
|
|
10776
|
+
@HostName.setter
|
|
10777
|
+
def HostName(self, HostName):
|
|
10778
|
+
self._HostName = HostName
|
|
10779
|
+
|
|
10768
10780
|
|
|
10769
10781
|
def _deserialize(self, params):
|
|
10770
10782
|
self._Id = params.get("Id")
|
|
@@ -10786,6 +10798,7 @@ class BashEvent(AbstractModel):
|
|
|
10786
10798
|
self._ModifyTime = params.get("ModifyTime")
|
|
10787
10799
|
self._RuleCategory = params.get("RuleCategory")
|
|
10788
10800
|
self._RegexBashCmd = params.get("RegexBashCmd")
|
|
10801
|
+
self._HostName = params.get("HostName")
|
|
10789
10802
|
memeber_set = set(params.keys())
|
|
10790
10803
|
for name, value in vars(self).items():
|
|
10791
10804
|
property_name = name[1:]
|
|
@@ -11149,6 +11162,9 @@ class BashEventsInfo(AbstractModel):
|
|
|
11149
11162
|
:param _Pid: 进程号
|
|
11150
11163
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11151
11164
|
:type Pid: str
|
|
11165
|
+
:param _DetectBy: 数据来源
|
|
11166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11167
|
+
:type DetectBy: str
|
|
11152
11168
|
"""
|
|
11153
11169
|
self._Id = None
|
|
11154
11170
|
self._Uuid = None
|
|
@@ -11175,6 +11191,7 @@ class BashEventsInfo(AbstractModel):
|
|
|
11175
11191
|
self._MachineStatus = None
|
|
11176
11192
|
self._User = None
|
|
11177
11193
|
self._Pid = None
|
|
11194
|
+
self._DetectBy = None
|
|
11178
11195
|
|
|
11179
11196
|
@property
|
|
11180
11197
|
def Id(self):
|
|
@@ -11376,6 +11393,14 @@ class BashEventsInfo(AbstractModel):
|
|
|
11376
11393
|
def Pid(self, Pid):
|
|
11377
11394
|
self._Pid = Pid
|
|
11378
11395
|
|
|
11396
|
+
@property
|
|
11397
|
+
def DetectBy(self):
|
|
11398
|
+
return self._DetectBy
|
|
11399
|
+
|
|
11400
|
+
@DetectBy.setter
|
|
11401
|
+
def DetectBy(self, DetectBy):
|
|
11402
|
+
self._DetectBy = DetectBy
|
|
11403
|
+
|
|
11379
11404
|
|
|
11380
11405
|
def _deserialize(self, params):
|
|
11381
11406
|
self._Id = params.get("Id")
|
|
@@ -11403,6 +11428,7 @@ class BashEventsInfo(AbstractModel):
|
|
|
11403
11428
|
self._MachineStatus = params.get("MachineStatus")
|
|
11404
11429
|
self._User = params.get("User")
|
|
11405
11430
|
self._Pid = params.get("Pid")
|
|
11431
|
+
self._DetectBy = params.get("DetectBy")
|
|
11406
11432
|
memeber_set = set(params.keys())
|
|
11407
11433
|
for name, value in vars(self).items():
|
|
11408
11434
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1202
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1199
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|