Reserve failed event
This commit is contained in:
parent
659ebc0340
commit
268b9cc468
@ -780,14 +780,15 @@ message FromDeviceRPCResponseProto {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum ComponentLifecycleEvent {
|
enum ComponentLifecycleEvent {
|
||||||
CREATED = 0;
|
CREATED = 0;
|
||||||
STARTED = 1;
|
STARTED = 1;
|
||||||
ACTIVATED = 2;
|
ACTIVATED = 2;
|
||||||
SUSPENDED = 3;
|
SUSPENDED = 3;
|
||||||
UPDATED = 4;
|
UPDATED = 4;
|
||||||
STOPPED = 5;
|
STOPPED = 5;
|
||||||
DELETED = 6;
|
DELETED = 6;
|
||||||
DEACTIVATED = 7;
|
FAILED = 7;
|
||||||
|
DEACTIVATED = 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ComponentLifecycleMsgProto {
|
message ComponentLifecycleMsgProto {
|
||||||
|
|||||||
@ -22,5 +22,5 @@ import java.io.Serializable;
|
|||||||
*/
|
*/
|
||||||
public enum ComponentLifecycleEvent implements Serializable {
|
public enum ComponentLifecycleEvent implements Serializable {
|
||||||
// In sync with ComponentLifecycleEvent proto
|
// In sync with ComponentLifecycleEvent proto
|
||||||
CREATED, STARTED, ACTIVATED, SUSPENDED, UPDATED, STOPPED, DELETED, DEACTIVATED
|
CREATED, STARTED, ACTIVATED, SUSPENDED, UPDATED, STOPPED, DELETED, FAILED, DEACTIVATED
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user