26 lines
975 B
Plaintext
26 lines
975 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Version ( "4.0.0" ),
|
|
Description ( "Represents the Remote Access feature capabilities." )]
|
|
class AMT_RemoteAccessCapabilities : CIM_Capabilities {
|
|
|
|
[Description (
|
|
"The maximum number of MpServers that can be configured "
|
|
"on the Intel(R) AMT device for remote access." )]
|
|
uint32 MaxTotalMpServers;
|
|
|
|
[Description (
|
|
"The maximum number of remote access policies that can be "
|
|
"defined (altogether) on the Intel(R) AMT device." )]
|
|
uint32 MaxTotalPolicies;
|
|
|
|
[Description (
|
|
"The maximum number of MpServers that can be associated "
|
|
"with a remote access policy for Intel(R) AMT device." )]
|
|
uint32 MaxMpsPerPolicy;
|
|
|
|
[Description (
|
|
"The maximum number of Proxy Entry Points that can be configured "
|
|
"on the Intel(R) AMT device for remote access." )]
|
|
uint32 MaxTotalProxyEntryPoints;
|
|
};
|