use of com.cloud.agent.api.StartupBrocadeVcsCommand in project cloudstack by apache.
the class BrocadeVcsResource method initialize.
@Override
public StartupCommand[] initialize() {
StartupBrocadeVcsCommand sc = new StartupBrocadeVcsCommand();
sc.setGuid(_guid);
sc.setName(_name);
sc.setDataCenter(_zoneId);
sc.setPrivateIpAddress("");
sc.setStorageIpAddress("");
sc.setVersion(BrocadeVcsResource.class.getPackage().getImplementationVersion());
return new StartupCommand[] { sc };
}
Aggregations