use of org.openstack4j.model.common.ActionResponse in project openstack4j by ContainX.
the class FirewallTests method testDeleteFirewall.
public void testDeleteFirewall() {
respondWith(200);
ActionResponse result = osv3().networking().firewalls().firewall().delete("3b0ef8f4-82c7-44d4-a4fb-6177f9a21977");
assertTrue(result.isSuccess());
}
use of org.openstack4j.model.common.ActionResponse in project openstack4j by ContainX.
the class VipTests method testDeleteVip.
public void testDeleteVip() {
String id = "50cbd265-fe4f-4c9c-b25c-bb6c773d0366";
ActionResponse result = osv3().networking().loadbalancers().vip().delete(id);
assertTrue(result.isSuccess());
}
use of org.openstack4j.model.common.ActionResponse in project openstack4j by ContainX.
the class FirewallPolicyTests method testDeleteFirewallPolicy.
public void testDeleteFirewallPolicy() {
respondWith(200);
ActionResponse result = osv3().networking().firewalls().firewallpolicy().delete("c69933c1-b472-44f9-8226-30dc4ffd454c");
assertTrue(result.isSuccess());
}
use of org.openstack4j.model.common.ActionResponse in project openstack4j by ContainX.
the class TackerVimTests method testDeleteVim.
public void testDeleteVim() throws IOException {
respondWith(200);
ActionResponse result = osv3().tacker().vim().delete("bad2f397-7436-4fc7-8043-726e173c5d30");
assertTrue(result.isSuccess());
}
use of org.openstack4j.model.common.ActionResponse in project openstack4j by ContainX.
the class ReceiverServiceTest method testDeleteReceiver.
@Test
public void testDeleteReceiver() {
respondWith(200);
ActionResponse result = osv3().senlin().receiver().delete(ID);
assertTrue(result.isSuccess());
}
Aggregations