tencentcloud-sdk-python-intl-en 3.0.1116__py2.py3-none-any.whl → 3.0.1118__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/apigateway/v20180808/apigateway_client.py +23 -0
- tencentcloud/apigateway/v20180808/models.py +34 -0
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/ccc/v20200210/models.py +121 -0
- tencentcloud/ssl/v20191205/models.py +30 -0
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1118.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1118.dist-info}/RECORD +10 -10
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1118.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1116.dist-info → tencentcloud_sdk_python_intl_en-3.0.1118.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -980,6 +980,29 @@ class ApigatewayClient(AbstractClient):
|
|
|
980
980
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
981
981
|
|
|
982
982
|
|
|
983
|
+
def DescribeExclusiveInstanceRegions(self, request):
|
|
984
|
+
"""Get the list of supported regions for dedicated instances
|
|
985
|
+
|
|
986
|
+
:param request: Request instance for DescribeExclusiveInstanceRegions.
|
|
987
|
+
:type request: :class:`tencentcloud.apigateway.v20180808.models.DescribeExclusiveInstanceRegionsRequest`
|
|
988
|
+
:rtype: :class:`tencentcloud.apigateway.v20180808.models.DescribeExclusiveInstanceRegionsResponse`
|
|
989
|
+
|
|
990
|
+
"""
|
|
991
|
+
try:
|
|
992
|
+
params = request._serialize()
|
|
993
|
+
headers = request.headers
|
|
994
|
+
body = self.call("DescribeExclusiveInstanceRegions", params, headers=headers)
|
|
995
|
+
response = json.loads(body)
|
|
996
|
+
model = models.DescribeExclusiveInstanceRegionsResponse()
|
|
997
|
+
model._deserialize(response["Response"])
|
|
998
|
+
return model
|
|
999
|
+
except Exception as e:
|
|
1000
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1001
|
+
raise
|
|
1002
|
+
else:
|
|
1003
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1004
|
+
|
|
1005
|
+
|
|
983
1006
|
def DescribeIPStrategy(self, request):
|
|
984
1007
|
"""This API is used to query IP policy details.
|
|
985
1008
|
|
|
@@ -10612,6 +10612,40 @@ class DescribeApisStatusResultInfo(AbstractModel):
|
|
|
10612
10612
|
|
|
10613
10613
|
|
|
10614
10614
|
|
|
10615
|
+
class DescribeExclusiveInstanceRegionsRequest(AbstractModel):
|
|
10616
|
+
"""DescribeExclusiveInstanceRegions request structure.
|
|
10617
|
+
|
|
10618
|
+
"""
|
|
10619
|
+
|
|
10620
|
+
|
|
10621
|
+
class DescribeExclusiveInstanceRegionsResponse(AbstractModel):
|
|
10622
|
+
"""DescribeExclusiveInstanceRegions response structure.
|
|
10623
|
+
|
|
10624
|
+
"""
|
|
10625
|
+
|
|
10626
|
+
def __init__(self):
|
|
10627
|
+
r"""
|
|
10628
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10629
|
+
:type RequestId: str
|
|
10630
|
+
"""
|
|
10631
|
+
self._RequestId = None
|
|
10632
|
+
|
|
10633
|
+
@property
|
|
10634
|
+
def RequestId(self):
|
|
10635
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10636
|
+
:rtype: str
|
|
10637
|
+
"""
|
|
10638
|
+
return self._RequestId
|
|
10639
|
+
|
|
10640
|
+
@RequestId.setter
|
|
10641
|
+
def RequestId(self, RequestId):
|
|
10642
|
+
self._RequestId = RequestId
|
|
10643
|
+
|
|
10644
|
+
|
|
10645
|
+
def _deserialize(self, params):
|
|
10646
|
+
self._RequestId = params.get("RequestId")
|
|
10647
|
+
|
|
10648
|
+
|
|
10615
10649
|
class DescribeIPStrategyApisStatusRequest(AbstractModel):
|
|
10616
10650
|
"""DescribeIPStrategyApisStatus request structure.
|
|
10617
10651
|
|
|
@@ -121,7 +121,7 @@ class CccClient(AbstractClient):
|
|
|
121
121
|
def CreateAICall(self, request):
|
|
122
122
|
"""Used to make outbound calls by invoking AI models, limited to the use of proprietary phone numbers. Currently, the Advanced version seats are available for a **limited time** free trial.
|
|
123
123
|
|
|
124
|
-
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://
|
|
124
|
+
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://www.tencentcloud.com/document/product/1229/66889).
|
|
125
125
|
|
|
126
126
|
:param request: Request instance for CreateAICall.
|
|
127
127
|
:type request: :class:`tencentcloud.ccc.v20200210.models.CreateAICallRequest`
|
|
@@ -18,6 +18,72 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AITransferItem(AbstractModel):
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _TransferFunctionName:
|
|
29
|
+
:type TransferFunctionName: str
|
|
30
|
+
:param _TransferFunctionDesc:
|
|
31
|
+
:type TransferFunctionDesc: str
|
|
32
|
+
:param _TransferSkillGroupId:
|
|
33
|
+
:type TransferSkillGroupId: int
|
|
34
|
+
"""
|
|
35
|
+
self._TransferFunctionName = None
|
|
36
|
+
self._TransferFunctionDesc = None
|
|
37
|
+
self._TransferSkillGroupId = None
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def TransferFunctionName(self):
|
|
41
|
+
"""
|
|
42
|
+
:rtype: str
|
|
43
|
+
"""
|
|
44
|
+
return self._TransferFunctionName
|
|
45
|
+
|
|
46
|
+
@TransferFunctionName.setter
|
|
47
|
+
def TransferFunctionName(self, TransferFunctionName):
|
|
48
|
+
self._TransferFunctionName = TransferFunctionName
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def TransferFunctionDesc(self):
|
|
52
|
+
"""
|
|
53
|
+
:rtype: str
|
|
54
|
+
"""
|
|
55
|
+
return self._TransferFunctionDesc
|
|
56
|
+
|
|
57
|
+
@TransferFunctionDesc.setter
|
|
58
|
+
def TransferFunctionDesc(self, TransferFunctionDesc):
|
|
59
|
+
self._TransferFunctionDesc = TransferFunctionDesc
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def TransferSkillGroupId(self):
|
|
63
|
+
"""
|
|
64
|
+
:rtype: int
|
|
65
|
+
"""
|
|
66
|
+
return self._TransferSkillGroupId
|
|
67
|
+
|
|
68
|
+
@TransferSkillGroupId.setter
|
|
69
|
+
def TransferSkillGroupId(self, TransferSkillGroupId):
|
|
70
|
+
self._TransferSkillGroupId = TransferSkillGroupId
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _deserialize(self, params):
|
|
74
|
+
self._TransferFunctionName = params.get("TransferFunctionName")
|
|
75
|
+
self._TransferFunctionDesc = params.get("TransferFunctionDesc")
|
|
76
|
+
self._TransferSkillGroupId = params.get("TransferSkillGroupId")
|
|
77
|
+
memeber_set = set(params.keys())
|
|
78
|
+
for name, value in vars(self).items():
|
|
79
|
+
property_name = name[1:]
|
|
80
|
+
if property_name in memeber_set:
|
|
81
|
+
memeber_set.remove(property_name)
|
|
82
|
+
if len(memeber_set) > 0:
|
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
21
87
|
class AbortAgentCruiseDialingCampaignRequest(AbstractModel):
|
|
22
88
|
"""AbortAgentCruiseDialingCampaign request structure.
|
|
23
89
|
|
|
@@ -1253,6 +1319,10 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
1253
1319
|
:type EndFunctionEnable: bool
|
|
1254
1320
|
:param _EndFunctionDesc: Effective when EndFunctionEnable is true; the description of call_end function calling, default is "End the call when user has to leave (like says bye) or you are instructed to do so."
|
|
1255
1321
|
:type EndFunctionDesc: str
|
|
1322
|
+
:param _TransferFunctionEnable:
|
|
1323
|
+
:type TransferFunctionEnable: bool
|
|
1324
|
+
:param _TransferItems:
|
|
1325
|
+
:type TransferItems: list of AITransferItem
|
|
1256
1326
|
:param _NotifyDuration: The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
1257
1327
|
:type NotifyDuration: int
|
|
1258
1328
|
:param _NotifyMessage: The AI prompt when NotifyDuration has passed without the user speaking, default is "Sorry, I didn't hear you clearly. Can you repeat that?"
|
|
@@ -1339,6 +1409,8 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1339
1409
|
|
|
1340
1410
|
</div></div>
|
|
1341
1411
|
:type CustomTTSConfig: str
|
|
1412
|
+
:param _PromptVariables:
|
|
1413
|
+
:type PromptVariables: list of Variable
|
|
1342
1414
|
"""
|
|
1343
1415
|
self._SdkAppId = None
|
|
1344
1416
|
self._Callee = None
|
|
@@ -1357,10 +1429,13 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1357
1429
|
self._InterruptSpeechDuration = None
|
|
1358
1430
|
self._EndFunctionEnable = None
|
|
1359
1431
|
self._EndFunctionDesc = None
|
|
1432
|
+
self._TransferFunctionEnable = None
|
|
1433
|
+
self._TransferItems = None
|
|
1360
1434
|
self._NotifyDuration = None
|
|
1361
1435
|
self._NotifyMessage = None
|
|
1362
1436
|
self._NotifyMaxCount = None
|
|
1363
1437
|
self._CustomTTSConfig = None
|
|
1438
|
+
self._PromptVariables = None
|
|
1364
1439
|
|
|
1365
1440
|
@property
|
|
1366
1441
|
def SdkAppId(self):
|
|
@@ -1667,6 +1742,28 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
1667
1742
|
def EndFunctionDesc(self, EndFunctionDesc):
|
|
1668
1743
|
self._EndFunctionDesc = EndFunctionDesc
|
|
1669
1744
|
|
|
1745
|
+
@property
|
|
1746
|
+
def TransferFunctionEnable(self):
|
|
1747
|
+
"""
|
|
1748
|
+
:rtype: bool
|
|
1749
|
+
"""
|
|
1750
|
+
return self._TransferFunctionEnable
|
|
1751
|
+
|
|
1752
|
+
@TransferFunctionEnable.setter
|
|
1753
|
+
def TransferFunctionEnable(self, TransferFunctionEnable):
|
|
1754
|
+
self._TransferFunctionEnable = TransferFunctionEnable
|
|
1755
|
+
|
|
1756
|
+
@property
|
|
1757
|
+
def TransferItems(self):
|
|
1758
|
+
"""
|
|
1759
|
+
:rtype: list of AITransferItem
|
|
1760
|
+
"""
|
|
1761
|
+
return self._TransferItems
|
|
1762
|
+
|
|
1763
|
+
@TransferItems.setter
|
|
1764
|
+
def TransferItems(self, TransferItems):
|
|
1765
|
+
self._TransferItems = TransferItems
|
|
1766
|
+
|
|
1670
1767
|
@property
|
|
1671
1768
|
def NotifyDuration(self):
|
|
1672
1769
|
"""The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
@@ -1789,6 +1886,17 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1789
1886
|
def CustomTTSConfig(self, CustomTTSConfig):
|
|
1790
1887
|
self._CustomTTSConfig = CustomTTSConfig
|
|
1791
1888
|
|
|
1889
|
+
@property
|
|
1890
|
+
def PromptVariables(self):
|
|
1891
|
+
"""
|
|
1892
|
+
:rtype: list of Variable
|
|
1893
|
+
"""
|
|
1894
|
+
return self._PromptVariables
|
|
1895
|
+
|
|
1896
|
+
@PromptVariables.setter
|
|
1897
|
+
def PromptVariables(self, PromptVariables):
|
|
1898
|
+
self._PromptVariables = PromptVariables
|
|
1899
|
+
|
|
1792
1900
|
|
|
1793
1901
|
def _deserialize(self, params):
|
|
1794
1902
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -1808,10 +1916,23 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1808
1916
|
self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
|
|
1809
1917
|
self._EndFunctionEnable = params.get("EndFunctionEnable")
|
|
1810
1918
|
self._EndFunctionDesc = params.get("EndFunctionDesc")
|
|
1919
|
+
self._TransferFunctionEnable = params.get("TransferFunctionEnable")
|
|
1920
|
+
if params.get("TransferItems") is not None:
|
|
1921
|
+
self._TransferItems = []
|
|
1922
|
+
for item in params.get("TransferItems"):
|
|
1923
|
+
obj = AITransferItem()
|
|
1924
|
+
obj._deserialize(item)
|
|
1925
|
+
self._TransferItems.append(obj)
|
|
1811
1926
|
self._NotifyDuration = params.get("NotifyDuration")
|
|
1812
1927
|
self._NotifyMessage = params.get("NotifyMessage")
|
|
1813
1928
|
self._NotifyMaxCount = params.get("NotifyMaxCount")
|
|
1814
1929
|
self._CustomTTSConfig = params.get("CustomTTSConfig")
|
|
1930
|
+
if params.get("PromptVariables") is not None:
|
|
1931
|
+
self._PromptVariables = []
|
|
1932
|
+
for item in params.get("PromptVariables"):
|
|
1933
|
+
obj = Variable()
|
|
1934
|
+
obj._deserialize(item)
|
|
1935
|
+
self._PromptVariables.append(obj)
|
|
1815
1936
|
memeber_set = set(params.keys())
|
|
1816
1937
|
for name, value in vars(self).items():
|
|
1817
1938
|
property_name = name[1:]
|
|
@@ -3557,8 +3557,11 @@ class DeleteCertificateRequest(AbstractModel):
|
|
|
3557
3557
|
r"""
|
|
3558
3558
|
:param _CertificateId: Certificate ID
|
|
3559
3559
|
:type CertificateId: str
|
|
3560
|
+
:param _IsCheckResource:
|
|
3561
|
+
:type IsCheckResource: bool
|
|
3560
3562
|
"""
|
|
3561
3563
|
self._CertificateId = None
|
|
3564
|
+
self._IsCheckResource = None
|
|
3562
3565
|
|
|
3563
3566
|
@property
|
|
3564
3567
|
def CertificateId(self):
|
|
@@ -3571,9 +3574,21 @@ class DeleteCertificateRequest(AbstractModel):
|
|
|
3571
3574
|
def CertificateId(self, CertificateId):
|
|
3572
3575
|
self._CertificateId = CertificateId
|
|
3573
3576
|
|
|
3577
|
+
@property
|
|
3578
|
+
def IsCheckResource(self):
|
|
3579
|
+
"""
|
|
3580
|
+
:rtype: bool
|
|
3581
|
+
"""
|
|
3582
|
+
return self._IsCheckResource
|
|
3583
|
+
|
|
3584
|
+
@IsCheckResource.setter
|
|
3585
|
+
def IsCheckResource(self, IsCheckResource):
|
|
3586
|
+
self._IsCheckResource = IsCheckResource
|
|
3587
|
+
|
|
3574
3588
|
|
|
3575
3589
|
def _deserialize(self, params):
|
|
3576
3590
|
self._CertificateId = params.get("CertificateId")
|
|
3591
|
+
self._IsCheckResource = params.get("IsCheckResource")
|
|
3577
3592
|
memeber_set = set(params.keys())
|
|
3578
3593
|
for name, value in vars(self).items():
|
|
3579
3594
|
property_name = name[1:]
|
|
@@ -3593,10 +3608,13 @@ class DeleteCertificateResponse(AbstractModel):
|
|
|
3593
3608
|
r"""
|
|
3594
3609
|
:param _DeleteResult: Deletion result
|
|
3595
3610
|
:type DeleteResult: bool
|
|
3611
|
+
:param _TaskId:
|
|
3612
|
+
:type TaskId: str
|
|
3596
3613
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3597
3614
|
:type RequestId: str
|
|
3598
3615
|
"""
|
|
3599
3616
|
self._DeleteResult = None
|
|
3617
|
+
self._TaskId = None
|
|
3600
3618
|
self._RequestId = None
|
|
3601
3619
|
|
|
3602
3620
|
@property
|
|
@@ -3610,6 +3628,17 @@ class DeleteCertificateResponse(AbstractModel):
|
|
|
3610
3628
|
def DeleteResult(self, DeleteResult):
|
|
3611
3629
|
self._DeleteResult = DeleteResult
|
|
3612
3630
|
|
|
3631
|
+
@property
|
|
3632
|
+
def TaskId(self):
|
|
3633
|
+
"""
|
|
3634
|
+
:rtype: str
|
|
3635
|
+
"""
|
|
3636
|
+
return self._TaskId
|
|
3637
|
+
|
|
3638
|
+
@TaskId.setter
|
|
3639
|
+
def TaskId(self, TaskId):
|
|
3640
|
+
self._TaskId = TaskId
|
|
3641
|
+
|
|
3613
3642
|
@property
|
|
3614
3643
|
def RequestId(self):
|
|
3615
3644
|
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -3624,6 +3653,7 @@ class DeleteCertificateResponse(AbstractModel):
|
|
|
3624
3653
|
|
|
3625
3654
|
def _deserialize(self, params):
|
|
3626
3655
|
self._DeleteResult = params.get("DeleteResult")
|
|
3656
|
+
self._TaskId = params.get("TaskId")
|
|
3627
3657
|
self._RequestId = params.get("RequestId")
|
|
3628
3658
|
|
|
3629
3659
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=Sqz5gcHphQ4aKYqlq5KuGq2f23_eK1o67zC_O08KIok,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=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -21,9 +21,9 @@ tencentcloud/antiddos/v20200309/errorcodes.py,sha256=-NgKirEk0ME2_qvHM8JpT4xH_fA
|
|
|
21
21
|
tencentcloud/antiddos/v20200309/models.py,sha256=uKNPnhhR6sRyyjdcHz7G_e_az5a_-K7S9BM1QM7A7As,544486
|
|
22
22
|
tencentcloud/apigateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
tencentcloud/apigateway/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
tencentcloud/apigateway/v20180808/apigateway_client.py,sha256=
|
|
24
|
+
tencentcloud/apigateway/v20180808/apigateway_client.py,sha256=vqNE3Z8NTt4nrwjGpkoE24wCUz_o50MZL7BXqWrEz6s,91277
|
|
25
25
|
tencentcloud/apigateway/v20180808/errorcodes.py,sha256=0T0u1gze7_0UL5PGy0yOYWJOuI17GixRzh6_wngXJ74,23820
|
|
26
|
-
tencentcloud/apigateway/v20180808/models.py,sha256=
|
|
26
|
+
tencentcloud/apigateway/v20180808/models.py,sha256=BLOBe8Vw6lpPySeaXFyNihWAnZdPStvnqX_d3utcLyE,793345
|
|
27
27
|
tencentcloud/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
tencentcloud/asr/v20190614/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
tencentcloud/asr/v20190614/asr_client.py,sha256=r4qEn2LB-YgWklBIiAUfpxCOI2ypetHuoJz2HqAm-Cg,6446
|
|
@@ -66,9 +66,9 @@ tencentcloud/cbs/v20170312/errorcodes.py,sha256=spsaD0VnuuaveSdTgfgwcGUpYYi5hkRy
|
|
|
66
66
|
tencentcloud/cbs/v20170312/models.py,sha256=IDfQMTM-fKTnwUCwrRr7LPchEVrcuZOgFCbWjSSZv3Q,296697
|
|
67
67
|
tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
tencentcloud/ccc/v20200210/ccc_client.py,sha256=
|
|
69
|
+
tencentcloud/ccc/v20200210/ccc_client.py,sha256=T_mU_39f_SVzO3Kr-3GFh1RrCrPQErs9XQ5A32JuKSs,51059
|
|
70
70
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=4ND1rU15-nGQaj7CqeXpLu0gT4ajV7CQX3gf7e0-jZ8,5234
|
|
71
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
|
71
|
+
tencentcloud/ccc/v20200210/models.py,sha256=hQaPWXlW1slcdxL4ieVatieZjsfOINK84dNd9mi6F7o,400484
|
|
72
72
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=lsVv0haXhHe9XbWFlQc65RbthqZKIGqdfZTcBqW7BEE,137214
|
|
@@ -466,7 +466,7 @@ tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=4EtZ1Hvt_PPkhxVMAtn8
|
|
|
466
466
|
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
467
467
|
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
468
468
|
tencentcloud/ssl/v20191205/errorcodes.py,sha256=NiDmHYjK24Li-9nuRpSIMBMeaRjfsSGcEuaBGwNnpVs,9870
|
|
469
|
-
tencentcloud/ssl/v20191205/models.py,sha256=
|
|
469
|
+
tencentcloud/ssl/v20191205/models.py,sha256=wCHj4oJLUn1QgfFC9hmJRErBuFpsrzbri9guL7SgELI,431409
|
|
470
470
|
tencentcloud/ssl/v20191205/ssl_client.py,sha256=i9u0Ml5aKK8yBfUdEY7PMMJExA93adqalnWVcG8X8To,32348
|
|
471
471
|
tencentcloud/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
472
472
|
tencentcloud/ssm/v20190923/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -614,7 +614,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
614
614
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
615
615
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
616
616
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
617
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
618
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
619
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
620
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
617
|
+
tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/METADATA,sha256=6KRnz4UumDodXPFS7_ZDDPq6Q2jreSP3CVA5StdSH0I,1628
|
|
618
|
+
tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
619
|
+
tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
620
|
+
tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/RECORD,,
|
|
File without changes
|