tencentcloud-sdk-python-cvm 3.0.1245__tar.gz → 3.0.1253__tar.gz

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 (16) hide show
  1. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud/cvm/v20170312/cvm_client.py +1 -1
  5. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud/cvm/v20170312/errorcodes.py +3 -0
  6. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud/cvm/v20170312/models.py +12 -0
  7. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud_sdk_python_cvm.egg-info/PKG-INFO +1 -1
  8. tencentcloud-sdk-python-cvm-3.0.1253/tencentcloud_sdk_python_cvm.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-cvm-3.0.1245/tencentcloud_sdk_python_cvm.egg-info/requires.txt +0 -1
  10. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/README.rst +0 -0
  11. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/setup.cfg +0 -0
  12. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud/cvm/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud/cvm/v20170312/__init__.py +0 -0
  14. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud_sdk_python_cvm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud_sdk_python_cvm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cvm-3.0.1245 → tencentcloud-sdk-python-cvm-3.0.1253}/tencentcloud_sdk_python_cvm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cvm
3
- Version: 3.0.1245
3
+ Version: 3.0.1253
4
4
  Summary: Tencent Cloud Cvm SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cvm',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1245"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1253"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cvm SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1245'
17
+ __version__ = '3.0.1253'
@@ -1387,7 +1387,7 @@ class CvmClient(AbstractClient):
1387
1387
 
1388
1388
 
1389
1389
  def ImportImage(self, request):
1390
- """本接口(ImportImage)用于导入镜像,导入后的镜像可用于创建实例。目前支持 RAW、VHD、QCOW2、VMDK 镜像格式。
1390
+ """本接口(ImportImage)用于导入镜像,导入后的镜像可用于创建实例。目前支持RAW、VHD、QCOW2、VMDK镜像格式。
1391
1391
 
1392
1392
  :param request: Request instance for ImportImage.
1393
1393
  :type request: :class:`tencentcloud.cvm.v20170312.models.ImportImageRequest`
@@ -401,6 +401,9 @@ INVALIDPARAMETERVALUE_IPADDRESSMALFORMED = 'InvalidParameterValue.IPAddressMalfo
401
401
  # ipv6地址无效
402
402
  INVALIDPARAMETERVALUE_IPV6ADDRESSMALFORMED = 'InvalidParameterValue.IPv6AddressMalformed'
403
403
 
404
+ # ISO文件必须强制导入
405
+ INVALIDPARAMETERVALUE_ISOMUSTIMPORTBYFORCE = 'InvalidParameterValue.ISOMustImportByForce'
406
+
404
407
  # HostName参数值不合法
405
408
  INVALIDPARAMETERVALUE_ILLEGALHOSTNAME = 'InvalidParameterValue.IllegalHostName'
406
409
 
@@ -8601,6 +8601,8 @@ BYOL: 自带许可(Bring Your Own License)
8601
8601
  :type LicenseType: str
8602
8602
  :param _BootMode: 启动模式
8603
8603
  :type BootMode: str
8604
+ :param _ImageFamily: 镜像族
8605
+ :type ImageFamily: str
8604
8606
  """
8605
8607
  self._Architecture = None
8606
8608
  self._OsType = None
@@ -8613,6 +8615,7 @@ BYOL: 自带许可(Bring Your Own License)
8613
8615
  self._TagSpecification = None
8614
8616
  self._LicenseType = None
8615
8617
  self._BootMode = None
8618
+ self._ImageFamily = None
8616
8619
 
8617
8620
  @property
8618
8621
  def Architecture(self):
@@ -8702,6 +8705,14 @@ BYOL: 自带许可(Bring Your Own License)
8702
8705
  def BootMode(self, BootMode):
8703
8706
  self._BootMode = BootMode
8704
8707
 
8708
+ @property
8709
+ def ImageFamily(self):
8710
+ return self._ImageFamily
8711
+
8712
+ @ImageFamily.setter
8713
+ def ImageFamily(self, ImageFamily):
8714
+ self._ImageFamily = ImageFamily
8715
+
8705
8716
 
8706
8717
  def _deserialize(self, params):
8707
8718
  self._Architecture = params.get("Architecture")
@@ -8720,6 +8731,7 @@ BYOL: 自带许可(Bring Your Own License)
8720
8731
  self._TagSpecification.append(obj)
8721
8732
  self._LicenseType = params.get("LicenseType")
8722
8733
  self._BootMode = params.get("BootMode")
8734
+ self._ImageFamily = params.get("ImageFamily")
8723
8735
  memeber_set = set(params.keys())
8724
8736
  for name, value in vars(self).items():
8725
8737
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cvm
3
- Version: 3.0.1245
3
+ Version: 3.0.1253
4
4
  Summary: Tencent Cloud Cvm SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1253
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1245