tencentcloud-sdk-python 3.0.1203__py2.py3-none-any.whl → 3.0.1204__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.1203'
17
+ __version__ = '3.0.1204'
@@ -6972,7 +6972,7 @@ class UserQuota(AbstractModel):
6972
6972
 
6973
6973
  def __init__(self):
6974
6974
  r"""
6975
- :param _UserType: 指定配额类型,包括Uid、Gid
6975
+ :param _UserType: 指定配额类型,包括Uid、Gid、Dir
6976
6976
  :type UserType: str
6977
6977
  :param _UserId: UID/GID信息
6978
6978
  :type UserId: str
@@ -6988,6 +6988,12 @@ class UserQuota(AbstractModel):
6988
6988
  :param _FileUsed: 文件使用个数,单位个
6989
6989
  注意:此字段可能返回 null,表示取不到有效值。
6990
6990
  :type FileUsed: int
6991
+ :param _DirectoryPath: 目录配额的目录绝对路径
6992
+ 注意:此字段可能返回 null,表示取不到有效值。
6993
+ :type DirectoryPath: str
6994
+ :param _Status: 配置规则状态,inavailable---配置中,available --已生效,deleting--删除中,deleted 已删除,failed--配置失败
6995
+ 注意:此字段可能返回 null,表示取不到有效值。
6996
+ :type Status: str
6991
6997
  """
6992
6998
  self._UserType = None
6993
6999
  self._UserId = None
@@ -6996,6 +7002,8 @@ class UserQuota(AbstractModel):
6996
7002
  self._FileSystemId = None
6997
7003
  self._CapacityUsed = None
6998
7004
  self._FileUsed = None
7005
+ self._DirectoryPath = None
7006
+ self._Status = None
6999
7007
 
7000
7008
  @property
7001
7009
  def UserType(self):
@@ -7053,6 +7061,22 @@ class UserQuota(AbstractModel):
7053
7061
  def FileUsed(self, FileUsed):
7054
7062
  self._FileUsed = FileUsed
7055
7063
 
7064
+ @property
7065
+ def DirectoryPath(self):
7066
+ return self._DirectoryPath
7067
+
7068
+ @DirectoryPath.setter
7069
+ def DirectoryPath(self, DirectoryPath):
7070
+ self._DirectoryPath = DirectoryPath
7071
+
7072
+ @property
7073
+ def Status(self):
7074
+ return self._Status
7075
+
7076
+ @Status.setter
7077
+ def Status(self, Status):
7078
+ self._Status = Status
7079
+
7056
7080
 
7057
7081
  def _deserialize(self, params):
7058
7082
  self._UserType = params.get("UserType")
@@ -7062,6 +7086,8 @@ class UserQuota(AbstractModel):
7062
7086
  self._FileSystemId = params.get("FileSystemId")
7063
7087
  self._CapacityUsed = params.get("CapacityUsed")
7064
7088
  self._FileUsed = params.get("FileUsed")
7089
+ self._DirectoryPath = params.get("DirectoryPath")
7090
+ self._Status = params.get("Status")
7065
7091
  memeber_set = set(params.keys())
7066
7092
  for name, value in vars(self).items():
7067
7093
  property_name = name[1:]
@@ -3311,7 +3311,7 @@ class CreateAlarmPolicyRequest(AbstractModel):
3311
3311
  r"""
3312
3312
  :param _Module: 固定值,为"monitor"
3313
3313
  :type Module: str
3314
- :param _PolicyName: 策略名称,不超过20字符
3314
+ :param _PolicyName: 策略名称,不超过60字符
3315
3315
  :type PolicyName: str
3316
3316
  :param _MonitorType: 监控类型 MT_QCE=云产品监控
3317
3317
  :type MonitorType: str
@@ -8110,7 +8110,8 @@ class DescribeAlarmHistoriesRequest(AbstractModel):
8110
8110
  :type StartTime: int
8111
8111
  :param _EndTime: 结束时间,默认当前时间戳。对应 `FirstOccurTime` 告警首次出现时间,告警历史的 `FirstOccurTime` 早于 `EndTime` 才可能被搜索到。
8112
8112
  :type EndTime: int
8113
- :param _MonitorTypes: 根据监控类型过滤,不选默认查所有类型。"MT_QCE"=云产品监控,支持的枚举值有:"MT_QCE"=云产品监控;"MT_TAW"=应用性能监控;"MT_RUM"=前端性能监控;"MT_PROBE"=云拨测
8113
+ :param _MonitorTypes: 根据监控类型过滤,不选默认查所有类型。"MT_QCE"=云产品监控,支持的枚举值有:"MT_QCE"=云产品监控;"MT_TAW"=应用性能监控;"MT_RUM"=前端性能监控;"MT_PROBE"=云拨测,"MT_TRTC"=实时音视频,
8114
+ "MT_RUMAPP"=终端性能监控
8114
8115
  :type MonitorTypes: list of str
8115
8116
  :param _AlarmObject: 根据告警对象过滤 字符串模糊搜索
8116
8117
  :type AlarmObject: str
@@ -4805,6 +4805,64 @@ class CrossSummaryDetailRes(AbstractModel):
4805
4805
 
4806
4806
 
4807
4807
 
4808
+ class CutXEventsRequest(AbstractModel):
4809
+ """CutXEvents请求参数结构体
4810
+
4811
+ """
4812
+
4813
+ def __init__(self):
4814
+ r"""
4815
+ :param _InstanceId: 实例ID
4816
+ :type InstanceId: str
4817
+ """
4818
+ self._InstanceId = None
4819
+
4820
+ @property
4821
+ def InstanceId(self):
4822
+ return self._InstanceId
4823
+
4824
+ @InstanceId.setter
4825
+ def InstanceId(self, InstanceId):
4826
+ self._InstanceId = InstanceId
4827
+
4828
+
4829
+ def _deserialize(self, params):
4830
+ self._InstanceId = params.get("InstanceId")
4831
+ memeber_set = set(params.keys())
4832
+ for name, value in vars(self).items():
4833
+ property_name = name[1:]
4834
+ if property_name in memeber_set:
4835
+ memeber_set.remove(property_name)
4836
+ if len(memeber_set) > 0:
4837
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4838
+
4839
+
4840
+
4841
+ class CutXEventsResponse(AbstractModel):
4842
+ """CutXEvents返回参数结构体
4843
+
4844
+ """
4845
+
4846
+ def __init__(self):
4847
+ r"""
4848
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4849
+ :type RequestId: str
4850
+ """
4851
+ self._RequestId = None
4852
+
4853
+ @property
4854
+ def RequestId(self):
4855
+ return self._RequestId
4856
+
4857
+ @RequestId.setter
4858
+ def RequestId(self, RequestId):
4859
+ self._RequestId = RequestId
4860
+
4861
+
4862
+ def _deserialize(self, params):
4863
+ self._RequestId = params.get("RequestId")
4864
+
4865
+
4808
4866
  class DBCreateInfo(AbstractModel):
4809
4867
  """数据库创建信息
4810
4868
 
@@ -486,6 +486,29 @@ class SqlserverClient(AbstractClient):
486
486
  raise TencentCloudSDKException(type(e).__name__, str(e))
487
487
 
488
488
 
489
+ def CutXEvents(self, request):
490
+ """本接口(CutXEvents)用于手动切割阻塞日志和死锁日志。
491
+
492
+ :param request: Request instance for CutXEvents.
493
+ :type request: :class:`tencentcloud.sqlserver.v20180328.models.CutXEventsRequest`
494
+ :rtype: :class:`tencentcloud.sqlserver.v20180328.models.CutXEventsResponse`
495
+
496
+ """
497
+ try:
498
+ params = request._serialize()
499
+ headers = request.headers
500
+ body = self.call("CutXEvents", params, headers=headers)
501
+ response = json.loads(body)
502
+ model = models.CutXEventsResponse()
503
+ model._deserialize(response["Response"])
504
+ return model
505
+ except Exception as e:
506
+ if isinstance(e, TencentCloudSDKException):
507
+ raise
508
+ else:
509
+ raise TencentCloudSDKException(type(e).__name__, str(e))
510
+
511
+
489
512
  def DeleteAccount(self, request):
490
513
  """本接口(DeleteAccount)用于删除实例账号。
491
514
 
@@ -8754,11 +8754,11 @@ class StartAIConversationRequest(AbstractModel):
8754
8754
  :param _STTConfig: 语音识别配置。
8755
8755
  :type STTConfig: :class:`tencentcloud.trtc.v20190722.models.STTConfig`
8756
8756
  :param _LLMConfig: LLM配置。需符合openai规范,为JSON字符串,示例如下:
8757
- <pre> { <br> &emsp; "LLMType": “大模型类型", // String 必填,目前固定为"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的OpenAI API密钥", // String 必填,相当于环境变量中的OPENAI_API_KEY<br> &emsp; "APIBaseUrl": "https://api.openai.com", // String 必填,OpenAI API的基础URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
8757
+ <pre> { <br> &emsp; "LLMType": “大模型类型", // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
8758
8758
 
8759
8759
  :type LLMConfig: str
8760
- :param _TTSConfig: TTS配置。目前支持腾讯云TTS, 为JSON字符串,示例如下:
8761
- <pre>{ <br> &emsp; "AppId": "您的应用ID", // String 必填<br> &emsp; "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br> &emsp; "SercetId": "您的密钥ID", // String 必填<br> &emsp; "SercetKey": "您的密钥Key", // String 必填<br> &emsp; "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href="https://cloud.tencent.com/document/product/1073/34112">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href="https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823">语音合成音色列表</a>。<br> &emsp; "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href="https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz">语速转换</a><br> &emsp; "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br> &emsp; "PrimaryLanguage": "zh-CN" // String 非必填,主要语言<br> &emsp;}</pre>
8760
+ :param _TTSConfig: TTS配置,为JSON字符串,腾讯云TTS示例如下:
8761
+ <pre>{ <br> &emsp; "AppId": 您的应用ID, // Integer 必填<br> &emsp; "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br> &emsp; "SecretId": "您的密钥ID", // String 必填<br> &emsp; "SecretKey": "您的密钥Key", // String 必填<br> &emsp; "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href="https://cloud.tencent.com/document/product/1073/34112">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href="https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823">语音合成音色列表</a>。<br> &emsp; "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href="https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz">语速转换</a><br> &emsp; "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br> &emsp; "PrimaryLanguage": "zh-CN" // String 非必填,主要语言<br> &emsp;}</pre>
8762
8762
  :type TTSConfig: str
8763
8763
  """
8764
8764
  self._SdkAppId = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1203
3
+ Version: 3.0.1204
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=xrAoLABYWBYH0s1r0XSrAMFspubwJBnYsNbUdKIASWw,631
53
+ tencentcloud/__init__.py,sha256=kLM3NO7-Mkz1cnPd9oUESHYoGsCAbSqB36knQazfZwU,631
54
54
  tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
@@ -312,7 +312,7 @@ tencentcloud/cfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
312
312
  tencentcloud/cfs/v20190719/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
313
313
  tencentcloud/cfs/v20190719/cfs_client.py,sha256=fcuzoWs-CAaQxCFz9eUUlPpVbtgtFrEyKm4ZvPMJFeM,41355
314
314
  tencentcloud/cfs/v20190719/errorcodes.py,sha256=XGg1i0tBO3XCWaZmfYoOR1QQX1odCh561jYTTzImi6U,16453
315
- tencentcloud/cfs/v20190719/models.py,sha256=1EMpvB3mmFvls0y9U0bEpSbuvmkVFzw_xuAQXzUbe8M,205069
315
+ tencentcloud/cfs/v20190719/models.py,sha256=xZJ1BksF9LsDyVvxeZZax7HGA-SYRGN6CbnJC6E_KsE,205993
316
316
  tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
317
  tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
318
  tencentcloud/cfw/v20190904/cfw_client.py,sha256=Ad-BXjrzYraBTMMG5fvs6wTBhGCUIavG22fyRDY9u8I,104992
@@ -881,7 +881,7 @@ tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=KDC8KMdk1ZetJ3yh_2jgd_8K
881
881
  tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
882
882
  tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
883
883
  tencentcloud/monitor/v20180724/errorcodes.py,sha256=dukIL6njXDrTpTbojusf4bCgdQtN8E69_kYRXrsrpuU,10438
884
- tencentcloud/monitor/v20180724/models.py,sha256=3uErstmCLryTaLKfVIB5tC7YQcKMPGdkV169004nBGw,949896
884
+ tencentcloud/monitor/v20180724/models.py,sha256=gnkMVut9Acs-mbrmKuS6YLQOm4ECkWcincC9X5-4Ne8,949958
885
885
  tencentcloud/monitor/v20180724/monitor_client.py,sha256=a7CPYYNV0C04Nkquzs1NlivIpjYYWCQCuD5CuaU-D64,153728
886
886
  tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
887
887
  tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1044,8 +1044,8 @@ tencentcloud/solar/v20181011/solar_client.py,sha256=EdwUnwbwHk_2irN9Szrx2DuJc_Mh
1044
1044
  tencentcloud/sqlserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1045
1045
  tencentcloud/sqlserver/v20180328/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1046
1046
  tencentcloud/sqlserver/v20180328/errorcodes.py,sha256=5Mx13iAMbWYamlkDYYJwPf60B3pXPO4DEPJpseas7Rc,10325
1047
- tencentcloud/sqlserver/v20180328/models.py,sha256=bKynBM_N16CLnnVDQUoywSQMbKmxQJBYdj-K1F_Nm5M,776501
1048
- tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=VLEqYN5zZE6MZhKwFm2NJVFWqccpJVJ43udmIEFgMs0,143745
1047
+ tencentcloud/sqlserver/v20180328/models.py,sha256=jex9JL1Q8XDI3qw0jPINvbyTbr5BpUXEW7heX8BV-rY,778036
1048
+ tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=n-3xrxeySJPmCrBjc3UN5JVK9aBk9b9gFCI8-vPcr6Q,144635
1049
1049
  tencentcloud/ssa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1050
1050
  tencentcloud/ssa/v20180608/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1051
1051
  tencentcloud/ssa/v20180608/errorcodes.py,sha256=PSjcw4j40bRWEQRPfvmpjcBLTrgfoqt_s9QMx3u879M,2265
@@ -1316,7 +1316,7 @@ tencentcloud/trro/v20220325/trro_client.py,sha256=UMXZ_jOKKI2_cydbscFAPxqVfSUpUm
1316
1316
  tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1317
1317
  tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1318
1318
  tencentcloud/trtc/v20190722/errorcodes.py,sha256=K4q7UWQkdedEyrQJFz67cH3xzyKo78PS0EseWry0JXo,10898
1319
- tencentcloud/trtc/v20190722/models.py,sha256=INUIpSioMOQkMMIxDHNg4ViCqUQJZPhcl3uip6bJ6r0,389727
1319
+ tencentcloud/trtc/v20190722/models.py,sha256=WMezBcAepQjZzhCyO1Ri32Q3BypMlitAdpnWyCnH11U,389664
1320
1320
  tencentcloud/trtc/v20190722/trtc_client.py,sha256=7LEm9-06cMUwXOEpm-ueDS7tx9hln3zcZxexC1Fc6Ak,77573
1321
1321
  tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1322
1322
  tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1454,8 +1454,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1454
1454
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1455
1455
  tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
1456
1456
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1457
- tencentcloud_sdk_python-3.0.1203.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1458
- tencentcloud_sdk_python-3.0.1203.dist-info/METADATA,sha256=gGFZT8Sbe8iqFAzJyplLDrggtt4aRZmE9hcBD_5-1uA,1511
1459
- tencentcloud_sdk_python-3.0.1203.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1460
- tencentcloud_sdk_python-3.0.1203.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1461
- tencentcloud_sdk_python-3.0.1203.dist-info/RECORD,,
1457
+ tencentcloud_sdk_python-3.0.1204.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1458
+ tencentcloud_sdk_python-3.0.1204.dist-info/METADATA,sha256=wI-T6Yh4FNwNKSznrRt9CLCb4WaZKUzC60DayICw3GY,1511
1459
+ tencentcloud_sdk_python-3.0.1204.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1460
+ tencentcloud_sdk_python-3.0.1204.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1461
+ tencentcloud_sdk_python-3.0.1204.dist-info/RECORD,,