Assembly (DataSourceModuleType)

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.

<Assembly>Strong-named assembly</Assembly>

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

Attributes

None.

Child Elements

None.

Parent Elements

 

Element Description

Managed (DataSourceModuleType)

Represents the assembly and type information of a managed module type definition.

The following XML sample illustrates how to express a data source module type that has been implemented in managed code.


<DataSourceModuleType ID="Microsoft.SystemCenter.CM.SqmDS" Accessibility="Public"  RunAs="Microsoft.SystemCenter.CM.ActionAccount">
  <Configuration>
    <xsd:element name="Protocol" type="xsd:string" />
    <xsd:element name="Port" type="xsd:integer" />
    <xsd:element name="UseWindowsAuth" type="xsd:boolean" />
  </Configuration>
  <ModuleImplementation>
    <Managed>
      <Assembly>Microsoft.Mom.Modules.ClientMonitoring</Assembly>
      <Type>Microsoft.EnterpriseManagement.Mom.Modules.ClientMonitoring.SqmDS</Type>
    </Managed>
  </ModuleImplementation>
  <OutputType>Microsoft.SystemCenter.CM.SqmData</OutputType>
</DataSourceModuleType>
 
Show: