tencentcloud-sdk-python 3.0.1263__py2.py3-none-any.whl → 3.0.1264__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/ccc/v20200210/models.py +148 -236
- tencentcloud/cdb/v20170320/cdb_client.py +40 -17
- tencentcloud/cdb/v20170320/models.py +215 -68
- tencentcloud/cdc/v20201214/models.py +4 -4
- tencentcloud/cls/v20201016/models.py +104 -2
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +352 -1771
- tencentcloud/dasb/v20191018/models.py +0 -8
- tencentcloud/emr/v20190103/models.py +58 -2
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/hai/v20230812/errorcodes.py +18 -0
- tencentcloud/hai/v20230812/models.py +229 -4
- tencentcloud/hunyuan/v20230901/errorcodes.py +2 -2
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +19 -4
- tencentcloud/iai/v20180301/models.py +4 -4
- tencentcloud/iai/v20200303/models.py +728 -528
- tencentcloud/iss/v20230517/errorcodes.py +0 -9
- tencentcloud/iss/v20230517/iss_client.py +0 -23
- tencentcloud/iss/v20230517/models.py +0 -94
- tencentcloud/redis/v20180412/models.py +6 -10
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/ssl/v20191205/models.py +148 -0
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +79 -0
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/errorcodes.py +9 -0
- tencentcloud/wedata/v20210820/models.py +447 -0
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1264.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1264.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1264.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1264.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1263.dist-info → tencentcloud_sdk_python-3.0.1264.dist-info}/top_level.txt +0 -0
@@ -6706,9 +6706,9 @@ class Point(AbstractModel):
|
|
6706
6706
|
|
6707
6707
|
def __init__(self):
|
6708
6708
|
r"""
|
6709
|
-
:param _X: x
|
6709
|
+
:param _X: x坐标。
|
6710
6710
|
:type X: int
|
6711
|
-
:param _Y: Y
|
6711
|
+
:param _Y: Y坐标。
|
6712
6712
|
:type Y: int
|
6713
6713
|
"""
|
6714
6714
|
self._X = None
|
@@ -6716,7 +6716,7 @@ class Point(AbstractModel):
|
|
6716
6716
|
|
6717
6717
|
@property
|
6718
6718
|
def X(self):
|
6719
|
-
"""x
|
6719
|
+
"""x坐标。
|
6720
6720
|
:rtype: int
|
6721
6721
|
"""
|
6722
6722
|
return self._X
|
@@ -6727,7 +6727,7 @@ class Point(AbstractModel):
|
|
6727
6727
|
|
6728
6728
|
@property
|
6729
6729
|
def Y(self):
|
6730
|
-
"""Y
|
6730
|
+
"""Y坐标。
|
6731
6731
|
:rtype: int
|
6732
6732
|
"""
|
6733
6733
|
return self._Y
|