mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
722b33cdad
* add volume tests back into tests/cloudstack/models/ * represent rules as a resource * fix job representations
37 lines
942 B
Ruby
37 lines
942 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/deleteSecurityGroup.html]
|
|
def delete_security_group(options={})
|
|
options.merge!(
|
|
'command' => 'deleteSecurityGroup'
|
|
)
|
|
|
|
request(options)
|
|
end
|
|
|
|
end # Real
|
|
|
|
class Mock
|
|
def delete_security_group(options={})
|
|
security_group_id = options['id']
|
|
if self.data[:security_groups][security_group_id]
|
|
self.data[:security_groups].delete(security_group_id)
|
|
{
|
|
"deletesecuritygroupresponse" => {
|
|
"success" => "true"
|
|
}
|
|
}
|
|
else
|
|
raise Fog::Compute::Cloudstack::BadRequest.new('No security_group found')
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|