Sha256: ec23cf5b41bc3aeec07a684107aab6a244d0830c4c56751febb86508f33a9ff6
Contents?: true
Size: 766 Bytes
Versions: 23
Compression:
Stored size: 766 Bytes
Contents
module Fog module Brightbox class Compute 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 end end end end
Version data entries
23 entries across 23 versions & 1 rubygems