Sha256: 79d077a722ad3d567df9ee1bc452b3dd3cf6498b93773d6a4d83226bf2ad7b45
Contents?: true
Size: 655 Bytes
Versions: 12
Compression:
Stored size: 655 Bytes
Contents
module Fog module Compute class Brightbox class Real # Create a new server group for the account. # # @param [Hash] options # @option options [String] :name Editable user label # @option options [String] :description Editable user description # # @return [Hash, nil] The JSON response parsed to a Hash or nil if no options passed # # @see https://api.gb1.brightbox.com/1.0/#server_group_create_server_group # def create_server_group(options) wrapped_request("post", "/1.0/server_groups", [202], options) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems