Sha256: 33aeb35dba4bbff7974d529edb168021f168d823aec21cb0cabf7158af553791
Contents?: true
Size: 780 Bytes
Versions: 13
Compression:
Stored size: 780 Bytes
Contents
module Fog module Compute class Brightbox class Real # Will issue a stop request for the server to become inactive. # # @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_stop_server # def stop_server(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/servers/#{identifier}/stop", [202], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems