# File lib/fog/compute/requests/brightbox/create_image.rb, line 6
        def create_image(options = {})
          request(
            :expects  => [201],
            :method   => 'POST',
            :path     => "/1.0/images",
            :headers  => {"Content-Type" => "application/json"},
            :body     => options.to_json
          )
        end