@@ -58,7 +58,8 @@ class DescribeEipAddressAttributesResponse(object):
5858 'service_managed' : 'bool' ,
5959 'status' : 'str' ,
6060 'tags' : 'list[TagForDescribeEipAddressAttributesOutput]' ,
61- 'updated_at' : 'str'
61+ 'updated_at' : 'str' ,
62+ 'vpc_id' : 'str'
6263 }
6364
6465 attribute_map = {
@@ -87,10 +88,11 @@ class DescribeEipAddressAttributesResponse(object):
8788 'service_managed' : 'ServiceManaged' ,
8889 'status' : 'Status' ,
8990 'tags' : 'Tags' ,
90- 'updated_at' : 'UpdatedAt'
91+ 'updated_at' : 'UpdatedAt' ,
92+ 'vpc_id' : 'VpcId'
9193 }
9294
93- def __init__ (self , allocation_id = None , allocation_time = None , bandwidth = None , bandwidth_package_id = None , billing_type = None , business_status = None , deleted_time = None , description = None , eip_address = None , expired_time = None , isp = None , instance_id = None , instance_type = None , ip_address_pool_id = None , is_blocked = None , lock_reason = None , name = None , overdue_time = None , project_name = None , release_with_instance = None , request_id = None , security_protection_types = None , service_managed = None , status = None , tags = None , updated_at = None , _configuration = None ): # noqa: E501
95+ def __init__ (self , allocation_id = None , allocation_time = None , bandwidth = None , bandwidth_package_id = None , billing_type = None , business_status = None , deleted_time = None , description = None , eip_address = None , expired_time = None , isp = None , instance_id = None , instance_type = None , ip_address_pool_id = None , is_blocked = None , lock_reason = None , name = None , overdue_time = None , project_name = None , release_with_instance = None , request_id = None , security_protection_types = None , service_managed = None , status = None , tags = None , updated_at = None , vpc_id = None , _configuration = None ): # noqa: E501
9496 """DescribeEipAddressAttributesResponse - a model defined in Swagger""" # noqa: E501
9597 if _configuration is None :
9698 _configuration = Configuration ()
@@ -122,6 +124,7 @@ def __init__(self, allocation_id=None, allocation_time=None, bandwidth=None, ban
122124 self ._status = None
123125 self ._tags = None
124126 self ._updated_at = None
127+ self ._vpc_id = None
125128 self .discriminator = None
126129
127130 if allocation_id is not None :
@@ -176,6 +179,8 @@ def __init__(self, allocation_id=None, allocation_time=None, bandwidth=None, ban
176179 self .tags = tags
177180 if updated_at is not None :
178181 self .updated_at = updated_at
182+ if vpc_id is not None :
183+ self .vpc_id = vpc_id
179184
180185 @property
181186 def allocation_id (self ):
@@ -723,6 +728,27 @@ def updated_at(self, updated_at):
723728
724729 self ._updated_at = updated_at
725730
731+ @property
732+ def vpc_id (self ):
733+ """Gets the vpc_id of this DescribeEipAddressAttributesResponse. # noqa: E501
734+
735+
736+ :return: The vpc_id of this DescribeEipAddressAttributesResponse. # noqa: E501
737+ :rtype: str
738+ """
739+ return self ._vpc_id
740+
741+ @vpc_id .setter
742+ def vpc_id (self , vpc_id ):
743+ """Sets the vpc_id of this DescribeEipAddressAttributesResponse.
744+
745+
746+ :param vpc_id: The vpc_id of this DescribeEipAddressAttributesResponse. # noqa: E501
747+ :type: str
748+ """
749+
750+ self ._vpc_id = vpc_id
751+
726752 def to_dict (self ):
727753 """Returns the model properties as a dict"""
728754 result = {}
0 commit comments