Method: Fog::DNS::Rage4::Real#create_domain

Defined in:
lib/fog/rage4/requests/dns/create_domain.rb

#create_domain(name, options = {}) ⇒ Object

Create a domain.

Parameters

  • name<~String> - domain name

  • email<~String> - email of owner of domain, defaults to email of credentials

Returns

  • response<~Excon::Response>:

    • body<~Hash>:

      * 'status'<~Boolean>
      * 'id'<~Integer>
      * 'error'<~String>
      


18
19
20
21
22
23
24
25
# File 'lib/fog/rage4/requests/dns/create_domain.rb', line 18

def create_domain(name, options = {})
  email = options[:email] || @rage4_email
  request(
          :expects  => 200,
          :method   => 'GET',
          :path     => "/rapi/createregulardomain/?name=#{name}&email=#{email}"
  )
end