node-powerdns
    Preparing search index...

    Type Alias RRSet

    RRSet patch payload used by the PowerDNS zone API.

    type RRSet = {
        changetype?: "REPLACE" | "DELETE" | "EXTEND" | "PRUNE";
        comments?: Comment[];
        name: string;
        records: Record[];
        ttl: number;
        type: string;
    }
    Index

    Properties

    changetype?: "REPLACE" | "DELETE" | "EXTEND" | "PRUNE"
    comments?: Comment[]
    name: string
    records: Record[]
    ttl: number
    type: string