All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.floto.dsl.model.VmConfiguration Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.github.floto.dsl.model;

import java.util.ArrayList;
import java.util.List;

public class VmConfiguration {
    public String ovaUrl;
    public String vmName;
    public int numberOfCores = 4;
    public long memoryInMB = 4096;
    public HypervisorDescription hypervisor = new WorkstationHypervisorDescription();
    public List networks = new ArrayList<>();
    {
        networks.add("VM Network");
    }
    public List disks = new ArrayList<>();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy