tencentcloud-sdk-python 3.0.1452__py2.py3-none-any.whl → 3.0.1453__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 +1 -1
- tencentcloud/mna/v20210119/models.py +2 -2
- tencentcloud/ocr/v20181119/models.py +30 -0
- tencentcloud/tsf/v20180326/models.py +30 -20
- {tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -6280,7 +6280,7 @@ class OrderInfo(AbstractModel):
|
|
6280
6280
|
|
6281
6281
|
def __init__(self):
|
6282
6282
|
r"""
|
6283
|
-
:param _Uin:
|
6283
|
+
:param _Uin: 父账号uin
|
6284
6284
|
:type Uin: str
|
6285
6285
|
:param _ProjectId: 项目id
|
6286
6286
|
:type ProjectId: str
|
@@ -6302,7 +6302,7 @@ class OrderInfo(AbstractModel):
|
|
6302
6302
|
|
6303
6303
|
@property
|
6304
6304
|
def Uin(self):
|
6305
|
-
"""
|
6305
|
+
"""父账号uin
|
6306
6306
|
:rtype: str
|
6307
6307
|
"""
|
6308
6308
|
return self._Uin
|
@@ -2121,6 +2121,8 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
2121
2121
|
:type Electronic: bool
|
2122
2122
|
:param _BusinessCertificate: 非营业执照的营业类证件识别结果,将以结构化形式呈现。
|
2123
2123
|
:type BusinessCertificate: list of BusinessCertificateInfo
|
2124
|
+
:param _Important: 重要提示字段
|
2125
|
+
:type Important: str
|
2124
2126
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2125
2127
|
:type RequestId: str
|
2126
2128
|
"""
|
@@ -2147,6 +2149,7 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
2147
2149
|
self._RegistrationAuthority = None
|
2148
2150
|
self._Electronic = None
|
2149
2151
|
self._BusinessCertificate = None
|
2152
|
+
self._Important = None
|
2150
2153
|
self._RequestId = None
|
2151
2154
|
|
2152
2155
|
@property
|
@@ -2408,6 +2411,17 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
2408
2411
|
def BusinessCertificate(self, BusinessCertificate):
|
2409
2412
|
self._BusinessCertificate = BusinessCertificate
|
2410
2413
|
|
2414
|
+
@property
|
2415
|
+
def Important(self):
|
2416
|
+
"""重要提示字段
|
2417
|
+
:rtype: str
|
2418
|
+
"""
|
2419
|
+
return self._Important
|
2420
|
+
|
2421
|
+
@Important.setter
|
2422
|
+
def Important(self, Important):
|
2423
|
+
self._Important = Important
|
2424
|
+
|
2411
2425
|
@property
|
2412
2426
|
def RequestId(self):
|
2413
2427
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -2449,6 +2463,7 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
2449
2463
|
obj = BusinessCertificateInfo()
|
2450
2464
|
obj._deserialize(item)
|
2451
2465
|
self._BusinessCertificate.append(obj)
|
2466
|
+
self._Important = params.get("Important")
|
2452
2467
|
self._RequestId = params.get("RequestId")
|
2453
2468
|
|
2454
2469
|
|
@@ -22485,6 +22500,8 @@ class QuestionSplitOCRRequest(AbstractModel):
|
|
22485
22500
|
:type EnableImageCrop: bool
|
22486
22501
|
:param _EnableOnlyDetectBorder: 是否只返回检测框,默认false
|
22487
22502
|
:type EnableOnlyDetectBorder: bool
|
22503
|
+
:param _UseNewModel: false: 使用当前默认模型 true: 使用新的多模态推理模型,速度更快推理效果更强,仅 `EnableOnlyDetectBorder` 为 `true` 时生效,公测中
|
22504
|
+
:type UseNewModel: bool
|
22488
22505
|
"""
|
22489
22506
|
self._ImageUrl = None
|
22490
22507
|
self._ImageBase64 = None
|
@@ -22492,6 +22509,7 @@ class QuestionSplitOCRRequest(AbstractModel):
|
|
22492
22509
|
self._PdfPageNumber = None
|
22493
22510
|
self._EnableImageCrop = None
|
22494
22511
|
self._EnableOnlyDetectBorder = None
|
22512
|
+
self._UseNewModel = None
|
22495
22513
|
|
22496
22514
|
@property
|
22497
22515
|
def ImageUrl(self):
|
@@ -22559,6 +22577,17 @@ class QuestionSplitOCRRequest(AbstractModel):
|
|
22559
22577
|
def EnableOnlyDetectBorder(self, EnableOnlyDetectBorder):
|
22560
22578
|
self._EnableOnlyDetectBorder = EnableOnlyDetectBorder
|
22561
22579
|
|
22580
|
+
@property
|
22581
|
+
def UseNewModel(self):
|
22582
|
+
"""false: 使用当前默认模型 true: 使用新的多模态推理模型,速度更快推理效果更强,仅 `EnableOnlyDetectBorder` 为 `true` 时生效,公测中
|
22583
|
+
:rtype: bool
|
22584
|
+
"""
|
22585
|
+
return self._UseNewModel
|
22586
|
+
|
22587
|
+
@UseNewModel.setter
|
22588
|
+
def UseNewModel(self, UseNewModel):
|
22589
|
+
self._UseNewModel = UseNewModel
|
22590
|
+
|
22562
22591
|
|
22563
22592
|
def _deserialize(self, params):
|
22564
22593
|
self._ImageUrl = params.get("ImageUrl")
|
@@ -22567,6 +22596,7 @@ class QuestionSplitOCRRequest(AbstractModel):
|
|
22567
22596
|
self._PdfPageNumber = params.get("PdfPageNumber")
|
22568
22597
|
self._EnableImageCrop = params.get("EnableImageCrop")
|
22569
22598
|
self._EnableOnlyDetectBorder = params.get("EnableOnlyDetectBorder")
|
22599
|
+
self._UseNewModel = params.get("UseNewModel")
|
22570
22600
|
memeber_set = set(params.keys())
|
22571
22601
|
for name, value in vars(self).items():
|
22572
22602
|
property_name = name[1:]
|
@@ -7161,7 +7161,7 @@ class ContainerEvent(AbstractModel):
|
|
7161
7161
|
:type LastTimestamp: int
|
7162
7162
|
:param _Type: 级别
|
7163
7163
|
:type Type: str
|
7164
|
-
:param _Kind: Kubernetes 资源类型,典型取值有 Deployment、Pod、Service 等
|
7164
|
+
:param _Kind: Kubernetes 资源类型,典型取值有 Deployment(部署资源)、Pod(容器组)、Service(服务资源) 等
|
7165
7165
|
:type Kind: str
|
7166
7166
|
:param _Name: 资源名称
|
7167
7167
|
:type Name: str
|
@@ -7216,7 +7216,7 @@ class ContainerEvent(AbstractModel):
|
|
7216
7216
|
|
7217
7217
|
@property
|
7218
7218
|
def Kind(self):
|
7219
|
-
"""Kubernetes 资源类型,典型取值有 Deployment、Pod、Service 等
|
7219
|
+
"""Kubernetes 资源类型,典型取值有 Deployment(部署资源)、Pod(容器组)、Service(服务资源) 等
|
7220
7220
|
:rtype: str
|
7221
7221
|
"""
|
7222
7222
|
return self._Kind
|
@@ -11978,7 +11978,7 @@ class CreateContainGroupRequest(AbstractModel):
|
|
11978
11978
|
:type MemRequest: str
|
11979
11979
|
:param _GroupResourceType: 部署组资源类型;DEF 表示默认资源类型
|
11980
11980
|
:type GroupResourceType: str
|
11981
|
-
:param _SubnetId: 分组所属【子网ID
|
11981
|
+
:param _SubnetId: 分组所属【子网ID】,可前往私有网络[控制台](https://console.cloud.tencent.com/vpc/subnet?rid=1&unVpcId=vpc-6bs8ytjd)进行获取
|
11982
11982
|
:type SubnetId: str
|
11983
11983
|
:param _AgentCpuRequest: agent 容器分配的 CPU 核数,对应 K8S 的 request
|
11984
11984
|
:type AgentCpuRequest: str
|
@@ -12189,7 +12189,7 @@ class CreateContainGroupRequest(AbstractModel):
|
|
12189
12189
|
|
12190
12190
|
@property
|
12191
12191
|
def SubnetId(self):
|
12192
|
-
"""分组所属【子网ID
|
12192
|
+
"""分组所属【子网ID】,可前往私有网络[控制台](https://console.cloud.tencent.com/vpc/subnet?rid=1&unVpcId=vpc-6bs8ytjd)进行获取
|
12193
12193
|
:rtype: str
|
12194
12194
|
"""
|
12195
12195
|
return self._SubnetId
|
@@ -21668,7 +21668,7 @@ class DescribeBusinessLogConfigsRequest(AbstractModel):
|
|
21668
21668
|
:type Offset: int
|
21669
21669
|
:param _Limit: 单页请求配置数量,取值范围[1, 50],默认值为10
|
21670
21670
|
:type Limit: int
|
21671
|
-
:param _SearchWord:
|
21671
|
+
:param _SearchWord: 模糊匹配关键词,可搜索配置项ID或配置项名称
|
21672
21672
|
:type SearchWord: str
|
21673
21673
|
:param _DisableProgramAuthCheck: 是否禁用数据集鉴权
|
21674
21674
|
:type DisableProgramAuthCheck: bool
|
@@ -21706,7 +21706,7 @@ class DescribeBusinessLogConfigsRequest(AbstractModel):
|
|
21706
21706
|
|
21707
21707
|
@property
|
21708
21708
|
def SearchWord(self):
|
21709
|
-
"""
|
21709
|
+
"""模糊匹配关键词,可搜索配置项ID或配置项名称
|
21710
21710
|
:rtype: str
|
21711
21711
|
"""
|
21712
21712
|
return self._SearchWord
|
@@ -23022,7 +23022,7 @@ class DescribeContainerEventsRequest(AbstractModel):
|
|
23022
23022
|
r"""
|
23023
23023
|
:param _ResourceType: event 的资源类型, 仅支持 group
|
23024
23024
|
:type ResourceType: str
|
23025
|
-
:param _ResourceId: 部署组ID,按照【部署组ID】进行过滤,可通过调用DescribeGroups查询已创建的项目列表或登录控制台进行查看;也可以调用CreateGroup
|
23025
|
+
:param _ResourceId: 部署组ID,按照【部署组ID】进行过滤,可通过调用[DescribeGroups](https://cloud.tencent.com/document/product/649/36065)查询已创建的项目列表或登录控制台进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的项目。
|
23026
23026
|
:type ResourceId: str
|
23027
23027
|
:param _Offset: 偏移量,取值从0开始
|
23028
23028
|
:type Offset: int
|
@@ -23062,7 +23062,7 @@ class DescribeContainerEventsRequest(AbstractModel):
|
|
23062
23062
|
|
23063
23063
|
@property
|
23064
23064
|
def ResourceId(self):
|
23065
|
-
"""部署组ID,按照【部署组ID】进行过滤,可通过调用DescribeGroups查询已创建的项目列表或登录控制台进行查看;也可以调用CreateGroup
|
23065
|
+
"""部署组ID,按照【部署组ID】进行过滤,可通过调用[DescribeGroups](https://cloud.tencent.com/document/product/649/36065)查询已创建的项目列表或登录控制台进行查看;也可以调用[CreateGroup](https://cloud.tencent.com/document/product/649/36074)创建新的项目。
|
23066
23066
|
:rtype: str
|
23067
23067
|
"""
|
23068
23068
|
return self._ResourceId
|
@@ -23914,11 +23914,11 @@ class DescribeDeliveryConfigsRequest(AbstractModel):
|
|
23914
23914
|
|
23915
23915
|
def __init__(self):
|
23916
23916
|
r"""
|
23917
|
-
:param _SearchWord:
|
23917
|
+
:param _SearchWord: 搜索关键字,可搜索日志投递配置项ID或日志投递配置项名称
|
23918
23918
|
:type SearchWord: str
|
23919
|
-
:param _Offset:
|
23919
|
+
:param _Offset: 偏移量,取值范围大于等于0,默认值为0
|
23920
23920
|
:type Offset: int
|
23921
|
-
:param _Limit:
|
23921
|
+
:param _Limit: 单页请求配置数量,取值范围[1, 50],默认值为10
|
23922
23922
|
:type Limit: int
|
23923
23923
|
:param _ProgramIdList: 数据集ID列表
|
23924
23924
|
可通过调用[DescribePrograms](https://cloud.tencent.com/document/product/649/73477)查询已创建的数据集列表或登录[控制台](https://console.cloud.tencent.com/tsf/privilege?rid=1&tab=program&roleId=role-a22gwdwa)进行查看
|
@@ -23935,7 +23935,7 @@ class DescribeDeliveryConfigsRequest(AbstractModel):
|
|
23935
23935
|
|
23936
23936
|
@property
|
23937
23937
|
def SearchWord(self):
|
23938
|
-
"""
|
23938
|
+
"""搜索关键字,可搜索日志投递配置项ID或日志投递配置项名称
|
23939
23939
|
:rtype: str
|
23940
23940
|
"""
|
23941
23941
|
return self._SearchWord
|
@@ -23946,7 +23946,7 @@ class DescribeDeliveryConfigsRequest(AbstractModel):
|
|
23946
23946
|
|
23947
23947
|
@property
|
23948
23948
|
def Offset(self):
|
23949
|
-
"""
|
23949
|
+
"""偏移量,取值范围大于等于0,默认值为0
|
23950
23950
|
:rtype: int
|
23951
23951
|
"""
|
23952
23952
|
return self._Offset
|
@@ -23957,7 +23957,7 @@ class DescribeDeliveryConfigsRequest(AbstractModel):
|
|
23957
23957
|
|
23958
23958
|
@property
|
23959
23959
|
def Limit(self):
|
23960
|
-
"""
|
23960
|
+
"""单页请求配置数量,取值范围[1, 50],默认值为10
|
23961
23961
|
:rtype: int
|
23962
23962
|
"""
|
23963
23963
|
return self._Limit
|
@@ -26908,7 +26908,12 @@ class DescribeInstancesRequest(AbstractModel):
|
|
26908
26908
|
|
26909
26909
|
def __init__(self):
|
26910
26910
|
r"""
|
26911
|
-
:param _Filters:
|
26911
|
+
:param _Filters: 过滤条件。多个 filter 之间是与关系,单个 filter 多个 value 之间是或关系。
|
26912
|
+
参考:[{"Name":"ip","Values":["172.16.16.139"]}]
|
26913
|
+
filter name 取值范围:
|
26914
|
+
- `id`:实例ID
|
26915
|
+
- ` name `:实例名
|
26916
|
+
- ` ip `:内网IP(可填wan_ip或lan_ip)
|
26912
26917
|
:type Filters: list of Filter
|
26913
26918
|
:param _Offset: 偏移量,默认为0
|
26914
26919
|
:type Offset: int
|
@@ -26921,7 +26926,12 @@ class DescribeInstancesRequest(AbstractModel):
|
|
26921
26926
|
|
26922
26927
|
@property
|
26923
26928
|
def Filters(self):
|
26924
|
-
"""
|
26929
|
+
"""过滤条件。多个 filter 之间是与关系,单个 filter 多个 value 之间是或关系。
|
26930
|
+
参考:[{"Name":"ip","Values":["172.16.16.139"]}]
|
26931
|
+
filter name 取值范围:
|
26932
|
+
- `id`:实例ID
|
26933
|
+
- ` name `:实例名
|
26934
|
+
- ` ip `:内网IP(可填wan_ip或lan_ip)
|
26925
26935
|
:rtype: list of Filter
|
26926
26936
|
"""
|
26927
26937
|
return self._Filters
|
@@ -27212,9 +27222,9 @@ class DescribeInvocationMetricDataDimensionRequest(AbstractModel):
|
|
27212
27222
|
:type StartTime: str
|
27213
27223
|
:param _EndTime: 结束时间,格式yyyy-MM-dd HH:mm:ss
|
27214
27224
|
:type EndTime: str
|
27215
|
-
:param _Offset: 开始index
|
27225
|
+
:param _Offset: 开始index,取值范围大于等于0,默认值为0
|
27216
27226
|
:type Offset: int
|
27217
|
-
:param _Limit:
|
27227
|
+
:param _Limit: 单页请求配置数量,取值范围[1, 50],默认值为10
|
27218
27228
|
:type Limit: int
|
27219
27229
|
:param _DimensionName: 聚合维度。可选值 NamespaceId:命名空间ID,GroupId:部署组ID,InstanceId:实例ID,ApplicationId:应用ID,OperationMethod:执行方法,OperationName:执行名称,ServiceName:服务名,UpstreamNamespaceId:上游命名空间ID
|
27220
27230
|
:type DimensionName: str
|
@@ -27255,7 +27265,7 @@ class DescribeInvocationMetricDataDimensionRequest(AbstractModel):
|
|
27255
27265
|
|
27256
27266
|
@property
|
27257
27267
|
def Offset(self):
|
27258
|
-
"""开始index
|
27268
|
+
"""开始index,取值范围大于等于0,默认值为0
|
27259
27269
|
:rtype: int
|
27260
27270
|
"""
|
27261
27271
|
return self._Offset
|
@@ -27266,7 +27276,7 @@ class DescribeInvocationMetricDataDimensionRequest(AbstractModel):
|
|
27266
27276
|
|
27267
27277
|
@property
|
27268
27278
|
def Limit(self):
|
27269
|
-
"""
|
27279
|
+
"""单页请求配置数量,取值范围[1, 50],默认值为10
|
27270
27280
|
:rtype: int
|
27271
27281
|
"""
|
27272
27282
|
return self._Limit
|
{tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.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=9rvyv4O_Ve_jdTLtBmmYg2c0wchwEaBW8GTxG4fH1HU,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
|
@@ -869,7 +869,7 @@ tencentcloud/mna/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
869
869
|
tencentcloud/mna/v20210119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
870
870
|
tencentcloud/mna/v20210119/errorcodes.py,sha256=2wcmxdCoYB6bazHxsPb9bvSQQiApYJQSImq77mV1usI,3606
|
871
871
|
tencentcloud/mna/v20210119/mna_client.py,sha256=YdTVwqwEe2Kd1wN50u6ePUqgwXKhhL79TzoAxtf_xWg,36698
|
872
|
-
tencentcloud/mna/v20210119/models.py,sha256=
|
872
|
+
tencentcloud/mna/v20210119/models.py,sha256=kfxXkcNGTNg8-r9akq3vOpsC8wfy3LUhgpFlVZn9JYQ,223441
|
873
873
|
tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
874
874
|
tencentcloud/mongodb/v20180408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
875
875
|
tencentcloud/mongodb/v20180408/errorcodes.py,sha256=-i9mvwwrN9WV5Cn-Of1Kg4GCE3CYgJLLn9ydydobI0E,4558
|
@@ -931,7 +931,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=mcjQz-nr8E3LxYY4ZrIUDBi0
|
|
931
931
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
932
932
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
933
933
|
tencentcloud/ocr/v20181119/errorcodes.py,sha256=F14bbQDRi4P9JfBfjuTGaR08iiQkY3d3KcyBwscqAtk,6985
|
934
|
-
tencentcloud/ocr/v20181119/models.py,sha256=
|
934
|
+
tencentcloud/ocr/v20181119/models.py,sha256=nb7_719ZMOEHjNkm6lkWFopdu-ITG63_v_mSwrTLC4s,1385966
|
935
935
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=JQvqYoFzfFFk1WpsYl0Lp6B40f8R7ioLLQAHuhLYeDM,123154
|
936
936
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
937
937
|
tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1271,7 +1271,7 @@ tencentcloud/tse/v20201207/tse_client.py,sha256=3lOiCobmc7zqIA1ruAlLjUQR1SM7dj8D
|
|
1271
1271
|
tencentcloud/tsf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1272
1272
|
tencentcloud/tsf/v20180326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1273
1273
|
tencentcloud/tsf/v20180326/errorcodes.py,sha256=ynmWG-WsYbSqk5B15q694pQ8zpBQdfaacF2jkziMr5Q,55885
|
1274
|
-
tencentcloud/tsf/v20180326/models.py,sha256
|
1274
|
+
tencentcloud/tsf/v20180326/models.py,sha256=--FFq9C_Zw8PGq1RRCRk8RGTInTGsx7GdY9OoXMYQjc,1942529
|
1275
1275
|
tencentcloud/tsf/v20180326/tsf_client.py,sha256=PsAXoZ_piIi1uXFdyLssUxRZ43vNjLhsDxuw3xN4pAs,204458
|
1276
1276
|
tencentcloud/tsi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1277
1277
|
tencentcloud/tsi/v20210325/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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.1453.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1407
|
+
tencentcloud_sdk_python-3.0.1453.dist-info/METADATA,sha256=u9RD7qDu50NnTu8MGY57DDediqFQqznF2V16Qd9dZjo,1613
|
1408
|
+
tencentcloud_sdk_python-3.0.1453.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1409
|
+
tencentcloud_sdk_python-3.0.1453.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1410
|
+
tencentcloud_sdk_python-3.0.1453.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1452.dist-info → tencentcloud_sdk_python-3.0.1453.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|