Interface DnsRecordSet.UpdateStages.WithTxtRecordTextValue
-
- All Known Subinterfaces:
DnsRecordSet.UpdateCombined,DnsRecordSet.UpdateTxtRecordSet
- Enclosing interface:
- DnsRecordSet.UpdateStages
public static interface DnsRecordSet.UpdateStages.WithTxtRecordTextValueThe stage of the Txt record definition allowing to add or remove TXT record.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DnsRecordSet.UpdateTxtRecordSetwithoutText(String text)Removes a Txt record with the given text from this record set.DnsRecordSet.UpdateTxtRecordSetwithoutText(List<String> textChunks)Removes a Txt record with the given text (split into 255 char chunks) from this record set.DnsRecordSet.UpdateTxtRecordSetwithText(String text)Creates a Txt record with the given text in this record set.
-
-
-
Method Detail
-
withText
DnsRecordSet.UpdateTxtRecordSet withText(String text)
Creates a Txt record with the given text in this record set.- Parameters:
text- the text value- Returns:
- the next stage of the record set update
-
withoutText
DnsRecordSet.UpdateTxtRecordSet withoutText(String text)
Removes a Txt record with the given text from this record set.- Parameters:
text- the text value- Returns:
- the next stage of the record set update
-
withoutText
DnsRecordSet.UpdateTxtRecordSet withoutText(List<String> textChunks)
Removes a Txt record with the given text (split into 255 char chunks) from this record set.- Parameters:
textChunks- the text value as list- Returns:
- the next stage of the record set update
-
-