tencentcloud-sdk-python-apm 3.1.19__tar.gz → 3.1.21__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.
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/setup.py +1 -1
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/apm/v20210622/models.py +90 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_apm-3.1.21/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_apm-3.1.19/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/README.rst +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/setup.cfg +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/apm/__init__.py +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/apm/v20210622/__init__.py +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/apm/v20210622/apm_client.py +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/apm/v20210622/apm_client_async.py +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_apm-3.1.19 → tencentcloud_sdk_python_apm-3.1.21}/tencentcloud_sdk_python_apm.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-apm
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.21
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.21
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.21,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Apm SDK for Python',
|
|
@@ -441,6 +441,10 @@ class ApmAppConfig(AbstractModel):
|
|
|
441
441
|
:type DbStatementParametersEnabled: bool
|
|
442
442
|
:param _SlowSQLThresholds: 慢SQL阈值
|
|
443
443
|
:type SlowSQLThresholds: list of ApmTag
|
|
444
|
+
:param _EnableDesensitizationRule: 是否开启脱敏规则
|
|
445
|
+
:type EnableDesensitizationRule: int
|
|
446
|
+
:param _DesensitizationRule: 脱敏规则
|
|
447
|
+
:type DesensitizationRule: str
|
|
444
448
|
"""
|
|
445
449
|
self._InstanceKey = None
|
|
446
450
|
self._ServiceName = None
|
|
@@ -496,6 +500,8 @@ class ApmAppConfig(AbstractModel):
|
|
|
496
500
|
self._DisableCpuUsed = None
|
|
497
501
|
self._DbStatementParametersEnabled = None
|
|
498
502
|
self._SlowSQLThresholds = None
|
|
503
|
+
self._EnableDesensitizationRule = None
|
|
504
|
+
self._DesensitizationRule = None
|
|
499
505
|
|
|
500
506
|
@property
|
|
501
507
|
def InstanceKey(self):
|
|
@@ -1114,6 +1120,28 @@ class ApmAppConfig(AbstractModel):
|
|
|
1114
1120
|
def SlowSQLThresholds(self, SlowSQLThresholds):
|
|
1115
1121
|
self._SlowSQLThresholds = SlowSQLThresholds
|
|
1116
1122
|
|
|
1123
|
+
@property
|
|
1124
|
+
def EnableDesensitizationRule(self):
|
|
1125
|
+
r"""是否开启脱敏规则
|
|
1126
|
+
:rtype: int
|
|
1127
|
+
"""
|
|
1128
|
+
return self._EnableDesensitizationRule
|
|
1129
|
+
|
|
1130
|
+
@EnableDesensitizationRule.setter
|
|
1131
|
+
def EnableDesensitizationRule(self, EnableDesensitizationRule):
|
|
1132
|
+
self._EnableDesensitizationRule = EnableDesensitizationRule
|
|
1133
|
+
|
|
1134
|
+
@property
|
|
1135
|
+
def DesensitizationRule(self):
|
|
1136
|
+
r"""脱敏规则
|
|
1137
|
+
:rtype: str
|
|
1138
|
+
"""
|
|
1139
|
+
return self._DesensitizationRule
|
|
1140
|
+
|
|
1141
|
+
@DesensitizationRule.setter
|
|
1142
|
+
def DesensitizationRule(self, DesensitizationRule):
|
|
1143
|
+
self._DesensitizationRule = DesensitizationRule
|
|
1144
|
+
|
|
1117
1145
|
|
|
1118
1146
|
def _deserialize(self, params):
|
|
1119
1147
|
self._InstanceKey = params.get("InstanceKey")
|
|
@@ -1182,6 +1210,8 @@ class ApmAppConfig(AbstractModel):
|
|
|
1182
1210
|
obj = ApmTag()
|
|
1183
1211
|
obj._deserialize(item)
|
|
1184
1212
|
self._SlowSQLThresholds.append(obj)
|
|
1213
|
+
self._EnableDesensitizationRule = params.get("EnableDesensitizationRule")
|
|
1214
|
+
self._DesensitizationRule = params.get("DesensitizationRule")
|
|
1185
1215
|
memeber_set = set(params.keys())
|
|
1186
1216
|
for name, value in vars(self).items():
|
|
1187
1217
|
property_name = name[1:]
|
|
@@ -1245,6 +1275,10 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
1245
1275
|
:type DbStatementParametersEnabled: bool
|
|
1246
1276
|
:param _SlowSQLThresholds: 慢SQL阈值
|
|
1247
1277
|
:type SlowSQLThresholds: list of ApmTag
|
|
1278
|
+
:param _EnableDesensitizationRule: 是否开启脱敏规则
|
|
1279
|
+
:type EnableDesensitizationRule: int
|
|
1280
|
+
:param _DesensitizationRule: 脱敏规则
|
|
1281
|
+
:type DesensitizationRule: str
|
|
1248
1282
|
"""
|
|
1249
1283
|
self._InstanceKey = None
|
|
1250
1284
|
self._ServiceName = None
|
|
@@ -1269,6 +1303,8 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
1269
1303
|
self._DisableCpuUsed = None
|
|
1270
1304
|
self._DbStatementParametersEnabled = None
|
|
1271
1305
|
self._SlowSQLThresholds = None
|
|
1306
|
+
self._EnableDesensitizationRule = None
|
|
1307
|
+
self._DesensitizationRule = None
|
|
1272
1308
|
|
|
1273
1309
|
@property
|
|
1274
1310
|
def InstanceKey(self):
|
|
@@ -1523,6 +1559,28 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
1523
1559
|
def SlowSQLThresholds(self, SlowSQLThresholds):
|
|
1524
1560
|
self._SlowSQLThresholds = SlowSQLThresholds
|
|
1525
1561
|
|
|
1562
|
+
@property
|
|
1563
|
+
def EnableDesensitizationRule(self):
|
|
1564
|
+
r"""是否开启脱敏规则
|
|
1565
|
+
:rtype: int
|
|
1566
|
+
"""
|
|
1567
|
+
return self._EnableDesensitizationRule
|
|
1568
|
+
|
|
1569
|
+
@EnableDesensitizationRule.setter
|
|
1570
|
+
def EnableDesensitizationRule(self, EnableDesensitizationRule):
|
|
1571
|
+
self._EnableDesensitizationRule = EnableDesensitizationRule
|
|
1572
|
+
|
|
1573
|
+
@property
|
|
1574
|
+
def DesensitizationRule(self):
|
|
1575
|
+
r"""脱敏规则
|
|
1576
|
+
:rtype: str
|
|
1577
|
+
"""
|
|
1578
|
+
return self._DesensitizationRule
|
|
1579
|
+
|
|
1580
|
+
@DesensitizationRule.setter
|
|
1581
|
+
def DesensitizationRule(self, DesensitizationRule):
|
|
1582
|
+
self._DesensitizationRule = DesensitizationRule
|
|
1583
|
+
|
|
1526
1584
|
|
|
1527
1585
|
def _deserialize(self, params):
|
|
1528
1586
|
self._InstanceKey = params.get("InstanceKey")
|
|
@@ -1558,6 +1616,8 @@ class ApmApplicationConfigView(AbstractModel):
|
|
|
1558
1616
|
obj = ApmTag()
|
|
1559
1617
|
obj._deserialize(item)
|
|
1560
1618
|
self._SlowSQLThresholds.append(obj)
|
|
1619
|
+
self._EnableDesensitizationRule = params.get("EnableDesensitizationRule")
|
|
1620
|
+
self._DesensitizationRule = params.get("DesensitizationRule")
|
|
1561
1621
|
memeber_set = set(params.keys())
|
|
1562
1622
|
for name, value in vars(self).items():
|
|
1563
1623
|
property_name = name[1:]
|
|
@@ -7425,6 +7485,10 @@ class ModifyApmApplicationConfigRequest(AbstractModel):
|
|
|
7425
7485
|
:type DbStatementParametersEnabled: bool
|
|
7426
7486
|
:param _SlowSQLThresholds: 慢SQL阈值
|
|
7427
7487
|
:type SlowSQLThresholds: list of ApmTag
|
|
7488
|
+
:param _EnableDesensitizationRule: 是否开启脱敏规则
|
|
7489
|
+
:type EnableDesensitizationRule: int
|
|
7490
|
+
:param _DesensitizationRule: 脱敏规则
|
|
7491
|
+
:type DesensitizationRule: str
|
|
7428
7492
|
"""
|
|
7429
7493
|
self._InstanceId = None
|
|
7430
7494
|
self._ServiceName = None
|
|
@@ -7477,6 +7541,8 @@ class ModifyApmApplicationConfigRequest(AbstractModel):
|
|
|
7477
7541
|
self._DisableCpuUsed = None
|
|
7478
7542
|
self._DbStatementParametersEnabled = None
|
|
7479
7543
|
self._SlowSQLThresholds = None
|
|
7544
|
+
self._EnableDesensitizationRule = None
|
|
7545
|
+
self._DesensitizationRule = None
|
|
7480
7546
|
|
|
7481
7547
|
@property
|
|
7482
7548
|
def InstanceId(self):
|
|
@@ -8039,6 +8105,28 @@ class ModifyApmApplicationConfigRequest(AbstractModel):
|
|
|
8039
8105
|
def SlowSQLThresholds(self, SlowSQLThresholds):
|
|
8040
8106
|
self._SlowSQLThresholds = SlowSQLThresholds
|
|
8041
8107
|
|
|
8108
|
+
@property
|
|
8109
|
+
def EnableDesensitizationRule(self):
|
|
8110
|
+
r"""是否开启脱敏规则
|
|
8111
|
+
:rtype: int
|
|
8112
|
+
"""
|
|
8113
|
+
return self._EnableDesensitizationRule
|
|
8114
|
+
|
|
8115
|
+
@EnableDesensitizationRule.setter
|
|
8116
|
+
def EnableDesensitizationRule(self, EnableDesensitizationRule):
|
|
8117
|
+
self._EnableDesensitizationRule = EnableDesensitizationRule
|
|
8118
|
+
|
|
8119
|
+
@property
|
|
8120
|
+
def DesensitizationRule(self):
|
|
8121
|
+
r"""脱敏规则
|
|
8122
|
+
:rtype: str
|
|
8123
|
+
"""
|
|
8124
|
+
return self._DesensitizationRule
|
|
8125
|
+
|
|
8126
|
+
@DesensitizationRule.setter
|
|
8127
|
+
def DesensitizationRule(self, DesensitizationRule):
|
|
8128
|
+
self._DesensitizationRule = DesensitizationRule
|
|
8129
|
+
|
|
8042
8130
|
|
|
8043
8131
|
def _deserialize(self, params):
|
|
8044
8132
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -8104,6 +8192,8 @@ class ModifyApmApplicationConfigRequest(AbstractModel):
|
|
|
8104
8192
|
obj = ApmTag()
|
|
8105
8193
|
obj._deserialize(item)
|
|
8106
8194
|
self._SlowSQLThresholds.append(obj)
|
|
8195
|
+
self._EnableDesensitizationRule = params.get("EnableDesensitizationRule")
|
|
8196
|
+
self._DesensitizationRule = params.get("DesensitizationRule")
|
|
8107
8197
|
memeber_set = set(params.keys())
|
|
8108
8198
|
for name, value in vars(self).items():
|
|
8109
8199
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-apm
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.21
|
|
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
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.21
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.21
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.19
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|