Sha256: d55323ddc9bb8619cfad1e8d41a96c68bf90de5555cc64222af888a5f0a06400

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

Contents

module Fog
  module Compute
    class Brightbox
      class Real
        # Create a new image for the account by registering it against an image stored within the Brightbox cloud image library.
        #
        # The disk image must be in place before you can attempt to create a reference in the API.
        #
        # @param [Hash] options
        # @option options [String] :source Filename of the image file uploaded to /incoming via FTP
        # @option options [String] :arch OS architecture this image is built for
        # @option options [String] :name Name for this image. If no name is specified, a name will be autogenerated based on the source filename & current time. Can be modified later.
        # @option options [String] :username Username for the image
        # @option options [Boolean] :public
        # @option options [Boolean] :compatibility_mode
        # @option options [String] :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/#image_create_image
        #
        def create_image(options)
          request("post", "/1.0/images", [201], options)
        end

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 4 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/brightbox/requests/compute/create_image.rb
fog-nirvanix-1.8.1 lib/fog/brightbox/requests/compute/create_image.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/brightbox/requests/compute/create_image.rb
fog-sgonyea-1.8.1 lib/fog/brightbox/requests/compute/create_image.rb
fog-1.8.0 lib/fog/brightbox/requests/compute/create_image.rb