tencentcloud-sdk-python 3.0.1273__py2.py3-none-any.whl → 3.0.1275__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apigateway/v20180808/apigateway_client.py +46 -0
- tencentcloud/apigateway/v20180808/models.py +362 -0
- tencentcloud/autoscaling/v20180419/models.py +13 -11
- tencentcloud/bi/v20220105/bi_client.py +46 -0
- tencentcloud/bi/v20220105/errorcodes.py +3 -0
- tencentcloud/bi/v20220105/models.py +701 -24
- tencentcloud/billing/v20180709/models.py +105 -114
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/cdwch/v20200915/errorcodes.py +6 -0
- tencentcloud/cloudhsm/v20191112/models.py +10 -170
- tencentcloud/cls/v20201016/cls_client.py +1 -1
- tencentcloud/cls/v20201016/models.py +16 -4
- tencentcloud/config/v20220802/config_client.py +46 -0
- tencentcloud/config/v20220802/models.py +664 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +188 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +20 -12
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +12 -8
- tencentcloud/goosefs/v20220519/models.py +15 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +21 -4
- tencentcloud/ivld/v20210903/errorcodes.py +2 -2
- tencentcloud/lcic/v20220817/lcic_client.py +46 -0
- tencentcloud/lcic/v20220817/models.py +505 -2
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +24 -4
- tencentcloud/live/v20180801/errorcodes.py +12 -0
- tencentcloud/live/v20180801/live_client.py +142 -0
- tencentcloud/live/v20180801/models.py +619 -0
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +35 -1
- tencentcloud/mps/v20190612/models.py +17 -2
- tencentcloud/oceanus/v20190422/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +132 -1971
- tencentcloud/ocr/v20181119/ocr_client.py +0 -167
- tencentcloud/organization/v20210331/models.py +2 -330
- tencentcloud/privatedns/v20201028/errorcodes.py +0 -42
- tencentcloud/privatedns/v20201028/models.py +712 -2358
- tencentcloud/privatedns/v20201028/privatedns_client.py +0 -230
- tencentcloud/tke/v20220501/models.py +6 -2
- tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- tencentcloud/trtc/v20190722/models.py +218 -0
- tencentcloud/trtc/v20190722/trtc_client.py +47 -0
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1273.dist-info → tencentcloud_sdk_python-3.0.1275.dist-info}/top_level.txt +0 -0
| @@ -1757,31 +1757,6 @@ class OcrClient(AbstractClient): | |
| 1757 1757 | 
             
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1758 1758 |  | 
| 1759 1759 |  | 
| 1760 | 
            -
                def RecognizeIndonesiaIDCardOCR(self, request):
         | 
| 1761 | 
            -
                    """印尼身份证识别
         | 
| 1762 | 
            -
             | 
| 1763 | 
            -
                    默认接口请求频率限制:5次/秒。
         | 
| 1764 | 
            -
             | 
| 1765 | 
            -
                    :param request: Request instance for RecognizeIndonesiaIDCardOCR.
         | 
| 1766 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeIndonesiaIDCardOCRRequest`
         | 
| 1767 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizeIndonesiaIDCardOCRResponse`
         | 
| 1768 | 
            -
             | 
| 1769 | 
            -
                    """
         | 
| 1770 | 
            -
                    try:
         | 
| 1771 | 
            -
                        params = request._serialize()
         | 
| 1772 | 
            -
                        headers = request.headers
         | 
| 1773 | 
            -
                        body = self.call("RecognizeIndonesiaIDCardOCR", params, headers=headers)
         | 
| 1774 | 
            -
                        response = json.loads(body)
         | 
| 1775 | 
            -
                        model = models.RecognizeIndonesiaIDCardOCRResponse()
         | 
| 1776 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1777 | 
            -
                        return model
         | 
| 1778 | 
            -
                    except Exception as e:
         | 
| 1779 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1780 | 
            -
                            raise
         | 
| 1781 | 
            -
                        else:
         | 
| 1782 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1783 | 
            -
             | 
| 1784 | 
            -
             | 
| 1785 1760 | 
             
                def RecognizeKoreanDrivingLicenseOCR(self, request):
         | 
| 1786 1761 | 
             
                    """韩国驾驶证识别
         | 
| 1787 1762 |  | 
| @@ -1805,29 +1780,6 @@ class OcrClient(AbstractClient): | |
| 1805 1780 | 
             
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1806 1781 |  | 
| 1807 1782 |  | 
| 1808 | 
            -
                def RecognizeKoreanIDCardOCR(self, request):
         | 
| 1809 | 
            -
                    """韩国身份证识别
         | 
| 1810 | 
            -
             | 
| 1811 | 
            -
                    :param request: Request instance for RecognizeKoreanIDCardOCR.
         | 
| 1812 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeKoreanIDCardOCRRequest`
         | 
| 1813 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizeKoreanIDCardOCRResponse`
         | 
| 1814 | 
            -
             | 
| 1815 | 
            -
                    """
         | 
| 1816 | 
            -
                    try:
         | 
| 1817 | 
            -
                        params = request._serialize()
         | 
| 1818 | 
            -
                        headers = request.headers
         | 
| 1819 | 
            -
                        body = self.call("RecognizeKoreanIDCardOCR", params, headers=headers)
         | 
| 1820 | 
            -
                        response = json.loads(body)
         | 
| 1821 | 
            -
                        model = models.RecognizeKoreanIDCardOCRResponse()
         | 
| 1822 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1823 | 
            -
                        return model
         | 
| 1824 | 
            -
                    except Exception as e:
         | 
| 1825 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1826 | 
            -
                            raise
         | 
| 1827 | 
            -
                        else:
         | 
| 1828 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1829 | 
            -
             | 
| 1830 | 
            -
             | 
| 1831 1783 | 
             
                def RecognizeMedicalInvoiceOCR(self, request):
         | 
| 1832 1784 | 
             
                    """医疗发票识别目前支持全国统一门诊发票、全国统一住院发票、以及部分地方的门诊和住院发票的识别。
         | 
| 1833 1785 |  | 
| @@ -1878,125 +1830,6 @@ class OcrClient(AbstractClient): | |
| 1878 1830 | 
             
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1879 1831 |  | 
| 1880 1832 |  | 
| 1881 | 
            -
                def RecognizePhilippinesDrivingLicenseOCR(self, request):
         | 
| 1882 | 
            -
                    """菲律宾驾驶证识别
         | 
| 1883 | 
            -
             | 
| 1884 | 
            -
                    默认接口请求频率限制:20次/秒。
         | 
| 1885 | 
            -
             | 
| 1886 | 
            -
                    :param request: Request instance for RecognizePhilippinesDrivingLicenseOCR.
         | 
| 1887 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesDrivingLicenseOCRRequest`
         | 
| 1888 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesDrivingLicenseOCRResponse`
         | 
| 1889 | 
            -
             | 
| 1890 | 
            -
                    """
         | 
| 1891 | 
            -
                    try:
         | 
| 1892 | 
            -
                        params = request._serialize()
         | 
| 1893 | 
            -
                        headers = request.headers
         | 
| 1894 | 
            -
                        body = self.call("RecognizePhilippinesDrivingLicenseOCR", params, headers=headers)
         | 
| 1895 | 
            -
                        response = json.loads(body)
         | 
| 1896 | 
            -
                        model = models.RecognizePhilippinesDrivingLicenseOCRResponse()
         | 
| 1897 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1898 | 
            -
                        return model
         | 
| 1899 | 
            -
                    except Exception as e:
         | 
| 1900 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1901 | 
            -
                            raise
         | 
| 1902 | 
            -
                        else:
         | 
| 1903 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1904 | 
            -
             | 
| 1905 | 
            -
             | 
| 1906 | 
            -
                def RecognizePhilippinesSssIDOCR(self, request):
         | 
| 1907 | 
            -
                    """菲律宾SSSID/UMID识别
         | 
| 1908 | 
            -
             | 
| 1909 | 
            -
                    :param request: Request instance for RecognizePhilippinesSssIDOCR.
         | 
| 1910 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesSssIDOCRRequest`
         | 
| 1911 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesSssIDOCRResponse`
         | 
| 1912 | 
            -
             | 
| 1913 | 
            -
                    """
         | 
| 1914 | 
            -
                    try:
         | 
| 1915 | 
            -
                        params = request._serialize()
         | 
| 1916 | 
            -
                        headers = request.headers
         | 
| 1917 | 
            -
                        body = self.call("RecognizePhilippinesSssIDOCR", params, headers=headers)
         | 
| 1918 | 
            -
                        response = json.loads(body)
         | 
| 1919 | 
            -
                        model = models.RecognizePhilippinesSssIDOCRResponse()
         | 
| 1920 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1921 | 
            -
                        return model
         | 
| 1922 | 
            -
                    except Exception as e:
         | 
| 1923 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1924 | 
            -
                            raise
         | 
| 1925 | 
            -
                        else:
         | 
| 1926 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1927 | 
            -
             | 
| 1928 | 
            -
             | 
| 1929 | 
            -
                def RecognizePhilippinesTinIDOCR(self, request):
         | 
| 1930 | 
            -
                    """菲律宾TinID识别
         | 
| 1931 | 
            -
             | 
| 1932 | 
            -
                    :param request: Request instance for RecognizePhilippinesTinIDOCR.
         | 
| 1933 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesTinIDOCRRequest`
         | 
| 1934 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesTinIDOCRResponse`
         | 
| 1935 | 
            -
             | 
| 1936 | 
            -
                    """
         | 
| 1937 | 
            -
                    try:
         | 
| 1938 | 
            -
                        params = request._serialize()
         | 
| 1939 | 
            -
                        headers = request.headers
         | 
| 1940 | 
            -
                        body = self.call("RecognizePhilippinesTinIDOCR", params, headers=headers)
         | 
| 1941 | 
            -
                        response = json.loads(body)
         | 
| 1942 | 
            -
                        model = models.RecognizePhilippinesTinIDOCRResponse()
         | 
| 1943 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1944 | 
            -
                        return model
         | 
| 1945 | 
            -
                    except Exception as e:
         | 
| 1946 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1947 | 
            -
                            raise
         | 
| 1948 | 
            -
                        else:
         | 
| 1949 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1950 | 
            -
             | 
| 1951 | 
            -
             | 
| 1952 | 
            -
                def RecognizePhilippinesUMIDOCR(self, request):
         | 
| 1953 | 
            -
                    """菲律宾UMID识别
         | 
| 1954 | 
            -
             | 
| 1955 | 
            -
                    :param request: Request instance for RecognizePhilippinesUMIDOCR.
         | 
| 1956 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesUMIDOCRRequest`
         | 
| 1957 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesUMIDOCRResponse`
         | 
| 1958 | 
            -
             | 
| 1959 | 
            -
                    """
         | 
| 1960 | 
            -
                    try:
         | 
| 1961 | 
            -
                        params = request._serialize()
         | 
| 1962 | 
            -
                        headers = request.headers
         | 
| 1963 | 
            -
                        body = self.call("RecognizePhilippinesUMIDOCR", params, headers=headers)
         | 
| 1964 | 
            -
                        response = json.loads(body)
         | 
| 1965 | 
            -
                        model = models.RecognizePhilippinesUMIDOCRResponse()
         | 
| 1966 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1967 | 
            -
                        return model
         | 
| 1968 | 
            -
                    except Exception as e:
         | 
| 1969 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1970 | 
            -
                            raise
         | 
| 1971 | 
            -
                        else:
         | 
| 1972 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1973 | 
            -
             | 
| 1974 | 
            -
             | 
| 1975 | 
            -
                def RecognizePhilippinesVoteIDOCR(self, request):
         | 
| 1976 | 
            -
                    """本接口支持菲律宾VoteID识别,识别字段包括姓名、姓氏、出生日期、婚姻状况、国籍、地址、地区、菲律宾VoteID的VIN等。
         | 
| 1977 | 
            -
             | 
| 1978 | 
            -
                    默认接口请求频率限制:20次/秒。
         | 
| 1979 | 
            -
             | 
| 1980 | 
            -
                    :param request: Request instance for RecognizePhilippinesVoteIDOCR.
         | 
| 1981 | 
            -
                    :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesVoteIDOCRRequest`
         | 
| 1982 | 
            -
                    :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizePhilippinesVoteIDOCRResponse`
         | 
| 1983 | 
            -
             | 
| 1984 | 
            -
                    """
         | 
| 1985 | 
            -
                    try:
         | 
| 1986 | 
            -
                        params = request._serialize()
         | 
| 1987 | 
            -
                        headers = request.headers
         | 
| 1988 | 
            -
                        body = self.call("RecognizePhilippinesVoteIDOCR", params, headers=headers)
         | 
| 1989 | 
            -
                        response = json.loads(body)
         | 
| 1990 | 
            -
                        model = models.RecognizePhilippinesVoteIDOCRResponse()
         | 
| 1991 | 
            -
                        model._deserialize(response["Response"])
         | 
| 1992 | 
            -
                        return model
         | 
| 1993 | 
            -
                    except Exception as e:
         | 
| 1994 | 
            -
                        if isinstance(e, TencentCloudSDKException):
         | 
| 1995 | 
            -
                            raise
         | 
| 1996 | 
            -
                        else:
         | 
| 1997 | 
            -
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         | 
| 1998 | 
            -
             | 
| 1999 | 
            -
             | 
| 2000 1833 | 
             
                def RecognizeStoreName(self, request):
         | 
| 2001 1834 | 
             
                    """本接口用于识别门头照文字识别结果以及对应分类标签信息
         | 
| 2002 1835 | 
             
                    默认接口请求频率限制:1次/秒
         |