arkaan 1.2.8 → 1.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/arkaan/monitoring/action.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a09a0dfc560c3f5b49e807ab854f2c95b4f9e63
|
4
|
+
data.tar.gz: d1723799c1bcda0b258eaf00ec21dfe381877518
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f45d07c940dd9c01e00e895d8c0d52035a2c114e672d08d65af8165807acba0fb38a193d9797786e87c52f49b2879562ba0494f7a60db940b206503d46c95a56
|
7
|
+
data.tar.gz: 19f3a9768f07bfa2ee36c277646410cc27c1960eafaf3868eaade312d32f5a2f9ed9e5515a26c327c20dea08e8d6d8bfa42bbddcbce5f195bb1305af849551cd
|
@@ -10,6 +10,9 @@ module Arkaan
|
|
10
10
|
# @!attribute [rw] type
|
11
11
|
# @return [Symbol] the type of action you're making on this instance
|
12
12
|
enum_field :type, [:restart]
|
13
|
+
# @!attribute [rw] success
|
14
|
+
# @return [Boolean] TRUE if the action succeeded (or at least was successfully launched), FALSE otherwise.
|
15
|
+
field :success, type: Boolean, default: false
|
13
16
|
|
14
17
|
# @!attribute [rw] user
|
15
18
|
# @return [Arkaan::Account] the user performing the action on the instance.
|