summaryrefslogtreecommitdiffstats
path: root/mof/Linux_PowerManagement.mof
blob: 417ebc804c9a8547af829dd0d2c1425e25ba1580 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[ Provider("cmpi:cmpiLinux_PowerManagement") ]
class Linux_PowerManagementService: CIM_PowerManagementService
{
};

[ Association,
  Provider("cmpi:cmpiLinux_PowerManagement") ]
class Linux_AssociatedPowerManagementService: CIM_AssociatedPowerManagementService
{
    [ Override ("ServiceProvided"),
      Max ( 1 ),
      Description ( "The Service that is available." )]
    Linux_PowerManagementService REF ServiceProvided;

    [ Override ("UserOfService"),
      Description ( "The ManagedElement that can use the Service." )]
    CIM_ComputerSystem REF UserOfService;
};

[ Provider("cmpi:cmpiLinux_PowerManagement") ]
class Linux_PowerManagementCapabilities: CIM_PowerManagementCapabilities
{
};

[ Association,
  Provider("cmpi:cmpiLinux_PowerManagement") ]
class Linux_HostedService: CIM_HostedService
{
    [ Override ("Antecedent"),
      Min ( 1 ),
      Max ( 1 ),
      Description ( "The hosting System." )]
    CIM_ComputerSystem REF Antecedent;

    [ Override ( "Dependent" ),
      Weak,
      Description ( "The Service hosted on the System." )]
    Linux_PowerManagementService REF Dependent;
};

[ Provider("cmpi:cmpiLinux_PowerManagement") ]
class Linux_ConcreteJob: CIM_ConcreteJob
{
};

[ Provider("cmpi:cmpiLinux_PowerManagement") ]
class Linux_ElementCapabilities: CIM_ElementCapabilities
{
    [ Key,
      Min ( 1 ),
      Description ( "The managed element." )]
    Linux_PowerManagementService REF ManagedElement;

    [ Key,
      Description ( "The Capabilities object associated with the element." )]
    Linux_PowerManagementCapabilities REF Capabilities;
};