DnsApiSyncDomainDnsRecordsRequest: {
    customRecords?: SyncDomainDnsRecordsRequestRecord[];
    domain: string;
    region?: Region;
    updateAllRecords: boolean;
    updateMailRecords: boolean;
    updateWebRecords: boolean;
}

Type declaration

  • OptionalcustomRecords?: SyncDomainDnsRecordsRequestRecord[]

    Custom records to synchronize.

  • domain: string

    Domain for which the DNS records will be synchronized.

  • Optionalregion?: Region

    Region to target. If none is passed will use default region from the config.

  • updateAllRecords: boolean

    Whether or not to synchronize all types of records. This one has priority.

  • updateMailRecords: boolean

    Whether or not to synchronize the mail records.

  • updateWebRecords: boolean

    Whether or not to synchronize the web records.