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
831c481b
Commit
831c481b
authored
Jan 13, 2020
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added missing properties
parent
541866ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
1 deletion
+41
-1
CloudsStormVMs.java
...ava/nl/uva/sne/drip/model/cloud/storm/CloudsStormVMs.java
+36
-0
CloudsStormVMs.yml
openAPI/schema/CloudStorm/CloudsStormVMs.yml
+5
-1
No files found.
drip-commons/src/main/java/nl/uva/sne/drip/model/cloud/storm/CloudsStormVMs.java
View file @
831c481b
...
...
@@ -17,6 +17,34 @@ import javax.validation.Valid;
public
class
CloudsStormVMs
{
/**
* @return the sliceName
*/
public
String
getSliceName
()
{
return
sliceName
;
}
/**
* @param sliceName the sliceName to set
*/
public
void
setSliceName
(
String
sliceName
)
{
this
.
sliceName
=
sliceName
;
}
/**
* @return the duration
*/
public
Float
getDuration
()
{
return
duration
;
}
/**
* @param duration the duration to set
*/
public
void
setDuration
(
Float
duration
)
{
this
.
duration
=
duration
;
}
/**
* @return the extraInfo
*/
...
...
@@ -57,6 +85,14 @@ public class CloudsStormVMs {
@Valid
private
String
sEngineClass
=
null
;
@JsonProperty
(
"sliceName"
)
@Valid
private
String
sliceName
=
null
;
@JsonProperty
(
"duration"
)
@Valid
private
Float
duration
=
null
;
public
CloudsStormVMs
vms
(
List
<
CloudsStormVM
>
vms
)
{
this
.
vms
=
vms
;
return
this
;
...
...
openAPI/schema/CloudStorm/CloudsStormVMs.yml
View file @
831c481b
...
...
@@ -6,7 +6,11 @@
extraInfo
:
type
:
object
additionalProperties
:
type
:
object
type
:
object
sliceName
:
type
:
"
string"
duration
:
type
:
"
float"
VMs
:
type
:
"
array"
items
:
...
...
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