tencentcloud-sdk-python-dlc 3.0.1228__tar.gz → 3.0.1264__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-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/setup.py +1 -1
  3. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud/dlc/v20210125/dlc_client.py +24 -1
  5. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud/dlc/v20210125/errorcodes.py +3 -0
  6. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud/dlc/v20210125/models.py +6674 -5
  7. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +1 -1
  8. tencentcloud-sdk-python-dlc-3.0.1264/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-dlc-3.0.1228/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  10. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/README.rst +0 -0
  11. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/setup.cfg +0 -0
  12. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud/dlc/__init__.py +0 -0
  13. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  14. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-dlc-3.0.1228 → tencentcloud-sdk-python-dlc-3.0.1264}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.0.1228
3
+ Version: 3.0.1264
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
@@ -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.0.1228"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1264"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Dlc 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.1228'
17
+ __version__ = '3.0.1264'
@@ -1430,7 +1430,7 @@ class DlcClient(AbstractClient):
1430
1430
 
1431
1431
 
1432
1432
  def DescribeDataEngines(self, request):
1433
- """本接口(DescribeDataEngines)用于查询DataEngines信息列表
1433
+ """本接口(DescribeDataEngines)用于查询DataEngines信息列表.
1434
1434
 
1435
1435
  :param request: Request instance for DescribeDataEngines.
1436
1436
  :type request: :class:`tencentcloud.dlc.v20210125.models.DescribeDataEnginesRequest`
@@ -2165,6 +2165,29 @@ class DlcClient(AbstractClient):
2165
2165
  raise TencentCloudSDKException(type(e).__name__, str(e))
2166
2166
 
2167
2167
 
2168
+ def DescribeTasksAnalysis(self, request):
2169
+ """该接口用于洞察分析列表
2170
+
2171
+ :param request: Request instance for DescribeTasksAnalysis.
2172
+ :type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTasksAnalysisRequest`
2173
+ :rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTasksAnalysisResponse`
2174
+
2175
+ """
2176
+ try:
2177
+ params = request._serialize()
2178
+ headers = request.headers
2179
+ body = self.call("DescribeTasksAnalysis", params, headers=headers)
2180
+ response = json.loads(body)
2181
+ model = models.DescribeTasksAnalysisResponse()
2182
+ model._deserialize(response["Response"])
2183
+ return model
2184
+ except Exception as e:
2185
+ if isinstance(e, TencentCloudSDKException):
2186
+ raise
2187
+ else:
2188
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2189
+
2190
+
2168
2191
  def DescribeTasksCostInfo(self, request):
2169
2192
  """该接口(DescribeTasksCostInfo)用于查询任务消耗
2170
2193
 
@@ -680,6 +680,9 @@ UNAUTHORIZEDOPERATION_RENEWCOMPUTINGENGINE = 'UnauthorizedOperation.RenewComputi
680
680
  # 子用户无权取消特定权限。
681
681
  UNAUTHORIZEDOPERATION_REVOKEPOLICY = 'UnauthorizedOperation.RevokePolicy'
682
682
 
683
+ # 无引擎cam权限
684
+ UNAUTHORIZEDOPERATION_UNAUTHORIZEDOPERATIONCODE_NOENGINECAMPERMISSIONS = 'UnauthorizedOperation.UnauthorizedOperationCode_NoEngineCamPermissions'
685
+
683
686
  # 子用户不是管理员,无权将工作组和用户解绑。
684
687
  UNAUTHORIZEDOPERATION_UNBINDWORKGROUPSFROMUSER = 'UnauthorizedOperation.UnbindWorkgroupsFromUser'
685
688