Assembly (ProbeActionModuleType)

System Center

Updated: May 18, 2012

Applies To: System Center 2012 - Operations Manager, System Center 2012 R2 Operations Manager, System Center 2012 SP1 - Operations Manager

Represents the assembly information of a managed module type definition.

<Assembly>Strong-named assembly</Assembly>

The following sections describe attributes, child elements, and parent element of the Assembly element.

Attributes

None.

Child Elements

None.

Parent Elements

 

Element Description

Managed (ProbeActionModuleType)

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: