class StudioApi::RunningBuild

Represents running build in studio.

Provide finding builds, canceling build process or running new build For parameters see API documentation @example Run new build and then cancel it

rb = StudioApi::RunningBuild.new(:appliance_id => 1234, :force => "true", :multi => "true")
rb.save!
sleep 5
rb.cancel

An ImageAlreadyExists exception is raised when force parameter is not specified and there’s already a build with the same version.