tencentcloud-sdk-python-cwp 3.0.902__tar.gz → 3.0.904__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.902 → tencentcloud-sdk-python-cwp-3.0.904}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud/cwp/v20180228/cwp_client.py +3 -1
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud/cwp/v20180228/models.py +14 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/README.rst +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/setup.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud/cwp/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud/cwp/v20180228/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.902 → tencentcloud-sdk-python-cwp-3.0.904}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
|
@@ -3894,7 +3894,9 @@ class CwpClient(AbstractClient):
|
|
|
3894
3894
|
|
|
3895
3895
|
|
|
3896
3896
|
def DescribeSaveOrUpdateWarnings(self, request):
|
|
3897
|
-
"""
|
|
3897
|
+
"""下线
|
|
3898
|
+
|
|
3899
|
+
更新或者插入用户告警设置(该接口废弃,请调用 ModifyWarningSetting )
|
|
3898
3900
|
|
|
3899
3901
|
:param request: Request instance for DescribeSaveOrUpdateWarnings.
|
|
3900
3902
|
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeSaveOrUpdateWarningsRequest`
|
|
@@ -1856,6 +1856,12 @@ class AssetSystemPackageInfo(AbstractModel):
|
|
|
1856
1856
|
:type FirstTime: str
|
|
1857
1857
|
:param IsNew: 是否新增[0:否|1:是]
|
|
1858
1858
|
:type IsNew: int
|
|
1859
|
+
:param MachineExtraInfo: 附加信息
|
|
1860
|
+
:type MachineExtraInfo: :class:`tencentcloud.cwp.v20180228.models.MachineExtraInfo`
|
|
1861
|
+
:param Quuid: 主机Id
|
|
1862
|
+
:type Quuid: str
|
|
1863
|
+
:param Uuid: Agent Id
|
|
1864
|
+
:type Uuid: str
|
|
1859
1865
|
"""
|
|
1860
1866
|
self.Name = None
|
|
1861
1867
|
self.Desc = None
|
|
@@ -1868,6 +1874,9 @@ class AssetSystemPackageInfo(AbstractModel):
|
|
|
1868
1874
|
self.UpdateTime = None
|
|
1869
1875
|
self.FirstTime = None
|
|
1870
1876
|
self.IsNew = None
|
|
1877
|
+
self.MachineExtraInfo = None
|
|
1878
|
+
self.Quuid = None
|
|
1879
|
+
self.Uuid = None
|
|
1871
1880
|
|
|
1872
1881
|
|
|
1873
1882
|
def _deserialize(self, params):
|
|
@@ -1882,6 +1891,11 @@ class AssetSystemPackageInfo(AbstractModel):
|
|
|
1882
1891
|
self.UpdateTime = params.get("UpdateTime")
|
|
1883
1892
|
self.FirstTime = params.get("FirstTime")
|
|
1884
1893
|
self.IsNew = params.get("IsNew")
|
|
1894
|
+
if params.get("MachineExtraInfo") is not None:
|
|
1895
|
+
self.MachineExtraInfo = MachineExtraInfo()
|
|
1896
|
+
self.MachineExtraInfo._deserialize(params.get("MachineExtraInfo"))
|
|
1897
|
+
self.Quuid = params.get("Quuid")
|
|
1898
|
+
self.Uuid = params.get("Uuid")
|
|
1885
1899
|
memeber_set = set(params.keys())
|
|
1886
1900
|
for name, value in vars(self).items():
|
|
1887
1901
|
if name in memeber_set:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|