Sha256: 64ff7667b62e8562e52260f36364d7d31ac648af2ea3fcefe9c39a3c70ef721f
Contents?: true
Size: 599 Bytes
Versions: 12
Compression:
Stored size: 599 Bytes
Contents
module Fog module Compute class Brightbox class Real # Will issue a start request for the server to become active. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] The JSON response parsed to a Hash # # @see https://api.gb1.brightbox.com/1.0/#server_start_server # def start_server(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/servers/#{identifier}/start", [202]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems