blob: 06aa56fa2e63b636b243cc87bb8991dc72c439f7 [file] [log] [blame]
Manojkiran Edabc6b8a72021-07-29 15:33:41 +05301description: >
2 Implement to indicate the power state of the object
3properties:
4 - name: PowerState
5 type: enum[self.State]
6 default: Unknown
7 description: >
8 The current power status of the object.
9
10enumerations:
11 - name: State
12 description: >
13 Power state enum.
14 values:
Matt Spinler6b506232021-09-10 13:14:54 -050015 - name: "On"
Manojkiran Edabc6b8a72021-07-29 15:33:41 +053016 description: >
17 The state of the object is powered on.
Matt Spinler6b506232021-09-10 13:14:54 -050018 - name: "Off"
Manojkiran Edabc6b8a72021-07-29 15:33:41 +053019 description: >
20 The state of the object is powered off.
21 - name: PoweringOn
22 description: >
23 The object is in a temporary state between off and on.
24 - name: PoweringOff
25 description: >
26 The object is in a temporary state between on and off.
27 - name: Unknown
28 description: >
29 The power state is unknown.