tencentcloud-sdk-python-intl-en 3.0.1194__py2.py3-none-any.whl → 3.0.1196__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/autoscaling/v20180419/models.py +73 -72
- tencentcloud/kms/v20190118/models.py +187 -90
- tencentcloud/ocr/v20181119/models.py +47 -2
- tencentcloud/tbaas/__init__.py +0 -0
- tencentcloud/tbaas/v20180416/__init__.py +0 -0
- tencentcloud/tbaas/v20180416/errorcodes.py +36 -0
- tencentcloud/tbaas/v20180416/models.py +915 -0
- tencentcloud/tbaas/v20180416/tbaas_client.py +118 -0
- tencentcloud/vod/v20180717/models.py +2 -2
- tencentcloud/wedata/v20210820/models.py +3381 -947
- tencentcloud/wedata/v20210820/wedata_client.py +175 -13
- {tencentcloud_sdk_python_intl_en-3.0.1194.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1194.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/RECORD +16 -11
- {tencentcloud_sdk_python_intl_en-3.0.1194.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1194.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/top_level.txt +0 -0
|
@@ -72,6 +72,29 @@ class WedataClient(AbstractClient):
|
|
|
72
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
def BatchCreateTaskVersionAsync(self, request):
|
|
76
|
+
"""This API is used to asynchronously create task versions in batches.
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for BatchCreateTaskVersionAsync.
|
|
79
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.BatchCreateTaskVersionAsyncRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.BatchCreateTaskVersionAsyncResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("BatchCreateTaskVersionAsync", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.BatchCreateTaskVersionAsyncResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
75
98
|
def BatchDeleteIntegrationTasks(self, request):
|
|
76
99
|
"""Batch Delete Integration Tasks.
|
|
77
100
|
|
|
@@ -832,7 +855,7 @@ class WedataClient(AbstractClient):
|
|
|
832
855
|
|
|
833
856
|
|
|
834
857
|
def CreateTask(self, request):
|
|
835
|
-
"""
|
|
858
|
+
"""This API is used to create a task. This API is deprecated. Use the CreateTaskNew API.
|
|
836
859
|
|
|
837
860
|
:param request: Request instance for CreateTask.
|
|
838
861
|
:type request: :class:`tencentcloud.wedata.v20210820.models.CreateTaskRequest`
|
|
@@ -900,6 +923,29 @@ class WedataClient(AbstractClient):
|
|
|
900
923
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
901
924
|
|
|
902
925
|
|
|
926
|
+
def CreateTaskNew(self, request):
|
|
927
|
+
"""This API is used to aggregate task creation.
|
|
928
|
+
|
|
929
|
+
:param request: Request instance for CreateTaskNew.
|
|
930
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CreateTaskNewRequest`
|
|
931
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CreateTaskNewResponse`
|
|
932
|
+
|
|
933
|
+
"""
|
|
934
|
+
try:
|
|
935
|
+
params = request._serialize()
|
|
936
|
+
headers = request.headers
|
|
937
|
+
body = self.call("CreateTaskNew", params, headers=headers)
|
|
938
|
+
response = json.loads(body)
|
|
939
|
+
model = models.CreateTaskNewResponse()
|
|
940
|
+
model._deserialize(response["Response"])
|
|
941
|
+
return model
|
|
942
|
+
except Exception as e:
|
|
943
|
+
if isinstance(e, TencentCloudSDKException):
|
|
944
|
+
raise
|
|
945
|
+
else:
|
|
946
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
947
|
+
|
|
948
|
+
|
|
903
949
|
def CreateTaskVersionDs(self, request):
|
|
904
950
|
"""Submit Task Version
|
|
905
951
|
|
|
@@ -4608,8 +4654,8 @@ class WedataClient(AbstractClient):
|
|
|
4608
4654
|
|
|
4609
4655
|
|
|
4610
4656
|
def ModifyTaskLinks(self, request):
|
|
4611
|
-
"""<p style="color:red;">[Note: This version is only available to
|
|
4612
|
-
Add
|
|
4657
|
+
"""<p style="color:red;">[Note: This version is only available to some whitelist customers in the Guangzhou zone]</p>.
|
|
4658
|
+
Add parent task dependency. This API is deprecated. Use API ModifyTaskLinksDs.
|
|
4613
4659
|
|
|
4614
4660
|
:param request: Request instance for ModifyTaskLinks.
|
|
4615
4661
|
:type request: :class:`tencentcloud.wedata.v20210820.models.ModifyTaskLinksRequest`
|
|
@@ -4631,6 +4677,29 @@ class WedataClient(AbstractClient):
|
|
|
4631
4677
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4632
4678
|
|
|
4633
4679
|
|
|
4680
|
+
def ModifyTaskLinksDs(self, request):
|
|
4681
|
+
"""This API is used to add parent task dependency.
|
|
4682
|
+
|
|
4683
|
+
:param request: Request instance for ModifyTaskLinksDs.
|
|
4684
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ModifyTaskLinksDsRequest`
|
|
4685
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ModifyTaskLinksDsResponse`
|
|
4686
|
+
|
|
4687
|
+
"""
|
|
4688
|
+
try:
|
|
4689
|
+
params = request._serialize()
|
|
4690
|
+
headers = request.headers
|
|
4691
|
+
body = self.call("ModifyTaskLinksDs", params, headers=headers)
|
|
4692
|
+
response = json.loads(body)
|
|
4693
|
+
model = models.ModifyTaskLinksDsResponse()
|
|
4694
|
+
model._deserialize(response["Response"])
|
|
4695
|
+
return model
|
|
4696
|
+
except Exception as e:
|
|
4697
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4698
|
+
raise
|
|
4699
|
+
else:
|
|
4700
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4701
|
+
|
|
4702
|
+
|
|
4634
4703
|
def ModifyTaskName(self, request):
|
|
4635
4704
|
"""Rename Task (Task Editing)
|
|
4636
4705
|
|
|
@@ -4679,7 +4748,7 @@ class WedataClient(AbstractClient):
|
|
|
4679
4748
|
|
|
4680
4749
|
|
|
4681
4750
|
def ModifyWorkflowInfo(self, request):
|
|
4682
|
-
"""
|
|
4751
|
+
"""This API is used to update workflow information. (deprecated). Use API UpdateWorkflowInfo.
|
|
4683
4752
|
|
|
4684
4753
|
:param request: Request instance for ModifyWorkflowInfo.
|
|
4685
4754
|
:type request: :class:`tencentcloud.wedata.v20210820.models.ModifyWorkflowInfoRequest`
|
|
@@ -4702,7 +4771,7 @@ class WedataClient(AbstractClient):
|
|
|
4702
4771
|
|
|
4703
4772
|
|
|
4704
4773
|
def ModifyWorkflowSchedule(self, request):
|
|
4705
|
-
"""
|
|
4774
|
+
"""This API is used to update workflow scheduling. This API is deprecated. Use the RenewWorkflowSchedulerInfoDs API instead.
|
|
4706
4775
|
|
|
4707
4776
|
:param request: Request instance for ModifyWorkflowSchedule.
|
|
4708
4777
|
:type request: :class:`tencentcloud.wedata.v20210820.models.ModifyWorkflowScheduleRequest`
|
|
@@ -4747,9 +4816,32 @@ class WedataClient(AbstractClient):
|
|
|
4747
4816
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4748
4817
|
|
|
4749
4818
|
|
|
4819
|
+
def RegisterDsEvent(self, request):
|
|
4820
|
+
"""This API is used to register an event.
|
|
4821
|
+
|
|
4822
|
+
:param request: Request instance for RegisterDsEvent.
|
|
4823
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.RegisterDsEventRequest`
|
|
4824
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.RegisterDsEventResponse`
|
|
4825
|
+
|
|
4826
|
+
"""
|
|
4827
|
+
try:
|
|
4828
|
+
params = request._serialize()
|
|
4829
|
+
headers = request.headers
|
|
4830
|
+
body = self.call("RegisterDsEvent", params, headers=headers)
|
|
4831
|
+
response = json.loads(body)
|
|
4832
|
+
model = models.RegisterDsEventResponse()
|
|
4833
|
+
model._deserialize(response["Response"])
|
|
4834
|
+
return model
|
|
4835
|
+
except Exception as e:
|
|
4836
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4837
|
+
raise
|
|
4838
|
+
else:
|
|
4839
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4840
|
+
|
|
4841
|
+
|
|
4750
4842
|
def RegisterEvent(self, request):
|
|
4751
|
-
"""<p style="color:red;">[Note: This version is only available
|
|
4752
|
-
|
|
4843
|
+
"""<p style="color:red;">[Note: This version is only available for partial allowlisted customers in the Guangzhou region]</p>.
|
|
4844
|
+
This API is used to register events. This API is deprecated. Use API RegisterDsEvent.
|
|
4753
4845
|
|
|
4754
4846
|
:param request: Request instance for RegisterEvent.
|
|
4755
4847
|
:type request: :class:`tencentcloud.wedata.v20210820.models.RegisterEventRequest`
|
|
@@ -4818,6 +4910,52 @@ class WedataClient(AbstractClient):
|
|
|
4818
4910
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4819
4911
|
|
|
4820
4912
|
|
|
4913
|
+
def RenewWorkflowOwnerDs(self, request):
|
|
4914
|
+
"""This API is used to batch update the task owner under a workflow.
|
|
4915
|
+
|
|
4916
|
+
:param request: Request instance for RenewWorkflowOwnerDs.
|
|
4917
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.RenewWorkflowOwnerDsRequest`
|
|
4918
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.RenewWorkflowOwnerDsResponse`
|
|
4919
|
+
|
|
4920
|
+
"""
|
|
4921
|
+
try:
|
|
4922
|
+
params = request._serialize()
|
|
4923
|
+
headers = request.headers
|
|
4924
|
+
body = self.call("RenewWorkflowOwnerDs", params, headers=headers)
|
|
4925
|
+
response = json.loads(body)
|
|
4926
|
+
model = models.RenewWorkflowOwnerDsResponse()
|
|
4927
|
+
model._deserialize(response["Response"])
|
|
4928
|
+
return model
|
|
4929
|
+
except Exception as e:
|
|
4930
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4931
|
+
raise
|
|
4932
|
+
else:
|
|
4933
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4934
|
+
|
|
4935
|
+
|
|
4936
|
+
def RenewWorkflowSchedulerInfoDs(self, request):
|
|
4937
|
+
"""This API is used to update task scheduling information under a workflow.
|
|
4938
|
+
|
|
4939
|
+
:param request: Request instance for RenewWorkflowSchedulerInfoDs.
|
|
4940
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.RenewWorkflowSchedulerInfoDsRequest`
|
|
4941
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.RenewWorkflowSchedulerInfoDsResponse`
|
|
4942
|
+
|
|
4943
|
+
"""
|
|
4944
|
+
try:
|
|
4945
|
+
params = request._serialize()
|
|
4946
|
+
headers = request.headers
|
|
4947
|
+
body = self.call("RenewWorkflowSchedulerInfoDs", params, headers=headers)
|
|
4948
|
+
response = json.loads(body)
|
|
4949
|
+
model = models.RenewWorkflowSchedulerInfoDsResponse()
|
|
4950
|
+
model._deserialize(response["Response"])
|
|
4951
|
+
return model
|
|
4952
|
+
except Exception as e:
|
|
4953
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4954
|
+
raise
|
|
4955
|
+
else:
|
|
4956
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4957
|
+
|
|
4958
|
+
|
|
4821
4959
|
def ResumeIntegrationTask(self, request):
|
|
4822
4960
|
"""Continue Integration Task
|
|
4823
4961
|
|
|
@@ -5073,8 +5211,8 @@ class WedataClient(AbstractClient):
|
|
|
5073
5211
|
|
|
5074
5212
|
|
|
5075
5213
|
def SubmitTask(self, request):
|
|
5076
|
-
"""<p style="color:red;">[Note: This version is only available
|
|
5077
|
-
|
|
5214
|
+
"""<p style="color:red;">[Note: This version is only available for partial whitelist customers in the Guangzhou zone]</p>.
|
|
5215
|
+
This API is used to submit tasks. This API is deprecated. Use the CreateTaskVersionDs API.
|
|
5078
5216
|
|
|
5079
5217
|
:param request: Request instance for SubmitTask.
|
|
5080
5218
|
:type request: :class:`tencentcloud.wedata.v20210820.models.SubmitTaskRequest`
|
|
@@ -5120,7 +5258,7 @@ class WedataClient(AbstractClient):
|
|
|
5120
5258
|
|
|
5121
5259
|
|
|
5122
5260
|
def SubmitWorkflow(self, request):
|
|
5123
|
-
"""Submit
|
|
5261
|
+
"""Submit a workflow. This API is deprecated. Use the BatchCreateTaskVersionAsync API.
|
|
5124
5262
|
|
|
5125
5263
|
:param request: Request instance for SubmitWorkflow.
|
|
5126
5264
|
:type request: :class:`tencentcloud.wedata.v20210820.models.SubmitWorkflowRequest`
|
|
@@ -5212,8 +5350,8 @@ class WedataClient(AbstractClient):
|
|
|
5212
5350
|
|
|
5213
5351
|
|
|
5214
5352
|
def TriggerEvent(self, request):
|
|
5215
|
-
"""<p style="color:red;">[Note: This version is only available to
|
|
5216
|
-
|
|
5353
|
+
"""<p style="color:red;">[Note: This version is only available to some allowlisted customers in the Guangzhou region]</p>.
|
|
5354
|
+
This API is used to trigger event. This API is deprecated. Use API TriggerDsEvent.
|
|
5217
5355
|
|
|
5218
5356
|
:param request: Request instance for TriggerEvent.
|
|
5219
5357
|
:type request: :class:`tencentcloud.wedata.v20210820.models.TriggerEventRequest`
|
|
@@ -5281,8 +5419,32 @@ class WedataClient(AbstractClient):
|
|
|
5281
5419
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5282
5420
|
|
|
5283
5421
|
|
|
5422
|
+
def UpdateWorkflowInfo(self, request):
|
|
5423
|
+
"""This API is developed in ds.
|
|
5424
|
+
This API is used to update a workflow, including its basic information and workflow parameters.
|
|
5425
|
+
|
|
5426
|
+
:param request: Request instance for UpdateWorkflowInfo.
|
|
5427
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.UpdateWorkflowInfoRequest`
|
|
5428
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.UpdateWorkflowInfoResponse`
|
|
5429
|
+
|
|
5430
|
+
"""
|
|
5431
|
+
try:
|
|
5432
|
+
params = request._serialize()
|
|
5433
|
+
headers = request.headers
|
|
5434
|
+
body = self.call("UpdateWorkflowInfo", params, headers=headers)
|
|
5435
|
+
response = json.loads(body)
|
|
5436
|
+
model = models.UpdateWorkflowInfoResponse()
|
|
5437
|
+
model._deserialize(response["Response"])
|
|
5438
|
+
return model
|
|
5439
|
+
except Exception as e:
|
|
5440
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5441
|
+
raise
|
|
5442
|
+
else:
|
|
5443
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5444
|
+
|
|
5445
|
+
|
|
5284
5446
|
def UpdateWorkflowOwner(self, request):
|
|
5285
|
-
"""
|
|
5447
|
+
"""This API is used to modify the workflow owner. Deprecated. Use the RenewWorkflowOwnerDs API.
|
|
5286
5448
|
|
|
5287
5449
|
:param request: Request instance for UpdateWorkflowOwner.
|
|
5288
5450
|
:type request: :class:`tencentcloud.wedata.v20210820.models.UpdateWorkflowOwnerRequest`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=O0MnBgQWnanzdK6LfUUbUfU3LKeR5znesxcEZ2-Ziik,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
|
|
@@ -38,7 +38,7 @@ tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
38
38
|
tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=CN7OOMdCUFcaZipC0M8_8E3icUz1KSnu65NG2ytMMNg,73335
|
|
40
40
|
tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=EnO0NtPCX0cHZg4gwcuFy0h0lpGYXj7IxKOPyumtZss,23895
|
|
41
|
-
tencentcloud/autoscaling/v20180419/models.py,sha256=
|
|
41
|
+
tencentcloud/autoscaling/v20180419/models.py,sha256=HhZ3syswq88Mc7UNHqSH1A_Q1WkBe_hJ5IZtu3tEPZ4,622568
|
|
42
42
|
tencentcloud/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
tencentcloud/batch/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
44
|
tencentcloud/batch/v20170312/batch_client.py,sha256=EIR-ysegqhnY9he8RD0xs7pUkZt_XzmR_VNBRG41TCY,29653
|
|
@@ -354,7 +354,7 @@ tencentcloud/kms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
354
354
|
tencentcloud/kms/v20190118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
355
|
tencentcloud/kms/v20190118/errorcodes.py,sha256=oPx2K-S9eHuhJm5eJGHZw_LMF9kfq8KeIIqZyoZ-DqM,5717
|
|
356
356
|
tencentcloud/kms/v20190118/kms_client.py,sha256=Ys-MLu3_FEZR7hZ0UqQbLcgKxQNHPrx0vrrATnmGPbc,52331
|
|
357
|
-
tencentcloud/kms/v20190118/models.py,sha256=
|
|
357
|
+
tencentcloud/kms/v20190118/models.py,sha256=45vnAhyRS4uPHlFgPxwaab7UhSEZF5HZtdVqVfzyS1U,214076
|
|
358
358
|
tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=PYKhl5BSZ9afW4HiUf539p933Wnw9eMpgR0tQG1hXoI,4709
|
|
@@ -413,7 +413,7 @@ 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=
|
|
416
|
+
tencentcloud/ocr/v20181119/models.py,sha256=1_xjfennp2zjCzgtIzE1hLebn4_DiMUViWunPZOsG94,592057
|
|
417
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
|
|
@@ -508,6 +508,11 @@ tencentcloud/tat/v20201028/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
508
508
|
tencentcloud/tat/v20201028/errorcodes.py,sha256=LdG9Uj0YxTpFzWdPHZNsm7PhXWNoLwbS2NeDsuVSj7g,7730
|
|
509
509
|
tencentcloud/tat/v20201028/models.py,sha256=9WFtkWhn3-V7QFMp81nKUQtC86I-FVYFz5wUgl6XkAU,159865
|
|
510
510
|
tencentcloud/tat/v20201028/tat_client.py,sha256=fx_ShyCutNrI0ExkTg89biwzqLLLh3D6D8OY6SQ-vzE,19879
|
|
511
|
+
tencentcloud/tbaas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
|
+
tencentcloud/tbaas/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
513
|
+
tencentcloud/tbaas/v20180416/errorcodes.py,sha256=qoAQRoxkszjSkoZ8aUfV1x27vVVD2NbDLhlc1kpR3AE,1447
|
|
514
|
+
tencentcloud/tbaas/v20180416/models.py,sha256=-dVaL1OxMyfkWvsCpCohmrfw8WCnVrRs65NRiMRzq8I,26868
|
|
515
|
+
tencentcloud/tbaas/v20180416/tbaas_client.py,sha256=Ksml372lBMxHZF1kw93x_z35FFtU6Ud6TgD33v30AMM,4820
|
|
511
516
|
tencentcloud/tcaplusdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
517
|
tencentcloud/tcaplusdb/v20190823/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
513
518
|
tencentcloud/tcaplusdb/v20190823/errorcodes.py,sha256=2Pn_tBRYw7SnyhN9m6NQcVadxYyMSfx3UQuDgcd6tmY,3747
|
|
@@ -627,7 +632,7 @@ tencentcloud/vm/v20210922/vm_client.py,sha256=53nQQvsMw6P7gPdNxFUCicBi9Ed0wnY7dz
|
|
|
627
632
|
tencentcloud/vod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
628
633
|
tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
629
634
|
tencentcloud/vod/v20180717/errorcodes.py,sha256=T1qEKCUfUBM4sHDxCxnfjIpHIm5GMGuiAXh_rhmGZRs,27980
|
|
630
|
-
tencentcloud/vod/v20180717/models.py,sha256=
|
|
635
|
+
tencentcloud/vod/v20180717/models.py,sha256=z9UqnMeJnhYwkKO5uzB1DkjRvkex11zhENKyVorZ3jo,2931769
|
|
631
636
|
tencentcloud/vod/v20180717/vod_client.py,sha256=DMxebnzLEsU2E6nf1j4WZxEQu_D8kHOgqT9W8g9dTG8,201269
|
|
632
637
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
633
638
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -642,14 +647,14 @@ tencentcloud/waf/v20180125/waf_client.py,sha256=NcnNTHFQd7eSB6kyP9KUIahawZLlWCi7
|
|
|
642
647
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
643
648
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
644
649
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=nqjLl2GjTvhMFNWtn38iKzZIm5w2DMVJ5Fw5Hnh5SUM,3879
|
|
645
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
|
646
|
-
tencentcloud/wedata/v20210820/wedata_client.py,sha256=
|
|
650
|
+
tencentcloud/wedata/v20210820/models.py,sha256=VsPExcqZnRFDH3r_B7dQX7FnL_XZs18DkB_LdNwl3r8,2536236
|
|
651
|
+
tencentcloud/wedata/v20210820/wedata_client.py,sha256=uX2cG_SZq4u06JbbUPhb09XsZQ-5NaFf1uDg4k8XDm4,221392
|
|
647
652
|
tencentcloud/yunjing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
648
653
|
tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
649
654
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
650
655
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
651
656
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
652
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
653
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
654
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
655
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
657
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/METADATA,sha256=VUV88_puUqoWk4v11SMrIlG2FeS0x8y5DgcoTnWUINU,1628
|
|
658
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
659
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
660
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/RECORD,,
|
|
File without changes
|