tencentcloud-sdk-python-dlc 3.1.72__tar.gz → 3.1.73__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_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/errorcodes.py +6 -0
  5. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_dlc-3.1.73/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_dlc-3.1.72/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/README.rst +0 -0
  9. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/__init__.py +0 -0
  11. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  12. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  13. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/dlc_client_async.py +0 -0
  14. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/models.py +0 -0
  15. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dlc-3.1.72 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.72
3
+ Version: 3.1.73
4
4
  Summary: Tencent Cloud Dlc 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.72
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.73
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-dlc',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.72,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.73,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dlc SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.72'
17
+ __version__ = '3.1.73'
@@ -689,6 +689,9 @@ RESOURCENOTFOUND_TASKALREADYFAILED = 'ResourceNotFound.TaskAlreadyFailed'
689
689
  # 任务已经完成
690
690
  RESOURCENOTFOUND_TASKALREADYFINISHED = 'ResourceNotFound.TaskAlreadyFinished'
691
691
 
692
+ # 用户不存在
693
+ RESOURCENOTFOUND_USERNOTEXIST = 'ResourceNotFound.UserNotExist'
694
+
692
695
  # 找不到Warehouse存储路径,请到控制台->数据探索页面->存储配置中设置
693
696
  RESOURCENOTFOUND_WAREHOUSEDIRNOTFOUND = 'ResourceNotFound.WarehouseDirNotFound'
694
697
 
@@ -728,6 +731,9 @@ UNAUTHORIZEDOPERATION_ADDUSERSTOWORKGROUP = 'UnauthorizedOperation.AddUsersToWor
728
731
  # 子用户不是管理员,无权绑定工作组到用户。
729
732
  UNAUTHORIZEDOPERATION_BINDWORKGROUPSTOUSER = 'UnauthorizedOperation.BindWorkgroupsToUser'
730
733
 
734
+ # 用户无权限创建管理员
735
+ UNAUTHORIZEDOPERATION_CREATEADMINISTRATOR = 'UnauthorizedOperation.CreateAdministrator'
736
+
731
737
  # 子用户无权创建联邦查询数据源。
732
738
  UNAUTHORIZEDOPERATION_CREATECATALOG = 'UnauthorizedOperation.CreateCatalog'
733
739
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.72
3
+ Version: 3.1.73
4
4
  Summary: Tencent Cloud Dlc 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.72
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.73
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.73
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.72