class StudioApi::Build

Represents created build in studio. It allows finding and deleting.

@example Delete version 0.0.1 (all types)

builds = Build.find(:all,:params=>{:appliance_id => 1234})
versions1 = builds.select { |b| b.version == "0.0.1" }
versions1.each {|v| v.destroy }