1# -*- Mode: Python -*- 2# vim: filetype=python 3# 4# This work is licensed under the terms of the GNU GPL, version 2 or later. 5# See the COPYING file in the top-level directory. 6 7## 8# = Machines S390 data types 9## 10 11## 12# @CpuS390Entitlement: 13# 14# An enumeration of CPU entitlements that can be assumed by a virtual 15# S390 CPU 16# 17# Since: 8.2 18## 19{ 'enum': 'CpuS390Entitlement', 20 'prefix': 'S390_CPU_ENTITLEMENT', 21 'data': [ 'auto', 'low', 'medium', 'high' ] } 22