Skip to content

Commit

Permalink
Merge pull request #365 from hthompson-a10/topic/stack_3055
Browse files Browse the repository at this point in the history
[STACK-3126] Burst is not enabled when set in the a10-octavia config
  • Loading branch information
ytsai-a10 authored Nov 3, 2021
2 parents d480a4f + 5629c2d commit 9c2d4dd
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions acos_client/v30/glm/flexpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,28 +80,28 @@ def update(self, appliance_name=None, allocate_bandwidth=None, burst=None,
enterprise_request_type=None, host=None, interval=None,
port=None, thunder_capacity_license=None, token=None,
use_mgmt_port=None, **kwargs):
params, kwargs = self._set(appliance_name=appliance_name,
allocate_bandwidth=allocate_bandwidth, burst=burst,
check_expiration=check_expiration, enable_requests=enable_requests,
enterpise=enterpise, enterprise_request_type=enterprise_request_type,
thunder_capacity_license=thunder_capacity_license,
token=token, use_mgmt_port=use_mgmt_port,
host=host, interval=interval, port=port)
params = self._set(appliance_name=appliance_name,
allocate_bandwidth=allocate_bandwidth, burst=burst,
check_expiration=check_expiration, enable_requests=enable_requests,
enterpise=enterpise, enterprise_request_type=enterprise_request_type,
thunder_capacity_license=thunder_capacity_license,
token=token, use_mgmt_port=use_mgmt_port,
host=host, interval=interval, port=port)
return self._post(self.url_prefix, params, axapi_args=kwargs)

def replace(self, appliance_name=None, allocate_bandwidth=None, burst=None,
check_expiration=None, enable_requests=None, enterpise=None,
enterprise_request_type=None, host=None, interval=None,
port=None, thunder_capacity_license=None, token=None,
use_mgmt_port=None, **kwargs):
params, kwargs = self._set(appliance_name=appliance_name,
allocate_bandwidth=allocate_bandwidth, burst=burst,
check_expiration=check_expiration, enable_requests=enable_requests,
enterpise=enterpise,
enterprise_request_type=enterprise_request_type,
thunder_capacity_license=thunder_capacity_license,
token=token, use_mgmt_port=use_mgmt_port,
host=host, interval=interval, port=port)
params = self._set(appliance_name=appliance_name,
allocate_bandwidth=allocate_bandwidth, burst=burst,
check_expiration=check_expiration, enable_requests=enable_requests,
enterpise=enterpise,
enterprise_request_type=enterprise_request_type,
thunder_capacity_license=thunder_capacity_license,
token=token, use_mgmt_port=use_mgmt_port,
host=host, interval=interval, port=port)
return self._put(self.url_prefix, params, axapi_args=kwargs)

def delete(self):
Expand Down

0 comments on commit 9c2d4dd

Please sign in to comment.