tencentcloud-sdk-python-apm 3.0.1377__tar.gz → 3.0.1379__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.1377 → tencentcloud-sdk-python-apm-3.0.1379}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud/apm/v20210622/models.py +34 -4
  5. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-apm-3.0.1379/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-apm-3.0.1377/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/README.rst +0 -0
  9. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud/apm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud/apm/v20210622/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-apm-3.0.1377 → tencentcloud-sdk-python-apm-3.0.1379}/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.1377
3
+ Version: 3.0.1379
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.1377"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1379"],
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.1377'
17
+ __version__ = '3.0.1379'
@@ -758,6 +758,10 @@ class ApmInstanceDetail(AbstractModel):
758
758
  :type IsRemoteCommandExecutionAnalysis: int
759
759
  :param _IsMemoryHijackingAnalysis: 是否开内存马执行检测(0=关, 1=开)
760
760
  :type IsMemoryHijackingAnalysis: int
761
+ :param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
762
+ :type LogIndexType: int
763
+ :param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
764
+ :type LogTraceIdKey: str
761
765
  """
762
766
  self._InstanceId = None
763
767
  self._Name = None
@@ -798,6 +802,8 @@ class ApmInstanceDetail(AbstractModel):
798
802
  self._StopReason = None
799
803
  self._IsRemoteCommandExecutionAnalysis = None
800
804
  self._IsMemoryHijackingAnalysis = None
805
+ self._LogIndexType = None
806
+ self._LogTraceIdKey = None
801
807
 
802
808
  @property
803
809
  def InstanceId(self):
@@ -1234,6 +1240,28 @@ class ApmInstanceDetail(AbstractModel):
1234
1240
  def IsMemoryHijackingAnalysis(self, IsMemoryHijackingAnalysis):
1235
1241
  self._IsMemoryHijackingAnalysis = IsMemoryHijackingAnalysis
1236
1242
 
1243
+ @property
1244
+ def LogIndexType(self):
1245
+ """CLS索引类型(0=全文索引,1=键值索引)
1246
+ :rtype: int
1247
+ """
1248
+ return self._LogIndexType
1249
+
1250
+ @LogIndexType.setter
1251
+ def LogIndexType(self, LogIndexType):
1252
+ self._LogIndexType = LogIndexType
1253
+
1254
+ @property
1255
+ def LogTraceIdKey(self):
1256
+ """traceId的索引key: 当CLS索引类型为键值索引时生效
1257
+ :rtype: str
1258
+ """
1259
+ return self._LogTraceIdKey
1260
+
1261
+ @LogTraceIdKey.setter
1262
+ def LogTraceIdKey(self, LogTraceIdKey):
1263
+ self._LogTraceIdKey = LogTraceIdKey
1264
+
1237
1265
 
1238
1266
  def _deserialize(self, params):
1239
1267
  self._InstanceId = params.get("InstanceId")
@@ -1280,6 +1308,8 @@ class ApmInstanceDetail(AbstractModel):
1280
1308
  self._StopReason = params.get("StopReason")
1281
1309
  self._IsRemoteCommandExecutionAnalysis = params.get("IsRemoteCommandExecutionAnalysis")
1282
1310
  self._IsMemoryHijackingAnalysis = params.get("IsMemoryHijackingAnalysis")
1311
+ self._LogIndexType = params.get("LogIndexType")
1312
+ self._LogTraceIdKey = params.get("LogTraceIdKey")
1283
1313
  memeber_set = set(params.keys())
1284
1314
  for name, value in vars(self).items():
1285
1315
  property_name = name[1:]
@@ -3731,9 +3761,9 @@ class ModifyApmInstanceRequest(AbstractModel):
3731
3761
  :type IsRemoteCommandExecutionAnalysis: int
3732
3762
  :param _IsMemoryHijackingAnalysis: 是否开启内存马检测
3733
3763
  :type IsMemoryHijackingAnalysis: int
3734
- :param _LogIndexType: 0=全文索引,1=键值索引
3764
+ :param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
3735
3765
  :type LogIndexType: int
3736
- :param _LogTraceIdKey: traceId的索引key
3766
+ :param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
3737
3767
  :type LogTraceIdKey: str
3738
3768
  """
3739
3769
  self._InstanceId = None
@@ -4053,7 +4083,7 @@ class ModifyApmInstanceRequest(AbstractModel):
4053
4083
 
4054
4084
  @property
4055
4085
  def LogIndexType(self):
4056
- """0=全文索引,1=键值索引
4086
+ """CLS索引类型(0=全文索引,1=键值索引)
4057
4087
  :rtype: int
4058
4088
  """
4059
4089
  return self._LogIndexType
@@ -4064,7 +4094,7 @@ class ModifyApmInstanceRequest(AbstractModel):
4064
4094
 
4065
4095
  @property
4066
4096
  def LogTraceIdKey(self):
4067
- """traceId的索引key
4097
+ """traceId的索引key: 当CLS索引类型为键值索引时生效
4068
4098
  :rtype: str
4069
4099
  """
4070
4100
  return self._LogTraceIdKey
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1377
3
+ Version: 3.0.1379
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.1379
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1377