Assembly (DataSourceModuleType)
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.
The following sections describe attributes, child elements, and the 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 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: