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