28 lines
917 B
Plaintext
28 lines
917 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Version ( "4.0.0" ),
|
|
Description ( "Represents the Agent Presence feature capabilities." )]
|
|
class AMT_AgentPresenceCapabilities : CIM_Capabilities {
|
|
|
|
[Description (
|
|
"The maximum number of agents that can be registered on "
|
|
"the Intel(R) AMT device." )]
|
|
uint32 MaxTotalAgents;
|
|
|
|
[Description (
|
|
"The maximum number of actions that can be defined "
|
|
"(altogether) on the Intel(R) AMT device." )]
|
|
uint32 MaxTotalActions;
|
|
|
|
[Description (
|
|
"The minimum number of actions that is guaranteed for "
|
|
"every Agent on the Intel(R) AMT device." )]
|
|
uint32 MinGuaranteedActionListSize;
|
|
|
|
[Description (
|
|
"The maximum number of agents that registered on the "
|
|
"Intel AMT device and configured with EAC action." )]
|
|
uint32 MaxEacAgents;
|
|
|
|
|
|
};
|