Browse Source

add mention to docstring that the NetworkValue filters won't touch anything except A/AAAA

pull/1094/head
Solvik Blum 2 years ago
parent
commit
010e5039cc
No known key found for this signature in database GPG Key ID: 9EBAFE7BBDFBAAE2
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      octodns/processor/filter.py

+ 4
- 2
octodns/processor/filter.py View File

@ -222,7 +222,8 @@ class NameRejectlistFilter(_NameBaseFilter, RejectsMixin):
class NetworkValueAllowlistFilter(_NetworkValueBaseFilter, AllowsMixin):
'''Only manage records with values that match the provider patterns
'''Only manage A and AAAA records with values that match the provider patterns
All other types will be left as-is.
Example usage:
@ -249,7 +250,8 @@ class NetworkValueAllowlistFilter(_NetworkValueBaseFilter, AllowsMixin):
class NetworkValueRejectlistFilter(_NetworkValueBaseFilter, RejectsMixin):
'''Reject managing records with value matching a that match the provider patterns
'''Reject managing A and AAAA records with value matching a that match the provider patterns
All other types will be left as-is.
Example usage:


Loading…
Cancel
Save