VifibSystemPreference.py 1.38 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
class VifibSystemPreference:
  """Vifib System Preferences"""
  _properties = (
    { 'id'              : 'preferred_instance_cleanup_resource',
      'description'     : 'Resource used to represent fact of cleaning up Software Instance',
      'type'            : 'string',
      'default'         :  '',
      'preference'      : 1,
      'write_permission': 'Manage properties',
      'mode'            : 'w'},
    { 'id'              : 'preferred_instance_hosting_resource',
      'description'     : 'Resource used to represent fact of hosting operations on Software Instance',
      'type'            : 'string',
      'default'         :  '',
      'preference'      : 1,
      'write_permission': 'Manage properties',
      'mode'            : 'w'},
    { 'id'              : 'preferred_instance_setup_resource',
      'description'     : 'Resource used to represent fact of Software Instance setup',
      'type'            : 'string',
      'default'         :  '',
      'preference'      : 1,
      'write_permission': 'Manage properties',
      'mode'            : 'w'},
    { 'id'              : 'preferred_software_setup_resource',
      'description'     : 'Resource used to represent fact of Software Release setup',
      'type'            : 'string',
      'default'         :  '',
      'preference'      : 1,
      'write_permission': 'Manage properties',
      'mode'            : 'w'},
  )