Source code for octodns.record.dname
#
#
#
from .base import Record, ValueMixin
from .dynamic import _DynamicMixin
from .target import _TargetValue
[docs]
class DnameRecord(_DynamicMixin, ValueMixin, Record):
REFERENCES = ('https://datatracker.ietf.org/doc/html/rfc6672',)
_type = 'DNAME'
_value_type = DnameValue
Record.register_type(DnameRecord)