tencentcloud-sdk-python-ccc 3.0.1484__tar.gz → 3.1.4__tar.gz
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_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/setup.py +2 -1
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud/ccc/v20200210/ccc_client.py +46 -0
- tencentcloud_sdk_python_ccc-3.1.4/tencentcloud/ccc/v20200210/ccc_client_async.py +1494 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud/ccc/v20200210/models.py +222 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +1 -0
- tencentcloud_sdk_python_ccc-3.1.4/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ccc-3.0.1484/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/README.rst +0 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud/ccc/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud/ccc/v20200210/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.0.1484 → tencentcloud_sdk_python_ccc-3.1.4}/tencentcloud_sdk_python_ccc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ccc
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.4
|
|
4
4
|
Summary: Tencent Cloud Ccc SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.4
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,8 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ccc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.4,<4.0.0"],
|
|
12
|
+
|
|
12
13
|
version=tencentcloud.__version__,
|
|
13
14
|
description='Tencent Cloud Ccc SDK for Python',
|
|
14
15
|
long_description=open('README.rst').read(),
|
|
@@ -1577,6 +1577,29 @@ class CccClient(AbstractClient):
|
|
|
1577
1577
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1578
1578
|
|
|
1579
1579
|
|
|
1580
|
+
def PauseAutoCalloutTask(self, request):
|
|
1581
|
+
r"""暂停未完成的自动外呼任务
|
|
1582
|
+
|
|
1583
|
+
:param request: Request instance for PauseAutoCalloutTask.
|
|
1584
|
+
:type request: :class:`tencentcloud.ccc.v20200210.models.PauseAutoCalloutTaskRequest`
|
|
1585
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.PauseAutoCalloutTaskResponse`
|
|
1586
|
+
|
|
1587
|
+
"""
|
|
1588
|
+
try:
|
|
1589
|
+
params = request._serialize()
|
|
1590
|
+
headers = request.headers
|
|
1591
|
+
body = self.call("PauseAutoCalloutTask", params, headers=headers)
|
|
1592
|
+
response = json.loads(body)
|
|
1593
|
+
model = models.PauseAutoCalloutTaskResponse()
|
|
1594
|
+
model._deserialize(response["Response"])
|
|
1595
|
+
return model
|
|
1596
|
+
except Exception as e:
|
|
1597
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1598
|
+
raise
|
|
1599
|
+
else:
|
|
1600
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1601
|
+
|
|
1602
|
+
|
|
1580
1603
|
def PausePredictiveDialingCampaign(self, request):
|
|
1581
1604
|
r"""暂停预测式外呼任务
|
|
1582
1605
|
|
|
@@ -1646,6 +1669,29 @@ class CccClient(AbstractClient):
|
|
|
1646
1669
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1647
1670
|
|
|
1648
1671
|
|
|
1672
|
+
def ResumeAutoCalloutTask(self, request):
|
|
1673
|
+
r"""暂停未完成的自动外呼任务
|
|
1674
|
+
|
|
1675
|
+
:param request: Request instance for ResumeAutoCalloutTask.
|
|
1676
|
+
:type request: :class:`tencentcloud.ccc.v20200210.models.ResumeAutoCalloutTaskRequest`
|
|
1677
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.ResumeAutoCalloutTaskResponse`
|
|
1678
|
+
|
|
1679
|
+
"""
|
|
1680
|
+
try:
|
|
1681
|
+
params = request._serialize()
|
|
1682
|
+
headers = request.headers
|
|
1683
|
+
body = self.call("ResumeAutoCalloutTask", params, headers=headers)
|
|
1684
|
+
response = json.loads(body)
|
|
1685
|
+
model = models.ResumeAutoCalloutTaskResponse()
|
|
1686
|
+
model._deserialize(response["Response"])
|
|
1687
|
+
return model
|
|
1688
|
+
except Exception as e:
|
|
1689
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1690
|
+
raise
|
|
1691
|
+
else:
|
|
1692
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1693
|
+
|
|
1694
|
+
|
|
1649
1695
|
def ResumePredictiveDialingCampaign(self, request):
|
|
1650
1696
|
r"""恢复预测式外呼任务
|
|
1651
1697
|
|