You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
def get_aaaa_record(self, name):
'''
Added by Aaron Fabiani, retrieves a quad A record
'''
if not name:
self.module.exit_json(msg="You must specify the option 'name'.")
return self.invoke('get', "record:aaaa", params={'name': name, 'view': self.dns_view})
def create_aaaa_record(self, name, address, comment):
if not name or not address:
self.module.exit_json(msg="You must specify the option 'name' and 'address'.")
def get_aaaa_record(self, name):
'''
Added by Aaron Fabiani, retrieves a quad A record
'''
if not name:
self.module.exit_json(msg="You must specify the option 'name'.")
return self.invoke('get', "record:aaaa", params={'name': name, 'view': self.dns_view})
def create_aaaa_record(self, name, address, comment):
if not name or not address:
self.module.exit_json(msg="You must specify the option 'name' and 'address'.")
The text was updated successfully, but these errors were encountered: