summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/dns/plugins/module_utils/zone.py
blob: d71d3ecdf1026ecb0dbc8256a70f2aa30689912f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- 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)