zenlayercloud-sdk-python 2.0.44__py3-none-any.whl → 2.0.45__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 +1 -1
- zenlayercloud/bmc/v20221120/models.py +3 -0
- zenlayercloud/vm/v20230313/models.py +2 -0
- zenlayercloud/zec/v20250901/models.py +2 -0
- zenlayercloud/zlb/v20250401/models.py +593 -587
- zenlayercloud/zlb/v20250401/zlb_client.py +127 -64
- zenlayercloud/zrm/v20251014/models.py +100 -55
- zenlayercloud/zrm/v20251014/zrm_client.py +42 -12
- {zenlayercloud_sdk_python-2.0.44.dist-info → zenlayercloud_sdk_python-2.0.45.dist-info}/METADATA +1 -1
- {zenlayercloud_sdk_python-2.0.44.dist-info → zenlayercloud_sdk_python-2.0.45.dist-info}/RECORD +13 -13
- {zenlayercloud_sdk_python-2.0.44.dist-info → zenlayercloud_sdk_python-2.0.45.dist-info}/WHEEL +0 -0
- {zenlayercloud_sdk_python-2.0.44.dist-info → zenlayercloud_sdk_python-2.0.45.dist-info}/licenses/LICENSE +0 -0
- {zenlayercloud_sdk_python-2.0.44.dist-info → zenlayercloud_sdk_python-2.0.45.dist-info}/top_level.txt +0 -0
zenlayercloud/__init__.py
CHANGED
|
@@ -697,12 +697,15 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
|
|
|
697
697
|
def __init__(self):
|
|
698
698
|
self.requestId = None
|
|
699
699
|
self.instancePrice = None
|
|
700
|
+
self.primaryIpPrice = None
|
|
700
701
|
self.bandwidthPrice = None
|
|
701
702
|
|
|
702
703
|
def _deserialize(self, params):
|
|
703
704
|
self.requestId = params.get("requestId")
|
|
704
705
|
if params.get("instancePrice") is not None:
|
|
705
706
|
self.instancePrice = Price(params.get("instancePrice"))
|
|
707
|
+
if params.get("primaryIpPrice") is not None:
|
|
708
|
+
self.primaryIpPrice = Price(params.get("primaryIpPrice"))
|
|
706
709
|
if params.get("bandwidthPrice") is not None:
|
|
707
710
|
self.bandwidthPrice = []
|
|
708
711
|
for item in params.get("bandwidthPrice"):
|
|
@@ -141,6 +141,7 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
|
|
|
141
141
|
self.requestId = None
|
|
142
142
|
self.instancePrice = None
|
|
143
143
|
self.bandwidthPrice = None
|
|
144
|
+
self.eipPrice = None
|
|
144
145
|
self.systemDiskPrice = None
|
|
145
146
|
self.dataDiskPrice = None
|
|
146
147
|
|
|
@@ -152,6 +153,7 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
|
|
|
152
153
|
for item in params.get("bandwidthPrice"):
|
|
153
154
|
obj = Price(item)
|
|
154
155
|
self.bandwidthPrice.append(obj)
|
|
156
|
+
self.eipPrice = Price(params.get("eipPrice"))
|
|
155
157
|
self.systemDiskPrice = Price(params.get("systemDiskPrice"))
|
|
156
158
|
if params.get("dataDiskPrice") is not None:
|
|
157
159
|
self.dataDiskPrice = Price(params.get("dataDiskPrice"))
|
|
@@ -36,6 +36,7 @@ class ZoneInfo(AbstractModel):
|
|
|
36
36
|
self.regionId = None
|
|
37
37
|
self.zoneName = None
|
|
38
38
|
self.supportSecurityGroup = None
|
|
39
|
+
self.timeZone = None
|
|
39
40
|
|
|
40
41
|
def _deserialize(self, params):
|
|
41
42
|
self.zoneId = params.get("zoneId")
|
|
@@ -48,6 +49,7 @@ class ZoneInfo(AbstractModel):
|
|
|
48
49
|
stacklevel=2
|
|
49
50
|
)
|
|
50
51
|
self.supportSecurityGroup = params.get("supportSecurityGroup")
|
|
52
|
+
self.timeZone = params.get("timeZone")
|
|
51
53
|
|
|
52
54
|
|
|
53
55
|
class DescribeZoneInstanceConfigInfosRequest(AbstractModel):
|