Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
541866ae
Commit
541866ae
authored
Jan 13, 2020
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added missing properties
parent
68b45d30
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
115 additions
and
4 deletions
+115
-4
CloudsStormVM.java
...java/nl/uva/sne/drip/model/cloud/storm/CloudsStormVM.java
+103
-4
CloudsStormVM.yml
openAPI/schema/CloudStorm/CloudsStormVM.yml
+12
-0
No files found.
drip-commons/src/main/java/nl/uva/sne/drip/model/cloud/storm/CloudsStormVM.java
View file @
541866ae
...
...
@@ -17,6 +17,90 @@ 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 vNFType
*/
public
String
getvNFType
()
{
return
vNFType
;
}
/**
* @param vNFType the vNFType to set
*/
public
void
setvNFType
(
String
vNFType
)
{
this
.
vNFType
=
vNFType
;
}
/**
* @return the scaledFrom
*/
public
String
getScaledFrom
()
{
return
scaledFrom
;
}
/**
* @param scaledFrom the scaledFrom to set
*/
public
void
setScaledFrom
(
String
scaledFrom
)
{
this
.
scaledFrom
=
scaledFrom
;
}
/**
* @return the fake
*/
public
String
getFake
()
{
return
fake
;
}
/**
* @param fake the fake to set
*/
public
void
setFake
(
String
fake
)
{
this
.
fake
=
fake
;
}
/**
* @return the OS_URL
*/
public
String
getOS_URL
()
{
return
OS_URL
;
}
/**
* @param OS_URL the OS_URL to set
*/
public
void
setOS_URL
(
String
OS_URL
)
{
this
.
OS_URL
=
OS_URL
;
}
/**
* @return the OS_GUID
*/
public
String
getOS_GUID
()
{
return
OS_GUID
;
}
/**
* @param OS_GUID the OS_GUID to set
*/
public
void
setOS_GUID
(
String
OS_GUID
)
{
this
.
OS_GUID
=
OS_GUID
;
}
/**
* @return the VEngineClass
*/
...
...
@@ -62,9 +146,6 @@ public class CloudsStormVM {
@JsonProperty
(
"publicAddress"
)
private
String
publicAddress
=
null
;
//
// @JsonProperty("type")
// private String type = null;
@JsonProperty
(
"extraInfo"
)
@Valid
...
...
@@ -94,6 +175,24 @@ public class CloudsStormVM {
@JsonProperty
(
"selfEthAddresses"
)
private
String
selfEthAddresses
=
null
;
@JsonProperty
(
"VEngineClass"
)
private
String
vEngineClass
=
null
;
@JsonProperty
(
"VNFType"
)
private
String
vNFType
=
null
;
@JsonProperty
(
"scaledFrom"
)
private
String
scaledFrom
=
null
;
@JsonProperty
(
"fake"
)
private
String
fake
=
null
;
@JsonProperty
(
"OS_URL"
)
private
String
OS_URL
=
null
;
@JsonProperty
(
"OS_GUID"
)
private
String
OS_GUID
=
null
;
public
CloudsStormVM
name
(
String
name
)
{
this
.
name
=
name
;
return
this
;
...
...
openAPI/schema/CloudStorm/CloudsStormVM.yml
View file @
541866ae
...
...
@@ -31,6 +31,18 @@
type
:
"
string"
VEngineClass
:
type
:
"
string"
VNFType
:
type
:
"
string"
scaledFrom
:
type
:
"
string"
fake
:
type
:
"
string"
OS_URL
:
type
:
"
string"
OS_GUID
:
type
:
"
string"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment