Sha256: cd5c99b5faf8af240189f5e1d688d3fc4485b2977dd0b75e61061ba4dac57ee7

Contents?: true

Size: 1.48 KB

Versions: 77

Compression:

Stored size: 1.48 KB

Contents

module Fog
  module Compute
    class Cloudstack
      class Real

        # Updates account information for the authenticated user.
        #
        # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/destroyVirtualMachine.html]
        def destroy_virtual_machine(options={})
          options.merge!(
            'command' => 'destroyVirtualMachine'
          )

          request(options)
        end

      end # Real

      class Mock

        def destroy_virtual_machine(options={})
          identity = options["id"]

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

          job_id = Fog::Cloudstack.uuid

          job = {
            "cmd"           => "com.cloud.api.commands.DestroyVirtualMachineCmd",
            "created"       => Time.now.iso8601,
            "jobid"         => job_id,
            "jobstatus"     => 1,
            "jobprocstatus" => 0,
            "jobresultcode" => 0,
            "jobresulttype" => "object",
            "jobresult"     =>
              {"virtualmachine" => server}
          }

          self.data[:jobs][job_id]= job
          self.data[:servers].delete(identity)

          {"destroyvirtualmachineresponse" => {"jobid" => job_id}}
        end
      end
    end # Cloudstack
  end # Compute
end # Fog

Version data entries

77 entries across 77 versions & 11 rubygems

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