Sha256: 87b513c1a7f2226c0daa54c765addb8b2334b4207cf75e1a328e071105afcecb
Contents?: true
Size: 969 Bytes
Versions: 13
Compression:
Stored size: 969 Bytes
Contents
module Fog module Compute class Brightbox class Real # Destroy the server and free up the resources. # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#server_delete_server # def delete_server(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("delete", "/1.0/servers/#{identifier}", [202], options) end # Old format of the delete request. # # @deprecated Use +#delete_server+ instead # def destroy_server(identifier) delete_server(identifier) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems