tencentcloud-sdk-python 3.0.1433__py2.py3-none-any.whl → 3.0.1435__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 might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/v20220105/models.py +156 -2
- tencentcloud/cam/v20190116/cam_client.py +23 -0
- tencentcloud/cam/v20190116/errorcodes.py +15 -0
- tencentcloud/cam/v20190116/models.py +180 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -1
- tencentcloud/cdb/v20170320/models.py +62 -44
- tencentcloud/cfs/v20190719/cfs_client.py +299 -0
- tencentcloud/cfs/v20190719/errorcodes.py +54 -0
- tencentcloud/cfs/v20190719/models.py +4437 -1976
- tencentcloud/clb/v20180317/models.py +44 -14
- tencentcloud/cls/v20201016/models.py +348 -132
- tencentcloud/ctem/v20231128/models.py +405 -15
- tencentcloud/kms/v20190118/models.py +2 -2
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lowcode/v20210108/lowcode_client.py +92 -0
- tencentcloud/lowcode/v20210108/models.py +423 -0
- tencentcloud/ssl/v20191205/errorcodes.py +1 -1
- tencentcloud/ssl/v20191205/models.py +39 -24
- tencentcloud/teo/v20220901/models.py +42 -2
- tencentcloud/wedata/v20210820/models.py +336 -15
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/RECORD +27 -27
- {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/top_level.txt +0 -0
|
@@ -34824,6 +34824,8 @@ class DescribeProjectUsersRequest(AbstractModel):
|
|
|
34824
34824
|
|
|
34825
34825
|
def __init__(self):
|
|
34826
34826
|
r"""
|
|
34827
|
+
:param _ProjectId: 项目id
|
|
34828
|
+
:type ProjectId: str
|
|
34827
34829
|
:param _PageNumber: 分页号
|
|
34828
34830
|
:type PageNumber: int
|
|
34829
34831
|
:param _PageSize: 分页大小
|
|
@@ -34835,12 +34837,24 @@ class DescribeProjectUsersRequest(AbstractModel):
|
|
|
34835
34837
|
:param _IsProjectAdmin: 是否项目管理员
|
|
34836
34838
|
:type IsProjectAdmin: bool
|
|
34837
34839
|
"""
|
|
34840
|
+
self._ProjectId = None
|
|
34838
34841
|
self._PageNumber = None
|
|
34839
34842
|
self._PageSize = None
|
|
34840
34843
|
self._Filters = None
|
|
34841
34844
|
self._OrderFields = None
|
|
34842
34845
|
self._IsProjectAdmin = None
|
|
34843
34846
|
|
|
34847
|
+
@property
|
|
34848
|
+
def ProjectId(self):
|
|
34849
|
+
"""项目id
|
|
34850
|
+
:rtype: str
|
|
34851
|
+
"""
|
|
34852
|
+
return self._ProjectId
|
|
34853
|
+
|
|
34854
|
+
@ProjectId.setter
|
|
34855
|
+
def ProjectId(self, ProjectId):
|
|
34856
|
+
self._ProjectId = ProjectId
|
|
34857
|
+
|
|
34844
34858
|
@property
|
|
34845
34859
|
def PageNumber(self):
|
|
34846
34860
|
"""分页号
|
|
@@ -34898,6 +34912,7 @@ class DescribeProjectUsersRequest(AbstractModel):
|
|
|
34898
34912
|
|
|
34899
34913
|
|
|
34900
34914
|
def _deserialize(self, params):
|
|
34915
|
+
self._ProjectId = params.get("ProjectId")
|
|
34901
34916
|
self._PageNumber = params.get("PageNumber")
|
|
34902
34917
|
self._PageSize = params.get("PageSize")
|
|
34903
34918
|
if params.get("Filters") is not None:
|
|
@@ -36504,8 +36519,6 @@ class DescribeReportTaskListRequest(AbstractModel):
|
|
|
36504
36519
|
:type PageNum: int
|
|
36505
36520
|
:param _PageSize: 每页条数
|
|
36506
36521
|
:type PageSize: int
|
|
36507
|
-
:param _TenantId: 租户id
|
|
36508
|
-
:type TenantId: str
|
|
36509
36522
|
:param _ProjectId: 项目id
|
|
36510
36523
|
:type ProjectId: str
|
|
36511
36524
|
:param _TaskId: 任务id
|
|
@@ -36527,7 +36540,6 @@ class DescribeReportTaskListRequest(AbstractModel):
|
|
|
36527
36540
|
"""
|
|
36528
36541
|
self._PageNum = None
|
|
36529
36542
|
self._PageSize = None
|
|
36530
|
-
self._TenantId = None
|
|
36531
36543
|
self._ProjectId = None
|
|
36532
36544
|
self._TaskId = None
|
|
36533
36545
|
self._InstanceId = None
|
|
@@ -36560,17 +36572,6 @@ class DescribeReportTaskListRequest(AbstractModel):
|
|
|
36560
36572
|
def PageSize(self, PageSize):
|
|
36561
36573
|
self._PageSize = PageSize
|
|
36562
36574
|
|
|
36563
|
-
@property
|
|
36564
|
-
def TenantId(self):
|
|
36565
|
-
"""租户id
|
|
36566
|
-
:rtype: str
|
|
36567
|
-
"""
|
|
36568
|
-
return self._TenantId
|
|
36569
|
-
|
|
36570
|
-
@TenantId.setter
|
|
36571
|
-
def TenantId(self, TenantId):
|
|
36572
|
-
self._TenantId = TenantId
|
|
36573
|
-
|
|
36574
36575
|
@property
|
|
36575
36576
|
def ProjectId(self):
|
|
36576
36577
|
"""项目id
|
|
@@ -36674,7 +36675,6 @@ class DescribeReportTaskListRequest(AbstractModel):
|
|
|
36674
36675
|
def _deserialize(self, params):
|
|
36675
36676
|
self._PageNum = params.get("PageNum")
|
|
36676
36677
|
self._PageSize = params.get("PageSize")
|
|
36677
|
-
self._TenantId = params.get("TenantId")
|
|
36678
36678
|
self._ProjectId = params.get("ProjectId")
|
|
36679
36679
|
self._TaskId = params.get("TaskId")
|
|
36680
36680
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -40829,6 +40829,105 @@ class DescribeSuccessorOpsTaskInfosResponse(AbstractModel):
|
|
|
40829
40829
|
self._RequestId = params.get("RequestId")
|
|
40830
40830
|
|
|
40831
40831
|
|
|
40832
|
+
class DescribeSuccessorTaskInfoListRequest(AbstractModel):
|
|
40833
|
+
"""DescribeSuccessorTaskInfoList请求参数结构体
|
|
40834
|
+
|
|
40835
|
+
"""
|
|
40836
|
+
|
|
40837
|
+
def __init__(self):
|
|
40838
|
+
r"""
|
|
40839
|
+
:param _TaskIds: 任务id集合
|
|
40840
|
+
:type TaskIds: list of str
|
|
40841
|
+
:param _ProjectId: 项目id
|
|
40842
|
+
:type ProjectId: str
|
|
40843
|
+
"""
|
|
40844
|
+
self._TaskIds = None
|
|
40845
|
+
self._ProjectId = None
|
|
40846
|
+
|
|
40847
|
+
@property
|
|
40848
|
+
def TaskIds(self):
|
|
40849
|
+
"""任务id集合
|
|
40850
|
+
:rtype: list of str
|
|
40851
|
+
"""
|
|
40852
|
+
return self._TaskIds
|
|
40853
|
+
|
|
40854
|
+
@TaskIds.setter
|
|
40855
|
+
def TaskIds(self, TaskIds):
|
|
40856
|
+
self._TaskIds = TaskIds
|
|
40857
|
+
|
|
40858
|
+
@property
|
|
40859
|
+
def ProjectId(self):
|
|
40860
|
+
"""项目id
|
|
40861
|
+
:rtype: str
|
|
40862
|
+
"""
|
|
40863
|
+
return self._ProjectId
|
|
40864
|
+
|
|
40865
|
+
@ProjectId.setter
|
|
40866
|
+
def ProjectId(self, ProjectId):
|
|
40867
|
+
self._ProjectId = ProjectId
|
|
40868
|
+
|
|
40869
|
+
|
|
40870
|
+
def _deserialize(self, params):
|
|
40871
|
+
self._TaskIds = params.get("TaskIds")
|
|
40872
|
+
self._ProjectId = params.get("ProjectId")
|
|
40873
|
+
memeber_set = set(params.keys())
|
|
40874
|
+
for name, value in vars(self).items():
|
|
40875
|
+
property_name = name[1:]
|
|
40876
|
+
if property_name in memeber_set:
|
|
40877
|
+
memeber_set.remove(property_name)
|
|
40878
|
+
if len(memeber_set) > 0:
|
|
40879
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
40880
|
+
|
|
40881
|
+
|
|
40882
|
+
|
|
40883
|
+
class DescribeSuccessorTaskInfoListResponse(AbstractModel):
|
|
40884
|
+
"""DescribeSuccessorTaskInfoList返回参数结构体
|
|
40885
|
+
|
|
40886
|
+
"""
|
|
40887
|
+
|
|
40888
|
+
def __init__(self):
|
|
40889
|
+
r"""
|
|
40890
|
+
:param _Data: 出参
|
|
40891
|
+
:type Data: list of SuccessorTaskInfo
|
|
40892
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
40893
|
+
:type RequestId: str
|
|
40894
|
+
"""
|
|
40895
|
+
self._Data = None
|
|
40896
|
+
self._RequestId = None
|
|
40897
|
+
|
|
40898
|
+
@property
|
|
40899
|
+
def Data(self):
|
|
40900
|
+
"""出参
|
|
40901
|
+
:rtype: list of SuccessorTaskInfo
|
|
40902
|
+
"""
|
|
40903
|
+
return self._Data
|
|
40904
|
+
|
|
40905
|
+
@Data.setter
|
|
40906
|
+
def Data(self, Data):
|
|
40907
|
+
self._Data = Data
|
|
40908
|
+
|
|
40909
|
+
@property
|
|
40910
|
+
def RequestId(self):
|
|
40911
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
40912
|
+
:rtype: str
|
|
40913
|
+
"""
|
|
40914
|
+
return self._RequestId
|
|
40915
|
+
|
|
40916
|
+
@RequestId.setter
|
|
40917
|
+
def RequestId(self, RequestId):
|
|
40918
|
+
self._RequestId = RequestId
|
|
40919
|
+
|
|
40920
|
+
|
|
40921
|
+
def _deserialize(self, params):
|
|
40922
|
+
if params.get("Data") is not None:
|
|
40923
|
+
self._Data = []
|
|
40924
|
+
for item in params.get("Data"):
|
|
40925
|
+
obj = SuccessorTaskInfo()
|
|
40926
|
+
obj._deserialize(item)
|
|
40927
|
+
self._Data.append(obj)
|
|
40928
|
+
self._RequestId = params.get("RequestId")
|
|
40929
|
+
|
|
40930
|
+
|
|
40832
40931
|
class DescribeTableBasicInfoRequest(AbstractModel):
|
|
40833
40932
|
"""DescribeTableBasicInfo请求参数结构体
|
|
40834
40933
|
|
|
@@ -92510,6 +92609,228 @@ class SubscribeWebHook(AbstractModel):
|
|
|
92510
92609
|
|
|
92511
92610
|
|
|
92512
92611
|
|
|
92612
|
+
class SuccessorTaskInfo(AbstractModel):
|
|
92613
|
+
"""下游任务列表
|
|
92614
|
+
|
|
92615
|
+
"""
|
|
92616
|
+
|
|
92617
|
+
def __init__(self):
|
|
92618
|
+
r"""
|
|
92619
|
+
:param _TaskId: 任务id
|
|
92620
|
+
:type TaskId: str
|
|
92621
|
+
:param _WorkflowId: 所属工作流id
|
|
92622
|
+
:type WorkflowId: str
|
|
92623
|
+
:param _TaskName: 任务名
|
|
92624
|
+
:type TaskName: str
|
|
92625
|
+
:param _Layer: 层级,0表示当前任务
|
|
92626
|
+
:type Layer: int
|
|
92627
|
+
:param _Status: 任务状态
|
|
92628
|
+
:type Status: str
|
|
92629
|
+
:param _TaskTypeId: 任务类型,-1表示跨流任务
|
|
92630
|
+
:type TaskTypeId: int
|
|
92631
|
+
:param _InCharge: 责任人
|
|
92632
|
+
:type InCharge: str
|
|
92633
|
+
:param _ProjectId: 项目id
|
|
92634
|
+
:type ProjectId: str
|
|
92635
|
+
:param _ProjectName: 项目名称
|
|
92636
|
+
:type ProjectName: str
|
|
92637
|
+
:param _WorkflowName: 所属工作流名称
|
|
92638
|
+
:type WorkflowName: str
|
|
92639
|
+
:param _CycleUnit: 周期单位
|
|
92640
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92641
|
+
:type CycleUnit: str
|
|
92642
|
+
:param _ScheduleDesc: 调度计划
|
|
92643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92644
|
+
:type ScheduleDesc: str
|
|
92645
|
+
:param _TaskTypeDesc: 任务类型描述
|
|
92646
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92647
|
+
:type TaskTypeDesc: str
|
|
92648
|
+
"""
|
|
92649
|
+
self._TaskId = None
|
|
92650
|
+
self._WorkflowId = None
|
|
92651
|
+
self._TaskName = None
|
|
92652
|
+
self._Layer = None
|
|
92653
|
+
self._Status = None
|
|
92654
|
+
self._TaskTypeId = None
|
|
92655
|
+
self._InCharge = None
|
|
92656
|
+
self._ProjectId = None
|
|
92657
|
+
self._ProjectName = None
|
|
92658
|
+
self._WorkflowName = None
|
|
92659
|
+
self._CycleUnit = None
|
|
92660
|
+
self._ScheduleDesc = None
|
|
92661
|
+
self._TaskTypeDesc = None
|
|
92662
|
+
|
|
92663
|
+
@property
|
|
92664
|
+
def TaskId(self):
|
|
92665
|
+
"""任务id
|
|
92666
|
+
:rtype: str
|
|
92667
|
+
"""
|
|
92668
|
+
return self._TaskId
|
|
92669
|
+
|
|
92670
|
+
@TaskId.setter
|
|
92671
|
+
def TaskId(self, TaskId):
|
|
92672
|
+
self._TaskId = TaskId
|
|
92673
|
+
|
|
92674
|
+
@property
|
|
92675
|
+
def WorkflowId(self):
|
|
92676
|
+
"""所属工作流id
|
|
92677
|
+
:rtype: str
|
|
92678
|
+
"""
|
|
92679
|
+
return self._WorkflowId
|
|
92680
|
+
|
|
92681
|
+
@WorkflowId.setter
|
|
92682
|
+
def WorkflowId(self, WorkflowId):
|
|
92683
|
+
self._WorkflowId = WorkflowId
|
|
92684
|
+
|
|
92685
|
+
@property
|
|
92686
|
+
def TaskName(self):
|
|
92687
|
+
"""任务名
|
|
92688
|
+
:rtype: str
|
|
92689
|
+
"""
|
|
92690
|
+
return self._TaskName
|
|
92691
|
+
|
|
92692
|
+
@TaskName.setter
|
|
92693
|
+
def TaskName(self, TaskName):
|
|
92694
|
+
self._TaskName = TaskName
|
|
92695
|
+
|
|
92696
|
+
@property
|
|
92697
|
+
def Layer(self):
|
|
92698
|
+
"""层级,0表示当前任务
|
|
92699
|
+
:rtype: int
|
|
92700
|
+
"""
|
|
92701
|
+
return self._Layer
|
|
92702
|
+
|
|
92703
|
+
@Layer.setter
|
|
92704
|
+
def Layer(self, Layer):
|
|
92705
|
+
self._Layer = Layer
|
|
92706
|
+
|
|
92707
|
+
@property
|
|
92708
|
+
def Status(self):
|
|
92709
|
+
"""任务状态
|
|
92710
|
+
:rtype: str
|
|
92711
|
+
"""
|
|
92712
|
+
return self._Status
|
|
92713
|
+
|
|
92714
|
+
@Status.setter
|
|
92715
|
+
def Status(self, Status):
|
|
92716
|
+
self._Status = Status
|
|
92717
|
+
|
|
92718
|
+
@property
|
|
92719
|
+
def TaskTypeId(self):
|
|
92720
|
+
"""任务类型,-1表示跨流任务
|
|
92721
|
+
:rtype: int
|
|
92722
|
+
"""
|
|
92723
|
+
return self._TaskTypeId
|
|
92724
|
+
|
|
92725
|
+
@TaskTypeId.setter
|
|
92726
|
+
def TaskTypeId(self, TaskTypeId):
|
|
92727
|
+
self._TaskTypeId = TaskTypeId
|
|
92728
|
+
|
|
92729
|
+
@property
|
|
92730
|
+
def InCharge(self):
|
|
92731
|
+
"""责任人
|
|
92732
|
+
:rtype: str
|
|
92733
|
+
"""
|
|
92734
|
+
return self._InCharge
|
|
92735
|
+
|
|
92736
|
+
@InCharge.setter
|
|
92737
|
+
def InCharge(self, InCharge):
|
|
92738
|
+
self._InCharge = InCharge
|
|
92739
|
+
|
|
92740
|
+
@property
|
|
92741
|
+
def ProjectId(self):
|
|
92742
|
+
"""项目id
|
|
92743
|
+
:rtype: str
|
|
92744
|
+
"""
|
|
92745
|
+
return self._ProjectId
|
|
92746
|
+
|
|
92747
|
+
@ProjectId.setter
|
|
92748
|
+
def ProjectId(self, ProjectId):
|
|
92749
|
+
self._ProjectId = ProjectId
|
|
92750
|
+
|
|
92751
|
+
@property
|
|
92752
|
+
def ProjectName(self):
|
|
92753
|
+
"""项目名称
|
|
92754
|
+
:rtype: str
|
|
92755
|
+
"""
|
|
92756
|
+
return self._ProjectName
|
|
92757
|
+
|
|
92758
|
+
@ProjectName.setter
|
|
92759
|
+
def ProjectName(self, ProjectName):
|
|
92760
|
+
self._ProjectName = ProjectName
|
|
92761
|
+
|
|
92762
|
+
@property
|
|
92763
|
+
def WorkflowName(self):
|
|
92764
|
+
"""所属工作流名称
|
|
92765
|
+
:rtype: str
|
|
92766
|
+
"""
|
|
92767
|
+
return self._WorkflowName
|
|
92768
|
+
|
|
92769
|
+
@WorkflowName.setter
|
|
92770
|
+
def WorkflowName(self, WorkflowName):
|
|
92771
|
+
self._WorkflowName = WorkflowName
|
|
92772
|
+
|
|
92773
|
+
@property
|
|
92774
|
+
def CycleUnit(self):
|
|
92775
|
+
"""周期单位
|
|
92776
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92777
|
+
:rtype: str
|
|
92778
|
+
"""
|
|
92779
|
+
return self._CycleUnit
|
|
92780
|
+
|
|
92781
|
+
@CycleUnit.setter
|
|
92782
|
+
def CycleUnit(self, CycleUnit):
|
|
92783
|
+
self._CycleUnit = CycleUnit
|
|
92784
|
+
|
|
92785
|
+
@property
|
|
92786
|
+
def ScheduleDesc(self):
|
|
92787
|
+
"""调度计划
|
|
92788
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92789
|
+
:rtype: str
|
|
92790
|
+
"""
|
|
92791
|
+
return self._ScheduleDesc
|
|
92792
|
+
|
|
92793
|
+
@ScheduleDesc.setter
|
|
92794
|
+
def ScheduleDesc(self, ScheduleDesc):
|
|
92795
|
+
self._ScheduleDesc = ScheduleDesc
|
|
92796
|
+
|
|
92797
|
+
@property
|
|
92798
|
+
def TaskTypeDesc(self):
|
|
92799
|
+
"""任务类型描述
|
|
92800
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
92801
|
+
:rtype: str
|
|
92802
|
+
"""
|
|
92803
|
+
return self._TaskTypeDesc
|
|
92804
|
+
|
|
92805
|
+
@TaskTypeDesc.setter
|
|
92806
|
+
def TaskTypeDesc(self, TaskTypeDesc):
|
|
92807
|
+
self._TaskTypeDesc = TaskTypeDesc
|
|
92808
|
+
|
|
92809
|
+
|
|
92810
|
+
def _deserialize(self, params):
|
|
92811
|
+
self._TaskId = params.get("TaskId")
|
|
92812
|
+
self._WorkflowId = params.get("WorkflowId")
|
|
92813
|
+
self._TaskName = params.get("TaskName")
|
|
92814
|
+
self._Layer = params.get("Layer")
|
|
92815
|
+
self._Status = params.get("Status")
|
|
92816
|
+
self._TaskTypeId = params.get("TaskTypeId")
|
|
92817
|
+
self._InCharge = params.get("InCharge")
|
|
92818
|
+
self._ProjectId = params.get("ProjectId")
|
|
92819
|
+
self._ProjectName = params.get("ProjectName")
|
|
92820
|
+
self._WorkflowName = params.get("WorkflowName")
|
|
92821
|
+
self._CycleUnit = params.get("CycleUnit")
|
|
92822
|
+
self._ScheduleDesc = params.get("ScheduleDesc")
|
|
92823
|
+
self._TaskTypeDesc = params.get("TaskTypeDesc")
|
|
92824
|
+
memeber_set = set(params.keys())
|
|
92825
|
+
for name, value in vars(self).items():
|
|
92826
|
+
property_name = name[1:]
|
|
92827
|
+
if property_name in memeber_set:
|
|
92828
|
+
memeber_set.remove(property_name)
|
|
92829
|
+
if len(memeber_set) > 0:
|
|
92830
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
92831
|
+
|
|
92832
|
+
|
|
92833
|
+
|
|
92513
92834
|
class SuspendIntegrationTaskRequest(AbstractModel):
|
|
92514
92835
|
"""SuspendIntegrationTask请求参数结构体
|
|
92515
92836
|
|
|
@@ -4010,6 +4010,29 @@ class WedataClient(AbstractClient):
|
|
|
4010
4010
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4011
4011
|
|
|
4012
4012
|
|
|
4013
|
+
def DescribeSuccessorTaskInfoList(self, request):
|
|
4014
|
+
"""获取下游任务信息批量
|
|
4015
|
+
|
|
4016
|
+
:param request: Request instance for DescribeSuccessorTaskInfoList.
|
|
4017
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeSuccessorTaskInfoListRequest`
|
|
4018
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeSuccessorTaskInfoListResponse`
|
|
4019
|
+
|
|
4020
|
+
"""
|
|
4021
|
+
try:
|
|
4022
|
+
params = request._serialize()
|
|
4023
|
+
headers = request.headers
|
|
4024
|
+
body = self.call("DescribeSuccessorTaskInfoList", params, headers=headers)
|
|
4025
|
+
response = json.loads(body)
|
|
4026
|
+
model = models.DescribeSuccessorTaskInfoListResponse()
|
|
4027
|
+
model._deserialize(response["Response"])
|
|
4028
|
+
return model
|
|
4029
|
+
except Exception as e:
|
|
4030
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4031
|
+
raise
|
|
4032
|
+
else:
|
|
4033
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4034
|
+
|
|
4035
|
+
|
|
4013
4036
|
def DescribeTableBasicInfo(self, request):
|
|
4014
4037
|
"""元数据模型-表基础信息查询接口
|
|
4015
4038
|
|
{tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/RECORD
RENAMED
|
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
|
53
|
-
tencentcloud/__init__.py,sha256=
|
|
53
|
+
tencentcloud/__init__.py,sha256=v3vHuv63cVKOGn2Vykz39zo-s5WPverBRH2BrFpMzhU,631
|
|
54
54
|
tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
56
|
tencentcloud/aai/v20180522/aai_client.py,sha256=TS0CfKHCyAf0JjZWSnoCkz26lWtT4jwp9-usOLcAJEE,5470
|
|
@@ -174,7 +174,7 @@ tencentcloud/bi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
174
174
|
tencentcloud/bi/v20220105/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
175
|
tencentcloud/bi/v20220105/bi_client.py,sha256=UwkoZVYMaGM1ty-c98S6Ks5I7KsXZauBaOz-uN8Mtt0,22032
|
|
176
176
|
tencentcloud/bi/v20220105/errorcodes.py,sha256=5w1GmMqeh_fnWW2WtmlhwANz4S-NEXDJf8_Q_i7tMb4,2101
|
|
177
|
-
tencentcloud/bi/v20220105/models.py,sha256=
|
|
177
|
+
tencentcloud/bi/v20220105/models.py,sha256=EOLSrHsu_hVlQ5pgtyhSBxi6D_pHMIBXeBH3xl1by0c,295055
|
|
178
178
|
tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
179
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
180
|
tencentcloud/billing/v20180709/billing_client.py,sha256=as0y2r0xmwmxcDvETItDrgLXeyY0lKk19cEv6jukAmk,55029
|
|
@@ -245,9 +245,9 @@ tencentcloud/ca/v20230228/errorcodes.py,sha256=r7HtYC3kpkJS1B0zVNNDFjsO7C3QP8Dwz
|
|
|
245
245
|
tencentcloud/ca/v20230228/models.py,sha256=t6dY9S2A7Lyhv_bxyGbseag8s94x4QaOsBaULwBKoNc,16933
|
|
246
246
|
tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
247
|
tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
248
|
-
tencentcloud/cam/v20190116/cam_client.py,sha256=
|
|
249
|
-
tencentcloud/cam/v20190116/errorcodes.py,sha256=
|
|
250
|
-
tencentcloud/cam/v20190116/models.py,sha256=
|
|
248
|
+
tencentcloud/cam/v20190116/cam_client.py,sha256=YVjVxjHFBPKISqn4GKpIZVrPDN4I7iN2qh3_ppAOH74,83873
|
|
249
|
+
tencentcloud/cam/v20190116/errorcodes.py,sha256=lu9yaWu7Iv5LHbBf2m1sFPsTsazfUkN6m3shNu6xwdM,13462
|
|
250
|
+
tencentcloud/cam/v20190116/models.py,sha256=gyFkWMDXWBJfX5yoxdVko5HyU2UwmiIWe4PCEopDGGg,403033
|
|
251
251
|
tencentcloud/captcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
252
|
tencentcloud/captcha/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
253
|
tencentcloud/captcha/v20190722/captcha_client.py,sha256=OKFB6LWNzDbeHg26AhixNYsI8sgCNcSneES_DHQ8Puk,18780
|
|
@@ -275,9 +275,9 @@ tencentcloud/ccc/v20200210/errorcodes.py,sha256=Vkoj4I3eOZ5bijiXLpGX97G0NAncJVBo
|
|
|
275
275
|
tencentcloud/ccc/v20200210/models.py,sha256=2voEgcRQdgQb92UuXThWz49_QfcL-HaWXGWQPjPbWJA,555734
|
|
276
276
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
277
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
-
tencentcloud/cdb/v20170320/cdb_client.py,sha256=
|
|
278
|
+
tencentcloud/cdb/v20170320/cdb_client.py,sha256=Djhtu8DgT84kh3VpmuuDyfn8jI027yPi_J-Z4mb6KOc,176438
|
|
279
279
|
tencentcloud/cdb/v20170320/errorcodes.py,sha256=l7DI75aQ42t34gyB2QgU-Hfx9IoALpZuZo1mZPcUtd4,20991
|
|
280
|
-
tencentcloud/cdb/v20170320/models.py,sha256=
|
|
280
|
+
tencentcloud/cdb/v20170320/models.py,sha256=FZgNkV8GmUtBxeG_tr-T6I2unRE3ReitK1xYgIpLk_c,1294347
|
|
281
281
|
tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
282
282
|
tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
283
|
tencentcloud/cdc/v20201214/cdc_client.py,sha256=so0qCYvQFt8BNQ5ZXogenM23WZ4v6v_K51B7bBPFpl4,22415
|
|
@@ -320,9 +320,9 @@ tencentcloud/cfg/v20210820/errorcodes.py,sha256=t_Sp8kvG2XvgqXZAQHgzAdA-lJ-17oLJ
|
|
|
320
320
|
tencentcloud/cfg/v20210820/models.py,sha256=zX5WPUnM7s_Oc5AXW8ah2cip1XXMp0PAs5w9qlX3umk,229158
|
|
321
321
|
tencentcloud/cfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
322
|
tencentcloud/cfs/v20190719/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
|
-
tencentcloud/cfs/v20190719/cfs_client.py,sha256=
|
|
324
|
-
tencentcloud/cfs/v20190719/errorcodes.py,sha256=
|
|
325
|
-
tencentcloud/cfs/v20190719/models.py,sha256=
|
|
323
|
+
tencentcloud/cfs/v20190719/cfs_client.py,sha256=QeA9xzG2Rbn79xyvYRA8RnsFUEiiZQwbaHCfmRuWg98,54078
|
|
324
|
+
tencentcloud/cfs/v20190719/errorcodes.py,sha256=G2_9LND9nKDFV7b0R4coazLZBaN6vgg8zsayFWc-2FA,19141
|
|
325
|
+
tencentcloud/cfs/v20190719/models.py,sha256=K37K-bn-_tqDJN-3PhMgAf5Ceox-E6HrMPdNSDMKsqk,347198
|
|
326
326
|
tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
327
|
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
328
|
tencentcloud/cfw/v20190904/cfw_client.py,sha256=hcRSlhJQr4n8Ad7labsZDt561QmfU0n0vs7_xk9f-aI,106635
|
|
@@ -370,7 +370,7 @@ tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
370
370
|
tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
371
|
tencentcloud/clb/v20180317/clb_client.py,sha256=EUCvrESdrdJwxdrAyIgVqfeINDLm2ALob2qKZBmcqqU,105719
|
|
372
372
|
tencentcloud/clb/v20180317/errorcodes.py,sha256=g5ByBFWzZ16f3B1sraVKaCtxgslLzI9T02A6bSxQcsk,3989
|
|
373
|
-
tencentcloud/clb/v20180317/models.py,sha256=
|
|
373
|
+
tencentcloud/clb/v20180317/models.py,sha256=xjv3PozuZ5Qu1XnltyI4e4Lbicb2qZGUUwjZRfvYhN4,778654
|
|
374
374
|
tencentcloud/cloudapp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
375
|
tencentcloud/cloudapp/v20220530/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
376
376
|
tencentcloud/cloudapp/v20220530/cloudapp_client.py,sha256=T2kAiSdfn-20h8Ph3LvWDldSZhTeXKj1aYMSCskKb1o,1859
|
|
@@ -395,7 +395,7 @@ tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
395
395
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
396
396
|
tencentcloud/cls/v20201016/cls_client.py,sha256=QcgafecS2jPCMMe23PArPy2qeTH_EhmOqq7mmPtrgHI,112641
|
|
397
397
|
tencentcloud/cls/v20201016/errorcodes.py,sha256=6nAzlh8mO9jjTqho7CAHI2sXMDoy9mnx-GlQcBgNVNE,11213
|
|
398
|
-
tencentcloud/cls/v20201016/models.py,sha256=
|
|
398
|
+
tencentcloud/cls/v20201016/models.py,sha256=i-BAJYrDWJn2AsrDah-PFekwAxb_NaQSRAd-9kHT5ys,981119
|
|
399
399
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
400
400
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
401
|
tencentcloud/cme/v20191029/cme_client.py,sha256=wSAV62NpuY2GuzCNKclWXzEbD1TMyW79CzDvDcqPcdw,55293
|
|
@@ -456,7 +456,7 @@ tencentcloud/ctem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
456
456
|
tencentcloud/ctem/v20231128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
457
|
tencentcloud/ctem/v20231128/ctem_client.py,sha256=E3N01-6XATObN_5cuVnPYRevgNoi-XJrLl8j7VTUXAg,29925
|
|
458
458
|
tencentcloud/ctem/v20231128/errorcodes.py,sha256=qk2wjYYpLmKIR_6qMdGsBZcUqOFfdbTv6UHHex6dlhk,1907
|
|
459
|
-
tencentcloud/ctem/v20231128/models.py,sha256=
|
|
459
|
+
tencentcloud/ctem/v20231128/models.py,sha256=Zw25w7OUe1FCqelJSqw6-Cb7-RkWaO3uptTGgeGmei4,369535
|
|
460
460
|
tencentcloud/ctsdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
461
461
|
tencentcloud/ctsdb/v20230202/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
462
462
|
tencentcloud/ctsdb/v20230202/ctsdb_client.py,sha256=QswYvMf27AyTE99W8kK0NkalrYC_N_qQgyeZ4Q_Vch4,2894
|
|
@@ -809,7 +809,7 @@ tencentcloud/kms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
809
809
|
tencentcloud/kms/v20190118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
810
810
|
tencentcloud/kms/v20190118/errorcodes.py,sha256=f2U3l9TotZd1fI6KIUtKrQO4wsAbpaBC6kpy8t1mBsw,6737
|
|
811
811
|
tencentcloud/kms/v20190118/kms_client.py,sha256=A5MOQAWMpXquRbrR7MQ7a_awoApRCvKORzrtdKUZsNY,64236
|
|
812
|
-
tencentcloud/kms/v20190118/models.py,sha256=
|
|
812
|
+
tencentcloud/kms/v20190118/models.py,sha256=NzqDRR-NZRwcPSdqaWcW7F_Va8DK8CwW0UTxM08vj8Q,277774
|
|
813
813
|
tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
814
814
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
815
815
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=y0SbkvrxTNhC-uPOBG-v7P9WtbDheaT5O7iTxWCZDio,4697
|
|
@@ -824,7 +824,7 @@ tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
824
824
|
tencentcloud/live/v20180801/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
825
825
|
tencentcloud/live/v20180801/errorcodes.py,sha256=4Cg82hA-9P2BOLYiaqFIXRrewkGuAjV2nUV2I6-sDOI,24295
|
|
826
826
|
tencentcloud/live/v20180801/live_client.py,sha256=AvcKOtflj3ltjNXjjsp6ttM5cFLByNr8CE8ZaV9D2kU,207028
|
|
827
|
-
tencentcloud/live/v20180801/models.py,sha256=
|
|
827
|
+
tencentcloud/live/v20180801/models.py,sha256=ox-LNhxr0xB6T29UEnggHhUhaE74emy2cgMjQUR2xDA,1290207
|
|
828
828
|
tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
829
829
|
tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
830
830
|
tencentcloud/lke/v20231130/errorcodes.py,sha256=IIzRSWC6WhNQsTE2b3WxQMT-vTEtSFlHwMNi5fMv9x4,800
|
|
@@ -838,8 +838,8 @@ tencentcloud/lkeap/v20240522/models.py,sha256=6TwMwK5vFaYW7sxgKKALbRGwwDWn4_xcu6
|
|
|
838
838
|
tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
839
839
|
tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
840
840
|
tencentcloud/lowcode/v20210108/errorcodes.py,sha256=-m2NMzBOjF_-JWgIsegp3jx0SbXm9F1bebz0l-ypMIs,1198
|
|
841
|
-
tencentcloud/lowcode/v20210108/lowcode_client.py,sha256=
|
|
842
|
-
tencentcloud/lowcode/v20210108/models.py,sha256=
|
|
841
|
+
tencentcloud/lowcode/v20210108/lowcode_client.py,sha256=A4KUMxuPtPQM_X6r2uA8H7K9j6kcg0eXDfvc9GXmojI,13635
|
|
842
|
+
tencentcloud/lowcode/v20210108/models.py,sha256=BKErUAcK-K09XL0Jdm6BT4KftYdNTbxZSPy6FHEvZyQ,131111
|
|
843
843
|
tencentcloud/mall/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
844
844
|
tencentcloud/mall/v20230518/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
845
845
|
tencentcloud/mall/v20230518/errorcodes.py,sha256=KvHs6W2GONKBsXXCjJUx8q8sqMTR7e5vr5Gx01t5b24,625
|
|
@@ -1038,8 +1038,8 @@ tencentcloud/ssa/v20180608/models.py,sha256=haRGLVJjSYNqUQMh22Uv-P8AUS2wzH7rDCBZ
|
|
|
1038
1038
|
tencentcloud/ssa/v20180608/ssa_client.py,sha256=JvN6-YFwg9rVneCP-E_5z3aeejjmkxSaQSzHHeHMLDQ,21741
|
|
1039
1039
|
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1040
1040
|
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1041
|
-
tencentcloud/ssl/v20191205/errorcodes.py,sha256=
|
|
1042
|
-
tencentcloud/ssl/v20191205/models.py,sha256=
|
|
1041
|
+
tencentcloud/ssl/v20191205/errorcodes.py,sha256=pGJHgAlpNwE43NmHJ8QA2wCh6jezqsOwryYXst_LHUs,14980
|
|
1042
|
+
tencentcloud/ssl/v20191205/models.py,sha256=zuPgab8irtstJKoYemod3d2VOcK3GiOsO0PJN0kTSi0,732273
|
|
1043
1043
|
tencentcloud/ssl/v20191205/ssl_client.py,sha256=cEX8dAp3cOypis7Tv6itfHzGVoHf-WB2APTOolEcZVU,68338
|
|
1044
1044
|
tencentcloud/sslpod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1045
1045
|
tencentcloud/sslpod/v20190605/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1166,7 +1166,7 @@ tencentcloud/teo/v20220106/models.py,sha256=LPkapAl_e0sRv0FwGjiJpg_1sRAhsux91K6O
|
|
|
1166
1166
|
tencentcloud/teo/v20220106/teo_client.py,sha256=5YYU3yJzfhcENPA18d3bNL6YUBVS2WaR8xvlqS0DOGc,5508
|
|
1167
1167
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1168
1168
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=jxpIkHUqviyu6JQ8Jm_wdhKmQGngcTa2M8w-MA3VHKY,58196
|
|
1169
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
|
1169
|
+
tencentcloud/teo/v20220901/models.py,sha256=l1A2aguJroha-XQultxqVBlCp0e0etMC-acUDlxskBk,1795416
|
|
1170
1170
|
tencentcloud/teo/v20220901/teo_client.py,sha256=FuuBW3nbisJAOqq0_yKABNR2q0NZ4jcyo4vMevfQvxo,176489
|
|
1171
1171
|
tencentcloud/thpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1172
1172
|
tencentcloud/thpc/v20211109/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1367,8 +1367,8 @@ tencentcloud/wav/v20210129/wav_client.py,sha256=QtF-tqavJuw9k9u1kBCqaOz9z9Nkp_Bj
|
|
|
1367
1367
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1368
1368
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1369
1369
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=SAbHYme6LwXn93SsJ5lwjs5V_Tc5Q9mnJMnQxBzW69k,5032
|
|
1370
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
|
1371
|
-
tencentcloud/wedata/v20210820/wedata_client.py,sha256=
|
|
1370
|
+
tencentcloud/wedata/v20210820/models.py,sha256=Nl66j7PFxXMkBg0GxXkdVzZ4wXxfqsrAhy0MXgUpsDQ,3383727
|
|
1371
|
+
tencentcloud/wedata/v20210820/wedata_client.py,sha256=WoL9A11AiA-njrQNTsVT714cozQOIMy37g3t52sOvBk,275871
|
|
1372
1372
|
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1373
1373
|
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1374
1374
|
tencentcloud/weilingwith/v20230427/errorcodes.py,sha256=0MCGlncQUFA9gdysPEea0_Yhh9Rzawyy1akmTNFXHgw,8506
|
|
@@ -1403,8 +1403,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
1403
1403
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
|
|
1404
1404
|
tencentcloud/yunsou/v20191115/models.py,sha256=jTr6sa2LfXEBd7uOgC19JRTLBXZmLGyP3QjNfGqLPyo,27653
|
|
1405
1405
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=H2Kzv6ow4QKnLc63655ffyUZBaGSczEYf3R5UTjcjGA,2714
|
|
1406
|
-
tencentcloud_sdk_python-3.0.
|
|
1407
|
-
tencentcloud_sdk_python-3.0.
|
|
1408
|
-
tencentcloud_sdk_python-3.0.
|
|
1409
|
-
tencentcloud_sdk_python-3.0.
|
|
1410
|
-
tencentcloud_sdk_python-3.0.
|
|
1406
|
+
tencentcloud_sdk_python-3.0.1435.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
|
1407
|
+
tencentcloud_sdk_python-3.0.1435.dist-info/METADATA,sha256=pSvS18_yCRGMou7Zc6vAhSDO-YpIirnZhpTnLWoI-0E,1613
|
|
1408
|
+
tencentcloud_sdk_python-3.0.1435.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
1409
|
+
tencentcloud_sdk_python-3.0.1435.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
|
1410
|
+
tencentcloud_sdk_python-3.0.1435.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/LICENSE
RENAMED
|
File without changes
|
{tencentcloud_sdk_python-3.0.1433.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|