tencentcloud-sdk-python-apm 3.0.1376__tar.gz → 3.0.1377__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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud/apm/v20210622/models.py +30 -0
  5. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-apm-3.0.1377/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-apm-3.0.1376/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/README.rst +0 -0
  9. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud/apm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud/apm/v20210622/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-apm-3.0.1376 → tencentcloud-sdk-python-apm-3.0.1377}/tencentcloud_sdk_python_apm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1376
3
+ Version: 3.0.1377
4
4
  Summary: Tencent Cloud Apm SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1376"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1377"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Apm SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1376'
17
+ __version__ = '3.0.1377'
@@ -3731,6 +3731,10 @@ class ModifyApmInstanceRequest(AbstractModel):
3731
3731
  :type IsRemoteCommandExecutionAnalysis: int
3732
3732
  :param _IsMemoryHijackingAnalysis: 是否开启内存马检测
3733
3733
  :type IsMemoryHijackingAnalysis: int
3734
+ :param _LogIndexType: 0=全文索引,1=键值索引
3735
+ :type LogIndexType: int
3736
+ :param _LogTraceIdKey: traceId的索引key
3737
+ :type LogTraceIdKey: str
3734
3738
  """
3735
3739
  self._InstanceId = None
3736
3740
  self._Name = None
@@ -3758,6 +3762,8 @@ class ModifyApmInstanceRequest(AbstractModel):
3758
3762
  self._IsInstrumentationVulnerabilityScan = None
3759
3763
  self._IsRemoteCommandExecutionAnalysis = None
3760
3764
  self._IsMemoryHijackingAnalysis = None
3765
+ self._LogIndexType = None
3766
+ self._LogTraceIdKey = None
3761
3767
 
3762
3768
  @property
3763
3769
  def InstanceId(self):
@@ -4045,6 +4051,28 @@ class ModifyApmInstanceRequest(AbstractModel):
4045
4051
  def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
4046
4052
  self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
4047
4053
 
4054
+ @property
4055
+ def LogIndexType(self):
4056
+ """0=全文索引,1=键值索引
4057
+ :rtype: int
4058
+ """
4059
+ return self._LogIndexType
4060
+
4061
+ @LogIndexType.setter
4062
+ def LogIndexType(self, LogIndexType):
4063
+ self._LogIndexType = LogIndexType
4064
+
4065
+ @property
4066
+ def LogTraceIdKey(self):
4067
+ """traceId的索引key
4068
+ :rtype: str
4069
+ """
4070
+ return self._LogTraceIdKey
4071
+
4072
+ @LogTraceIdKey.setter
4073
+ def LogTraceIdKey(self, LogTraceIdKey):
4074
+ self._LogTraceIdKey = LogTraceIdKey
4075
+
4048
4076
 
4049
4077
  def _deserialize(self, params):
4050
4078
  self._InstanceId = params.get("InstanceId")
@@ -4078,6 +4106,8 @@ class ModifyApmInstanceRequest(AbstractModel):
4078
4106
  self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
4079
4107
  self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
4080
4108
  self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
4109
+ self._LogIndexType = params.get("LogIndexType")
4110
+ self._LogTraceIdKey = params.get("LogTraceIdKey")
4081
4111
  memeber_set = set(params.keys())
4082
4112
  for name, value in vars(self).items():
4083
4113
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1376
3
+ Version: 3.0.1377
4
4
  Summary: Tencent Cloud Apm SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1377
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1376