tencentcloud-sdk-python 3.0.1467__py2.py3-none-any.whl → 3.0.1468__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.
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1467'
17
+ __version__ = '3.0.1468'
@@ -2673,6 +2673,29 @@ class DlcClient(AbstractClient):
2673
2673
  raise TencentCloudSDKException(type(e).__name__, str(e))
2674
2674
 
2675
2675
 
2676
+ def DescribeTaskResourceUsage(self, request):
2677
+ r"""返回任务洞察资源用量
2678
+
2679
+ :param request: Request instance for DescribeTaskResourceUsage.
2680
+ :type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskResourceUsageRequest`
2681
+ :rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskResourceUsageResponse`
2682
+
2683
+ """
2684
+ try:
2685
+ params = request._serialize()
2686
+ headers = request.headers
2687
+ body = self.call("DescribeTaskResourceUsage", params, headers=headers)
2688
+ response = json.loads(body)
2689
+ model = models.DescribeTaskResourceUsageResponse()
2690
+ model._deserialize(response["Response"])
2691
+ return model
2692
+ except Exception as e:
2693
+ if isinstance(e, TencentCloudSDKException):
2694
+ raise
2695
+ else:
2696
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2697
+
2698
+
2676
2699
  def DescribeTaskResult(self, request):
2677
2700
  r"""查询任务结果,仅支持30天以内的任务查询结果,且返回数据大小超过近50M会进行截断。
2678
2701
 
@@ -173,6 +173,9 @@ INVALIDPARAMETER_BATCHSQLFILTERSKEYTYPENOTMATH = 'InvalidParameter.BatchSQLFilte
173
173
  # 交互式SQL任务指定SortBy类型不匹配,当前仅支持: create-time/resource-usage
174
174
  INVALIDPARAMETER_BATCHSQLTASKSORTBYTYPENOTMATCH = 'InvalidParameter.BatchSQLTaskSortByTypeNotMatch'
175
175
 
176
+ # 当前配置不被允许
177
+ INVALIDPARAMETER_CONFIGKEYPROHIBITED = 'InvalidParameter.ConfigKeyProhibited'
178
+
176
179
  # 指定集群资源类型不匹配,当前仅支持: spark_cu(对应Spark集群),presto_cu(对应Presto集群)
177
180
  INVALIDPARAMETER_DATAENGINECLUSTERTYPENOTMATCH = 'InvalidParameter.DataEngineClusterTypeNotMatch'
178
181
 
@@ -365,6 +368,9 @@ INVALIDPARAMETER_INVALIDMINCLUSTERS = 'InvalidParameter.InvalidMinClusters'
365
368
  # 无效的Offset值。
366
369
  INVALIDPARAMETER_INVALIDOFFSET = 'InvalidParameter.InvalidOffset'
367
370
 
371
+ # 排序列不合法
372
+ INVALIDPARAMETER_INVALIDPARAMETER_SQLTASKANALYSISSORTBYTYPENOTMATCH = 'InvalidParameter.InvalidParameter_SQLTaskAnalysisSortByTypeNotMatch'
373
+
368
374
  # 无效的计费模式。
369
375
  INVALIDPARAMETER_INVALIDPAYMODE = 'InvalidParameter.InvalidPayMode'
370
376
 
@@ -476,6 +482,9 @@ INVALIDPARAMETER_SQLBASE64DECODEFAIL = 'InvalidParameter.SQLBase64DecodeFail'
476
482
  # SQL参数预处理失败
477
483
  INVALIDPARAMETER_SQLPARAMETERPREPROCESSINGFAILED = 'InvalidParameter.SQLParameterPreprocessingFailed'
478
484
 
485
+ # 不支持的过滤类型或者参数不合法
486
+ INVALIDPARAMETER_SQLTASKANALYSISFILTERSKEYTYPENOTMATH = 'InvalidParameter.SQLTaskAnalysisFiltersKeyTypeNotMath'
487
+
479
488
  # 指定的Filter.Key不匹配,当前仅支持: task-id/task-sql-keyword/task-kind/task-operator/batch-id/session-id/task-state
480
489
  INVALIDPARAMETER_SQLTASKFILTERSKEYTYPENOTMATH = 'InvalidParameter.SQLTaskFiltersKeyTypeNotMath'
481
490
 
@@ -509,6 +518,9 @@ INVALIDPARAMETER_SPARKJOBSORTBYTYPENOTMATCH = 'InvalidParameter.SparkJobSortByTy
509
518
  # 任务已经结束,不能取消。
510
519
  INVALIDPARAMETER_TASKALREADYFINISHED = 'InvalidParameter.TaskAlreadyFinished'
511
520
 
521
+ # 任务不存在。
522
+ INVALIDPARAMETER_TASKNOTFOUND = 'InvalidParameter.TaskNotFound'
523
+
512
524
  # 指定的任务状态不匹配,当前仅支持: 0:初始化, 1:运行中, 2:成功, 3:数据写入中, 4:排队中, -1:失败, -3:删除
513
525
  INVALIDPARAMETER_TASKSTATETYPENOTMATH = 'InvalidParameter.TaskStateTypeNotMath'
514
526
 
@@ -3784,6 +3784,57 @@ class CommonMetrics(AbstractModel):
3784
3784
 
3785
3785
 
3786
3786
 
3787
+ class CoreInfo(AbstractModel):
3788
+ r"""任务 core 用量信息
3789
+
3790
+ """
3791
+
3792
+ def __init__(self):
3793
+ r"""
3794
+ :param _Timestamp: 时间戳(毫秒)数组
3795
+ :type Timestamp: list of int
3796
+ :param _CoreUsage: core 用量
3797
+ :type CoreUsage: list of int
3798
+ """
3799
+ self._Timestamp = None
3800
+ self._CoreUsage = None
3801
+
3802
+ @property
3803
+ def Timestamp(self):
3804
+ r"""时间戳(毫秒)数组
3805
+ :rtype: list of int
3806
+ """
3807
+ return self._Timestamp
3808
+
3809
+ @Timestamp.setter
3810
+ def Timestamp(self, Timestamp):
3811
+ self._Timestamp = Timestamp
3812
+
3813
+ @property
3814
+ def CoreUsage(self):
3815
+ r"""core 用量
3816
+ :rtype: list of int
3817
+ """
3818
+ return self._CoreUsage
3819
+
3820
+ @CoreUsage.setter
3821
+ def CoreUsage(self, CoreUsage):
3822
+ self._CoreUsage = CoreUsage
3823
+
3824
+
3825
+ def _deserialize(self, params):
3826
+ self._Timestamp = params.get("Timestamp")
3827
+ self._CoreUsage = params.get("CoreUsage")
3828
+ memeber_set = set(params.keys())
3829
+ for name, value in vars(self).items():
3830
+ property_name = name[1:]
3831
+ if property_name in memeber_set:
3832
+ memeber_set.remove(property_name)
3833
+ if len(memeber_set) > 0:
3834
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3835
+
3836
+
3837
+
3787
3838
  class CosPermission(AbstractModel):
3788
3839
  r"""cos权限描述
3789
3840
 
@@ -5059,11 +5110,25 @@ class CreateDataMaskStrategyResponse(AbstractModel):
5059
5110
 
5060
5111
  def __init__(self):
5061
5112
  r"""
5113
+ :param _StrategyId: 策略id
5114
+ :type StrategyId: str
5062
5115
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5063
5116
  :type RequestId: str
5064
5117
  """
5118
+ self._StrategyId = None
5065
5119
  self._RequestId = None
5066
5120
 
5121
+ @property
5122
+ def StrategyId(self):
5123
+ r"""策略id
5124
+ :rtype: str
5125
+ """
5126
+ return self._StrategyId
5127
+
5128
+ @StrategyId.setter
5129
+ def StrategyId(self, StrategyId):
5130
+ self._StrategyId = StrategyId
5131
+
5067
5132
  @property
5068
5133
  def RequestId(self):
5069
5134
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -5077,6 +5142,7 @@ class CreateDataMaskStrategyResponse(AbstractModel):
5077
5142
 
5078
5143
 
5079
5144
  def _deserialize(self, params):
5145
+ self._StrategyId = params.get("StrategyId")
5080
5146
  self._RequestId = params.get("RequestId")
5081
5147
 
5082
5148
 
@@ -7690,6 +7756,16 @@ class CreateStandardEngineResourceGroupRequest(AbstractModel):
7690
7756
  :type SparkSpecMode: str
7691
7757
  :param _SparkSize: 仅SQL资源组资源上限,仅用于快速模块
7692
7758
  :type SparkSize: int
7759
+ :param _DriverGPUSpec: GPUDriver规格
7760
+ :type DriverGPUSpec: int
7761
+ :param _ExecutorGPUSpec: GPUExecutor规格
7762
+ :type ExecutorGPUSpec: int
7763
+ :param _GPULimitSize: GPU上限
7764
+ :type GPULimitSize: int
7765
+ :param _GPUSize: GPU规格
7766
+ :type GPUSize: int
7767
+ :param _PythonGPUSpec: Pod GPU规格上限
7768
+ :type PythonGPUSpec: int
7693
7769
  """
7694
7770
  self._EngineResourceGroupName = None
7695
7771
  self._DataEngineName = None
@@ -7717,6 +7793,11 @@ class CreateStandardEngineResourceGroupRequest(AbstractModel):
7717
7793
  self._PythonCuSpec = None
7718
7794
  self._SparkSpecMode = None
7719
7795
  self._SparkSize = None
7796
+ self._DriverGPUSpec = None
7797
+ self._ExecutorGPUSpec = None
7798
+ self._GPULimitSize = None
7799
+ self._GPUSize = None
7800
+ self._PythonGPUSpec = None
7720
7801
 
7721
7802
  @property
7722
7803
  def EngineResourceGroupName(self):
@@ -8006,6 +8087,61 @@ class CreateStandardEngineResourceGroupRequest(AbstractModel):
8006
8087
  def SparkSize(self, SparkSize):
8007
8088
  self._SparkSize = SparkSize
8008
8089
 
8090
+ @property
8091
+ def DriverGPUSpec(self):
8092
+ r"""GPUDriver规格
8093
+ :rtype: int
8094
+ """
8095
+ return self._DriverGPUSpec
8096
+
8097
+ @DriverGPUSpec.setter
8098
+ def DriverGPUSpec(self, DriverGPUSpec):
8099
+ self._DriverGPUSpec = DriverGPUSpec
8100
+
8101
+ @property
8102
+ def ExecutorGPUSpec(self):
8103
+ r"""GPUExecutor规格
8104
+ :rtype: int
8105
+ """
8106
+ return self._ExecutorGPUSpec
8107
+
8108
+ @ExecutorGPUSpec.setter
8109
+ def ExecutorGPUSpec(self, ExecutorGPUSpec):
8110
+ self._ExecutorGPUSpec = ExecutorGPUSpec
8111
+
8112
+ @property
8113
+ def GPULimitSize(self):
8114
+ r"""GPU上限
8115
+ :rtype: int
8116
+ """
8117
+ return self._GPULimitSize
8118
+
8119
+ @GPULimitSize.setter
8120
+ def GPULimitSize(self, GPULimitSize):
8121
+ self._GPULimitSize = GPULimitSize
8122
+
8123
+ @property
8124
+ def GPUSize(self):
8125
+ r"""GPU规格
8126
+ :rtype: int
8127
+ """
8128
+ return self._GPUSize
8129
+
8130
+ @GPUSize.setter
8131
+ def GPUSize(self, GPUSize):
8132
+ self._GPUSize = GPUSize
8133
+
8134
+ @property
8135
+ def PythonGPUSpec(self):
8136
+ r"""Pod GPU规格上限
8137
+ :rtype: int
8138
+ """
8139
+ return self._PythonGPUSpec
8140
+
8141
+ @PythonGPUSpec.setter
8142
+ def PythonGPUSpec(self, PythonGPUSpec):
8143
+ self._PythonGPUSpec = PythonGPUSpec
8144
+
8009
8145
 
8010
8146
  def _deserialize(self, params):
8011
8147
  self._EngineResourceGroupName = params.get("EngineResourceGroupName")
@@ -8044,6 +8180,11 @@ class CreateStandardEngineResourceGroupRequest(AbstractModel):
8044
8180
  self._PythonCuSpec = params.get("PythonCuSpec")
8045
8181
  self._SparkSpecMode = params.get("SparkSpecMode")
8046
8182
  self._SparkSize = params.get("SparkSize")
8183
+ self._DriverGPUSpec = params.get("DriverGPUSpec")
8184
+ self._ExecutorGPUSpec = params.get("ExecutorGPUSpec")
8185
+ self._GPULimitSize = params.get("GPULimitSize")
8186
+ self._GPUSize = params.get("GPUSize")
8187
+ self._PythonGPUSpec = params.get("PythonGPUSpec")
8047
8188
  memeber_set = set(params.keys())
8048
8189
  for name, value in vars(self).items():
8049
8190
  property_name = name[1:]
@@ -23300,6 +23441,87 @@ class DescribeTaskMonitorInfosResponse(AbstractModel):
23300
23441
  self._RequestId = params.get("RequestId")
23301
23442
 
23302
23443
 
23444
+ class DescribeTaskResourceUsageRequest(AbstractModel):
23445
+ r"""DescribeTaskResourceUsage请求参数结构体
23446
+
23447
+ """
23448
+
23449
+ def __init__(self):
23450
+ r"""
23451
+ :param _TaskInstanceId: 任务 id
23452
+ :type TaskInstanceId: str
23453
+ """
23454
+ self._TaskInstanceId = None
23455
+
23456
+ @property
23457
+ def TaskInstanceId(self):
23458
+ r"""任务 id
23459
+ :rtype: str
23460
+ """
23461
+ return self._TaskInstanceId
23462
+
23463
+ @TaskInstanceId.setter
23464
+ def TaskInstanceId(self, TaskInstanceId):
23465
+ self._TaskInstanceId = TaskInstanceId
23466
+
23467
+
23468
+ def _deserialize(self, params):
23469
+ self._TaskInstanceId = params.get("TaskInstanceId")
23470
+ memeber_set = set(params.keys())
23471
+ for name, value in vars(self).items():
23472
+ property_name = name[1:]
23473
+ if property_name in memeber_set:
23474
+ memeber_set.remove(property_name)
23475
+ if len(memeber_set) > 0:
23476
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
23477
+
23478
+
23479
+
23480
+ class DescribeTaskResourceUsageResponse(AbstractModel):
23481
+ r"""DescribeTaskResourceUsage返回参数结构体
23482
+
23483
+ """
23484
+
23485
+ def __init__(self):
23486
+ r"""
23487
+ :param _CoreInfo: core 用量信息
23488
+ :type CoreInfo: :class:`tencentcloud.dlc.v20210125.models.CoreInfo`
23489
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23490
+ :type RequestId: str
23491
+ """
23492
+ self._CoreInfo = None
23493
+ self._RequestId = None
23494
+
23495
+ @property
23496
+ def CoreInfo(self):
23497
+ r"""core 用量信息
23498
+ :rtype: :class:`tencentcloud.dlc.v20210125.models.CoreInfo`
23499
+ """
23500
+ return self._CoreInfo
23501
+
23502
+ @CoreInfo.setter
23503
+ def CoreInfo(self, CoreInfo):
23504
+ self._CoreInfo = CoreInfo
23505
+
23506
+ @property
23507
+ def RequestId(self):
23508
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23509
+ :rtype: str
23510
+ """
23511
+ return self._RequestId
23512
+
23513
+ @RequestId.setter
23514
+ def RequestId(self, RequestId):
23515
+ self._RequestId = RequestId
23516
+
23517
+
23518
+ def _deserialize(self, params):
23519
+ if params.get("CoreInfo") is not None:
23520
+ self._CoreInfo = CoreInfo()
23521
+ self._CoreInfo._deserialize(params.get("CoreInfo"))
23522
+ self._RequestId = params.get("RequestId")
23523
+
23524
+
23303
23525
  class DescribeTaskResultRequest(AbstractModel):
23304
23526
  r"""DescribeTaskResult请求参数结构体
23305
23527
 
@@ -40530,6 +40752,8 @@ class TaskResultInfo(AbstractModel):
40530
40752
  :type TotalTime: int
40531
40753
  :param _QueryResultTime: 获取结果消耗的时间
40532
40754
  :type QueryResultTime: float
40755
+ :param _ResultSetEncode: base64 编码结果集
40756
+ :type ResultSetEncode: str
40533
40757
  """
40534
40758
  self._TaskId = None
40535
40759
  self._DatasourceConnectionName = None
@@ -40551,6 +40775,7 @@ class TaskResultInfo(AbstractModel):
40551
40775
  self._DisplayFormat = None
40552
40776
  self._TotalTime = None
40553
40777
  self._QueryResultTime = None
40778
+ self._ResultSetEncode = None
40554
40779
 
40555
40780
  @property
40556
40781
  def TaskId(self):
@@ -40773,6 +40998,17 @@ class TaskResultInfo(AbstractModel):
40773
40998
  def QueryResultTime(self, QueryResultTime):
40774
40999
  self._QueryResultTime = QueryResultTime
40775
41000
 
41001
+ @property
41002
+ def ResultSetEncode(self):
41003
+ r"""base64 编码结果集
41004
+ :rtype: str
41005
+ """
41006
+ return self._ResultSetEncode
41007
+
41008
+ @ResultSetEncode.setter
41009
+ def ResultSetEncode(self, ResultSetEncode):
41010
+ self._ResultSetEncode = ResultSetEncode
41011
+
40776
41012
 
40777
41013
  def _deserialize(self, params):
40778
41014
  self._TaskId = params.get("TaskId")
@@ -40800,6 +41036,7 @@ class TaskResultInfo(AbstractModel):
40800
41036
  self._DisplayFormat = params.get("DisplayFormat")
40801
41037
  self._TotalTime = params.get("TotalTime")
40802
41038
  self._QueryResultTime = params.get("QueryResultTime")
41039
+ self._ResultSetEncode = params.get("ResultSetEncode")
40803
41040
  memeber_set = set(params.keys())
40804
41041
  for name, value in vars(self).items():
40805
41042
  property_name = name[1:]
@@ -42499,6 +42736,16 @@ class UpdateStandardEngineResourceGroupResourceInfoRequest(AbstractModel):
42499
42736
  :type SparkSpecMode: str
42500
42737
  :param _SparkSize: 仅SQL资源组资源上限,仅用于快速模式
42501
42738
  :type SparkSize: int
42739
+ :param _DriverGPUSpec: gpuDriver规格
42740
+ :type DriverGPUSpec: int
42741
+ :param _ExecutorGPUSpec: gpuExcutor 规格
42742
+ :type ExecutorGPUSpec: int
42743
+ :param _GPULimitSize: gpu 上限
42744
+ :type GPULimitSize: int
42745
+ :param _GPUSize: gpu 规格
42746
+ :type GPUSize: int
42747
+ :param _PythonGPUSpec: gpupod 规格
42748
+ :type PythonGPUSpec: int
42502
42749
  """
42503
42750
  self._EngineResourceGroupName = None
42504
42751
  self._DriverCuSpec = None
@@ -42517,6 +42764,11 @@ class UpdateStandardEngineResourceGroupResourceInfoRequest(AbstractModel):
42517
42764
  self._PythonCuSpec = None
42518
42765
  self._SparkSpecMode = None
42519
42766
  self._SparkSize = None
42767
+ self._DriverGPUSpec = None
42768
+ self._ExecutorGPUSpec = None
42769
+ self._GPULimitSize = None
42770
+ self._GPUSize = None
42771
+ self._PythonGPUSpec = None
42520
42772
 
42521
42773
  @property
42522
42774
  def EngineResourceGroupName(self):
@@ -42707,6 +42959,61 @@ class UpdateStandardEngineResourceGroupResourceInfoRequest(AbstractModel):
42707
42959
  def SparkSize(self, SparkSize):
42708
42960
  self._SparkSize = SparkSize
42709
42961
 
42962
+ @property
42963
+ def DriverGPUSpec(self):
42964
+ r"""gpuDriver规格
42965
+ :rtype: int
42966
+ """
42967
+ return self._DriverGPUSpec
42968
+
42969
+ @DriverGPUSpec.setter
42970
+ def DriverGPUSpec(self, DriverGPUSpec):
42971
+ self._DriverGPUSpec = DriverGPUSpec
42972
+
42973
+ @property
42974
+ def ExecutorGPUSpec(self):
42975
+ r"""gpuExcutor 规格
42976
+ :rtype: int
42977
+ """
42978
+ return self._ExecutorGPUSpec
42979
+
42980
+ @ExecutorGPUSpec.setter
42981
+ def ExecutorGPUSpec(self, ExecutorGPUSpec):
42982
+ self._ExecutorGPUSpec = ExecutorGPUSpec
42983
+
42984
+ @property
42985
+ def GPULimitSize(self):
42986
+ r"""gpu 上限
42987
+ :rtype: int
42988
+ """
42989
+ return self._GPULimitSize
42990
+
42991
+ @GPULimitSize.setter
42992
+ def GPULimitSize(self, GPULimitSize):
42993
+ self._GPULimitSize = GPULimitSize
42994
+
42995
+ @property
42996
+ def GPUSize(self):
42997
+ r"""gpu 规格
42998
+ :rtype: int
42999
+ """
43000
+ return self._GPUSize
43001
+
43002
+ @GPUSize.setter
43003
+ def GPUSize(self, GPUSize):
43004
+ self._GPUSize = GPUSize
43005
+
43006
+ @property
43007
+ def PythonGPUSpec(self):
43008
+ r"""gpupod 规格
43009
+ :rtype: int
43010
+ """
43011
+ return self._PythonGPUSpec
43012
+
43013
+ @PythonGPUSpec.setter
43014
+ def PythonGPUSpec(self, PythonGPUSpec):
43015
+ self._PythonGPUSpec = PythonGPUSpec
43016
+
42710
43017
 
42711
43018
  def _deserialize(self, params):
42712
43019
  self._EngineResourceGroupName = params.get("EngineResourceGroupName")
@@ -42726,6 +43033,11 @@ class UpdateStandardEngineResourceGroupResourceInfoRequest(AbstractModel):
42726
43033
  self._PythonCuSpec = params.get("PythonCuSpec")
42727
43034
  self._SparkSpecMode = params.get("SparkSpecMode")
42728
43035
  self._SparkSize = params.get("SparkSize")
43036
+ self._DriverGPUSpec = params.get("DriverGPUSpec")
43037
+ self._ExecutorGPUSpec = params.get("ExecutorGPUSpec")
43038
+ self._GPULimitSize = params.get("GPULimitSize")
43039
+ self._GPUSize = params.get("GPUSize")
43040
+ self._PythonGPUSpec = params.get("PythonGPUSpec")
42729
43041
  memeber_set = set(params.keys())
42730
43042
  for name, value in vars(self).items():
42731
43043
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1467
3
+ Version: 3.0.1468
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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=4og373pqiyHvXcquvc04SKyEstmR9IksKyMAWpTyL6A,631
53
+ tencentcloud/__init__.py,sha256=YE_S4H6Fr5xP42o6ScTQVX6hD892crw_dw4dyGACUtw,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=yUeYfjviV9V9QBmtD5Qs1Kdjy_iSWkIrNeBabwYMCXw,5474
@@ -518,9 +518,9 @@ tencentcloud/dcdb/v20180411/errorcodes.py,sha256=y_UWMSIMqyxvt-4U7uRacTOezDrU5ui
518
518
  tencentcloud/dcdb/v20180411/models.py,sha256=Bw6Vnfh1BZ5m3lrDfo4Ow5QaFZtRP49jttqcYoiHzsI,579392
519
519
  tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
520
520
  tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
521
- tencentcloud/dlc/v20210125/dlc_client.py,sha256=ueDmVzlzBuDuEfTNejO2LyqNT9P6FKdjRRDOJfOmOlE,168716
522
- tencentcloud/dlc/v20210125/errorcodes.py,sha256=ToLFEEYumXTKZ29vUQnngGcLaqfRTYcoWKlLk6xF7vA,32642
523
- tencentcloud/dlc/v20210125/models.py,sha256=pJjWQh5Jo_GZ1_qe7NRob5hWY5bGsJ68Xn4yp4cMAHU,1393442
521
+ tencentcloud/dlc/v20210125/dlc_client.py,sha256=KyL7-FBugA_tlLqU3rx2sKAVKdku0uNJ7Bpa2K5Cdzs,169646
522
+ tencentcloud/dlc/v20210125/errorcodes.py,sha256=HSGeAMvRbm8GdnyXWwsxGHxl3_74kAB6EdPCd8q_ckY,33157
523
+ tencentcloud/dlc/v20210125/models.py,sha256=lrNghBbrMPuAiAfRuNVUZ-RosjtVamww9axKW112W94,1402228
524
524
  tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
525
525
  tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
526
  tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=lpYsmdGw470wzBxTywJGYKGXFlc_pWp-y2BlGbZzTI4,84365
@@ -1412,8 +1412,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1412
1412
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
1413
1413
  tencentcloud/yunsou/v20191115/models.py,sha256=TQ-E6fkxGPYItLhPVApTt2PoY81gMZ4GE0yCF7pxZz8,27714
1414
1414
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=7ut92qGz4H9bKC4ondQTiKsstVD1ZRYAQ40DNLaQXJE,2716
1415
- tencentcloud_sdk_python-3.0.1467.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1416
- tencentcloud_sdk_python-3.0.1467.dist-info/METADATA,sha256=Iiw5Gq5htNuRHWXNlMkCHlLQzj_s81ZRtMExdDx6EQk,1613
1417
- tencentcloud_sdk_python-3.0.1467.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1418
- tencentcloud_sdk_python-3.0.1467.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1419
- tencentcloud_sdk_python-3.0.1467.dist-info/RECORD,,
1415
+ tencentcloud_sdk_python-3.0.1468.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1416
+ tencentcloud_sdk_python-3.0.1468.dist-info/METADATA,sha256=Yrl4REQcVmKIEPY9TcGN2O6Hc8SEWVeQ_b3hy6Enn6Q,1613
1417
+ tencentcloud_sdk_python-3.0.1468.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1418
+ tencentcloud_sdk_python-3.0.1468.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1419
+ tencentcloud_sdk_python-3.0.1468.dist-info/RECORD,,