tencentcloud-sdk-python-intl-en 3.0.1119__py2.py3-none-any.whl → 3.0.1121__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/billing/v20180709/billing_client.py +23 -0
- tencentcloud/billing/v20180709/models.py +751 -0
- tencentcloud/config/v20220802/config_client.py +23 -0
- tencentcloud/config/v20220802/errorcodes.py +3 -0
- tencentcloud/config/v20220802/models.py +418 -0
- tencentcloud/faceid/v20180301/errorcodes.py +3 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +80 -35
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1121.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -536,6 +536,29 @@ class BillingClient(AbstractClient):
|
|
|
536
536
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
537
537
|
|
|
538
538
|
|
|
539
|
+
def DescribeDealsByCond(self, request):
|
|
540
|
+
"""Querying orders
|
|
541
|
+
|
|
542
|
+
:param request: Request instance for DescribeDealsByCond.
|
|
543
|
+
:type request: :class:`tencentcloud.billing.v20180709.models.DescribeDealsByCondRequest`
|
|
544
|
+
:rtype: :class:`tencentcloud.billing.v20180709.models.DescribeDealsByCondResponse`
|
|
545
|
+
|
|
546
|
+
"""
|
|
547
|
+
try:
|
|
548
|
+
params = request._serialize()
|
|
549
|
+
headers = request.headers
|
|
550
|
+
body = self.call("DescribeDealsByCond", params, headers=headers)
|
|
551
|
+
response = json.loads(body)
|
|
552
|
+
model = models.DescribeDealsByCondResponse()
|
|
553
|
+
model._deserialize(response["Response"])
|
|
554
|
+
return model
|
|
555
|
+
except Exception as e:
|
|
556
|
+
if isinstance(e, TencentCloudSDKException):
|
|
557
|
+
raise
|
|
558
|
+
else:
|
|
559
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
560
|
+
|
|
561
|
+
|
|
539
562
|
def DescribeDosageCosDetailByDate(self, request):
|
|
540
563
|
"""This API is used to query COS usage details.
|
|
541
564
|
|