Interface DnsRecordSet.UpdateStages.WithTxtRecordTextValue
- All Known Subinterfaces:
DnsRecordSet.UpdateCombined,DnsRecordSet.UpdateTxtRecordSet
- Enclosing interface:
- DnsRecordSet.UpdateStages
public static interface DnsRecordSet.UpdateStages.WithTxtRecordTextValue
The stage of the Txt record definition allowing to add or remove TXT record.
-
Method Summary
Modifier and TypeMethodDescriptionwithoutText(String text) Removes a Txt record with the given text from this record set.withoutText(List<String> textChunks) Removes a Txt record with the given text (split into 255 char chunks) from this record set.Creates a Txt record with the given text in this record set.
-
Method Details
-
withText
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
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
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
-