Commit 68b45d30 authored by Spiros Koulouzis's avatar Spiros Koulouzis

added missing properties

parent 3e259cf1
......@@ -17,6 +17,20 @@ import javax.validation.Valid;
public class CloudsStormVM {
/**
* @return the VEngineClass
*/
public String getVEngineClass() {
return VEngineClass;
}
/**
* @param VEngineClass the VEngineClass to set
*/
public void setVEngineClass(String VEngineClass) {
this.VEngineClass = VEngineClass;
}
/**
* @return the selfEthAddresses
*/
......@@ -36,6 +50,8 @@ public class CloudsStormVM {
@JsonProperty("nodeType")
private String nodeType = null;
@JsonProperty("VEngineClass")
private String VEngineClass = null;
@JsonProperty("OStype")
@JsonAlias({"os", "OS"})
......@@ -69,6 +85,7 @@ public class CloudsStormVM {
private String price = null;
@JsonProperty("DefaultSSHAccount")
@JsonAlias({"defaultSSHAccount"})
private String defaultSSHAccount = null;
@JsonProperty("availability")
......
......@@ -29,4 +29,8 @@
type: "string"
selfEthAddresses:
type: "string"
VEngineClass:
type: "string"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment