[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Represents a module’s position within a linear workflow in a module type definition.

Schema Hierarchy

ManagementPack
  TypeDefinitions
    ModuleTypes
      ConditionDetectionModuleType
        ModuleImplementation (ConditionDetectionModuleType)
          Composite(ConditionDetectionModuleType)
            Composition (ConditionDetectionModuleType)
              Node

Syntax

Xml
<Node Id=”LastModuleID”>
  <Node Id=”FirstModuleID”>…</Node>
</Node>

Attributes and Elements

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

Attributes

Attribute Description

ID

Represents the ID of one of the member modules of a module type definition.

Child Elements

Element Description

Node

Optional element. Represents the previous module in the workflow.

Parent Elements

Element Description

Node

If the module represented by this Node element is not the last module in the workflow sequence, the parent of this Node element is the Node element that represents the next module in the workflow.

Composition (ConditionDetectionModuleType)

If this module is the last module in the workflow sequence, the parent is the Composition (ConditionDetectionModuleType) element.

Remarks

Composite(ConditionDetectionModuleType) module workflows are defined with nested Node elements. Each Node element is associated with any one of the modules listed in the MemberModules (ConditionDetectionModuleType) element. The innermost Node element’s module is the first step of the workflow. The outermost Node element’s module is the last step in the workflow.

Example

The following sample shows how two Node elements are nested to define a workflow. The Scheduler data source module runs first and passes its output as an input parameter to the Probe probe action module.

To see the full data source module type, see Composite(ConditionDetectionModuleType).

  Copy Code

<Composite>
	<MemberModules>
		<ProbeAction ID="WmiProbe" TypeID="Microsoft.Windows.WmiTriggerProbe">
		<NameSpace>\\$Config/ComputerName$\Root\CIMv2</NameSpace>
		<Query>SELECT * FROM Win32_Product</Query>
		</ProbeAction>
		<ConditionDetection ID="FilterOnProductCode" TypeID="System!System.ExpressionFilter">
		<Expression>
			<SimpleExpression>
			<ValueExpression>
				<XPathQuery Type="String">Property[@Name='IdentifyingNumber']</XPathQuery>
			</ValueExpression>
			<Operator>Equal</Operator>
			<ValueExpression>
				<Value Type="String">$Config/ProductCode$</Value>
			</ValueExpression>
			</SimpleExpression>
		</Expression>
		</ConditionDetection>
	</MemberModules>
	<Composition>
		<Node ID="FilterOnProductCode">
		<Node ID="WmiProbe" />
		</Node>
	</Composition>
	</Composite>

See Also