MonitoringConnector.UninitializeForTiers Method (IList<ConnectorTieredOperationFailure>)
Applies To: Operations Manager for System Center 2012
Uninitializes the monitoring connector for all tiered Management Groups, which will prohibit getting any alerts when GetMonitoringAlertsForTiers is called. The failures that occurred for configured tiers are returned.
Namespace: Microsoft.EnterpriseManagement.ConnectorFramework
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
public void UninitializeForTiers(
out IList<ConnectorTieredOperationFailure> failures
)
public:
void UninitializeForTiers(
[OutAttribute] IList<ConnectorTieredOperationFailure^>^% failures
)
member UninitializeForTiers :
failures:IList<ConnectorTieredOperationFailure> byref -> unit
Public Sub UninitializeForTiers (
<OutAttribute> ByRef failures As IList(Of ConnectorTieredOperationFailure)
)
Parameters
failures
Type: System.Collections.Generic.IList<ConnectorTieredOperationFailure>The array of failures that may have occurred for various tiers
Remarks
After an UninitializeForTiers no alerts can be retrieved with the monitoring connector. A monitoring connector must be uninitialized before being deleted with the Cleanup method. Attempting to UninitializeForTiers a monitoring connector that is already uninitialized results in an exception with the "The connector is already in the given state." warning.
Perform an UninitializeForTiers before a Cleanup of the monitoring connector.
See Also
MonitoringConnector Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace
Return to top