@@ -34,26 +34,31 @@ class AllocateIpv6AddressBandwidthResponse(object):
3434 """
3535 swagger_types = {
3636 'allocation_id' : 'str' ,
37+ 'allocation_ids' : 'list[str]' ,
3738 'request_id' : 'str'
3839 }
3940
4041 attribute_map = {
4142 'allocation_id' : 'AllocationId' ,
43+ 'allocation_ids' : 'AllocationIds' ,
4244 'request_id' : 'RequestId'
4345 }
4446
45- def __init__ (self , allocation_id = None , request_id = None , _configuration = None ): # noqa: E501
47+ def __init__ (self , allocation_id = None , allocation_ids = None , request_id = None , _configuration = None ): # noqa: E501
4648 """AllocateIpv6AddressBandwidthResponse - a model defined in Swagger""" # noqa: E501
4749 if _configuration is None :
4850 _configuration = Configuration ()
4951 self ._configuration = _configuration
5052
5153 self ._allocation_id = None
54+ self ._allocation_ids = None
5255 self ._request_id = None
5356 self .discriminator = None
5457
5558 if allocation_id is not None :
5659 self .allocation_id = allocation_id
60+ if allocation_ids is not None :
61+ self .allocation_ids = allocation_ids
5762 if request_id is not None :
5863 self .request_id = request_id
5964
@@ -78,6 +83,27 @@ def allocation_id(self, allocation_id):
7883
7984 self ._allocation_id = allocation_id
8085
86+ @property
87+ def allocation_ids (self ):
88+ """Gets the allocation_ids of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
89+
90+
91+ :return: The allocation_ids of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
92+ :rtype: list[str]
93+ """
94+ return self ._allocation_ids
95+
96+ @allocation_ids .setter
97+ def allocation_ids (self , allocation_ids ):
98+ """Sets the allocation_ids of this AllocateIpv6AddressBandwidthResponse.
99+
100+
101+ :param allocation_ids: The allocation_ids of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
102+ :type: list[str]
103+ """
104+
105+ self ._allocation_ids = allocation_ids
106+
81107 @property
82108 def request_id (self ):
83109 """Gets the request_id of this AllocateIpv6AddressBandwidthResponse. # noqa: E501
0 commit comments