From 9aa0c9269973386e391f999c23b1ecfaa8f8418f Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 3 Feb 2025 12:48:32 -0800 Subject: [PATCH] Ecpand upon what plan meta is --- octodns/provider/base.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/octodns/provider/base.py b/octodns/provider/base.py index addb07b..56091fa 100644 --- a/octodns/provider/base.py +++ b/octodns/provider/base.py @@ -217,8 +217,10 @@ class BaseProvider(BaseSource): def _plan_meta(self, existing, desired, changes): ''' An opportunity for providers to indicate they have "meta" changes - to the zone which are unrelated to records. Examples may include servive - plan changes, replication settings, and notes. + to the zone which are unrelated to records. Examples may include service + plan changes, replication settings, and notes. The returned data is + arbitrary/opaque to octoDNS, with the only requirement being that + pprint.pformat can display it. A dict is recommended. ''' return None