1description: > 2 Implement to specify the power consumption cap and bounds 3 4properties: 5 - name: PowerCap 6 type: uint32 7 description: > 8 Power cap value. This is the user specified power cap. When enabled 9 the power usage of the system will be limited to keep the power at or 10 below this cap. This value is in Watts. 11 12 - name: PowerCapEnable 13 type: boolean 14 description: > 15 Power cap enable. Set to true to enable the PowerCap, false 16 to disable it. 17 18 #TODO: These following bounds are currently owned by Settings but need to be 19 # written by OCC.Control service so must be writable for now. 20 - name: MinPowerCapValue 21 type: uint32 22 #flags: 23 # - readonly 24 default: 0 25 description: The Minimum supported PowerCap setting. 26 27 - name: MaxPowerCapValue 28 type: uint32 29 #flags: 30 # - readonly 31 default: maxint 32 description: The Maximum supported PowerCap setting. 33 34 - name: MinSoftPowerCapValue 35 type: uint32 36 #flags: 37 # - readonly 38 default: 0 39 description: > 40 Minimum supported soft user PowerCap setting. 41 The min soft user PowerCap value is normally less than or equal to 42 the MinPowerCapValue. When the PowerCap is set to any value between 43 MinSoftPowerCapValue and MinPowerCapValue an attempt will be made to 44 maintain the cap but it will not be guaranted. 45