Sha256: 8cb18899b8e53e164ddbfca737c407d47ab38bc2f54c4607425f8ff4cec0668c
Contents?: true
Size: 780 Bytes
Versions: 43
Compression:
Stored size: 780 Bytes
Contents
module Fog module DNS class Rage4 class Real # 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> # def create_domain(name, options = {}) email = options[:email] || @rage4_email request( :expects => 200, :method => 'GET', :path => "/rapi/createregulardomain/?name=#{name}&email=#{email}" ) end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems