public string UpdateBluecatDescriptionDNS(string ObjectAddress, string Description) { try { Bluecat bluecat = new Bluecat("UpdateDNSforPNC"); return(bluecat.UpdateDescription(ObjectAddress, Description)); } catch (SoapException ex) { throw ex; } }
public string DeleteBluecatDNS(string ObjectAddress, string ObjectName, bool IncludeStaging, bool Decommission) { try { Bluecat bluecat = new Bluecat("DeleteDNSforPNC"); return(bluecat.Delete(ObjectAddress, ObjectName, IncludeStaging, false, Decommission)); } catch (SoapException ex) { throw ex; } }
public string SearchBluecatDNS(string ObjectAddress, string ObjectName) { try { Bluecat bluecat = new Bluecat("SearchDNSforPNC"); return(bluecat.Search(ObjectAddress, ObjectName)); } catch (SoapException ex) { throw ex; } }
public string UpdateBluecatDNS(string ObjectAddress, string ObjectName, string Description, string MacAddress) { try { Bluecat bluecat = new Bluecat("UpdateDNSforPNC"); return(bluecat.Update(ObjectAddress, ObjectName, Description, MacAddress)); } catch (SoapException ex) { throw ex; } }