1description: > 2 Implement to specify a cap on maximum power consumption. 3 4properties: 5 - name: PowerCap 6 type: uint32 7 description: > 8 Power cap value. This could for example be specified in absolute 9 wattage. The unit of measurement must be Watts. 10 11 - name: PowerCapEnable 12 type: boolean 13 description: > 14 Power cap enable. Set to true to enable the PowerCap, false 15 to disable it. 16 17 - name: MinPowerCapValue 18 type: uint32 19 default: 0 20 description: The Minimum supported PowerCap reading. 21 22 - name: MaxPowerCapValue 23 type: uint32 24 default: maxint 25 description: The Maximum supported PowerCap reading. 26