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

Type declaration

  • OptionalautoConfigDomainDns?: AutoConfigDomainDns

    Whether or not to synchronize each types of records.

  • 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.

  • OptionalupdateAllRecords?: boolean

    Whether or not to synchronize all types of records. This one has priority (deprecated, use auto_config_domain_dns).

  • OptionalupdateMailRecords?: boolean

    Whether or not to synchronize the mail records (deprecated, use auto_config_domain_dns).

  • OptionalupdateNameservers?: boolean

    Whether or not to synchronize domain nameservers (deprecated, use auto_config_domain_dns).

  • OptionalupdateWebRecords?: boolean

    Whether or not to synchronize the web records (deprecated, use auto_config_domain_dns).