tencentcloud-sdk-python-rum 3.1.41__tar.gz → 3.1.54__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/setup.py +1 -1
  3. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/rum/v20210622/errorcodes.py +0 -9
  5. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/rum/v20210622/models.py +7372 -1579
  6. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/rum/v20210622/rum_client.py +277 -46
  7. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/rum/v20210622/rum_client_async.py +217 -36
  8. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud_sdk_python_rum.egg-info/PKG-INFO +2 -2
  9. tencentcloud_sdk_python_rum-3.1.54/tencentcloud_sdk_python_rum.egg-info/requires.txt +1 -0
  10. tencentcloud_sdk_python_rum-3.1.41/tencentcloud_sdk_python_rum.egg-info/requires.txt +0 -1
  11. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/README.rst +0 -0
  12. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/setup.cfg +0 -0
  13. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/rum/__init__.py +0 -0
  14. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud/rum/v20210622/__init__.py +0 -0
  15. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud_sdk_python_rum.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud_sdk_python_rum.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_rum-3.1.41 → tencentcloud_sdk_python_rum-3.1.54}/tencentcloud_sdk_python_rum.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-rum
3
- Version: 3.1.41
3
+ Version: 3.1.54
4
4
  Summary: Tencent Cloud Rum 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.41
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.54
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-rum',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.41,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.54,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Rum SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.41'
17
+ __version__ = '3.1.54'
@@ -23,15 +23,6 @@ DRYRUNOPERATION = 'DryRunOperation'
23
23
  # 操作失败。
24
24
  FAILEDOPERATION = 'FailedOperation'
25
25
 
26
- # 计费相关 - 账户余额不足。
27
- FAILEDOPERATION_CHARGENOBALANCE = 'FailedOperation.ChargeNoBalance'
28
-
29
- # 计费相关 - 账户没有付费权限。
30
- FAILEDOPERATION_CHARGENOPAYRIGHT = 'FailedOperation.ChargeNoPayRight'
31
-
32
- # 计费相关 - 计费参数无效。
33
- FAILEDOPERATION_CHARGEPARAMINVALID = 'FailedOperation.ChargeParamInvalid'
34
-
35
26
  # CLS调用失败
36
27
  FAILEDOPERATION_CLSCALLFAIL = 'FailedOperation.ClsCallFail'
37
28