@@ -33,29 +33,55 @@ class UnassignPrivateIpAddressesRequest(object):
3333 and the value is json key in definition.
3434 """
3535 swagger_types = {
36+ 'client_token' : 'str' ,
3637 'network_interface_id' : 'str' ,
3738 'private_ip_address' : 'list[str]'
3839 }
3940
4041 attribute_map = {
42+ 'client_token' : 'ClientToken' ,
4143 'network_interface_id' : 'NetworkInterfaceId' ,
4244 'private_ip_address' : 'PrivateIpAddress'
4345 }
4446
45- def __init__ (self , network_interface_id = None , private_ip_address = None , _configuration = None ): # noqa: E501
47+ def __init__ (self , client_token = None , network_interface_id = None , private_ip_address = None , _configuration = None ): # noqa: E501
4648 """UnassignPrivateIpAddressesRequest - a model defined in Swagger""" # noqa: E501
4749 if _configuration is None :
4850 _configuration = Configuration ()
4951 self ._configuration = _configuration
5052
53+ self ._client_token = None
5154 self ._network_interface_id = None
5255 self ._private_ip_address = None
5356 self .discriminator = None
5457
58+ if client_token is not None :
59+ self .client_token = client_token
5560 self .network_interface_id = network_interface_id
5661 if private_ip_address is not None :
5762 self .private_ip_address = private_ip_address
5863
64+ @property
65+ def client_token (self ):
66+ """Gets the client_token of this UnassignPrivateIpAddressesRequest. # noqa: E501
67+
68+
69+ :return: The client_token of this UnassignPrivateIpAddressesRequest. # noqa: E501
70+ :rtype: str
71+ """
72+ return self ._client_token
73+
74+ @client_token .setter
75+ def client_token (self , client_token ):
76+ """Sets the client_token of this UnassignPrivateIpAddressesRequest.
77+
78+
79+ :param client_token: The client_token of this UnassignPrivateIpAddressesRequest. # noqa: E501
80+ :type: str
81+ """
82+
83+ self ._client_token = client_token
84+
5985 @property
6086 def network_interface_id (self ):
6187 """Gets the network_interface_id of this UnassignPrivateIpAddressesRequest. # noqa: E501
0 commit comments