tencentcloud-sdk-python-apm 3.0.1393__tar.gz → 3.0.1396__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-apm might be problematic. Click here for more details.
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/setup.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud/apm/v20210622/models.py +17 -2
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-apm-3.0.1396/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-apm-3.0.1393/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/README.rst +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/setup.cfg +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1393 → tencentcloud-sdk-python-apm-3.0.1396}/tencentcloud_sdk_python_apm.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-apm',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1396"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Apm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1756,8 +1756,10 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1756
1756
|
r"""
|
|
1757
1757
|
:param _Tags: Tag 列表
|
|
1758
1758
|
:type Tags: list of ApmTag
|
|
1759
|
-
:param _InstanceName:
|
|
1759
|
+
:param _InstanceName: 按业务系统名过滤,支持模糊检索
|
|
1760
1760
|
:type InstanceName: str
|
|
1761
|
+
:param _InstanceId: 按业务系统 ID 过滤,支持模糊检索
|
|
1762
|
+
:type InstanceId: str
|
|
1761
1763
|
:param _InstanceIds: 按业务系统 ID 过滤
|
|
1762
1764
|
:type InstanceIds: list of str
|
|
1763
1765
|
:param _DemoInstanceFlag: 是否查询官方 Demo 业务系统(0=非 Demo 业务系统,1=Demo 业务系统,默认为0)
|
|
@@ -1767,6 +1769,7 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1767
1769
|
"""
|
|
1768
1770
|
self._Tags = None
|
|
1769
1771
|
self._InstanceName = None
|
|
1772
|
+
self._InstanceId = None
|
|
1770
1773
|
self._InstanceIds = None
|
|
1771
1774
|
self._DemoInstanceFlag = None
|
|
1772
1775
|
self._AllRegionsFlag = None
|
|
@@ -1784,7 +1787,7 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1784
1787
|
|
|
1785
1788
|
@property
|
|
1786
1789
|
def InstanceName(self):
|
|
1787
|
-
"""
|
|
1790
|
+
"""按业务系统名过滤,支持模糊检索
|
|
1788
1791
|
:rtype: str
|
|
1789
1792
|
"""
|
|
1790
1793
|
return self._InstanceName
|
|
@@ -1793,6 +1796,17 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1793
1796
|
def InstanceName(self, InstanceName):
|
|
1794
1797
|
self._InstanceName = InstanceName
|
|
1795
1798
|
|
|
1799
|
+
@property
|
|
1800
|
+
def InstanceId(self):
|
|
1801
|
+
"""按业务系统 ID 过滤,支持模糊检索
|
|
1802
|
+
:rtype: str
|
|
1803
|
+
"""
|
|
1804
|
+
return self._InstanceId
|
|
1805
|
+
|
|
1806
|
+
@InstanceId.setter
|
|
1807
|
+
def InstanceId(self, InstanceId):
|
|
1808
|
+
self._InstanceId = InstanceId
|
|
1809
|
+
|
|
1796
1810
|
@property
|
|
1797
1811
|
def InstanceIds(self):
|
|
1798
1812
|
"""按业务系统 ID 过滤
|
|
@@ -1835,6 +1849,7 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1835
1849
|
obj._deserialize(item)
|
|
1836
1850
|
self._Tags.append(obj)
|
|
1837
1851
|
self._InstanceName = params.get("InstanceName")
|
|
1852
|
+
self._InstanceId = params.get("InstanceId")
|
|
1838
1853
|
self._InstanceIds = params.get("InstanceIds")
|
|
1839
1854
|
self._DemoInstanceFlag = params.get("DemoInstanceFlag")
|
|
1840
1855
|
self._AllRegionsFlag = params.get("AllRegionsFlag")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1396
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1393
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|