tencentcloud-sdk-python-cvm 3.0.1382__tar.gz → 3.0.1383__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.
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/setup.py +1 -1
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud/cvm/v20170312/models.py +36 -16
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud_sdk_python_cvm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cvm-3.0.1383/tencentcloud_sdk_python_cvm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cvm-3.0.1382/tencentcloud_sdk_python_cvm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/README.rst +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud/cvm/__init__.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud/cvm/v20170312/__init__.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud/cvm/v20170312/cvm_client.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud/cvm/v20170312/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud_sdk_python_cvm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud_sdk_python_cvm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cvm-3.0.1382 → tencentcloud-sdk-python-cvm-3.0.1383}/tencentcloud_sdk_python_cvm.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1383"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cvm SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -10954,30 +10954,40 @@ class ImportImageRequest(AbstractModel):
|
|
|
10954
10954
|
|
|
10955
10955
|
def __init__(self):
|
|
10956
10956
|
r"""
|
|
10957
|
-
:param _Architecture:
|
|
10957
|
+
:param _Architecture: 导入镜像的操作系统架构。
|
|
10958
|
+
取值范围包括:`x86_64` 、`i386`、`arm_64`
|
|
10958
10959
|
:type Architecture: str
|
|
10959
|
-
:param _OsType:
|
|
10960
|
+
:param _OsType: 导入镜像的操作系统类型 。
|
|
10961
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsListSupported`获取。
|
|
10960
10962
|
:type OsType: str
|
|
10961
|
-
:param _OsVersion:
|
|
10963
|
+
:param _OsVersion: 导入镜像的操作系统版本。
|
|
10964
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsVersionSet`获取。
|
|
10962
10965
|
:type OsVersion: str
|
|
10963
10966
|
:param _ImageUrl: 导入镜像存放的cos地址
|
|
10964
10967
|
:type ImageUrl: str
|
|
10965
|
-
:param _ImageName:
|
|
10968
|
+
:param _ImageName: 镜像名称。
|
|
10969
|
+
最多支持 60 个字符。
|
|
10966
10970
|
:type ImageName: str
|
|
10967
|
-
:param _ImageDescription:
|
|
10971
|
+
:param _ImageDescription: 镜像描述。
|
|
10972
|
+
最多支持 256 个字符。
|
|
10968
10973
|
:type ImageDescription: str
|
|
10969
|
-
:param _DryRun:
|
|
10974
|
+
:param _DryRun: 只检查参数,不执行任务。
|
|
10975
|
+
默认值:false
|
|
10970
10976
|
:type DryRun: bool
|
|
10971
10977
|
:param _Force: 是否强制导入,参考[强制导入镜像](https://cloud.tencent.com/document/product/213/12849)
|
|
10978
|
+
默认值:false
|
|
10972
10979
|
:type Force: bool
|
|
10973
10980
|
:param _TagSpecification: 标签描述列表。通过指定该参数可以同时绑定标签到自定义镜像。
|
|
10974
10981
|
:type TagSpecification: list of TagSpecification
|
|
10975
10982
|
:param _LicenseType: 导入镜像后,激活操作系统采用的许可证类型。
|
|
10976
|
-
|
|
10983
|
+
默认值:TencentCloud
|
|
10984
|
+
取值范围:
|
|
10977
10985
|
TencentCloud: 腾讯云官方许可
|
|
10978
10986
|
BYOL: 自带许可(Bring Your Own License)
|
|
10979
10987
|
:type LicenseType: str
|
|
10980
|
-
:param _BootMode:
|
|
10988
|
+
:param _BootMode: 启动模式。
|
|
10989
|
+
取值范围:`Legacy BIOS`、`UEFI`
|
|
10990
|
+
默认值:Legacy BIOS
|
|
10981
10991
|
:type BootMode: str
|
|
10982
10992
|
:param _ImageFamily: 镜像族
|
|
10983
10993
|
:type ImageFamily: str
|
|
@@ -11000,7 +11010,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11000
11010
|
|
|
11001
11011
|
@property
|
|
11002
11012
|
def Architecture(self):
|
|
11003
|
-
"""
|
|
11013
|
+
"""导入镜像的操作系统架构。
|
|
11014
|
+
取值范围包括:`x86_64` 、`i386`、`arm_64`
|
|
11004
11015
|
:rtype: str
|
|
11005
11016
|
"""
|
|
11006
11017
|
return self._Architecture
|
|
@@ -11011,7 +11022,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11011
11022
|
|
|
11012
11023
|
@property
|
|
11013
11024
|
def OsType(self):
|
|
11014
|
-
"""
|
|
11025
|
+
"""导入镜像的操作系统类型 。
|
|
11026
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsListSupported`获取。
|
|
11015
11027
|
:rtype: str
|
|
11016
11028
|
"""
|
|
11017
11029
|
return self._OsType
|
|
@@ -11022,7 +11034,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11022
11034
|
|
|
11023
11035
|
@property
|
|
11024
11036
|
def OsVersion(self):
|
|
11025
|
-
"""
|
|
11037
|
+
"""导入镜像的操作系统版本。
|
|
11038
|
+
可通过 [DescribeImportImageOs](https://cloud.tencent.com/document/api/213/15718) 接口返回值中的`ImportImageOsVersionSet`获取。
|
|
11026
11039
|
:rtype: str
|
|
11027
11040
|
"""
|
|
11028
11041
|
return self._OsVersion
|
|
@@ -11044,7 +11057,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11044
11057
|
|
|
11045
11058
|
@property
|
|
11046
11059
|
def ImageName(self):
|
|
11047
|
-
"""
|
|
11060
|
+
"""镜像名称。
|
|
11061
|
+
最多支持 60 个字符。
|
|
11048
11062
|
:rtype: str
|
|
11049
11063
|
"""
|
|
11050
11064
|
return self._ImageName
|
|
@@ -11055,7 +11069,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11055
11069
|
|
|
11056
11070
|
@property
|
|
11057
11071
|
def ImageDescription(self):
|
|
11058
|
-
"""
|
|
11072
|
+
"""镜像描述。
|
|
11073
|
+
最多支持 256 个字符。
|
|
11059
11074
|
:rtype: str
|
|
11060
11075
|
"""
|
|
11061
11076
|
return self._ImageDescription
|
|
@@ -11066,7 +11081,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11066
11081
|
|
|
11067
11082
|
@property
|
|
11068
11083
|
def DryRun(self):
|
|
11069
|
-
"""
|
|
11084
|
+
"""只检查参数,不执行任务。
|
|
11085
|
+
默认值:false
|
|
11070
11086
|
:rtype: bool
|
|
11071
11087
|
"""
|
|
11072
11088
|
return self._DryRun
|
|
@@ -11078,6 +11094,7 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11078
11094
|
@property
|
|
11079
11095
|
def Force(self):
|
|
11080
11096
|
"""是否强制导入,参考[强制导入镜像](https://cloud.tencent.com/document/product/213/12849)
|
|
11097
|
+
默认值:false
|
|
11081
11098
|
:rtype: bool
|
|
11082
11099
|
"""
|
|
11083
11100
|
return self._Force
|
|
@@ -11100,7 +11117,8 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11100
11117
|
@property
|
|
11101
11118
|
def LicenseType(self):
|
|
11102
11119
|
"""导入镜像后,激活操作系统采用的许可证类型。
|
|
11103
|
-
|
|
11120
|
+
默认值:TencentCloud
|
|
11121
|
+
取值范围:
|
|
11104
11122
|
TencentCloud: 腾讯云官方许可
|
|
11105
11123
|
BYOL: 自带许可(Bring Your Own License)
|
|
11106
11124
|
:rtype: str
|
|
@@ -11113,7 +11131,9 @@ BYOL: 自带许可(Bring Your Own License)
|
|
|
11113
11131
|
|
|
11114
11132
|
@property
|
|
11115
11133
|
def BootMode(self):
|
|
11116
|
-
"""
|
|
11134
|
+
"""启动模式。
|
|
11135
|
+
取值范围:`Legacy BIOS`、`UEFI`
|
|
11136
|
+
默认值:Legacy BIOS
|
|
11117
11137
|
:rtype: str
|
|
11118
11138
|
"""
|
|
11119
11139
|
return self._BootMode
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1383
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1382
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|