diff --git a/acos_client/v30/glm/flexpool.py b/acos_client/v30/glm/flexpool.py index f5e7ec6a..b6a98934 100644 --- a/acos_client/v30/glm/flexpool.py +++ b/acos_client/v30/glm/flexpool.py @@ -80,13 +80,13 @@ 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, @@ -94,14 +94,14 @@ def replace(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._put(self.url_prefix, params, axapi_args=kwargs) def delete(self):