Commit 1a62fee8 authored by Spiros Koulouzis's avatar Spiros Koulouzis

added more properties missing from cloudstorm topology

parent 883de1b9
......@@ -15,6 +15,20 @@ import org.springframework.validation.annotation.Validated;
public class CloudsStormSubTopology {
/**
* @return the connections
*/
public Object getConnections() {
return connections;
}
/**
* @param connections the connections to set
*/
public void setConnections(Object connections) {
this.connections = connections;
}
/**
* @return the scaledFrom
*/
......@@ -74,9 +88,13 @@ public class CloudsStormSubTopology {
@JsonProperty("sshKeyPairId")
private String sshKeyPairId;
@JsonProperty("scaledFrom")
private Object scaledFrom;
@JsonProperty("connections")
private Object connections;
/**
* Gets or Sets status
*/
......
......@@ -21,4 +21,8 @@
scaledFrom:
type: object
additionalProperties:
type: object
type: object
connections:
type: object
additionalProperties:
type: object
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