Scalr\Service\CloudStack\CloudStack::disassociateIpAddress PHP Method

disassociateIpAddress() public method

Disassociates an ip address from the account.
public disassociateIpAddress ( string $id ) : ResponseDeleteData
$id string the id of the public ip address to disassociate
return ResponseDeleteData
    public function disassociateIpAddress($id)
    {
        $result = null;
        $response = $this->getClient()->call('disassociateIpAddress', array('id' => $this->escape($id)));
        if ($response->hasError() === false) {
            $resultObject = $response->getResult();
            if (!empty($resultObject)) {
                $result = $this->_loadUpdateData($resultObject);
            }
        }
        return $result;
    }