Sha256: ad22efab417f462097a636a90224daf410a9b70949c4d9fcac8024408b60842f
Contents?: true
Size: 341 Bytes
Versions: 60
Compression:
Stored size: 341 Bytes
Contents
module CloudstackClient module Domain ## # List domains. def list_domains(name = nil) params = { 'command' => 'listDomains', 'listall' => 'true', 'isrecursive' => 'true' } params['name'] = name if name json = send_request(params) json['domain'] || [] end end end
Version data entries
60 entries across 60 versions & 3 rubygems