zenlayercloud-sdk-python 2.0.12__py3-none-any.whl → 2.0.13__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.
- zenlayercloud/__init__.py +2 -1
- zenlayercloud/bmc/v20221120/models.py +2 -0
- zenlayercloud/zec/v20240401/models.py +2711 -0
- zenlayercloud/zec/v20240401/zec_client.py +595 -0
- {zenlayercloud_sdk_python-2.0.12.dist-info → zenlayercloud_sdk_python-2.0.13.dist-info}/METADATA +2 -2
- {zenlayercloud_sdk_python-2.0.12.dist-info → zenlayercloud_sdk_python-2.0.13.dist-info}/RECORD +9 -9
- {zenlayercloud_sdk_python-2.0.12.dist-info → zenlayercloud_sdk_python-2.0.13.dist-info}/WHEEL +1 -1
- {zenlayercloud_sdk_python-2.0.12.dist-info → zenlayercloud_sdk_python-2.0.13.dist-info}/LICENSE +0 -0
- {zenlayercloud_sdk_python-2.0.12.dist-info → zenlayercloud_sdk_python-2.0.13.dist-info}/top_level.txt +0 -0
zenlayercloud/__init__.py
CHANGED
|
@@ -387,6 +387,7 @@ class InstanceInfo(AbstractModel):
|
|
|
387
387
|
self.instanceName = None
|
|
388
388
|
self.hostname = None
|
|
389
389
|
self.instanceTypeId = None
|
|
390
|
+
self.instanceType = None
|
|
390
391
|
self.imageId = None
|
|
391
392
|
self.imageName = None
|
|
392
393
|
self.ipxeUrl = None
|
|
@@ -416,6 +417,7 @@ class InstanceInfo(AbstractModel):
|
|
|
416
417
|
self.instanceName = params.get("instanceName")
|
|
417
418
|
self.hostname = params.get("hostname")
|
|
418
419
|
self.instanceTypeId = params.get("instanceTypeId")
|
|
420
|
+
self.instanceType = InstanceType(params.get("instanceType"))
|
|
419
421
|
self.imageId = params.get("imageId")
|
|
420
422
|
self.imageName = params.get("imageName")
|
|
421
423
|
self.ipxeUrl = params.get("ipxeUrl")
|