schemata-cloud_controller 0.0.1.beta4 → 0.0.1.beta5
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,11 +8,12 @@ module Schemata
|
|
8
8
|
|
9
9
|
define_schema do
|
10
10
|
{
|
11
|
-
"droplet"
|
12
|
-
"op"
|
13
|
-
"last_updated"
|
14
|
-
"version"
|
15
|
-
"indices"
|
11
|
+
"droplet" => String,
|
12
|
+
"op" => "START",
|
13
|
+
"last_updated" => enum(Integer, NilClass),
|
14
|
+
"version" => enum(String, NilClass),
|
15
|
+
"indices" => [Integer],
|
16
|
+
optional("flapping") => bool
|
16
17
|
}
|
17
18
|
end
|
18
19
|
|
@@ -32,7 +33,8 @@ module Schemata
|
|
32
33
|
"op" => "START",
|
33
34
|
"last_updated" => proc { Time.now.to_i },
|
34
35
|
"version" => proc { VCAP.secure_uuid },
|
35
|
-
"indices" => [0, 1]
|
36
|
+
"indices" => [0, 1],
|
37
|
+
"flapping" => false,
|
36
38
|
}
|
37
39
|
end
|
38
40
|
end
|