tencentcloud-sdk-python-apm 3.0.1394__tar.gz → 3.0.1408__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.1394 → tencentcloud-sdk-python-apm-3.0.1408}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/setup.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud/apm/v20210622/models.py +32 -2
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-apm-3.0.1408/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-apm-3.0.1394/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/README.rst +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/setup.cfg +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1394 → tencentcloud-sdk-python-apm-3.0.1408}/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.1408"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Apm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -762,6 +762,8 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
762
762
|
:type LogIndexType: int
|
|
763
763
|
:param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
764
764
|
:type LogTraceIdKey: str
|
|
765
|
+
:param _Token: 业务系统鉴权 token
|
|
766
|
+
:type Token: str
|
|
765
767
|
"""
|
|
766
768
|
self._InstanceId = None
|
|
767
769
|
self._Name = None
|
|
@@ -804,6 +806,7 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
804
806
|
self._IsMemoryHijackingAnalysis = None
|
|
805
807
|
self._LogIndexType = None
|
|
806
808
|
self._LogTraceIdKey = None
|
|
809
|
+
self._Token = None
|
|
807
810
|
|
|
808
811
|
@property
|
|
809
812
|
def InstanceId(self):
|
|
@@ -1262,6 +1265,17 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1262
1265
|
def LogTraceIdKey(self, LogTraceIdKey):
|
|
1263
1266
|
self._LogTraceIdKey = LogTraceIdKey
|
|
1264
1267
|
|
|
1268
|
+
@property
|
|
1269
|
+
def Token(self):
|
|
1270
|
+
"""业务系统鉴权 token
|
|
1271
|
+
:rtype: str
|
|
1272
|
+
"""
|
|
1273
|
+
return self._Token
|
|
1274
|
+
|
|
1275
|
+
@Token.setter
|
|
1276
|
+
def Token(self, Token):
|
|
1277
|
+
self._Token = Token
|
|
1278
|
+
|
|
1265
1279
|
|
|
1266
1280
|
def _deserialize(self, params):
|
|
1267
1281
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1310,6 +1324,7 @@ class ApmInstanceDetail(AbstractModel):
|
|
|
1310
1324
|
self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
|
|
1311
1325
|
self._LogIndexType = params.get("LogIndexType")
|
|
1312
1326
|
self._LogTraceIdKey = params.get("LogTraceIdKey")
|
|
1327
|
+
self._Token = params.get("Token")
|
|
1313
1328
|
memeber_set = set(params.keys())
|
|
1314
1329
|
for name, value in vars(self).items():
|
|
1315
1330
|
property_name = name[1:]
|
|
@@ -1756,8 +1771,10 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1756
1771
|
r"""
|
|
1757
1772
|
:param _Tags: Tag 列表
|
|
1758
1773
|
:type Tags: list of ApmTag
|
|
1759
|
-
:param _InstanceName:
|
|
1774
|
+
:param _InstanceName: 按业务系统名过滤,支持模糊检索
|
|
1760
1775
|
:type InstanceName: str
|
|
1776
|
+
:param _InstanceId: 按业务系统 ID 过滤,支持模糊检索
|
|
1777
|
+
:type InstanceId: str
|
|
1761
1778
|
:param _InstanceIds: 按业务系统 ID 过滤
|
|
1762
1779
|
:type InstanceIds: list of str
|
|
1763
1780
|
:param _DemoInstanceFlag: 是否查询官方 Demo 业务系统(0=非 Demo 业务系统,1=Demo 业务系统,默认为0)
|
|
@@ -1767,6 +1784,7 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1767
1784
|
"""
|
|
1768
1785
|
self._Tags = None
|
|
1769
1786
|
self._InstanceName = None
|
|
1787
|
+
self._InstanceId = None
|
|
1770
1788
|
self._InstanceIds = None
|
|
1771
1789
|
self._DemoInstanceFlag = None
|
|
1772
1790
|
self._AllRegionsFlag = None
|
|
@@ -1784,7 +1802,7 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1784
1802
|
|
|
1785
1803
|
@property
|
|
1786
1804
|
def InstanceName(self):
|
|
1787
|
-
"""
|
|
1805
|
+
"""按业务系统名过滤,支持模糊检索
|
|
1788
1806
|
:rtype: str
|
|
1789
1807
|
"""
|
|
1790
1808
|
return self._InstanceName
|
|
@@ -1793,6 +1811,17 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1793
1811
|
def InstanceName(self, InstanceName):
|
|
1794
1812
|
self._InstanceName = InstanceName
|
|
1795
1813
|
|
|
1814
|
+
@property
|
|
1815
|
+
def InstanceId(self):
|
|
1816
|
+
"""按业务系统 ID 过滤,支持模糊检索
|
|
1817
|
+
:rtype: str
|
|
1818
|
+
"""
|
|
1819
|
+
return self._InstanceId
|
|
1820
|
+
|
|
1821
|
+
@InstanceId.setter
|
|
1822
|
+
def InstanceId(self, InstanceId):
|
|
1823
|
+
self._InstanceId = InstanceId
|
|
1824
|
+
|
|
1796
1825
|
@property
|
|
1797
1826
|
def InstanceIds(self):
|
|
1798
1827
|
"""按业务系统 ID 过滤
|
|
@@ -1835,6 +1864,7 @@ class DescribeApmInstancesRequest(AbstractModel):
|
|
|
1835
1864
|
obj._deserialize(item)
|
|
1836
1865
|
self._Tags.append(obj)
|
|
1837
1866
|
self._InstanceName = params.get("InstanceName")
|
|
1867
|
+
self._InstanceId = params.get("InstanceId")
|
|
1838
1868
|
self._InstanceIds = params.get("InstanceIds")
|
|
1839
1869
|
self._DemoInstanceFlag = params.get("DemoInstanceFlag")
|
|
1840
1870
|
self._AllRegionsFlag = params.get("AllRegionsFlag")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1408
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1394
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|