:param str name: The name in the DNS tree from where this Trust Anchor should be used
:param str dsrecord: The DS Record content associated with ``name``
+.. function:: clearTA([name])
+
+ .. versionadded:: 4.2.0
+
+ Remove Trust Anchors for a name from the list of configured trust anchors. When ``name`` is
+ not given, remove *all* trust anchors instead.
+
+ :param str name: The name in the DNS tree for which the Trust Anchors should be removed.
+
.. function:: addDS(name, dscontent)
.. deprecated:: 4.2.0
:param str name: The name in the DNS tree from where this Trust Anchor should be used
:param str dsrecord: The DS Record content associated with ``name``
+.. function:: clearDS([name])
+
+ .. deprecated:: 4.2.0
+ Please use :func:`clearTA` instead
+
+ Remove Trust Anchors for a name from the list of configured trust anchors. When ``name`` is
+ not given, remove *all* trust anchors instead.
+
+ :param str name: The name in the DNS tree for which the Trust Anchors should be removed.
+
.. function:: addNTA(name[, reason])
Adds a Negative Trust Anchor for ``name`` to the configuration.
:param str name: The name in the DNS tree from where this NTA should be used
:param str reason: An optional comment to add to this NTA
+
+.. function:: clearNTA([name])
+
+ Remove Negative Trust Anchor for ``name`` from the list of configured trust anchors. When ``name`` is
+ not given, remove *all* negative trust anchors instead.
+
+ :param str name: The name in the DNS tree from where this NTA should be removed