use of com.cloud.agent.api.AssociateAsaWithLogicalEdgeFirewallCommand in project cloudstack by apache.
the class CiscoVnmcElement method associateAsaWithLogicalEdgeFirewall.
private boolean associateAsaWithLogicalEdgeFirewall(long vlanId, String asaMgmtIp, long hostId) {
AssociateAsaWithLogicalEdgeFirewallCommand cmd = new AssociateAsaWithLogicalEdgeFirewallCommand(vlanId, asaMgmtIp);
Answer answer = _agentMgr.easySend(hostId, cmd);
return answer.getResult();
}
Aggregations