Sha256: 596de66995420046ae74a7af2985476ab63b42dbbe2be7b386fc25f6d3de8f7a
Contents?: true
Size: 864 Bytes
Versions: 45
Compression:
Stored size: 864 Bytes
Contents
module Fog module Network class OpenStack class Real # Delete a security group # # ==== Parameters # * 'security_group_id'<~String> - UUID of the security group to delete def delete_security_group(security_group_id) request( :expects => 204, :method => 'DELETE', :path => "security-groups/#{security_group_id}" ) end end class Mock def delete_security_group(security_group_id) response = Excon::Response.new if self.data[:security_groups][security_group_id] self.data[:security_groups].delete(security_group_id) response.status = 204 response else raise Fog::Network::OpenStack::NotFound end end end end end end
Version data entries
45 entries across 45 versions & 6 rubygems