Type Alias CreateDnsRecordRequest
CreateDnsRecordRequest: {
dnsZoneId: string;
projectId?: string;
recordName: string;
records: string[];
ttl: number;
type: "A" | "AAAA" | "CAA" | "CNAME" | "MX" | "PTR" | "SOA" | "SRV" | "TXT";
}
Type declaration
dnsZoneId: string
OptionalprojectId?: string
recordName: string
records: string[]
ttl: number
type: "A" | "AAAA" | "CAA" | "CNAME" | "MX" | "PTR" | "SOA" | "SRV" | "TXT"