Module: Dnsimple::Client::Domains

Included in:
DomainsService
Defined in:
lib/dnsimple/client/domains.rb

Instance Method Summary collapse

Instance Method Details

#all_domains(account_id, options = {}) ⇒ Dnsimple::CollectionResponse<Dnsimple::Struct::Domain> Also known as: all

Lists ALL the domains in the account.

This method is similar to #domains, but instead of returning the results of a specific page it iterates all the pages and returns the entire collection.

Please use this method carefully, as fetching the entire collection will increase the number of requests you send to the API server and you may eventually risk to hit the throttle limit.

Options Hash (options):

  • :page (Integer)

    current page (pagination)

  • :per_page (Integer)

    number of entries to return (pagination)

  • :sort (String)

    sorting policy

  • :filter (Hash)

    filtering policy

Raises:

See Also:



59
60
61
# File 'lib/dnsimple/client/domains.rb', line 59

def all_domains(, options = {})
  paginate(:domains, , options)
end

#create_domain(account_id, attributes, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Domain> Also known as: create

Creates a domain in the account.



74
75
76
77
78
79
80
# File 'lib/dnsimple/client/domains.rb', line 74

def create_domain(, attributes, options = {})
  Extra.validate_mandatory_attributes(attributes, [:name])
  options  = options.merge(attributes)
  response = client.post(Client.versioned("/%s/domains" % []), attributes, options)

  Dnsimple::Response.new(response, Struct::Domain.new(response["data"]))
end

#delete_domain(account_id, domain_id, options = {}) ⇒ Dnsimple::Response<nil> Also known as: delete

Deletes a domain from the account.

WARNING: this cannot be undone.



113
114
115
116
117
# File 'lib/dnsimple/client/domains.rb', line 113

def delete_domain(, domain_id, options = {})
  response = client.delete(Client.versioned("/%s/domains/%s" % [, domain_id]), nil, options)

  Dnsimple::Response.new(response, nil)
end

#domain(account_id, domain_id, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Domain>

Gets a domain from the account.



94
95
96
97
98
# File 'lib/dnsimple/client/domains.rb', line 94

def domain(, domain_id, options = {})
  response = client.get(Client.versioned("/%s/domains/%s" % [, domain_id]), options)

  Dnsimple::Response.new(response, Struct::Domain.new(response["data"]))
end

#domains(account_id, options = {}) ⇒ Dnsimple::PaginatedResponse<Dnsimple::Struct::Domain> Also known as: list, list_domains

Lists the domains in the account.

Examples:

List domains in the first page

client.domains.list(1010)

List domains, provide a specific page

client.domains.list(1010, page: 2)

List domains, provide a sorting policy

client.domains.list(1010, sort: "expires_on:asc")

List domains, provide a filtering policy

client.domains.list(1010, filter: { name_like: "example" })

Options Hash (options):

  • :page (Integer)

    current page (pagination)

  • :per_page (Integer)

    number of entries to return (pagination)

  • :sort (String)

    sorting policy

  • :filter (Hash)

    filtering policy

Raises:

See Also:



31
32
33
34
35
# File 'lib/dnsimple/client/domains.rb', line 31

def domains(, options = {})
  response = client.get(Client.versioned("/%s/domains" % []), Options::ListOptions.new(options))

  Dnsimple::PaginatedResponse.new(response, response["data"].map { |r| Struct::Domain.new(r) })
end

#reset_domain_token(account_id, domain_id, options = {}) ⇒ Dnsimple::Response<nil>

Resets the domain token.



131
132
133
134
135
# File 'lib/dnsimple/client/domains.rb', line 131

def reset_domain_token(, domain_id, options = {})
  response = client.post(Client.versioned("/%s/domains/%s/token" % [, domain_id]), nil, options)

  Dnsimple::Response.new(response, Struct::Domain.new(response["data"]))
end