Module: Dnsimple::Client::Contacts
- Included in:
- ContactsService
- Defined in:
- lib/dnsimple/client/contacts.rb
Instance Method Summary collapse
-
#all_contacts(account_id, options = {}) ⇒ Dnsimple::CollectionResponse<Dnsimple::Struct::Contact>
Lists ALL the contacts in the account.
-
#contact(account_id, contact_id, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Contact>
Gets a contact from the account.
-
#contacts(account_id, options = {}) ⇒ Dnsimple::PaginatedResponse<Dnsimple::Struct::Contact>
(also: #list_contacts)
Lists the contacts in the account.
-
#create_contact(account_id, attributes, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Contact>
Creates a contact in the account.
-
#delete_contact(account_id, contact_id, options = {}) ⇒ Dnsimple::Response<nil>
Deletes a contact from the account.
-
#update_contact(account_id, contact_id, attributes, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Contact>
Updates a contact in the account.
Instance Method Details
#all_contacts(account_id, options = {}) ⇒ Dnsimple::CollectionResponse<Dnsimple::Struct::Contact>
Lists ALL the contacts in the account.
This method is similar to #contacts, 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.
55 56 57 |
# File 'lib/dnsimple/client/contacts.rb', line 55 def all_contacts(account_id, = {}) paginate(:contacts, account_id, ) end |
#contact(account_id, contact_id, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Contact>
Gets a contact from the account.
87 88 89 90 91 |
# File 'lib/dnsimple/client/contacts.rb', line 87 def contact(account_id, contact_id, = {}) response = client.get(Client.versioned("/%s/contacts/%s" % [account_id, contact_id]), ) Dnsimple::Response.new(response, Struct::Contact.new(response["data"])) end |
#contacts(account_id, options = {}) ⇒ Dnsimple::PaginatedResponse<Dnsimple::Struct::Contact> Also known as: list_contacts
Lists the contacts in the account.
29 30 31 32 33 |
# File 'lib/dnsimple/client/contacts.rb', line 29 def contacts(account_id, = {}) response = client.get(Client.versioned("/%s/contacts" % [account_id]), Options::ListOptions.new()) Dnsimple::PaginatedResponse.new(response, response["data"].map { |r| Struct::Contact.new(r) }) end |
#create_contact(account_id, attributes, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Contact>
Creates a contact in the account.
69 70 71 72 73 74 |
# File 'lib/dnsimple/client/contacts.rb', line 69 def create_contact(account_id, attributes, = {}) Extra.validate_mandatory_attributes(attributes, [:first_name, :last_name, :address1, :city, :state_province, :postal_code, :country, :phone, :email]) response = client.post(Client.versioned("/%s/contacts" % [account_id]), attributes, ) Dnsimple::Response.new(response, Struct::Contact.new(response["data"])) end |
#delete_contact(account_id, contact_id, options = {}) ⇒ Dnsimple::Response<nil>
Deletes a contact from the account.
WARNING: this cannot be undone.
123 124 125 126 127 |
# File 'lib/dnsimple/client/contacts.rb', line 123 def delete_contact(account_id, contact_id, = {}) response = client.delete(Client.versioned("/%s/contacts/%s" % [account_id, contact_id]), nil, ) Dnsimple::Response.new(response, nil) end |
#update_contact(account_id, contact_id, attributes, options = {}) ⇒ Dnsimple::Response<Dnsimple::Struct::Contact>
Updates a contact in the account.
104 105 106 107 108 |
# File 'lib/dnsimple/client/contacts.rb', line 104 def update_contact(account_id, contact_id, attributes, = {}) response = client.patch(Client.versioned("/%s/contacts/%s" % [account_id, contact_id]), attributes, ) Dnsimple::Response.new(response, Struct::Contact.new(response["data"])) end |