alibabacloud-vpc20160428 6.11.6__py3-none-any.whl → 6.11.7__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.
- alibabacloud_vpc20160428/__init__.py +1 -1
- alibabacloud_vpc20160428/models.py +12 -0
- {alibabacloud_vpc20160428-6.11.6.dist-info → alibabacloud_vpc20160428-6.11.7.dist-info}/METADATA +1 -1
- alibabacloud_vpc20160428-6.11.7.dist-info/RECORD +8 -0
- alibabacloud_vpc20160428-6.11.6.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.11.6.dist-info → alibabacloud_vpc20160428-6.11.7.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.11.6.dist-info → alibabacloud_vpc20160428-6.11.7.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.11.6.dist-info → alibabacloud_vpc20160428-6.11.7.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.11.
|
|
1
|
+
__version__ = '6.11.7'
|
|
@@ -70655,6 +70655,7 @@ class GetDhcpOptionsSetResponseBody(TeaModel):
|
|
|
70655
70655
|
def __init__(
|
|
70656
70656
|
self,
|
|
70657
70657
|
associate_vpcs: List[GetDhcpOptionsSetResponseBodyAssociateVpcs] = None,
|
|
70658
|
+
creation_time: str = None,
|
|
70658
70659
|
dhcp_options: GetDhcpOptionsSetResponseBodyDhcpOptions = None,
|
|
70659
70660
|
dhcp_options_set_description: str = None,
|
|
70660
70661
|
dhcp_options_set_id: str = None,
|
|
@@ -70667,6 +70668,7 @@ class GetDhcpOptionsSetResponseBody(TeaModel):
|
|
|
70667
70668
|
):
|
|
70668
70669
|
# The information about the virtual private cloud (VPC) that is associated with the DHCP options set.
|
|
70669
70670
|
self.associate_vpcs = associate_vpcs
|
|
70671
|
+
self.creation_time = creation_time
|
|
70670
70672
|
# The configuration information about the DHCP options set.
|
|
70671
70673
|
self.dhcp_options = dhcp_options
|
|
70672
70674
|
# The description of the DHCP options set.
|
|
@@ -70713,6 +70715,8 @@ class GetDhcpOptionsSetResponseBody(TeaModel):
|
|
|
70713
70715
|
if self.associate_vpcs is not None:
|
|
70714
70716
|
for k in self.associate_vpcs:
|
|
70715
70717
|
result['AssociateVpcs'].append(k.to_map() if k else None)
|
|
70718
|
+
if self.creation_time is not None:
|
|
70719
|
+
result['CreationTime'] = self.creation_time
|
|
70716
70720
|
if self.dhcp_options is not None:
|
|
70717
70721
|
result['DhcpOptions'] = self.dhcp_options.to_map()
|
|
70718
70722
|
if self.dhcp_options_set_description is not None:
|
|
@@ -70742,6 +70746,8 @@ class GetDhcpOptionsSetResponseBody(TeaModel):
|
|
|
70742
70746
|
for k in m.get('AssociateVpcs'):
|
|
70743
70747
|
temp_model = GetDhcpOptionsSetResponseBodyAssociateVpcs()
|
|
70744
70748
|
self.associate_vpcs.append(temp_model.from_map(k))
|
|
70749
|
+
if m.get('CreationTime') is not None:
|
|
70750
|
+
self.creation_time = m.get('CreationTime')
|
|
70745
70751
|
if m.get('DhcpOptions') is not None:
|
|
70746
70752
|
temp_model = GetDhcpOptionsSetResponseBodyDhcpOptions()
|
|
70747
70753
|
self.dhcp_options = temp_model.from_map(m['DhcpOptions'])
|
|
@@ -74840,6 +74846,7 @@ class ListDhcpOptionsSetsResponseBodyDhcpOptionsSets(TeaModel):
|
|
|
74840
74846
|
def __init__(
|
|
74841
74847
|
self,
|
|
74842
74848
|
associate_vpc_count: int = None,
|
|
74849
|
+
creation_time: str = None,
|
|
74843
74850
|
dhcp_options: ListDhcpOptionsSetsResponseBodyDhcpOptionsSetsDhcpOptions = None,
|
|
74844
74851
|
dhcp_options_set_description: str = None,
|
|
74845
74852
|
dhcp_options_set_id: str = None,
|
|
@@ -74851,6 +74858,7 @@ class ListDhcpOptionsSetsResponseBodyDhcpOptionsSets(TeaModel):
|
|
|
74851
74858
|
):
|
|
74852
74859
|
# The number of VPCs with which the DHCP options set is associated.
|
|
74853
74860
|
self.associate_vpc_count = associate_vpc_count
|
|
74861
|
+
self.creation_time = creation_time
|
|
74854
74862
|
# The configuration information about the DHCP options set.
|
|
74855
74863
|
self.dhcp_options = dhcp_options
|
|
74856
74864
|
# The description of the DHCP options set.
|
|
@@ -74889,6 +74897,8 @@ class ListDhcpOptionsSetsResponseBodyDhcpOptionsSets(TeaModel):
|
|
|
74889
74897
|
result = dict()
|
|
74890
74898
|
if self.associate_vpc_count is not None:
|
|
74891
74899
|
result['AssociateVpcCount'] = self.associate_vpc_count
|
|
74900
|
+
if self.creation_time is not None:
|
|
74901
|
+
result['CreationTime'] = self.creation_time
|
|
74892
74902
|
if self.dhcp_options is not None:
|
|
74893
74903
|
result['DhcpOptions'] = self.dhcp_options.to_map()
|
|
74894
74904
|
if self.dhcp_options_set_description is not None:
|
|
@@ -74913,6 +74923,8 @@ class ListDhcpOptionsSetsResponseBodyDhcpOptionsSets(TeaModel):
|
|
|
74913
74923
|
m = m or dict()
|
|
74914
74924
|
if m.get('AssociateVpcCount') is not None:
|
|
74915
74925
|
self.associate_vpc_count = m.get('AssociateVpcCount')
|
|
74926
|
+
if m.get('CreationTime') is not None:
|
|
74927
|
+
self.creation_time = m.get('CreationTime')
|
|
74916
74928
|
if m.get('DhcpOptions') is not None:
|
|
74917
74929
|
temp_model = ListDhcpOptionsSetsResponseBodyDhcpOptionsSetsDhcpOptions()
|
|
74918
74930
|
self.dhcp_options = temp_model.from_map(m['DhcpOptions'])
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_vpc20160428/__init__.py,sha256=9Vs3WN-Cr9bOi71I1NZYS9rcBXHIz5hF0AEAzUKl_xA,22
|
|
2
|
+
alibabacloud_vpc20160428/client.py,sha256=eoUgHbYqzHGvF-QJCw6-_JH6CWZCirnG4W15vezLePM,2855223
|
|
3
|
+
alibabacloud_vpc20160428/models.py,sha256=b2c5Tf6sMFduSg3qWaT6ojVmrVNygu9x9WFNzvWO9P0,4181514
|
|
4
|
+
alibabacloud_vpc20160428-6.11.7.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_vpc20160428-6.11.7.dist-info/METADATA,sha256=rlezYUIsBsidhHpZzdghWTSltYIc8zx43Ut3zWdueMo,2331
|
|
6
|
+
alibabacloud_vpc20160428-6.11.7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_vpc20160428-6.11.7.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
+
alibabacloud_vpc20160428-6.11.7.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_vpc20160428/__init__.py,sha256=AlT82AvwAFEvETdybaBu1Fc3pHaZr3bYGJywgiKfcP4,22
|
|
2
|
-
alibabacloud_vpc20160428/client.py,sha256=eoUgHbYqzHGvF-QJCw6-_JH6CWZCirnG4W15vezLePM,2855223
|
|
3
|
-
alibabacloud_vpc20160428/models.py,sha256=eG0bL6EhInLtwK4Hte85zZ9R8Yf9d-0LBE_uh6HUf94,4180958
|
|
4
|
-
alibabacloud_vpc20160428-6.11.6.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_vpc20160428-6.11.6.dist-info/METADATA,sha256=cBXmmJsMKVgMJm740p9ty_KAm8q8k6Ph8v1L2sg56Uo,2331
|
|
6
|
-
alibabacloud_vpc20160428-6.11.6.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_vpc20160428-6.11.6.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
-
alibabacloud_vpc20160428-6.11.6.dist-info/RECORD,,
|
{alibabacloud_vpc20160428-6.11.6.dist-info → alibabacloud_vpc20160428-6.11.7.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_vpc20160428-6.11.6.dist-info → alibabacloud_vpc20160428-6.11.7.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|