27 lines
867 B
Plaintext
27 lines
867 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Version ( "6.0.0" ),
|
|
Description (
|
|
"Describes the system capabilities of the System Defense "
|
|
"feature. These capabilities are independent of all network "
|
|
"interfaces." )]
|
|
class AMT_GeneralSystemDefenseCapabilities : CIM_Capabilities {
|
|
|
|
[Key, Override ( "InstanceID" ),
|
|
Description (
|
|
"Opaquely and uniquely identifies an instance of this class."
|
|
)]
|
|
string InstanceID;
|
|
|
|
[Description (
|
|
"Specifies the maximum number of supported policies "
|
|
"allocated by the Intel(R) AMT device." )]
|
|
uint32 GlobalMaxSupportedPolicies;
|
|
|
|
[Description (
|
|
"Specifies the maximum number of supported filters "
|
|
"allocated by the Intel(R) AMT device." )]
|
|
uint32 GlobalMaxSupportedFilters;
|
|
|
|
|
|
};
|