Assembly (ProbeActionModuleType)
System Center
Updated: August 10, 2011
Applies To: Operations Manager 2007 R2, System Center Operations Manager 2007
Represents the assembly information of a managed module type definition.
The following sections describe attributes, child elements, and parent element of the Assembly element.
Attributes
None.
Child Elements
None.
Parent Elements
| Element | Description |
|---|---|
|
Represents the assembly and type information of a managed module type definition. |
The following XML sample illustrates how to express a probe action module type that has been implemented in managed code.
<ProbeActionModuleType ID="Microsoft.SystemCenter.CM.DiscoveryMapperPA" Accessibility="Public">
<Configuration>
<IncludeSchemaTypes>
<SchemaType>Microsoft.SystemCenter.CM.DiscoveryMapperConfiguration</SchemaType>
</IncludeSchemaTypes>
<xsd:element name="ManagedEntity" type="DiscoveryMapperConfigType" />
</Configuration>
<ModuleImplementation>
<Managed>
<Assembly>Microsoft.Mom.Modules.ClientMonitoring</Assembly>
<Type>Microsoft.EnterpriseManagement.Mom.Modules.ClientMonitoring.DiscoveryMapper</Type>
</Managed>
</ModuleImplementation>
<OutputType>System!System.Discovery.Data</OutputType>
<InputType>System!System.BaseData</InputType>
</ProbeActionModuleType>
Show: