| Server IP : 85.214.239.14 / Your IP : 216.73.216.53 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/dns/plugins/module_utils/ |
Upload File : |
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017-2021 Felix Fontein
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
class DNSZone(object):
def __init__(self, name, info=None):
self.id = None
self.name = name
self.info = info or dict()
def __str__(self):
data = []
if self.id is not None:
data.append('id: {0}'.format(self.id))
data.append('name: {0}'.format(self.name))
data.append('info: {0}'.format(self.info))
return 'DNSZone(' + ', '.join(data) + ')'
def __repr__(self):
return self.__str__()
class DNSZoneWithRecords(object):
def __init__(self, zone, records):
self.zone = zone
self.records = records
def __str__(self):
return '({0}, {1})'.format(self.zone, self.records)
def __repr__(self):
return 'DNSZoneWithRecords({0!r}, {1!r})'.format(self.zone, self.records)