Sha256: 147d0d0f5e3b0de9647b426ca06e632da53bdc6bb97682b8819a19487c734942

Contents?: true

Size: 1.69 KB

Versions: 79

Compression:

Stored size: 1.69 KB

Contents

module Fog
  module Compute
    class Cloudstack
      class Real

        # Deletes a specified domain.
        #
        # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/detachVolume.html]
        def detach_volume(options={})
          options.merge!(
            'command' => 'detachVolume'
          )

          request(options)
        end

      end # Real

      class Mock

        def detach_volume(options={})
          volume_id = options['id']

          volume = self.data[:volumes][volume_id]
          unless volume
            raise Fog::Compute::Cloudstack::BadRequest.new("Unable to execute API command attachvolume due to invalid value. Object volumes(uuid: #{volume_id}) does not exist.")
          end

          volume['virtualmachineid']= volume['vmname']= volume['vmdisplayname']= nil

          job_id = Fog::Cloudstack.uuid

          # FIXME: need to determine current user
          account_id = self.data[:accounts].first
          user_id = self.data[:users].first

          job = {
            "accountid"     => account_id,
            "userid"        => user_id,
            "cmd"           => "com.cloud.api.commands.DetachVolumeCmd",
            "created"       => Time.now.iso8601,
            "jobid"         => job_id,
            "jobstatus"     => 1,
            "jobprocstatus" => 0,
            "jobresultcode" => 0,
            "jobresulttype" => "object",
            "jobresult"     =>
              {"volume"     => volume}
          }

          self.data[:jobs][job_id]= job

          {
            "detachvolumeresponse" => {
              "jobid" => job_id
            }
          }
        end
      end # Mock
    end
  end
end

Version data entries

79 entries across 79 versions & 12 rubygems

Version Path
fog-1.22.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.21.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.20.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.19.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/cloudstack/requests/compute/detach_volume.rb