Dnsimple.Domains.enable_dnssec
You're seeing just the function
enable_dnssec
, go back to Dnsimple.Domains module for more information.
Link to this function
enable_dnssec(client, account_id, domain_id, options \\ [])
Specs
enable_dnssec( Dnsimple.Client.t(), String.t() | integer(), String.t() | integer(), Keyword.t() ) :: {:ok | :error, Dnsimple.Response.t()}
Enable DNSSEC for the domain in the account.
See:
Examples:
client = %Dnsimple.Client{access_token: "a1b2c3d4"}
{:ok, response} = Dnsimple.Domains.enable_dnssec(client, account_id = 1000, domain_id = 123)
{:ok, response} = Dnsimple.Domains.enable_dnssec(client, account_id = 1000, domain_id = "example.io")