huaweicloudsdkims 3.1.85__py2.py3-none-any.whl → 3.1.132__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.
- huaweicloudsdkims/v2/model/create_image_request_body.py +33 -5
- huaweicloudsdkims/v2/model/create_whole_image_request_body.py +1 -2
- huaweicloudsdkims/v2/model/image_info.py +93 -6
- huaweicloudsdkims/v2/model/list_images_request.py +3 -3
- huaweicloudsdkims/v2/model/quick_import_image_by_file_request_body.py +59 -1
- huaweicloudsdkims/v2/model/update_image_response.py +93 -6
- huaweicloudsdkims/v2/region/ims_region.py +16 -1
- {huaweicloudsdkims-3.1.85.dist-info → huaweicloudsdkims-3.1.132.dist-info}/METADATA +2 -2
- {huaweicloudsdkims-3.1.85.dist-info → huaweicloudsdkims-3.1.132.dist-info}/RECORD +12 -12
- {huaweicloudsdkims-3.1.85.dist-info → huaweicloudsdkims-3.1.132.dist-info}/WHEEL +1 -1
- {huaweicloudsdkims-3.1.85.dist-info → huaweicloudsdkims-3.1.132.dist-info}/LICENSE +0 -0
- {huaweicloudsdkims-3.1.85.dist-info → huaweicloudsdkims-3.1.132.dist-info}/top_level.txt +0 -0
@@ -34,7 +34,8 @@ class CreateImageRequestBody:
|
|
34
34
|
'type': 'str',
|
35
35
|
'is_quick_import': 'bool',
|
36
36
|
'architecture': 'str',
|
37
|
-
'volume_id': 'str'
|
37
|
+
'volume_id': 'str',
|
38
|
+
'hw_firmware_type': 'str'
|
38
39
|
}
|
39
40
|
|
40
41
|
attribute_map = {
|
@@ -55,10 +56,11 @@ class CreateImageRequestBody:
|
|
55
56
|
'type': 'type',
|
56
57
|
'is_quick_import': 'is_quick_import',
|
57
58
|
'architecture': 'architecture',
|
58
|
-
'volume_id': 'volume_id'
|
59
|
+
'volume_id': 'volume_id',
|
60
|
+
'hw_firmware_type': 'hw_firmware_type'
|
59
61
|
}
|
60
62
|
|
61
|
-
def __init__(self, data_images=None, description=None, enterprise_project_id=None, image_tags=None, instance_id=None, name=None, tags=None, max_ram=None, min_ram=None, os_version=None, image_url=None, min_disk=None, is_config=None, cmk_id=None, type=None, is_quick_import=None, architecture=None, volume_id=None):
|
63
|
+
def __init__(self, data_images=None, description=None, enterprise_project_id=None, image_tags=None, instance_id=None, name=None, tags=None, max_ram=None, min_ram=None, os_version=None, image_url=None, min_disk=None, is_config=None, cmk_id=None, type=None, is_quick_import=None, architecture=None, volume_id=None, hw_firmware_type=None):
|
62
64
|
"""CreateImageRequestBody
|
63
65
|
|
64
66
|
The model defined in huaweicloud sdk
|
@@ -99,6 +101,8 @@ class CreateImageRequestBody:
|
|
99
101
|
:type architecture: str
|
100
102
|
:param volume_id: 数据盘的卷ID。当数据盘创建系统盘镜像时,该参数必选
|
101
103
|
:type volume_id: str
|
104
|
+
:param hw_firmware_type: 云主机云服务器的启动方式。目前支持: bios:表示bios引导启动。 uefi:表示uefi引导启动。
|
105
|
+
:type hw_firmware_type: str
|
102
106
|
"""
|
103
107
|
|
104
108
|
|
@@ -121,6 +125,7 @@ class CreateImageRequestBody:
|
|
121
125
|
self._is_quick_import = None
|
122
126
|
self._architecture = None
|
123
127
|
self._volume_id = None
|
128
|
+
self._hw_firmware_type = None
|
124
129
|
self.discriminator = None
|
125
130
|
|
126
131
|
if data_images is not None:
|
@@ -131,8 +136,7 @@ class CreateImageRequestBody:
|
|
131
136
|
self.enterprise_project_id = enterprise_project_id
|
132
137
|
if image_tags is not None:
|
133
138
|
self.image_tags = image_tags
|
134
|
-
|
135
|
-
self.instance_id = instance_id
|
139
|
+
self.instance_id = instance_id
|
136
140
|
self.name = name
|
137
141
|
if tags is not None:
|
138
142
|
self.tags = tags
|
@@ -158,6 +162,8 @@ class CreateImageRequestBody:
|
|
158
162
|
self.architecture = architecture
|
159
163
|
if volume_id is not None:
|
160
164
|
self.volume_id = volume_id
|
165
|
+
if hw_firmware_type is not None:
|
166
|
+
self.hw_firmware_type = hw_firmware_type
|
161
167
|
|
162
168
|
@property
|
163
169
|
def data_images(self):
|
@@ -555,6 +561,28 @@ class CreateImageRequestBody:
|
|
555
561
|
"""
|
556
562
|
self._volume_id = volume_id
|
557
563
|
|
564
|
+
@property
|
565
|
+
def hw_firmware_type(self):
|
566
|
+
"""Gets the hw_firmware_type of this CreateImageRequestBody.
|
567
|
+
|
568
|
+
云主机云服务器的启动方式。目前支持: bios:表示bios引导启动。 uefi:表示uefi引导启动。
|
569
|
+
|
570
|
+
:return: The hw_firmware_type of this CreateImageRequestBody.
|
571
|
+
:rtype: str
|
572
|
+
"""
|
573
|
+
return self._hw_firmware_type
|
574
|
+
|
575
|
+
@hw_firmware_type.setter
|
576
|
+
def hw_firmware_type(self, hw_firmware_type):
|
577
|
+
"""Sets the hw_firmware_type of this CreateImageRequestBody.
|
578
|
+
|
579
|
+
云主机云服务器的启动方式。目前支持: bios:表示bios引导启动。 uefi:表示uefi引导启动。
|
580
|
+
|
581
|
+
:param hw_firmware_type: The hw_firmware_type of this CreateImageRequestBody.
|
582
|
+
:type hw_firmware_type: str
|
583
|
+
"""
|
584
|
+
self._hw_firmware_type = hw_firmware_type
|
585
|
+
|
558
586
|
def to_dict(self):
|
559
587
|
"""Returns the model properties as a dict"""
|
560
588
|
result = {}
|
@@ -94,8 +94,7 @@ class CreateWholeImageRequestBody:
|
|
94
94
|
self.enterprise_project_id = enterprise_project_id
|
95
95
|
if image_tags is not None:
|
96
96
|
self.image_tags = image_tags
|
97
|
-
|
98
|
-
self.instance_id = instance_id
|
97
|
+
self.instance_id = instance_id
|
99
98
|
self.name = name
|
100
99
|
if tags is not None:
|
101
100
|
self.tags = tags
|
@@ -76,7 +76,10 @@ class ImageInfo:
|
|
76
76
|
'active_at': 'str',
|
77
77
|
'support_agent_list': 'str',
|
78
78
|
'image_displayname': 'str',
|
79
|
-
'support_amd': 'str'
|
79
|
+
'support_amd': 'str',
|
80
|
+
'support_kvm_hi1822_hisriov': 'str',
|
81
|
+
'support_kvm_hi1822_hivirtionet': 'str',
|
82
|
+
'os_shutdown_timeout': 'str'
|
80
83
|
}
|
81
84
|
|
82
85
|
attribute_map = {
|
@@ -139,10 +142,13 @@ class ImageInfo:
|
|
139
142
|
'active_at': 'active_at',
|
140
143
|
'support_agent_list': '__support_agent_list',
|
141
144
|
'image_displayname': '__image_displayname',
|
142
|
-
'support_amd': '__support_amd'
|
145
|
+
'support_amd': '__support_amd',
|
146
|
+
'support_kvm_hi1822_hisriov': '__support_kvm_hi1822_hisriov',
|
147
|
+
'support_kvm_hi1822_hivirtionet': '__support_kvm_hi1822_hivirtionet',
|
148
|
+
'os_shutdown_timeout': 'os_shutdown_timeout'
|
143
149
|
}
|
144
150
|
|
145
|
-
def __init__(self, backup_id=None, data_origin=None, description=None, image_size=None, image_source_type=None, imagetype=None, isregistered=None, originalimagename=None, os_bit=None, os_type=None, os_version=None, platform=None, productcode=None, support_diskintensive=None, support_highperformance=None, support_kvm=None, support_kvm_gpu_type=None, support_kvm_infiniband=None, support_largememory=None, support_xen=None, support_xen_gpu_type=None, support_xen_hana=None, system_support_market=None, checksum=None, container_format=None, created_at=None, disk_format=None, enterprise_project_id=None, file=None, id=None, min_disk=None, min_ram=None, name=None, owner=None, protected=None, schema=None, _self=None, size=None, status=None, tags=None, updated_at=None, virtual_env_type=None, virtual_size=None, visibility=None, support_fc_inject=None, hw_firmware_type=None, support_arm=None, max_ram=None, system__cmkid=None, os_feature_list=None, account_code=None, hw_vif_multiqueue_enabled=None, is_offshelved=None, lazyloading=None, root_origin=None, sequence_num=None, active_at=None, support_agent_list=None, image_displayname=None, support_amd=None):
|
151
|
+
def __init__(self, backup_id=None, data_origin=None, description=None, image_size=None, image_source_type=None, imagetype=None, isregistered=None, originalimagename=None, os_bit=None, os_type=None, os_version=None, platform=None, productcode=None, support_diskintensive=None, support_highperformance=None, support_kvm=None, support_kvm_gpu_type=None, support_kvm_infiniband=None, support_largememory=None, support_xen=None, support_xen_gpu_type=None, support_xen_hana=None, system_support_market=None, checksum=None, container_format=None, created_at=None, disk_format=None, enterprise_project_id=None, file=None, id=None, min_disk=None, min_ram=None, name=None, owner=None, protected=None, schema=None, _self=None, size=None, status=None, tags=None, updated_at=None, virtual_env_type=None, virtual_size=None, visibility=None, support_fc_inject=None, hw_firmware_type=None, support_arm=None, max_ram=None, system__cmkid=None, os_feature_list=None, account_code=None, hw_vif_multiqueue_enabled=None, is_offshelved=None, lazyloading=None, root_origin=None, sequence_num=None, active_at=None, support_agent_list=None, image_displayname=None, support_amd=None, support_kvm_hi1822_hisriov=None, support_kvm_hi1822_hivirtionet=None, os_shutdown_timeout=None):
|
146
152
|
"""ImageInfo
|
147
153
|
|
148
154
|
The model defined in huaweicloud sdk
|
@@ -233,7 +239,7 @@ class ImageInfo:
|
|
233
239
|
:type virtual_env_type: str
|
234
240
|
:param virtual_size: 目前暂时不使用
|
235
241
|
:type virtual_size: int
|
236
|
-
:param visibility: 是否被其他租户可见,取值为private或
|
242
|
+
:param visibility: 是否被其他租户可见,取值为private、public或shared
|
237
243
|
:type visibility: str
|
238
244
|
:param support_fc_inject: 表示当前镜像支持CloudInit密码/密钥注入方式,建议设置为\"true\"或者\"false\"。 如果取值为\"true\",表示该镜像不支持CloudInit注入密码/密钥,其他取值时表示支持CloudInit注入密钥/密码。
|
239
245
|
:type support_fc_inject: str
|
@@ -267,6 +273,12 @@ class ImageInfo:
|
|
267
273
|
:type image_displayname: str
|
268
274
|
:param support_amd: 是否是AMD架构类型的镜像。取值为“true”或者“false”。
|
269
275
|
:type support_amd: str
|
276
|
+
:param support_kvm_hi1822_hisriov: 如果镜像支持sriov直通,取值为true,否则无需增加该属性。
|
277
|
+
:type support_kvm_hi1822_hisriov: str
|
278
|
+
:param support_kvm_hi1822_hivirtionet: 如果镜像支持Virtio-net直通规格,取值为true,否则无需增加该属性。
|
279
|
+
:type support_kvm_hi1822_hivirtionet: str
|
280
|
+
:param os_shutdown_timeout: 设置虚拟机的优雅关机超时时间,设置范围为60-300,默认为60(取值为整数,单位为秒)。 云服务器在优雅关机超时后会触发强制关机,避免实例长时间处于关机状态中。 当您的云服务器关机过程中由于特定软件的状态、保存等原因导致优雅关机时间过长,会触发超时强制关机。 您可以通过设置镜像该字段,使得发放的云服务器优雅关机超时时间变长。 该字段当前只影响弹性云服务器,不影响裸金属服务器。
|
281
|
+
:type os_shutdown_timeout: str
|
270
282
|
"""
|
271
283
|
|
272
284
|
|
@@ -331,6 +343,9 @@ class ImageInfo:
|
|
331
343
|
self._support_agent_list = None
|
332
344
|
self._image_displayname = None
|
333
345
|
self._support_amd = None
|
346
|
+
self._support_kvm_hi1822_hisriov = None
|
347
|
+
self._support_kvm_hi1822_hivirtionet = None
|
348
|
+
self._os_shutdown_timeout = None
|
334
349
|
self.discriminator = None
|
335
350
|
|
336
351
|
if backup_id is not None:
|
@@ -433,6 +448,12 @@ class ImageInfo:
|
|
433
448
|
self.image_displayname = image_displayname
|
434
449
|
if support_amd is not None:
|
435
450
|
self.support_amd = support_amd
|
451
|
+
if support_kvm_hi1822_hisriov is not None:
|
452
|
+
self.support_kvm_hi1822_hisriov = support_kvm_hi1822_hisriov
|
453
|
+
if support_kvm_hi1822_hivirtionet is not None:
|
454
|
+
self.support_kvm_hi1822_hivirtionet = support_kvm_hi1822_hivirtionet
|
455
|
+
if os_shutdown_timeout is not None:
|
456
|
+
self.os_shutdown_timeout = os_shutdown_timeout
|
436
457
|
|
437
458
|
@property
|
438
459
|
def backup_id(self):
|
@@ -1384,7 +1405,7 @@ class ImageInfo:
|
|
1384
1405
|
def visibility(self):
|
1385
1406
|
"""Gets the visibility of this ImageInfo.
|
1386
1407
|
|
1387
|
-
是否被其他租户可见,取值为private或
|
1408
|
+
是否被其他租户可见,取值为private、public或shared
|
1388
1409
|
|
1389
1410
|
:return: The visibility of this ImageInfo.
|
1390
1411
|
:rtype: str
|
@@ -1395,7 +1416,7 @@ class ImageInfo:
|
|
1395
1416
|
def visibility(self, visibility):
|
1396
1417
|
"""Sets the visibility of this ImageInfo.
|
1397
1418
|
|
1398
|
-
是否被其他租户可见,取值为private或
|
1419
|
+
是否被其他租户可见,取值为private、public或shared
|
1399
1420
|
|
1400
1421
|
:param visibility: The visibility of this ImageInfo.
|
1401
1422
|
:type visibility: str
|
@@ -1754,6 +1775,72 @@ class ImageInfo:
|
|
1754
1775
|
"""
|
1755
1776
|
self._support_amd = support_amd
|
1756
1777
|
|
1778
|
+
@property
|
1779
|
+
def support_kvm_hi1822_hisriov(self):
|
1780
|
+
"""Gets the support_kvm_hi1822_hisriov of this ImageInfo.
|
1781
|
+
|
1782
|
+
如果镜像支持sriov直通,取值为true,否则无需增加该属性。
|
1783
|
+
|
1784
|
+
:return: The support_kvm_hi1822_hisriov of this ImageInfo.
|
1785
|
+
:rtype: str
|
1786
|
+
"""
|
1787
|
+
return self._support_kvm_hi1822_hisriov
|
1788
|
+
|
1789
|
+
@support_kvm_hi1822_hisriov.setter
|
1790
|
+
def support_kvm_hi1822_hisriov(self, support_kvm_hi1822_hisriov):
|
1791
|
+
"""Sets the support_kvm_hi1822_hisriov of this ImageInfo.
|
1792
|
+
|
1793
|
+
如果镜像支持sriov直通,取值为true,否则无需增加该属性。
|
1794
|
+
|
1795
|
+
:param support_kvm_hi1822_hisriov: The support_kvm_hi1822_hisriov of this ImageInfo.
|
1796
|
+
:type support_kvm_hi1822_hisriov: str
|
1797
|
+
"""
|
1798
|
+
self._support_kvm_hi1822_hisriov = support_kvm_hi1822_hisriov
|
1799
|
+
|
1800
|
+
@property
|
1801
|
+
def support_kvm_hi1822_hivirtionet(self):
|
1802
|
+
"""Gets the support_kvm_hi1822_hivirtionet of this ImageInfo.
|
1803
|
+
|
1804
|
+
如果镜像支持Virtio-net直通规格,取值为true,否则无需增加该属性。
|
1805
|
+
|
1806
|
+
:return: The support_kvm_hi1822_hivirtionet of this ImageInfo.
|
1807
|
+
:rtype: str
|
1808
|
+
"""
|
1809
|
+
return self._support_kvm_hi1822_hivirtionet
|
1810
|
+
|
1811
|
+
@support_kvm_hi1822_hivirtionet.setter
|
1812
|
+
def support_kvm_hi1822_hivirtionet(self, support_kvm_hi1822_hivirtionet):
|
1813
|
+
"""Sets the support_kvm_hi1822_hivirtionet of this ImageInfo.
|
1814
|
+
|
1815
|
+
如果镜像支持Virtio-net直通规格,取值为true,否则无需增加该属性。
|
1816
|
+
|
1817
|
+
:param support_kvm_hi1822_hivirtionet: The support_kvm_hi1822_hivirtionet of this ImageInfo.
|
1818
|
+
:type support_kvm_hi1822_hivirtionet: str
|
1819
|
+
"""
|
1820
|
+
self._support_kvm_hi1822_hivirtionet = support_kvm_hi1822_hivirtionet
|
1821
|
+
|
1822
|
+
@property
|
1823
|
+
def os_shutdown_timeout(self):
|
1824
|
+
"""Gets the os_shutdown_timeout of this ImageInfo.
|
1825
|
+
|
1826
|
+
设置虚拟机的优雅关机超时时间,设置范围为60-300,默认为60(取值为整数,单位为秒)。 云服务器在优雅关机超时后会触发强制关机,避免实例长时间处于关机状态中。 当您的云服务器关机过程中由于特定软件的状态、保存等原因导致优雅关机时间过长,会触发超时强制关机。 您可以通过设置镜像该字段,使得发放的云服务器优雅关机超时时间变长。 该字段当前只影响弹性云服务器,不影响裸金属服务器。
|
1827
|
+
|
1828
|
+
:return: The os_shutdown_timeout of this ImageInfo.
|
1829
|
+
:rtype: str
|
1830
|
+
"""
|
1831
|
+
return self._os_shutdown_timeout
|
1832
|
+
|
1833
|
+
@os_shutdown_timeout.setter
|
1834
|
+
def os_shutdown_timeout(self, os_shutdown_timeout):
|
1835
|
+
"""Sets the os_shutdown_timeout of this ImageInfo.
|
1836
|
+
|
1837
|
+
设置虚拟机的优雅关机超时时间,设置范围为60-300,默认为60(取值为整数,单位为秒)。 云服务器在优雅关机超时后会触发强制关机,避免实例长时间处于关机状态中。 当您的云服务器关机过程中由于特定软件的状态、保存等原因导致优雅关机时间过长,会触发超时强制关机。 您可以通过设置镜像该字段,使得发放的云服务器优雅关机超时时间变长。 该字段当前只影响弹性云服务器,不影响裸金属服务器。
|
1838
|
+
|
1839
|
+
:param os_shutdown_timeout: The os_shutdown_timeout of this ImageInfo.
|
1840
|
+
:type os_shutdown_timeout: str
|
1841
|
+
"""
|
1842
|
+
self._os_shutdown_timeout = os_shutdown_timeout
|
1843
|
+
|
1757
1844
|
def to_dict(self):
|
1758
1845
|
"""Returns the model properties as a dict"""
|
1759
1846
|
result = {}
|
@@ -163,7 +163,7 @@ class ListImagesRequest:
|
|
163
163
|
:type tag: str
|
164
164
|
:param virtual_env_type: 镜像使用环境类型:FusionCompute,Ironic,DataImage。如果弹性云服务器镜像,则取值为FusionCompute,如果是数据卷镜像则取值是DataImage,如果是裸金属服务器镜像,则取值是Ironic。
|
165
165
|
:type virtual_env_type: str
|
166
|
-
:param visibility: 是否被其他租户可见,取值为public或
|
166
|
+
:param visibility: 是否被其他租户可见,取值为public、private或shared
|
167
167
|
:type visibility: str
|
168
168
|
:param x_sdk_date: 请求的发生时间,格式为YYYYMMDDTHHMMSSZ。取值为当前系统的GMT时间。使用AK/SK认证时该字段必选
|
169
169
|
:type x_sdk_date: str
|
@@ -979,7 +979,7 @@ class ListImagesRequest:
|
|
979
979
|
def visibility(self):
|
980
980
|
"""Gets the visibility of this ListImagesRequest.
|
981
981
|
|
982
|
-
是否被其他租户可见,取值为public或
|
982
|
+
是否被其他租户可见,取值为public、private或shared
|
983
983
|
|
984
984
|
:return: The visibility of this ListImagesRequest.
|
985
985
|
:rtype: str
|
@@ -990,7 +990,7 @@ class ListImagesRequest:
|
|
990
990
|
def visibility(self, visibility):
|
991
991
|
"""Sets the visibility of this ListImagesRequest.
|
992
992
|
|
993
|
-
是否被其他租户可见,取值为public或
|
993
|
+
是否被其他租户可见,取值为public、private或shared
|
994
994
|
|
995
995
|
:param visibility: The visibility of this ListImagesRequest.
|
996
996
|
:type visibility: str
|
@@ -22,10 +22,12 @@ class QuickImportImageByFileRequestBody:
|
|
22
22
|
'os_version': 'str',
|
23
23
|
'image_url': 'str',
|
24
24
|
'min_disk': 'int',
|
25
|
+
'license_type': 'str',
|
25
26
|
'tags': 'list[str]',
|
26
27
|
'type': 'str',
|
27
28
|
'enterprise_project_id': 'str',
|
28
29
|
'architecture': 'str',
|
30
|
+
'hw_firmware_type': 'str',
|
29
31
|
'os_type': 'str',
|
30
32
|
'image_tags': 'list[ResourceTag]'
|
31
33
|
}
|
@@ -36,15 +38,17 @@ class QuickImportImageByFileRequestBody:
|
|
36
38
|
'os_version': 'os_version',
|
37
39
|
'image_url': 'image_url',
|
38
40
|
'min_disk': 'min_disk',
|
41
|
+
'license_type': 'license_type',
|
39
42
|
'tags': 'tags',
|
40
43
|
'type': 'type',
|
41
44
|
'enterprise_project_id': 'enterprise_project_id',
|
42
45
|
'architecture': 'architecture',
|
46
|
+
'hw_firmware_type': 'hw_firmware_type',
|
43
47
|
'os_type': 'os_type',
|
44
48
|
'image_tags': 'image_tags'
|
45
49
|
}
|
46
50
|
|
47
|
-
def __init__(self, name=None, description=None, os_version=None, image_url=None, min_disk=None, tags=None, type=None, enterprise_project_id=None, architecture=None, os_type=None, image_tags=None):
|
51
|
+
def __init__(self, name=None, description=None, os_version=None, image_url=None, min_disk=None, license_type=None, tags=None, type=None, enterprise_project_id=None, architecture=None, hw_firmware_type=None, os_type=None, image_tags=None):
|
48
52
|
"""QuickImportImageByFileRequestBody
|
49
53
|
|
50
54
|
The model defined in huaweicloud sdk
|
@@ -59,6 +63,8 @@ class QuickImportImageByFileRequestBody:
|
|
59
63
|
:type image_url: str
|
60
64
|
:param min_disk: 最小系统盘大小。在使用OBS桶的外部镜像文件制作镜像时生效且为必选字段。取值为1至1024GB。
|
61
65
|
:type min_disk: int
|
66
|
+
:param license_type: 操作系统使用的许可证类型。取值范围: platform:华为云官方许可证 byol:自带许可证(Bring Your Own License) 目前仅Windows操作系统支持设置该参数。
|
67
|
+
:type license_type: str
|
62
68
|
:param tags: 镜像标签列表。默认为空。 tags和image_tags只能使用一个。
|
63
69
|
:type tags: list[str]
|
64
70
|
:param type: 制作的镜像类型。系统盘镜像为ECS/BMS,数据盘镜像为DataImage. 制作数据盘镜像时该参数必选.
|
@@ -67,6 +73,8 @@ class QuickImportImageByFileRequestBody:
|
|
67
73
|
:type enterprise_project_id: str
|
68
74
|
:param architecture: 镜像的架构类型。取值包括: x86 arm 默认使用“x86”。
|
69
75
|
:type architecture: str
|
76
|
+
:param hw_firmware_type: 云主机云服务器的启动方式。目前支持: bios:表示bios引导启动。 uefi:表示uefi引导启动。
|
77
|
+
:type hw_firmware_type: str
|
70
78
|
:param os_type: 操作系统版本。 创建数据盘镜像时该参数取值为Linux或Windows,默认Linux。
|
71
79
|
:type os_type: str
|
72
80
|
:param image_tags: 新规范的镜像标签列表。默认为空。 tags和image_tags只能使用一个。
|
@@ -80,10 +88,12 @@ class QuickImportImageByFileRequestBody:
|
|
80
88
|
self._os_version = None
|
81
89
|
self._image_url = None
|
82
90
|
self._min_disk = None
|
91
|
+
self._license_type = None
|
83
92
|
self._tags = None
|
84
93
|
self._type = None
|
85
94
|
self._enterprise_project_id = None
|
86
95
|
self._architecture = None
|
96
|
+
self._hw_firmware_type = None
|
87
97
|
self._os_type = None
|
88
98
|
self._image_tags = None
|
89
99
|
self.discriminator = None
|
@@ -94,6 +104,8 @@ class QuickImportImageByFileRequestBody:
|
|
94
104
|
self.os_version = os_version
|
95
105
|
self.image_url = image_url
|
96
106
|
self.min_disk = min_disk
|
107
|
+
if license_type is not None:
|
108
|
+
self.license_type = license_type
|
97
109
|
if tags is not None:
|
98
110
|
self.tags = tags
|
99
111
|
if type is not None:
|
@@ -102,6 +114,8 @@ class QuickImportImageByFileRequestBody:
|
|
102
114
|
self.enterprise_project_id = enterprise_project_id
|
103
115
|
if architecture is not None:
|
104
116
|
self.architecture = architecture
|
117
|
+
if hw_firmware_type is not None:
|
118
|
+
self.hw_firmware_type = hw_firmware_type
|
105
119
|
if os_type is not None:
|
106
120
|
self.os_type = os_type
|
107
121
|
if image_tags is not None:
|
@@ -217,6 +231,28 @@ class QuickImportImageByFileRequestBody:
|
|
217
231
|
"""
|
218
232
|
self._min_disk = min_disk
|
219
233
|
|
234
|
+
@property
|
235
|
+
def license_type(self):
|
236
|
+
"""Gets the license_type of this QuickImportImageByFileRequestBody.
|
237
|
+
|
238
|
+
操作系统使用的许可证类型。取值范围: platform:华为云官方许可证 byol:自带许可证(Bring Your Own License) 目前仅Windows操作系统支持设置该参数。
|
239
|
+
|
240
|
+
:return: The license_type of this QuickImportImageByFileRequestBody.
|
241
|
+
:rtype: str
|
242
|
+
"""
|
243
|
+
return self._license_type
|
244
|
+
|
245
|
+
@license_type.setter
|
246
|
+
def license_type(self, license_type):
|
247
|
+
"""Sets the license_type of this QuickImportImageByFileRequestBody.
|
248
|
+
|
249
|
+
操作系统使用的许可证类型。取值范围: platform:华为云官方许可证 byol:自带许可证(Bring Your Own License) 目前仅Windows操作系统支持设置该参数。
|
250
|
+
|
251
|
+
:param license_type: The license_type of this QuickImportImageByFileRequestBody.
|
252
|
+
:type license_type: str
|
253
|
+
"""
|
254
|
+
self._license_type = license_type
|
255
|
+
|
220
256
|
@property
|
221
257
|
def tags(self):
|
222
258
|
"""Gets the tags of this QuickImportImageByFileRequestBody.
|
@@ -305,6 +341,28 @@ class QuickImportImageByFileRequestBody:
|
|
305
341
|
"""
|
306
342
|
self._architecture = architecture
|
307
343
|
|
344
|
+
@property
|
345
|
+
def hw_firmware_type(self):
|
346
|
+
"""Gets the hw_firmware_type of this QuickImportImageByFileRequestBody.
|
347
|
+
|
348
|
+
云主机云服务器的启动方式。目前支持: bios:表示bios引导启动。 uefi:表示uefi引导启动。
|
349
|
+
|
350
|
+
:return: The hw_firmware_type of this QuickImportImageByFileRequestBody.
|
351
|
+
:rtype: str
|
352
|
+
"""
|
353
|
+
return self._hw_firmware_type
|
354
|
+
|
355
|
+
@hw_firmware_type.setter
|
356
|
+
def hw_firmware_type(self, hw_firmware_type):
|
357
|
+
"""Sets the hw_firmware_type of this QuickImportImageByFileRequestBody.
|
358
|
+
|
359
|
+
云主机云服务器的启动方式。目前支持: bios:表示bios引导启动。 uefi:表示uefi引导启动。
|
360
|
+
|
361
|
+
:param hw_firmware_type: The hw_firmware_type of this QuickImportImageByFileRequestBody.
|
362
|
+
:type hw_firmware_type: str
|
363
|
+
"""
|
364
|
+
self._hw_firmware_type = hw_firmware_type
|
365
|
+
|
308
366
|
@property
|
309
367
|
def os_type(self):
|
310
368
|
"""Gets the os_type of this QuickImportImageByFileRequestBody.
|
@@ -77,7 +77,10 @@ class UpdateImageResponse(SdkResponse):
|
|
77
77
|
'active_at': 'str',
|
78
78
|
'support_agent_list': 'str',
|
79
79
|
'image_displayname': 'str',
|
80
|
-
'support_amd': 'str'
|
80
|
+
'support_amd': 'str',
|
81
|
+
'support_kvm_hi1822_hisriov': 'str',
|
82
|
+
'support_kvm_hi1822_hivirtionet': 'str',
|
83
|
+
'os_shutdown_timeout': 'str'
|
81
84
|
}
|
82
85
|
|
83
86
|
attribute_map = {
|
@@ -140,10 +143,13 @@ class UpdateImageResponse(SdkResponse):
|
|
140
143
|
'active_at': 'active_at',
|
141
144
|
'support_agent_list': '__support_agent_list',
|
142
145
|
'image_displayname': '__image_displayname',
|
143
|
-
'support_amd': '__support_amd'
|
146
|
+
'support_amd': '__support_amd',
|
147
|
+
'support_kvm_hi1822_hisriov': '__support_kvm_hi1822_hisriov',
|
148
|
+
'support_kvm_hi1822_hivirtionet': '__support_kvm_hi1822_hivirtionet',
|
149
|
+
'os_shutdown_timeout': 'os_shutdown_timeout'
|
144
150
|
}
|
145
151
|
|
146
|
-
def __init__(self, backup_id=None, data_origin=None, description=None, image_size=None, image_source_type=None, imagetype=None, isregistered=None, originalimagename=None, os_bit=None, os_type=None, os_version=None, platform=None, productcode=None, support_diskintensive=None, support_highperformance=None, support_kvm=None, support_kvm_gpu_type=None, support_kvm_infiniband=None, support_largememory=None, support_xen=None, support_xen_gpu_type=None, support_xen_hana=None, system_support_market=None, checksum=None, container_format=None, created_at=None, disk_format=None, enterprise_project_id=None, file=None, id=None, min_disk=None, min_ram=None, name=None, owner=None, protected=None, schema=None, _self=None, size=None, status=None, tags=None, updated_at=None, virtual_env_type=None, virtual_size=None, visibility=None, support_fc_inject=None, hw_firmware_type=None, support_arm=None, max_ram=None, system__cmkid=None, os_feature_list=None, account_code=None, hw_vif_multiqueue_enabled=None, is_offshelved=None, lazyloading=None, root_origin=None, sequence_num=None, active_at=None, support_agent_list=None, image_displayname=None, support_amd=None):
|
152
|
+
def __init__(self, backup_id=None, data_origin=None, description=None, image_size=None, image_source_type=None, imagetype=None, isregistered=None, originalimagename=None, os_bit=None, os_type=None, os_version=None, platform=None, productcode=None, support_diskintensive=None, support_highperformance=None, support_kvm=None, support_kvm_gpu_type=None, support_kvm_infiniband=None, support_largememory=None, support_xen=None, support_xen_gpu_type=None, support_xen_hana=None, system_support_market=None, checksum=None, container_format=None, created_at=None, disk_format=None, enterprise_project_id=None, file=None, id=None, min_disk=None, min_ram=None, name=None, owner=None, protected=None, schema=None, _self=None, size=None, status=None, tags=None, updated_at=None, virtual_env_type=None, virtual_size=None, visibility=None, support_fc_inject=None, hw_firmware_type=None, support_arm=None, max_ram=None, system__cmkid=None, os_feature_list=None, account_code=None, hw_vif_multiqueue_enabled=None, is_offshelved=None, lazyloading=None, root_origin=None, sequence_num=None, active_at=None, support_agent_list=None, image_displayname=None, support_amd=None, support_kvm_hi1822_hisriov=None, support_kvm_hi1822_hivirtionet=None, os_shutdown_timeout=None):
|
147
153
|
"""UpdateImageResponse
|
148
154
|
|
149
155
|
The model defined in huaweicloud sdk
|
@@ -234,7 +240,7 @@ class UpdateImageResponse(SdkResponse):
|
|
234
240
|
:type virtual_env_type: str
|
235
241
|
:param virtual_size: 目前暂时不使用
|
236
242
|
:type virtual_size: int
|
237
|
-
:param visibility: 是否被其他租户可见,取值为private或
|
243
|
+
:param visibility: 是否被其他租户可见,取值为private、public或shared
|
238
244
|
:type visibility: str
|
239
245
|
:param support_fc_inject: 表示当前镜像支持CloudInit密码/密钥注入方式,建议设置为\"true\"或者\"false\"。 如果取值为\"true\",表示该镜像不支持CloudInit注入密码/密钥,其他取值时表示支持CloudInit注入密钥/密码。
|
240
246
|
:type support_fc_inject: str
|
@@ -268,6 +274,12 @@ class UpdateImageResponse(SdkResponse):
|
|
268
274
|
:type image_displayname: str
|
269
275
|
:param support_amd: 是否是AMD架构类型的镜像。取值为“true”或者“false”。
|
270
276
|
:type support_amd: str
|
277
|
+
:param support_kvm_hi1822_hisriov: 如果镜像支持sriov直通,取值为true,否则无需增加该属性。
|
278
|
+
:type support_kvm_hi1822_hisriov: str
|
279
|
+
:param support_kvm_hi1822_hivirtionet: 如果镜像支持Virtio-net直通规格,取值为true,否则无需增加该属性。
|
280
|
+
:type support_kvm_hi1822_hivirtionet: str
|
281
|
+
:param os_shutdown_timeout: 设置虚拟机的优雅关机超时时间,设置范围为60-300,默认为60(取值为整数,单位为秒)。 云服务器在优雅关机超时后会触发强制关机,避免实例长时间处于关机状态中。 当您的云服务器关机过程中由于特定软件的状态、保存等原因导致优雅关机时间过长,会触发超时强制关机。 您可以通过设置镜像该字段,使得发放的云服务器优雅关机超时时间变长。 该字段当前只影响弹性云服务器,不影响裸金属服务器。
|
282
|
+
:type os_shutdown_timeout: str
|
271
283
|
"""
|
272
284
|
|
273
285
|
super(UpdateImageResponse, self).__init__()
|
@@ -332,6 +344,9 @@ class UpdateImageResponse(SdkResponse):
|
|
332
344
|
self._support_agent_list = None
|
333
345
|
self._image_displayname = None
|
334
346
|
self._support_amd = None
|
347
|
+
self._support_kvm_hi1822_hisriov = None
|
348
|
+
self._support_kvm_hi1822_hivirtionet = None
|
349
|
+
self._os_shutdown_timeout = None
|
335
350
|
self.discriminator = None
|
336
351
|
|
337
352
|
if backup_id is not None:
|
@@ -454,6 +469,12 @@ class UpdateImageResponse(SdkResponse):
|
|
454
469
|
self.image_displayname = image_displayname
|
455
470
|
if support_amd is not None:
|
456
471
|
self.support_amd = support_amd
|
472
|
+
if support_kvm_hi1822_hisriov is not None:
|
473
|
+
self.support_kvm_hi1822_hisriov = support_kvm_hi1822_hisriov
|
474
|
+
if support_kvm_hi1822_hivirtionet is not None:
|
475
|
+
self.support_kvm_hi1822_hivirtionet = support_kvm_hi1822_hivirtionet
|
476
|
+
if os_shutdown_timeout is not None:
|
477
|
+
self.os_shutdown_timeout = os_shutdown_timeout
|
457
478
|
|
458
479
|
@property
|
459
480
|
def backup_id(self):
|
@@ -1405,7 +1426,7 @@ class UpdateImageResponse(SdkResponse):
|
|
1405
1426
|
def visibility(self):
|
1406
1427
|
"""Gets the visibility of this UpdateImageResponse.
|
1407
1428
|
|
1408
|
-
是否被其他租户可见,取值为private或
|
1429
|
+
是否被其他租户可见,取值为private、public或shared
|
1409
1430
|
|
1410
1431
|
:return: The visibility of this UpdateImageResponse.
|
1411
1432
|
:rtype: str
|
@@ -1416,7 +1437,7 @@ class UpdateImageResponse(SdkResponse):
|
|
1416
1437
|
def visibility(self, visibility):
|
1417
1438
|
"""Sets the visibility of this UpdateImageResponse.
|
1418
1439
|
|
1419
|
-
是否被其他租户可见,取值为private或
|
1440
|
+
是否被其他租户可见,取值为private、public或shared
|
1420
1441
|
|
1421
1442
|
:param visibility: The visibility of this UpdateImageResponse.
|
1422
1443
|
:type visibility: str
|
@@ -1775,6 +1796,72 @@ class UpdateImageResponse(SdkResponse):
|
|
1775
1796
|
"""
|
1776
1797
|
self._support_amd = support_amd
|
1777
1798
|
|
1799
|
+
@property
|
1800
|
+
def support_kvm_hi1822_hisriov(self):
|
1801
|
+
"""Gets the support_kvm_hi1822_hisriov of this UpdateImageResponse.
|
1802
|
+
|
1803
|
+
如果镜像支持sriov直通,取值为true,否则无需增加该属性。
|
1804
|
+
|
1805
|
+
:return: The support_kvm_hi1822_hisriov of this UpdateImageResponse.
|
1806
|
+
:rtype: str
|
1807
|
+
"""
|
1808
|
+
return self._support_kvm_hi1822_hisriov
|
1809
|
+
|
1810
|
+
@support_kvm_hi1822_hisriov.setter
|
1811
|
+
def support_kvm_hi1822_hisriov(self, support_kvm_hi1822_hisriov):
|
1812
|
+
"""Sets the support_kvm_hi1822_hisriov of this UpdateImageResponse.
|
1813
|
+
|
1814
|
+
如果镜像支持sriov直通,取值为true,否则无需增加该属性。
|
1815
|
+
|
1816
|
+
:param support_kvm_hi1822_hisriov: The support_kvm_hi1822_hisriov of this UpdateImageResponse.
|
1817
|
+
:type support_kvm_hi1822_hisriov: str
|
1818
|
+
"""
|
1819
|
+
self._support_kvm_hi1822_hisriov = support_kvm_hi1822_hisriov
|
1820
|
+
|
1821
|
+
@property
|
1822
|
+
def support_kvm_hi1822_hivirtionet(self):
|
1823
|
+
"""Gets the support_kvm_hi1822_hivirtionet of this UpdateImageResponse.
|
1824
|
+
|
1825
|
+
如果镜像支持Virtio-net直通规格,取值为true,否则无需增加该属性。
|
1826
|
+
|
1827
|
+
:return: The support_kvm_hi1822_hivirtionet of this UpdateImageResponse.
|
1828
|
+
:rtype: str
|
1829
|
+
"""
|
1830
|
+
return self._support_kvm_hi1822_hivirtionet
|
1831
|
+
|
1832
|
+
@support_kvm_hi1822_hivirtionet.setter
|
1833
|
+
def support_kvm_hi1822_hivirtionet(self, support_kvm_hi1822_hivirtionet):
|
1834
|
+
"""Sets the support_kvm_hi1822_hivirtionet of this UpdateImageResponse.
|
1835
|
+
|
1836
|
+
如果镜像支持Virtio-net直通规格,取值为true,否则无需增加该属性。
|
1837
|
+
|
1838
|
+
:param support_kvm_hi1822_hivirtionet: The support_kvm_hi1822_hivirtionet of this UpdateImageResponse.
|
1839
|
+
:type support_kvm_hi1822_hivirtionet: str
|
1840
|
+
"""
|
1841
|
+
self._support_kvm_hi1822_hivirtionet = support_kvm_hi1822_hivirtionet
|
1842
|
+
|
1843
|
+
@property
|
1844
|
+
def os_shutdown_timeout(self):
|
1845
|
+
"""Gets the os_shutdown_timeout of this UpdateImageResponse.
|
1846
|
+
|
1847
|
+
设置虚拟机的优雅关机超时时间,设置范围为60-300,默认为60(取值为整数,单位为秒)。 云服务器在优雅关机超时后会触发强制关机,避免实例长时间处于关机状态中。 当您的云服务器关机过程中由于特定软件的状态、保存等原因导致优雅关机时间过长,会触发超时强制关机。 您可以通过设置镜像该字段,使得发放的云服务器优雅关机超时时间变长。 该字段当前只影响弹性云服务器,不影响裸金属服务器。
|
1848
|
+
|
1849
|
+
:return: The os_shutdown_timeout of this UpdateImageResponse.
|
1850
|
+
:rtype: str
|
1851
|
+
"""
|
1852
|
+
return self._os_shutdown_timeout
|
1853
|
+
|
1854
|
+
@os_shutdown_timeout.setter
|
1855
|
+
def os_shutdown_timeout(self, os_shutdown_timeout):
|
1856
|
+
"""Sets the os_shutdown_timeout of this UpdateImageResponse.
|
1857
|
+
|
1858
|
+
设置虚拟机的优雅关机超时时间,设置范围为60-300,默认为60(取值为整数,单位为秒)。 云服务器在优雅关机超时后会触发强制关机,避免实例长时间处于关机状态中。 当您的云服务器关机过程中由于特定软件的状态、保存等原因导致优雅关机时间过长,会触发超时强制关机。 您可以通过设置镜像该字段,使得发放的云服务器优雅关机超时时间变长。 该字段当前只影响弹性云服务器,不影响裸金属服务器。
|
1859
|
+
|
1860
|
+
:param os_shutdown_timeout: The os_shutdown_timeout of this UpdateImageResponse.
|
1861
|
+
:type os_shutdown_timeout: str
|
1862
|
+
"""
|
1863
|
+
self._os_shutdown_timeout = os_shutdown_timeout
|
1864
|
+
|
1778
1865
|
def to_dict(self):
|
1779
1866
|
"""Returns the model properties as a dict"""
|
1780
1867
|
result = {}
|
@@ -50,12 +50,22 @@ class ImsRegion:
|
|
50
50
|
"https://ims.me-east-1.myhuaweicloud.com")
|
51
51
|
AE_AD_1 = Region("ae-ad-1",
|
52
52
|
"https://ims.ae-ad-1.myhuaweicloud.com")
|
53
|
+
CN_EAST_4 = Region("cn-east-4",
|
54
|
+
"https://ims.cn-east-4.myhuaweicloud.com")
|
53
55
|
EU_WEST_101 = Region("eu-west-101",
|
54
|
-
"https://ims.eu-west-101.myhuaweicloud.
|
56
|
+
"https://ims.eu-west-101.myhuaweicloud.com")
|
55
57
|
CN_EAST_5 = Region("cn-east-5",
|
56
58
|
"https://ims.cn-east-5.myhuaweicloud.com")
|
57
59
|
EU_WEST_0 = Region("eu-west-0",
|
58
60
|
"https://ims.eu-west-0.myhuaweicloud.com")
|
61
|
+
MY_KUALALUMPUR_1 = Region("my-kualalumpur-1",
|
62
|
+
"https://ims.my-kualalumpur-1.myhuaweicloud.com")
|
63
|
+
AF_NORTH_1 = Region("af-north-1",
|
64
|
+
"https://ims.af-north-1.myhuaweicloud.com")
|
65
|
+
RU_MOSCOW_1 = Region("ru-moscow-1",
|
66
|
+
"https://ims.ru-moscow-1.myhuaweicloud.com")
|
67
|
+
AP_SOUTHEAST_5 = Region("ap-southeast-5",
|
68
|
+
"https://ims.ap-southeast-5.myhuaweicloud.com")
|
59
69
|
|
60
70
|
static_fields = {
|
61
71
|
"af-south-1": AF_SOUTH_1,
|
@@ -80,9 +90,14 @@ class ImsRegion:
|
|
80
90
|
"tr-west-1": TR_WEST_1,
|
81
91
|
"me-east-1": ME_EAST_1,
|
82
92
|
"ae-ad-1": AE_AD_1,
|
93
|
+
"cn-east-4": CN_EAST_4,
|
83
94
|
"eu-west-101": EU_WEST_101,
|
84
95
|
"cn-east-5": CN_EAST_5,
|
85
96
|
"eu-west-0": EU_WEST_0,
|
97
|
+
"my-kualalumpur-1": MY_KUALALUMPUR_1,
|
98
|
+
"af-north-1": AF_NORTH_1,
|
99
|
+
"ru-moscow-1": RU_MOSCOW_1,
|
100
|
+
"ap-southeast-5": AP_SOUTHEAST_5,
|
86
101
|
}
|
87
102
|
|
88
103
|
@classmethod
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkims
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.132
|
4
4
|
Summary: IMS
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
6
|
Author: HuaweiCloud SDK
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: huaweicloudsdkcore
|
25
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.132
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -30,12 +30,12 @@ huaweicloudsdkims/v2/model/create_data_image_request.py,sha256=lmRX4Q9b5EDRB3Djf
|
|
30
30
|
huaweicloudsdkims/v2/model/create_data_image_request_body.py,sha256=ZVvHJksKIvU2w9SX1TOqWd48q1wbRzc7Fs8aFk6CSsQ,12050
|
31
31
|
huaweicloudsdkims/v2/model/create_data_image_response.py,sha256=LOSMfzvZYHzZUpbN_VvUjc8h5MM7Q17f3fJnpWRlShk,3187
|
32
32
|
huaweicloudsdkims/v2/model/create_image_request.py,sha256=ZlUbjdsoZzXbe6QnHqU8azUY0mL_9kJnu3OnvjTiBtU,3115
|
33
|
-
huaweicloudsdkims/v2/model/create_image_request_body.py,sha256=
|
33
|
+
huaweicloudsdkims/v2/model/create_image_request_body.py,sha256=pPoX038PjGKYQay7n0FT6hRMuB_i4X2wk3P-qIStWqw,24609
|
34
34
|
huaweicloudsdkims/v2/model/create_image_response.py,sha256=iZRaE8v18ZY3ZPIb2dcIZI8-yoy774ebzms6Hk7r0Ac,3155
|
35
35
|
huaweicloudsdkims/v2/model/create_or_update_tags_request.py,sha256=klJZlWmNjnLsCa16IK_r5P1-GgDJy5Owa0Fj-j8LtqQ,3187
|
36
36
|
huaweicloudsdkims/v2/model/create_or_update_tags_response.py,sha256=AqYvxEuKmP9Fe6i7CKgBBrh3ph9cUB8M_pjfKHsh_cs,2455
|
37
37
|
huaweicloudsdkims/v2/model/create_whole_image_request.py,sha256=QtRhdIkSJS7k40i6nSRePz5MCz7n4p4wMeeQJRlC5zQ,3175
|
38
|
-
huaweicloudsdkims/v2/model/create_whole_image_request_body.py,sha256=
|
38
|
+
huaweicloudsdkims/v2/model/create_whole_image_request_body.py,sha256=NjMkry_PcGVHoZMUjruzj8cdIlFKnQxLwaEXv7uDpbs,16940
|
39
39
|
huaweicloudsdkims/v2/model/create_whole_image_response.py,sha256=I16YVnH8T_FCPnobGstgg1i2gwmKMK_D4uZE4ZIym2c,3195
|
40
40
|
huaweicloudsdkims/v2/model/delete_image_tag_request.py,sha256=84xc57Pt3iqEIzuZBDmsfuaeWynX_6pOD1JhqkG01nU,3713
|
41
41
|
huaweicloudsdkims/v2/model/delete_image_tag_response.py,sha256=YDAS1jICJjGfTrNZrtKUvuhRq-g6R4Lb6e6v26UwNlA,2439
|
@@ -81,7 +81,7 @@ huaweicloudsdkims/v2/model/glance_update_image_member_response.py,sha256=iPG95PE
|
|
81
81
|
huaweicloudsdkims/v2/model/glance_update_image_request.py,sha256=axksW2mdaWSiwDIarz-4dKnVIDE8cU4Wt4dyjuD3XKg,3941
|
82
82
|
huaweicloudsdkims/v2/model/glance_update_image_request_body.py,sha256=xjLDcLdLIjtUp-Cnbv_uqQKtXN5VzgJHqqz_comVeoU,5225
|
83
83
|
huaweicloudsdkims/v2/model/glance_update_image_response.py,sha256=zf2DME27jUcH6CMh6mi5kpvDOvNoaKbnhxK8ZwfOHwU,67372
|
84
|
-
huaweicloudsdkims/v2/model/image_info.py,sha256=
|
84
|
+
huaweicloudsdkims/v2/model/image_info.py,sha256=uP96BQRDJp10UQmOvUK8vpQGLapoI9bKFByVYbKnpVk,68284
|
85
85
|
huaweicloudsdkims/v2/model/image_tag.py,sha256=aNEQgBnmdpm8mmTZcThjrL4MpDHPyOsQ3Kf_7MdYXPI,3534
|
86
86
|
huaweicloudsdkims/v2/model/import_image_quick_request.py,sha256=LJbeMAzluckhAFFPeICwQUa9cDJgbI0fydo8hxG1P2c,3199
|
87
87
|
huaweicloudsdkims/v2/model/import_image_quick_response.py,sha256=EIJlOunAmXAK7BDbJmTVimbVUwZbnPucCauG0ilnWH8,3195
|
@@ -94,7 +94,7 @@ huaweicloudsdkims/v2/model/list_image_by_tags_request_body.py,sha256=8hbqSS2GLvW
|
|
94
94
|
huaweicloudsdkims/v2/model/list_image_by_tags_response.py,sha256=WENzshK98V_lcL5peVbUydqz16OgvC_EchjAivhF7tk,4297
|
95
95
|
huaweicloudsdkims/v2/model/list_image_tags_request.py,sha256=wsd0lpZUIp6Ygz5nt8Tkcfb026JpeAu3CfhjV5OaM-M,3041
|
96
96
|
huaweicloudsdkims/v2/model/list_image_tags_response.py,sha256=yB3Y7YkRxjmpJQz35jqYlZo3x8wxYsjL1je6_TVOBis,3256
|
97
|
-
huaweicloudsdkims/v2/model/list_images_request.py,sha256=
|
97
|
+
huaweicloudsdkims/v2/model/list_images_request.py,sha256=NHYIizj3YuoN-dslzmF33lXTFch55C8WDt1RTF8Rih0,46451
|
98
98
|
huaweicloudsdkims/v2/model/list_images_response.py,sha256=enAFqdaXN2xt9l3lRLF8pJ0hpmr2i2XBtAyNJuowUqc,3270
|
99
99
|
huaweicloudsdkims/v2/model/list_images_tags_request.py,sha256=APwNc-Oun6b_Gg0aJbUBcDUeqdcXeGseAeDSyNr-pkA,2321
|
100
100
|
huaweicloudsdkims/v2/model/list_images_tags_response.py,sha256=QwSHiOIg86PP0Of2FjXtla6NhWTSK2gPbekR5JS5Z0c,3236
|
@@ -108,7 +108,7 @@ huaweicloudsdkims/v2/model/list_versions_response.py,sha256=OgPB9ZSgXiWWnE_fj-11
|
|
108
108
|
huaweicloudsdkims/v2/model/os_version_info.py,sha256=la2h1ym-v3l0EPMIf25-IogacpS1gtJW1pTa5ZLzRzM,6164
|
109
109
|
huaweicloudsdkims/v2/model/os_version_response.py,sha256=yfITNNiB6hjv5lCnXU3E3tb8aYLEPrECr7QPhQujGmw,4420
|
110
110
|
huaweicloudsdkims/v2/model/query_image_by_tags_resource_detail.py,sha256=Uwpa1WecAPGsxyfSoCcDwFgx1pwQhkna6ZI0wjEmI5I,3070
|
111
|
-
huaweicloudsdkims/v2/model/quick_import_image_by_file_request_body.py,sha256=
|
111
|
+
huaweicloudsdkims/v2/model/quick_import_image_by_file_request_body.py,sha256=rMaEafC_iBlYAj4jedmOV2M6kJKIEN8faLe5EzDPi2s,18129
|
112
112
|
huaweicloudsdkims/v2/model/quota.py,sha256=dJBdk-xoPEk2C2KMcJugfSs0DMU11RCH8Zc9ilev0oM,3135
|
113
113
|
huaweicloudsdkims/v2/model/quota_info.py,sha256=aRhhEbioztNeWYfGHkrV1QhpOZ4T-dkj4GotBVtjmRU,5449
|
114
114
|
huaweicloudsdkims/v2/model/register_image_request.py,sha256=pAJKDPUKC7f3yPUejdR590hBpT0_rcYNoEd8TM5cGhY,4819
|
@@ -130,11 +130,11 @@ huaweicloudsdkims/v2/model/tag_key_value.py,sha256=1eLKgJt3X53Rbtb2T8ivNVHJaHWSt
|
|
130
130
|
huaweicloudsdkims/v2/model/tags.py,sha256=00Vwa7cLcbr0UxQoSTRwZioSVWWl-D1kKVQ5d3QjtgE,4100
|
131
131
|
huaweicloudsdkims/v2/model/update_image_request.py,sha256=92a2wgzJf3MxsG04sk82GuB-ZfPvxvM15D152-IyegY,3845
|
132
132
|
huaweicloudsdkims/v2/model/update_image_request_body.py,sha256=32HRyr3YHgzKpWcmZLFAaJ3IcxoE7x1GYVzGcCgl7Gc,4579
|
133
|
-
huaweicloudsdkims/v2/model/update_image_response.py,sha256=
|
133
|
+
huaweicloudsdkims/v2/model/update_image_response.py,sha256=s_DPNHPj9gIxgXUKaICeHAc2yo8FZ_wUWmT9MMlnwn0,71702
|
134
134
|
huaweicloudsdkims/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
135
|
-
huaweicloudsdkims/v2/region/ims_region.py,sha256=
|
136
|
-
huaweicloudsdkims-3.1.
|
137
|
-
huaweicloudsdkims-3.1.
|
138
|
-
huaweicloudsdkims-3.1.
|
139
|
-
huaweicloudsdkims-3.1.
|
140
|
-
huaweicloudsdkims-3.1.
|
135
|
+
huaweicloudsdkims/v2/region/ims_region.py,sha256=zhZVEJZaG9RZa3M2sahEa52aLbWBPxoNAQprGWF8N-M,5141
|
136
|
+
huaweicloudsdkims-3.1.132.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
137
|
+
huaweicloudsdkims-3.1.132.dist-info/METADATA,sha256=MdQSIANuAz7b3q9kXoHQ6v9e_GhYmhPDeK2cBp1dWJY,1135
|
138
|
+
huaweicloudsdkims-3.1.132.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
139
|
+
huaweicloudsdkims-3.1.132.dist-info/top_level.txt,sha256=beY7g3KzOOg2_S8f1Fa3GKquy1uP3gPs0mkVWNNL21g,18
|
140
|
+
huaweicloudsdkims-3.1.132.dist-info/RECORD,,
|
File without changes
|
File without changes
|