tencentcloud-sdk-python-wedata 3.0.1237__tar.gz → 3.0.1271__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 (16) hide show
  1. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/PKG-INFO +3 -3
  2. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/setup.cfg +0 -1
  3. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/setup.py +1 -1
  4. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud/__init__.py +1 -1
  5. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud/wedata/v20210820/errorcodes.py +9 -0
  6. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud/wedata/v20210820/models.py +17574 -7
  7. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud/wedata/v20210820/wedata_client.py +138 -0
  8. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud_sdk_python_wedata.egg-info/PKG-INFO +3 -3
  9. tencentcloud-sdk-python-wedata-3.0.1271/tencentcloud_sdk_python_wedata.egg-info/requires.txt +1 -0
  10. tencentcloud-sdk-python-wedata-3.0.1237/tencentcloud_sdk_python_wedata.egg-info/requires.txt +0 -1
  11. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/README.rst +0 -0
  12. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud/wedata/__init__.py +0 -0
  13. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud/wedata/v20210820/__init__.py +0 -0
  14. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud_sdk_python_wedata.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud_sdk_python_wedata.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-wedata-3.0.1237 → tencentcloud-sdk-python-wedata-3.0.1271}/tencentcloud_sdk_python_wedata.egg-info/top_level.txt +0 -0
@@ -1,10 +1,10 @@
1
- Metadata-Version: 1.1
1
+ Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-wedata
3
- Version: 3.0.1237
3
+ Version: 3.0.1271
4
4
  Summary: Tencent Cloud Wedata SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
7
- Author-email: tencentcloudapi@tencent.com
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
8
  License: Apache License 2.0
9
9
  Description: ============================
10
10
  Tencent Cloud SDK for Python
@@ -4,5 +4,4 @@ universal = 1
4
4
  [egg_info]
5
5
  tag_build =
6
6
  tag_date = 0
7
- tag_svn_revision = 0
8
7
 
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-wedata',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1237"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1271"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Wedata 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.1237'
17
+ __version__ = '3.0.1271'
@@ -77,6 +77,15 @@ INVALIDPARAMETER_WORKSPACENOTEXIST = 'InvalidParameter.WorkspaceNotExist'
77
77
  # 参数取值错误。
78
78
  INVALIDPARAMETERVALUE = 'InvalidParameterValue'
79
79
 
80
+ # 数据建模实例已经被销毁
81
+ INVALIDPARAMETERVALUE_DATAMODELDESTROYED = 'InvalidParameterValue.DataModelDestroyed'
82
+
83
+ # 重复购买错误,一个主账号在一个地域只允许购买一套数据建模
84
+ INVALIDPARAMETERVALUE_REPEATPURCHASEERROR = 'InvalidParameterValue.RepeatPurchaseError'
85
+
86
+ # 不支持的数据建模服务提供方
87
+ INVALIDPARAMETERVALUE_UNSUPPORTEDPROVIDER = 'InvalidParameterValue.UnsupportedProvider'
88
+
80
89
  # 超过配额限制。
81
90
  LIMITEXCEEDED = 'LimitExceeded'
82
91