fog--fog/lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb

19 lines
435 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Creates an account.
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/createSnapshotPolicy.html]
def create_snapshot_policy(options={})
options.merge!(
'command' => 'createSnapshotPolicy'
)
request(options)
end
end
end
end
end