29 lines
1.0 KiB
Plaintext

// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
[Association, Version ( "6.0.0" ),
Description (
"Associates a System Defense Policy to a Network Interface. An "
"existing association implies that a System Defense Policy may "
"be activated on the specified interface. Among all the "
"associations that may exist there can be only one active "
"policy per interface. An Active policy is chosen based on the "
"precedence property in a policy." )]
class AMT_InterfacePolicy : CIM_Dependency {
[Description (
"Specifies whether this Policy is Active on the network interface."
)]
boolean Active;
[Key, Override ( "Antecedent" ),
Description (
"References a CIM_EthernetPort object representing the interface."
)]
CIM_EthernetPort REF Antecedent;
[Key, Override ( "Dependent" ),
Description ( "References an AMT_SystemDefensePolicy object." )]
AMT_SystemDefensePolicy REF Dependent;
};