Interface DnsRecordSet.UpdateStages.WithPtrRecordTargetDomainName
-
- All Known Subinterfaces:
DnsRecordSet.UpdateCombined,DnsRecordSet.UpdatePtrRecordSet
- Enclosing interface:
- DnsRecordSet.UpdateStages
public static interface DnsRecordSet.UpdateStages.WithPtrRecordTargetDomainNameThe stage of the CName record set definition allowing to add or remove CName record.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DnsRecordSet.UpdatePtrRecordSetwithoutTargetDomainName(String targetDomainName)Removes the CName record with the provided canonical name from this record set.DnsRecordSet.UpdatePtrRecordSetwithTargetDomainName(String targetDomainName)Creates a CName record with the provided canonical name in this record set.
-
-
-
Method Detail
-
withTargetDomainName
DnsRecordSet.UpdatePtrRecordSet withTargetDomainName(String targetDomainName)
Creates a CName record with the provided canonical name in this record set.- Parameters:
targetDomainName- the target domain name- Returns:
- the next stage of the record set update
-
withoutTargetDomainName
DnsRecordSet.UpdatePtrRecordSet withoutTargetDomainName(String targetDomainName)
Removes the CName record with the provided canonical name from this record set.- Parameters:
targetDomainName- the target domain name- Returns:
- the next stage of the record set update
-
-