The SMS_CIRelation Windows Management Instrumentation (WMI) class is an SMS Provider server class, in System Center 2012 R2 Configuration Manager, that defines the relationship between two configuration items, for example, the superseding of one item by another.

The following syntax is simplified from Managed Object Format (MOF) code and includes all inherited properties.

Class SMS_CIRelation : SMS_BaseClass
{
	UInt32 FromCIID;
	Boolean IsBroken;
	Boolean IsVersionSpecific;
	UInt32 Priority;
	UInt32 RelationType;
	UInt32 ToCIID;
};

Methods

The SMS_CIRelation class does not define any methods.

Properties

FromCIID

Data type: UInt32Access type: Read/WriteQualifiers: [key]The ID of one of the configuration items. The value of this property usually depends on the value of ToCIID in the context specified by RelationType. For example, this property can represent a child configuration item ID (FROMCIID) that is derived from a parent configuration item ID (TOCIID).The ID of a configuration item is represented by the CI_ID property of SMS_ConfigurationItemLatestBaseClass Server WMI Class.
IsBroken

Data type: BooleanAccess type: Read-onlyQualifiers: [read, key]true if the relation is broken, otherwise the value will be false.
IsVersionSpecific

Data type: BooleanAccess type: Read/WriteQualifiers: None.See SMS_ConfigurationItemLatestBaseClass Server WMI Class.
Priority

Data type: UInt32Access type: Read/WriteQualifiers: None.One App to deployment type relation (9) has priority.
RelationType

Data type: UInt32Access type: Read/WriteQualifiers: NoneType of relationship between configuration items. Possible values are:

1

Bundled

2

Required

3

Prohibited

4

Optional

5

Derived

6

Superseded

ToCIID

Data type: UInt32Access type: Read/WriteQualifiers: [key]The ID for the second configuration item that is related to the first item. The value of this property usually depends on the value of FromCIID in the context specified by RelationType. For example, this property can represent a parent configuration item ID (TOCIID) from which a child configuration item ID (FROMCIID) is derived.The ID of a configuration item is represented by the CI_ID property of SMS_ConfigurationItemLatestBaseClass Server WMI Class.

Remarks

Class qualifiers for this class include:

  • Read (read-only)

For more information about both the class qualifiers and the property qualifiers included in the Properties section, see Configuration Manager Class and Property Qualifiers.

This class is applicable to all types of configuration items, not just software updates. For a discussion of configuration item types, see the CIType_ID property of SMS_ConfigurationItemBaseClass Server WMI Class.

Requirements

Runtime Requirements

Development Requirements

See Also