@@ -36,6 +36,7 @@ class ModifyEipAddressAttributesRequest(object):
3636 'allocation_id' : 'str' ,
3737 'bandwidth' : 'int' ,
3838 'description' : 'str' ,
39+ 'direct_mode' : 'bool' ,
3940 'name' : 'str' ,
4041 'release_with_instance' : 'bool'
4142 }
@@ -44,11 +45,12 @@ class ModifyEipAddressAttributesRequest(object):
4445 'allocation_id' : 'AllocationId' ,
4546 'bandwidth' : 'Bandwidth' ,
4647 'description' : 'Description' ,
48+ 'direct_mode' : 'DirectMode' ,
4749 'name' : 'Name' ,
4850 'release_with_instance' : 'ReleaseWithInstance'
4951 }
5052
51- def __init__ (self , allocation_id = None , bandwidth = None , description = None , name = None , release_with_instance = None , _configuration = None ): # noqa: E501
53+ def __init__ (self , allocation_id = None , bandwidth = None , description = None , direct_mode = None , name = None , release_with_instance = None , _configuration = None ): # noqa: E501
5254 """ModifyEipAddressAttributesRequest - a model defined in Swagger""" # noqa: E501
5355 if _configuration is None :
5456 _configuration = Configuration ()
@@ -57,6 +59,7 @@ def __init__(self, allocation_id=None, bandwidth=None, description=None, name=No
5759 self ._allocation_id = None
5860 self ._bandwidth = None
5961 self ._description = None
62+ self ._direct_mode = None
6063 self ._name = None
6164 self ._release_with_instance = None
6265 self .discriminator = None
@@ -66,6 +69,8 @@ def __init__(self, allocation_id=None, bandwidth=None, description=None, name=No
6669 self .bandwidth = bandwidth
6770 if description is not None :
6871 self .description = description
72+ if direct_mode is not None :
73+ self .direct_mode = direct_mode
6974 if name is not None :
7075 self .name = name
7176 if release_with_instance is not None :
@@ -145,6 +150,27 @@ def description(self, description):
145150
146151 self ._description = description
147152
153+ @property
154+ def direct_mode (self ):
155+ """Gets the direct_mode of this ModifyEipAddressAttributesRequest. # noqa: E501
156+
157+
158+ :return: The direct_mode of this ModifyEipAddressAttributesRequest. # noqa: E501
159+ :rtype: bool
160+ """
161+ return self ._direct_mode
162+
163+ @direct_mode .setter
164+ def direct_mode (self , direct_mode ):
165+ """Sets the direct_mode of this ModifyEipAddressAttributesRequest.
166+
167+
168+ :param direct_mode: The direct_mode of this ModifyEipAddressAttributesRequest. # noqa: E501
169+ :type: bool
170+ """
171+
172+ self ._direct_mode = direct_mode
173+
148174 @property
149175 def name (self ):
150176 """Gets the name of this ModifyEipAddressAttributesRequest. # noqa: E501
0 commit comments