Interface DnsRecordSet.UpdateStages.WithNSRecordNameServer
-
- All Known Subinterfaces:
DnsRecordSet.UpdateCombined,DnsRecordSet.UpdateNSRecordSet
- Enclosing interface:
- DnsRecordSet.UpdateStages
public static interface DnsRecordSet.UpdateStages.WithNSRecordNameServerThe stage of the NS record set definition allowing to add or remove a NS record.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DnsRecordSet.UpdateNSRecordSetwithNameServer(String nameServerHostName)Creates a NS record with the provided name server in this record set.DnsRecordSet.UpdateNSRecordSetwithoutNameServer(String nameServerHostName)Rmoves a NS record with the provided name server from this record set.
-
-
-
Method Detail
-
withNameServer
DnsRecordSet.UpdateNSRecordSet withNameServer(String nameServerHostName)
Creates a NS record with the provided name server in this record set.- Parameters:
nameServerHostName- the name server host name- Returns:
- the next stage of the record set update
-
withoutNameServer
DnsRecordSet.UpdateNSRecordSet withoutNameServer(String nameServerHostName)
Rmoves a NS record with the provided name server from this record set.- Parameters:
nameServerHostName- the name server host name- Returns:
- the next stage of the record set update
-
-