Yohohohohohooho | Sanrei Aya
Sanrei Aya


Server : LiteSpeed
System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
User : elvh3918 ( 1528)
PHP Version : 8.2.31
Disable Function : mail
Directory :  /lib/python3.9/site-packages/ansible_collections/community/dns/plugins/module_utils/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib/python3.9/site-packages/ansible_collections/community/dns/plugins/module_utils/zone.py
# -*- 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)

Yohohohohohooho | Sanrei Aya