tencentcloud-sdk-python 3.1.122__py2.py3-none-any.whl → 3.1.123__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.
Files changed (50) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apigateway/v20180808/apigateway_client.py +1 -26
  3. tencentcloud/apigateway/v20180808/apigateway_client_async.py +1 -21
  4. tencentcloud/apigateway/v20180808/models.py +0 -83
  5. tencentcloud/bh/v20230418/models.py +197 -62
  6. tencentcloud/billing/v20180709/models.py +89 -76
  7. tencentcloud/cfs/v20190719/errorcodes.py +15 -0
  8. tencentcloud/clb/v20180317/clb_client.py +575 -0
  9. tencentcloud/clb/v20180317/clb_client_async.py +450 -0
  10. tencentcloud/clb/v20180317/models.py +14826 -9369
  11. tencentcloud/cngw/__init__.py +0 -0
  12. tencentcloud/cngw/v20230418/__init__.py +0 -0
  13. tencentcloud/cngw/v20230418/cngw_client.py +1061 -0
  14. tencentcloud/cngw/v20230418/cngw_client_async.py +836 -0
  15. tencentcloud/cngw/v20230418/errorcodes.py +306 -0
  16. tencentcloud/cngw/v20230418/models.py +11440 -0
  17. tencentcloud/cynosdb/v20190107/models.py +11 -11
  18. tencentcloud/dnspod/v20210323/models.py +2 -2
  19. tencentcloud/es/v20180416/models.py +15 -0
  20. tencentcloud/ess/v20201111/ess_client.py +37 -0
  21. tencentcloud/ess/v20201111/ess_client_async.py +32 -0
  22. tencentcloud/ess/v20201111/models.py +128 -0
  23. tencentcloud/essbasic/v20210526/essbasic_client.py +37 -0
  24. tencentcloud/essbasic/v20210526/essbasic_client_async.py +32 -0
  25. tencentcloud/essbasic/v20210526/models.py +111 -0
  26. tencentcloud/live/v20180801/errorcodes.py +3 -0
  27. tencentcloud/live/v20180801/models.py +30 -0
  28. tencentcloud/monitor/v20180724/models.py +10 -16
  29. tencentcloud/mps/v20190612/models.py +2 -2
  30. tencentcloud/ocr/v20181119/models.py +185 -16
  31. tencentcloud/ocr/v20181119/ocr_client.py +27 -0
  32. tencentcloud/ocr/v20181119/ocr_client_async.py +22 -0
  33. tencentcloud/organization/v20210331/errorcodes.py +6 -0
  34. tencentcloud/organization/v20210331/models.py +48 -18
  35. tencentcloud/postgres/v20170312/models.py +37 -22
  36. tencentcloud/redis/v20180412/models.py +19 -4
  37. tencentcloud/tcb/v20180608/models.py +19 -4
  38. tencentcloud/tdmysql/v20211122/models.py +180 -0
  39. tencentcloud/tdmysql/v20211122/tdmysql_client.py +23 -0
  40. tencentcloud/tdmysql/v20211122/tdmysql_client_async.py +18 -0
  41. tencentcloud/tke/v20220501/models.py +54 -0
  42. tencentcloud/tke/v20220501/tke_client.py +23 -0
  43. tencentcloud/tke/v20220501/tke_client_async.py +18 -0
  44. tencentcloud/trtc/v20190722/errorcodes.py +6 -0
  45. tencentcloud/trtc/v20190722/models.py +211 -92
  46. {tencentcloud_sdk_python-3.1.122.dist-info → tencentcloud_sdk_python-3.1.123.dist-info}/METADATA +1 -1
  47. {tencentcloud_sdk_python-3.1.122.dist-info → tencentcloud_sdk_python-3.1.123.dist-info}/RECORD +50 -44
  48. {tencentcloud_sdk_python-3.1.122.dist-info → tencentcloud_sdk_python-3.1.123.dist-info}/LICENSE +0 -0
  49. {tencentcloud_sdk_python-3.1.122.dist-info → tencentcloud_sdk_python-3.1.123.dist-info}/WHEEL +0 -0
  50. {tencentcloud_sdk_python-3.1.122.dist-info → tencentcloud_sdk_python-3.1.123.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.122'
17
+ __version__ = '3.1.123'
@@ -771,31 +771,6 @@ class ApigatewayClient(AbstractClient):
771
771
  raise TencentCloudSDKException(type(e).__name__, str(e))
772
772
 
773
773
 
774
- def DescribeApiApp(self, request):
775
- r"""历史接口,已经无用户调用
776
-
777
- 本接口(DescribeApiApp)用于根据应用ID搜索应用。此接口已下线,如需使用功能请使用DescribeApiAppsStatus接口。
778
-
779
- :param request: Request instance for DescribeApiApp.
780
- :type request: :class:`tencentcloud.apigateway.v20180808.models.DescribeApiAppRequest`
781
- :rtype: :class:`tencentcloud.apigateway.v20180808.models.DescribeApiAppResponse`
782
-
783
- """
784
- try:
785
- params = request._serialize()
786
- headers = request.headers
787
- body = self.call("DescribeApiApp", params, headers=headers)
788
- response = json.loads(body)
789
- model = models.DescribeApiAppResponse()
790
- model._deserialize(response["Response"])
791
- return model
792
- except Exception as e:
793
- if isinstance(e, TencentCloudSDKException):
794
- raise
795
- else:
796
- raise TencentCloudSDKException(type(e).__name__, str(e))
797
-
798
-
799
774
  def DescribeApiAppBindApisStatus(self, request):
800
775
  r"""本接口(DescribeApiAppBindApisStatus)查询应用绑定的Api列表。
801
776
 
@@ -937,7 +912,7 @@ class ApigatewayClient(AbstractClient):
937
912
 
938
913
  def DescribeApiKeysStatus(self, request):
939
914
  r"""本接口(DescribeApiKeysStatus)用于查询密钥列表。
940
- 当用户创建了多个密钥对时,可使用本接口查询一个或多个 API 密钥信息。
915
+ 当用户创建了多个密钥对时,可使用本接口查询一个或多个 API 密钥信息1。
941
916
 
942
917
  :param request: Request instance for DescribeApiKeysStatus.
943
918
  :type request: :class:`tencentcloud.apigateway.v20180808.models.DescribeApiKeysStatusRequest`
@@ -610,26 +610,6 @@ class ApigatewayClient(AbstractClient):
610
610
 
611
611
  return await self.call_and_deserialize(**kwargs)
612
612
 
613
- async def DescribeApiApp(
614
- self,
615
- request: models.DescribeApiAppRequest,
616
- opts: Dict = None,
617
- ) -> models.DescribeApiAppResponse:
618
- """
619
- 历史接口,已经无用户调用
620
-
621
- 本接口(DescribeApiApp)用于根据应用ID搜索应用。此接口已下线,如需使用功能请使用DescribeApiAppsStatus接口。
622
- """
623
-
624
- kwargs = {}
625
- kwargs["action"] = "DescribeApiApp"
626
- kwargs["params"] = request._serialize()
627
- kwargs["resp_cls"] = models.DescribeApiAppResponse
628
- kwargs["headers"] = request.headers
629
- kwargs["opts"] = opts or {}
630
-
631
- return await self.call_and_deserialize(**kwargs)
632
-
633
613
  async def DescribeApiAppBindApisStatus(
634
614
  self,
635
615
  request: models.DescribeApiAppBindApisStatusRequest,
@@ -746,7 +726,7 @@ class ApigatewayClient(AbstractClient):
746
726
  ) -> models.DescribeApiKeysStatusResponse:
747
727
  """
748
728
  本接口(DescribeApiKeysStatus)用于查询密钥列表。
749
- 当用户创建了多个密钥对时,可使用本接口查询一个或多个 API 密钥信息。
729
+ 当用户创建了多个密钥对时,可使用本接口查询一个或多个 API 密钥信息1。
750
730
  """
751
731
 
752
732
  kwargs = {}
@@ -9332,89 +9332,6 @@ class DescribeApiAppBindApisStatusResponse(AbstractModel):
9332
9332
  self._RequestId = params.get("RequestId")
9333
9333
 
9334
9334
 
9335
- class DescribeApiAppRequest(AbstractModel):
9336
- r"""DescribeApiApp请求参数结构体
9337
-
9338
- """
9339
-
9340
- def __init__(self):
9341
- r"""
9342
- :param _ApiAppId: 应用ID。
9343
- :type ApiAppId: str
9344
- """
9345
- self._ApiAppId = None
9346
-
9347
- @property
9348
- def ApiAppId(self):
9349
- r"""应用ID。
9350
- :rtype: str
9351
- """
9352
- return self._ApiAppId
9353
-
9354
- @ApiAppId.setter
9355
- def ApiAppId(self, ApiAppId):
9356
- self._ApiAppId = ApiAppId
9357
-
9358
-
9359
- def _deserialize(self, params):
9360
- self._ApiAppId = params.get("ApiAppId")
9361
- memeber_set = set(params.keys())
9362
- for name, value in vars(self).items():
9363
- property_name = name[1:]
9364
- if property_name in memeber_set:
9365
- memeber_set.remove(property_name)
9366
- if len(memeber_set) > 0:
9367
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
9368
-
9369
-
9370
-
9371
- class DescribeApiAppResponse(AbstractModel):
9372
- r"""DescribeApiApp返回参数结构体
9373
-
9374
- """
9375
-
9376
- def __init__(self):
9377
- r"""
9378
- :param _Result: 应用详情。
9379
- 注意:此字段可能返回 null,表示取不到有效值。
9380
- :type Result: :class:`tencentcloud.apigateway.v20180808.models.ApiAppInfos`
9381
- :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9382
- :type RequestId: str
9383
- """
9384
- self._Result = None
9385
- self._RequestId = None
9386
-
9387
- @property
9388
- def Result(self):
9389
- r"""应用详情。
9390
- 注意:此字段可能返回 null,表示取不到有效值。
9391
- :rtype: :class:`tencentcloud.apigateway.v20180808.models.ApiAppInfos`
9392
- """
9393
- return self._Result
9394
-
9395
- @Result.setter
9396
- def Result(self, Result):
9397
- self._Result = Result
9398
-
9399
- @property
9400
- def RequestId(self):
9401
- r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9402
- :rtype: str
9403
- """
9404
- return self._RequestId
9405
-
9406
- @RequestId.setter
9407
- def RequestId(self, RequestId):
9408
- self._RequestId = RequestId
9409
-
9410
-
9411
- def _deserialize(self, params):
9412
- if params.get("Result") is not None:
9413
- self._Result = ApiAppInfos()
9414
- self._Result._deserialize(params.get("Result"))
9415
- self._RequestId = params.get("RequestId")
9416
-
9417
-
9418
9335
  class DescribeApiAppsStatusRequest(AbstractModel):
9419
9336
  r"""DescribeApiAppsStatus请求参数结构体
9420
9337