Sha256: 57273900fa86625411446b79e7be3a1cedf9586da86d8c8d699fdf7d4382edb9

Contents?: true

Size: 1.83 KB

Versions: 28

Compression:

Stored size: 1.83 KB

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Detaches a disk volume from a virtual machine.
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/detachVolume.html]
        def detach_volume(*args)
          options = {}
          if args[0].is_a? Hash
            options = args[0]
            options.merge!('command' => 'detachVolume') 
          else
            options.merge!('command' => 'detachVolume')
          end
          request(options)
        end
      end
 
      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 
    end
  end
end

Version data entries

28 entries across 26 versions & 4 rubygems

Version Path
fog-2.1.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/cloudstack/requests/compute/detach_volume.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/cloudstack/requests/compute/detach_volume.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.42.1 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-2.0.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.42.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.41.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.40.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.39.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.38.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.37.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.36.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.35.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-2.0.0.pre.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.34.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.33.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.32.0 lib/fog/cloudstack/requests/compute/detach_volume.rb
fog-1.31.0 lib/fog/cloudstack/requests/compute/detach_volume.rb