Share via


SearchDepthType Simple Type

Applies To: System Center Configuration Manager 2007, System Center Configuration Manager 2007 R2, System Center Configuration Manager 2007 R3, System Center Configuration Manager 2007 SP1, System Center Configuration Manager 2007 SP2

The SearchDepthType simple type, in Configuration Manager, is used when defining discovery for various parts and settings. When used with file/folder parts, if the filter (file/folder name) has no wildcards, depth must be base. If wildcards are present, depth must be either OneLevel or Subtree, indicating that the depth the provider searches for matches.

<xs:simpleType name="SearchDepthType">
    <xs:restriction
        base="string"
    >
        <xs:enumeration
            value="Base"
         />
        <xs:enumeration
            value="OneLevel"
         />
        <xs:enumeration
            value="Subtree"
         />
    </xs:restriction>
</xs:simpleType>

Enumeration

The following values are defined by the SearchDepthType simple type:

Value Description

Base

Root container.

OneLevel

One container below the root.

Subtree

Recursive search from the root container down.

See Also

Concepts

Authoring Desired Configuration Management Configuration Baselines and Configuration Items