tencentcloud-sdk-python-csip 3.1.112__tar.gz → 3.1.122__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_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/setup.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/csip/v20221121/csip_client.py +69 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/csip/v20221121/csip_client_async.py +54 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/csip/v20221121/models.py +2614 -330
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_csip-3.1.122/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_csip-3.1.112/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/README.rst +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/setup.cfg +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/csip/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/csip/v20221121/__init__.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_csip-3.1.112 → tencentcloud_sdk_python_csip-3.1.122}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-csip
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.122
|
|
4
4
|
Summary: Tencent Cloud Csip 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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.122
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-csip',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.122,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Csip SDK for Python',
|
|
@@ -1337,6 +1337,52 @@ class CsipClient(AbstractClient):
|
|
|
1337
1337
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1338
1338
|
|
|
1339
1339
|
|
|
1340
|
+
def DescribeCWPMachineDetail(self, request):
|
|
1341
|
+
r"""主机详情
|
|
1342
|
+
|
|
1343
|
+
:param request: Request instance for DescribeCWPMachineDetail.
|
|
1344
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeCWPMachineDetailRequest`
|
|
1345
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeCWPMachineDetailResponse`
|
|
1346
|
+
|
|
1347
|
+
"""
|
|
1348
|
+
try:
|
|
1349
|
+
params = request._serialize()
|
|
1350
|
+
headers = request.headers
|
|
1351
|
+
body = self.call("DescribeCWPMachineDetail", params, headers=headers)
|
|
1352
|
+
response = json.loads(body)
|
|
1353
|
+
model = models.DescribeCWPMachineDetailResponse()
|
|
1354
|
+
model._deserialize(response["Response"])
|
|
1355
|
+
return model
|
|
1356
|
+
except Exception as e:
|
|
1357
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1358
|
+
raise
|
|
1359
|
+
else:
|
|
1360
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
def DescribeCWPMachines(self, request):
|
|
1364
|
+
r"""主机列表
|
|
1365
|
+
|
|
1366
|
+
:param request: Request instance for DescribeCWPMachines.
|
|
1367
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.DescribeCWPMachinesRequest`
|
|
1368
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.DescribeCWPMachinesResponse`
|
|
1369
|
+
|
|
1370
|
+
"""
|
|
1371
|
+
try:
|
|
1372
|
+
params = request._serialize()
|
|
1373
|
+
headers = request.headers
|
|
1374
|
+
body = self.call("DescribeCWPMachines", params, headers=headers)
|
|
1375
|
+
response = json.loads(body)
|
|
1376
|
+
model = models.DescribeCWPMachinesResponse()
|
|
1377
|
+
model._deserialize(response["Response"])
|
|
1378
|
+
return model
|
|
1379
|
+
except Exception as e:
|
|
1380
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1381
|
+
raise
|
|
1382
|
+
else:
|
|
1383
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1384
|
+
|
|
1385
|
+
|
|
1340
1386
|
def DescribeCallRecord(self, request):
|
|
1341
1387
|
r"""获取调用记录列表
|
|
1342
1388
|
|
|
@@ -4925,6 +4971,29 @@ class CsipClient(AbstractClient):
|
|
|
4925
4971
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4926
4972
|
|
|
4927
4973
|
|
|
4974
|
+
def ModifyMachineRemark(self, request):
|
|
4975
|
+
r"""修改主机资产备注信息
|
|
4976
|
+
|
|
4977
|
+
:param request: Request instance for ModifyMachineRemark.
|
|
4978
|
+
:type request: :class:`tencentcloud.csip.v20221121.models.ModifyMachineRemarkRequest`
|
|
4979
|
+
:rtype: :class:`tencentcloud.csip.v20221121.models.ModifyMachineRemarkResponse`
|
|
4980
|
+
|
|
4981
|
+
"""
|
|
4982
|
+
try:
|
|
4983
|
+
params = request._serialize()
|
|
4984
|
+
headers = request.headers
|
|
4985
|
+
body = self.call("ModifyMachineRemark", params, headers=headers)
|
|
4986
|
+
response = json.loads(body)
|
|
4987
|
+
model = models.ModifyMachineRemarkResponse()
|
|
4988
|
+
model._deserialize(response["Response"])
|
|
4989
|
+
return model
|
|
4990
|
+
except Exception as e:
|
|
4991
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4992
|
+
raise
|
|
4993
|
+
else:
|
|
4994
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4995
|
+
|
|
4996
|
+
|
|
4928
4997
|
def ModifyOrganizationAccountStatus(self, request):
|
|
4929
4998
|
r"""修改集团账号状态
|
|
4930
4999
|
|
|
@@ -1051,6 +1051,42 @@ class CsipClient(AbstractClient):
|
|
|
1051
1051
|
|
|
1052
1052
|
return await self.call_and_deserialize(**kwargs)
|
|
1053
1053
|
|
|
1054
|
+
async def DescribeCWPMachineDetail(
|
|
1055
|
+
self,
|
|
1056
|
+
request: models.DescribeCWPMachineDetailRequest,
|
|
1057
|
+
opts: Dict = None,
|
|
1058
|
+
) -> models.DescribeCWPMachineDetailResponse:
|
|
1059
|
+
"""
|
|
1060
|
+
主机详情
|
|
1061
|
+
"""
|
|
1062
|
+
|
|
1063
|
+
kwargs = {}
|
|
1064
|
+
kwargs["action"] = "DescribeCWPMachineDetail"
|
|
1065
|
+
kwargs["params"] = request._serialize()
|
|
1066
|
+
kwargs["resp_cls"] = models.DescribeCWPMachineDetailResponse
|
|
1067
|
+
kwargs["headers"] = request.headers
|
|
1068
|
+
kwargs["opts"] = opts or {}
|
|
1069
|
+
|
|
1070
|
+
return await self.call_and_deserialize(**kwargs)
|
|
1071
|
+
|
|
1072
|
+
async def DescribeCWPMachines(
|
|
1073
|
+
self,
|
|
1074
|
+
request: models.DescribeCWPMachinesRequest,
|
|
1075
|
+
opts: Dict = None,
|
|
1076
|
+
) -> models.DescribeCWPMachinesResponse:
|
|
1077
|
+
"""
|
|
1078
|
+
主机列表
|
|
1079
|
+
"""
|
|
1080
|
+
|
|
1081
|
+
kwargs = {}
|
|
1082
|
+
kwargs["action"] = "DescribeCWPMachines"
|
|
1083
|
+
kwargs["params"] = request._serialize()
|
|
1084
|
+
kwargs["resp_cls"] = models.DescribeCWPMachinesResponse
|
|
1085
|
+
kwargs["headers"] = request.headers
|
|
1086
|
+
kwargs["opts"] = opts or {}
|
|
1087
|
+
|
|
1088
|
+
return await self.call_and_deserialize(**kwargs)
|
|
1089
|
+
|
|
1054
1090
|
async def DescribeCallRecord(
|
|
1055
1091
|
self,
|
|
1056
1092
|
request: models.DescribeCallRecordRequest,
|
|
@@ -3859,6 +3895,24 @@ class CsipClient(AbstractClient):
|
|
|
3859
3895
|
|
|
3860
3896
|
return await self.call_and_deserialize(**kwargs)
|
|
3861
3897
|
|
|
3898
|
+
async def ModifyMachineRemark(
|
|
3899
|
+
self,
|
|
3900
|
+
request: models.ModifyMachineRemarkRequest,
|
|
3901
|
+
opts: Dict = None,
|
|
3902
|
+
) -> models.ModifyMachineRemarkResponse:
|
|
3903
|
+
"""
|
|
3904
|
+
修改主机资产备注信息
|
|
3905
|
+
"""
|
|
3906
|
+
|
|
3907
|
+
kwargs = {}
|
|
3908
|
+
kwargs["action"] = "ModifyMachineRemark"
|
|
3909
|
+
kwargs["params"] = request._serialize()
|
|
3910
|
+
kwargs["resp_cls"] = models.ModifyMachineRemarkResponse
|
|
3911
|
+
kwargs["headers"] = request.headers
|
|
3912
|
+
kwargs["opts"] = opts or {}
|
|
3913
|
+
|
|
3914
|
+
return await self.call_and_deserialize(**kwargs)
|
|
3915
|
+
|
|
3862
3916
|
async def ModifyOrganizationAccountStatus(
|
|
3863
3917
|
self,
|
|
3864
3918
|
request: models.ModifyOrganizationAccountStatusRequest,
|