Sha256: d8c19ad94e2a7248d6d299df2155956e33b628fb80969bb8559d1353846f6554

Contents?: true

Size: 1.21 KB

Versions: 60

Compression:

Stored size: 1.21 KB

Contents

module Fog
  module Compute
    class Vsphere
      class Real

        def vm_power_off(options = {})
          options = { 'force' => false }.merge(options)
          raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'

          search_filter = { :uuid => options['instance_uuid'], 'vmSearch' => true, 'instanceUuid' => true }
          vm_mob_ref = @connection.searchIndex.FindAllByUuid(search_filter).first

          if options['force'] then
            task = vm_mob_ref.PowerOffVM_Task
            task.wait_for_completion
            { 'task_state' => task.info.result, 'power_off_type' => 'cut_power' }
          else
            vm_mob_ref.ShutdownGuest
            {
              'task_state'     => "running",
              'power_off_type' => 'shutdown_guest',
            }
          end
        end

      end

      class Mock

        def vm_power_off(options = {})
          raise ArgumentError, "instance_uuid is a required parameter" unless options.has_key? 'instance_uuid'
          {
            'task_state'     => "running",
            'power_off_type' => options['force'] ? 'cut_power' : 'shutdown_guest',
          }
        end

      end
    end
  end
end

Version data entries

60 entries across 60 versions & 18 rubygems

Version Path
fog-1.3.0 lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
fog-1.2.0 lib/fog/vsphere/requests/compute/vm_power_off.rb
ktheory-fog-1.1.2 lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
fog-1.1.2 lib/fog/vsphere/requests/compute/vm_power_off.rb
fog_tractical-1.1.4 lib/fog/vsphere/requests/compute/vm_power_off.rb
fog_tractical-1.1.3 lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
fog-1.1.1 lib/fog/vsphere/requests/compute/vm_power_off.rb
fog-1.1.0 lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
tag-fog-1.0.1 lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/vsphere/requests/compute/vm_power_off.rb
fog-1.0.0 lib/fog/vsphere/requests/compute/vm_power_off.rb