Method: Fog::DNS::DNSMadeEasy::Real#list_domains
- Defined in:
- lib/fog/dnsmadeeasy/requests/dns/list_domains.rb
#list_domains ⇒ Object
Returns a list of all domain names for your account.
Returns
-
response<~Excon::Response>:
-
body<~Hash>:
-
list<~Array> e.g. [“domain1.com”,“domain2.com”, “domain3.com”]
-
-
status<~Integer> - 200 - OK
-
13 14 15 16 17 18 19 |
# File 'lib/fog/dnsmadeeasy/requests/dns/list_domains.rb', line 13 def list_domains request( :expects => 200, :method => 'GET', :path => '/V1.2/domains' ) end |