1description: > 2 Implement to provide Valve attributes. A valve helps control the flow of 3 coolant in a liquid cooling system. 4 5properties: 6 - name: Direction 7 type: enum[self.Direction] 8 default: Unknown 9 description: > 10 This property specifies the direction of the liquid flow for the 11 value. 12 13enumerations: 14 - name: Direction 15 description: > 16 This indicates the direction of liquid flow for the valve. 17 values: 18 - name: Supply 19 description: > 20 This indicates that the valve functions as the supply valve for 21 liquid flow. 22 - name: Return 23 description: > 24 This indicates that the valve functions as the return valve for 25 liquid flow. 26 - name: Unknown 27 description: > 28 This indicates the direction of liquid flow for valve is not 29 known. 30