os-cmpi-xen
annotate schema/Xen_ComputerSystemMemory.mof @ 1:bdf24cd56bed
Initial change to make the provider work with libvirt and openwbem.
author | jfehlig@jfehlig1.provo.novell.com |
---|---|
date | Wed Apr 26 12:28:36 2006 -0600 (2006-04-26) |
parents | 72b83cde6b72 |
children |
rev | line source |
---|---|
jbulpin@0 | 1 // Copyright (c) 2006 IBM. All rights reserved. |
jbulpin@0 | 2 |
jbulpin@0 | 3 // ================================================================== |
jbulpin@0 | 4 // Xen_ComputerSystemMemory |
jbulpin@0 | 5 // ================================================================== |
jbulpin@0 | 6 [Association, |
jfehlig@1 | 7 Provider ("cmpi:Xen_ComputerSystemMemory"), |
jbulpin@0 | 8 Description ( |
jbulpin@0 | 9 "A class derived from CIM_SystemDevice to represent " |
jbulpin@0 | 10 "the association of a Xen virtual machine/domain with its " |
jbulpin@0 | 11 "main memory device.")] |
jbulpin@0 | 12 class Xen_ComputerSystemMemory : CIM_SystemDevice |
jbulpin@0 | 13 { |
jbulpin@0 | 14 [Override("PartComponent")] |
jbulpin@0 | 15 Xen_Memory REF PartComponent; |
jbulpin@0 | 16 |
jbulpin@0 | 17 [Override("GroupComponent")] |
jbulpin@0 | 18 Xen_ComputerSystem REF GroupComponent; |
jbulpin@0 | 19 }; |
jbulpin@0 | 20 |