1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudstack/requests/compute/create_zone.rb
2012-07-18 16:46:45 -07:00

20 lines
434 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Lists zones.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listZones.html]
def create_zone(options={})
options.merge!(
'command' => 'createZone'
)
request(options)
end
end # Real
end # Cloudstack
end # Compute
end # Fog