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 CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1119'
16
+ __version__ = '3.0.1121'
@@ -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