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>

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:



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

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

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

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>

Deletes a domain from the account.

WARNING: this cannot be undone.



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

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.



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

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_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: "expiration: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:



33
34
35
36
37
# File 'lib/dnsimple/client/domains.rb', line 33

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