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; ...@@ -15,6 +15,20 @@ import org.springframework.validation.annotation.Validated;
public class CloudsStormSubTopology { 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 * @return the scaledFrom
*/ */
...@@ -74,9 +88,13 @@ public class CloudsStormSubTopology { ...@@ -74,9 +88,13 @@ public class CloudsStormSubTopology {
@JsonProperty("sshKeyPairId") @JsonProperty("sshKeyPairId")
private String sshKeyPairId; private String sshKeyPairId;
@JsonProperty("scaledFrom") @JsonProperty("scaledFrom")
private Object scaledFrom; private Object scaledFrom;
@JsonProperty("connections")
private Object connections;
/** /**
* Gets or Sets status * Gets or Sets status
*/ */
......
...@@ -22,3 +22,7 @@ ...@@ -22,3 +22,7 @@
type: object type: object
additionalProperties: 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