Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies To: Operations Manager 2007 R2, System Center Operations Manager 2007
Represents the configuration parameters for a view type definition.
Schema Hierarchy
ManagementPack
  PresentationTypes
    ViewTypes
      ViewType
        Configuration (ViewType)
Syntax
<Configuration>   <IncludeSchemaTypes>…</IncludeSchemaTypes>   <xsd:element name="ElementName" type="xsd:sometype" />
</Configuration>
Attributes and Elements
The following sections describe attributes, child elements, and the parent element of the Configuration element.
Attributes
None
Child Elements
| Element | Description | 
|---|---|
| Optional element. Contains references to internal or external complex SchemaType element types. These types are used as parameter data types in the Configuration section of a ModuleTypes or MonitorTypes element. | 
Parent Elements
| Element | Description | 
|---|---|
| Represents a template definition. | 
Text Value
The Configuration element describes the parameters of view type element. Each implementation of the view type must supply the correct configuration parameters. For more information about XML schemas, see Understanding XML Schema.
Remarks
Important
Currently, it is not possible to define your own view types. However, you can add an implementation of an already defined view type by defining a View element.
Example
The following XML example illustrates a Configuration element that includes an IncludeSchemaTypes element.
In this example, the configuration section references a data type, ColumnInfoType, which is defined in the schema type definition called Microsoft.SystemCenter.ViewPresentationSchema. For more information about schema types, see SchemaTypes or SchemaType.
  
<Configuration>
  <IncludeSchemaTypes>
    <SchemaType>Microsoft.SystemCenter.ViewCriteriaSchema</SchemaType>
    <SchemaType>Microsoft.SystemCenter.ViewPresentationSchema</SchemaType>
  </IncludeSchemaTypes>
  <xsd:element name="Presentation" minOccurs="0">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="ColumnInfo" type="ColumnInfoType" minOccurs="0" maxOccurs="unbounded" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="Target" type="xsd:string" minOccurs="0" maxOccurs="1" />
</Configuration>