tencentcloud-sdk-python-apm 3.0.1200__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-apm might be problematic. Click here for more details.
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/setup.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud/apm/v20210622/models.py +12 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-apm-3.0.1202/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-apm-3.0.1200/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/README.rst +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/setup.cfg +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-apm-3.0.1200 → tencentcloud-sdk-python-apm-3.0.1202}/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.1202"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Apm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1969,6 +1969,8 @@ class DescribeMetricRecordsRequest(AbstractModel):
|
|
|
1969
1969
|
:type PageSize: int
|
|
1970
1970
|
:param _OrFilters: Or过滤条件
|
|
1971
1971
|
:type OrFilters: list of Filter
|
|
1972
|
+
:param _Type: 数据来源
|
|
1973
|
+
:type Type: str
|
|
1972
1974
|
"""
|
|
1973
1975
|
self._Filters = None
|
|
1974
1976
|
self._Metrics = None
|
|
@@ -1983,6 +1985,7 @@ class DescribeMetricRecordsRequest(AbstractModel):
|
|
|
1983
1985
|
self._PageIndex = None
|
|
1984
1986
|
self._PageSize = None
|
|
1985
1987
|
self._OrFilters = None
|
|
1988
|
+
self._Type = None
|
|
1986
1989
|
|
|
1987
1990
|
@property
|
|
1988
1991
|
def Filters(self):
|
|
@@ -2088,6 +2091,14 @@ class DescribeMetricRecordsRequest(AbstractModel):
|
|
|
2088
2091
|
def OrFilters(self, OrFilters):
|
|
2089
2092
|
self._OrFilters = OrFilters
|
|
2090
2093
|
|
|
2094
|
+
@property
|
|
2095
|
+
def Type(self):
|
|
2096
|
+
return self._Type
|
|
2097
|
+
|
|
2098
|
+
@Type.setter
|
|
2099
|
+
def Type(self, Type):
|
|
2100
|
+
self._Type = Type
|
|
2101
|
+
|
|
2091
2102
|
|
|
2092
2103
|
def _deserialize(self, params):
|
|
2093
2104
|
if params.get("Filters") is not None:
|
|
@@ -2120,6 +2131,7 @@ class DescribeMetricRecordsRequest(AbstractModel):
|
|
|
2120
2131
|
obj = Filter()
|
|
2121
2132
|
obj._deserialize(item)
|
|
2122
2133
|
self._OrFilters.append(obj)
|
|
2134
|
+
self._Type = params.get("Type")
|
|
2123
2135
|
memeber_set = set(params.keys())
|
|
2124
2136
|
for name, value in vars(self).items():
|
|
2125
2137
|
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.1200
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|