tencentcloud-sdk-python-intl-en 3.0.1185__py2.py3-none-any.whl → 3.0.1187__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +24 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +363 -0
- tencentcloud/ocr/v20181119/models.py +364 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/vod/v20180717/errorcodes.py +4 -1
- tencentcloud/vod/v20180717/models.py +52 -33
- tencentcloud/wedata/v20210820/models.py +1280 -110
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/RECORD +13 -13
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,29 @@ class WedataClient(AbstractClient):
|
|
|
26
26
|
_service = 'wedata'
|
|
27
27
|
|
|
28
28
|
|
|
29
|
+
def AddProjectUserRole(self, request):
|
|
30
|
+
"""This API is used to add a user role to a project.
|
|
31
|
+
|
|
32
|
+
:param request: Request instance for AddProjectUserRole.
|
|
33
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.AddProjectUserRoleRequest`
|
|
34
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.AddProjectUserRoleResponse`
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
try:
|
|
38
|
+
params = request._serialize()
|
|
39
|
+
headers = request.headers
|
|
40
|
+
body = self.call("AddProjectUserRole", params, headers=headers)
|
|
41
|
+
response = json.loads(body)
|
|
42
|
+
model = models.AddProjectUserRoleResponse()
|
|
43
|
+
model._deserialize(response["Response"])
|
|
44
|
+
return model
|
|
45
|
+
except Exception as e:
|
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
|
47
|
+
raise
|
|
48
|
+
else:
|
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
|
+
|
|
51
|
+
|
|
29
52
|
def BatchCreateIntegrationTaskAlarms(self, request):
|
|
30
53
|
"""Bulk Create Task Alert Rules
|
|
31
54
|
|
|
@@ -2763,6 +2786,29 @@ class WedataClient(AbstractClient):
|
|
|
2763
2786
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2764
2787
|
|
|
2765
2788
|
|
|
2789
|
+
def DescribeRoleList(self, request):
|
|
2790
|
+
"""This API is used to retrieve role list information.
|
|
2791
|
+
|
|
2792
|
+
:param request: Request instance for DescribeRoleList.
|
|
2793
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeRoleListRequest`
|
|
2794
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeRoleListResponse`
|
|
2795
|
+
|
|
2796
|
+
"""
|
|
2797
|
+
try:
|
|
2798
|
+
params = request._serialize()
|
|
2799
|
+
headers = request.headers
|
|
2800
|
+
body = self.call("DescribeRoleList", params, headers=headers)
|
|
2801
|
+
response = json.loads(body)
|
|
2802
|
+
model = models.DescribeRoleListResponse()
|
|
2803
|
+
model._deserialize(response["Response"])
|
|
2804
|
+
return model
|
|
2805
|
+
except Exception as e:
|
|
2806
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2807
|
+
raise
|
|
2808
|
+
else:
|
|
2809
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2810
|
+
|
|
2811
|
+
|
|
2766
2812
|
def DescribeRule(self, request):
|
|
2767
2813
|
"""Queries rule details
|
|
2768
2814
|
|
|
@@ -5212,6 +5258,29 @@ class WedataClient(AbstractClient):
|
|
|
5212
5258
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5213
5259
|
|
|
5214
5260
|
|
|
5261
|
+
def UpdateProjectUserRole(self, request):
|
|
5262
|
+
"""This API is used to modify user roles in a project.
|
|
5263
|
+
|
|
5264
|
+
:param request: Request instance for UpdateProjectUserRole.
|
|
5265
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.UpdateProjectUserRoleRequest`
|
|
5266
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.UpdateProjectUserRoleResponse`
|
|
5267
|
+
|
|
5268
|
+
"""
|
|
5269
|
+
try:
|
|
5270
|
+
params = request._serialize()
|
|
5271
|
+
headers = request.headers
|
|
5272
|
+
body = self.call("UpdateProjectUserRole", params, headers=headers)
|
|
5273
|
+
response = json.loads(body)
|
|
5274
|
+
model = models.UpdateProjectUserRoleResponse()
|
|
5275
|
+
model._deserialize(response["Response"])
|
|
5276
|
+
return model
|
|
5277
|
+
except Exception as e:
|
|
5278
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5279
|
+
raise
|
|
5280
|
+
else:
|
|
5281
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5282
|
+
|
|
5283
|
+
|
|
5215
5284
|
def UpdateWorkflowOwner(self, request):
|
|
5216
5285
|
"""Modifying Workflow Person in Charge
|
|
5217
5286
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=k-nEFCIYuXaNk3A9rhjyj7q9oUfZ_womNbH4czU_60s,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
|
|
@@ -338,8 +338,8 @@ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WD
|
|
|
338
338
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=f9sXktgBjr7zMgXP7ggnhZPC2w4q4dsfo8QuCj_881I,7590
|
|
341
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
341
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=LkIh01ZQaoqytNagivBVKlUz8brlyooOe-5izTgTZIk,42032
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=xGqAeLl54F9k9ck-DsyjDSpqNjrXre42Q7BvkA9UXmk,241285
|
|
343
343
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
345
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
@@ -413,8 +413,8 @@ tencentcloud/msp/v20180319/msp_client.py,sha256=ciNfy4xBXjMLxouGxPRu_EnyugEMzKWj
|
|
|
413
413
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
414
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
415
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=hwNIDFXG88AaadfzCfTamVSiVVIYoPf9OftekhNw2vI,4200
|
|
416
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
|
417
|
-
tencentcloud/ocr/v20181119/ocr_client.py,sha256=
|
|
416
|
+
tencentcloud/ocr/v20181119/models.py,sha256=4Hxb2N1YfFgZgBT5ju2Gk6ArhQ-dexESfDOTpVijpwI,590553
|
|
417
|
+
tencentcloud/ocr/v20181119/ocr_client.py,sha256=4BhEd3gtvWlpuRgQaiD-WbeTVa8sHTQcNm4gowqH1Qw,50414
|
|
418
418
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
419
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
420
|
tencentcloud/omics/v20221128/errorcodes.py,sha256=VEkh5arAi4YIbf5y4krDS23zC6KcL6WnOxhpPLsiCGc,4862
|
|
@@ -621,8 +621,8 @@ tencentcloud/vm/v20210922/models.py,sha256=s90vwtjOCmOk3Ha-DoIyxhhkBXYxXP7bHvPss
|
|
|
621
621
|
tencentcloud/vm/v20210922/vm_client.py,sha256=53nQQvsMw6P7gPdNxFUCicBi9Ed0wnY7dzTUhl4sdUE,4802
|
|
622
622
|
tencentcloud/vod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
623
623
|
tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
624
|
-
tencentcloud/vod/v20180717/errorcodes.py,sha256=
|
|
625
|
-
tencentcloud/vod/v20180717/models.py,sha256=
|
|
624
|
+
tencentcloud/vod/v20180717/errorcodes.py,sha256=T1qEKCUfUBM4sHDxCxnfjIpHIm5GMGuiAXh_rhmGZRs,27980
|
|
625
|
+
tencentcloud/vod/v20180717/models.py,sha256=pXGN1-NwkEM4IO4OIorSIFFWF9Io0fxrJhLqm2PW7Sw,2931767
|
|
626
626
|
tencentcloud/vod/v20180717/vod_client.py,sha256=DMxebnzLEsU2E6nf1j4WZxEQu_D8kHOgqT9W8g9dTG8,201269
|
|
627
627
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
628
628
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -637,14 +637,14 @@ tencentcloud/waf/v20180125/waf_client.py,sha256=NcnNTHFQd7eSB6kyP9KUIahawZLlWCi7
|
|
|
637
637
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
638
638
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
639
639
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=nqjLl2GjTvhMFNWtn38iKzZIm5w2DMVJ5Fw5Hnh5SUM,3879
|
|
640
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
|
641
|
-
tencentcloud/wedata/v20210820/wedata_client.py,sha256=
|
|
640
|
+
tencentcloud/wedata/v20210820/models.py,sha256=8BbhPKXV_Sbt0z_qhB-cDxD4_uawzPR00xH0U17GPFA,2461699
|
|
641
|
+
tencentcloud/wedata/v20210820/wedata_client.py,sha256=auhyJFicPfVGVJkaoza_JZnh62Zk-ZahNl68OCpVh6U,214215
|
|
642
642
|
tencentcloud/yunjing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
643
643
|
tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
644
644
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
645
645
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
646
646
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
647
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
648
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
649
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
650
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
647
|
+
tencentcloud_sdk_python_intl_en-3.0.1187.dist-info/METADATA,sha256=yV7VF1AlQv_Vmib26aIU9_CcArLOLDbGaeyfzgV0jLw,1628
|
|
648
|
+
tencentcloud_sdk_python_intl_en-3.0.1187.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
649
|
+
tencentcloud_sdk_python_intl_en-3.0.1187.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
650
|
+
tencentcloud_sdk_python_intl_en-3.0.1187.dist-info/RECORD,,
|
|
File without changes
|