Click or drag to resize

IWsMonitoringSetMonitoringCheckName Method

By the method SetMonitoringCheckName you can modify the name of check
By the method SetMonitoringCheckName you can modify the name of check

Namespace:  Aruba.Cloud.WsMonitoring
Assembly:  Aruba.Cloud.WsMonitoring (in Aruba.Cloud.WsMonitoring.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
[OperationContractAttribute]
WsResult SetMonitoringCheckName(
	MonitoringCheckNameEntity monitoringCheckName
)

Parameters

monitoringCheckName
Type: Aruba.Cloud.Provisioning.Entities.MonitoringSLAMonitoringCheckNameEntity

Return Value

Type: WsResult
Examples
By the method SetMonitoringCheckName you can modify the name of check.
/// WsMonitoring.SetMonitoringCheckName Method (c# .NET)
public static string SetMonitoringCheckName(WsMonitoringClient client,
   MonitoringCheckNameEntity monitoringCheckNameEntity)
{
    //specify the account login details 
    client.ClientCredentials.UserName.UserName = "ARU-0000";
    client.ClientCredentials.UserName.Password = "0123456789";

    StringBuilder stringBuilder = new StringBuilder();

    try
    {
 // call method SetMonitoringCheckName 
 // obtaining a WsResult item
 WsResult result = client.SetMonitoringCheckName(monitoringCheckNameEntity);

 //if the call is Success print value
 if (result.Success)
 {
     // get Value returned from server
     stringBuilder.Append(" Operation successfully. Result Code : ");
     stringBuilder.Append(result.ResultCode);
 }
 else
 {
     throw new ApplicationException(result.ResultMessage);
 }
    }
    catch (Exception ex)
    {
 // re-run the error
 throw new ApplicationException(ex.Message);
    }

    return stringBuilder.ToString();
}
See Also