Interface DnsRecordSet.UpdateStages.WithCaaRecordEntry
-
- All Known Subinterfaces:
DnsRecordSet.UpdateCaaRecordSet,DnsRecordSet.UpdateCombined
- Enclosing interface:
- DnsRecordSet.UpdateStages
@Beta(V1_9_0) public static interface DnsRecordSet.UpdateStages.WithCaaRecordEntryThe stage of the Caa record definition allowing to add or remove service record.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DnsRecordSet.UpdateCaaRecordSetwithoutRecord(int flags, String tag, String value)Removes a Caa record for a service.DnsRecordSet.UpdateCaaRecordSetwithRecord(int flags, String tag, String value)Specifies a Caa record for a service.
-
-
-
Method Detail
-
withRecord
@Beta(V1_9_0) DnsRecordSet.UpdateCaaRecordSet withRecord(int flags, String tag, String value)
Specifies a Caa record for a service.- Parameters:
flags- the flags for this CAA record as an integer between 0 and 255tag- the tag for this CAA recordvalue- the value for this CAA record- Returns:
- the next stage of the record set update
-
withoutRecord
@Beta(V1_9_0) DnsRecordSet.UpdateCaaRecordSet withoutRecord(int flags, String tag, String value)
Removes a Caa record for a service.- Parameters:
flags- the flags for this CAA record as an integer between 0 and 255tag- the tag for this CAA recordvalue- the value for this CAA record- Returns:
- the next stage of the record set update
-
-