fog/fog-vsphere

View on GitHub
lib/fog/vsphere/models/compute/process.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'fog/compute/models/server'

module Fog
  module Vsphere
    class Compute
      class Process < Fog::Model
        attribute :cmd_line
        attribute :end_time
        attribute :exit_code
        attribute :name
        attribute :owner
        attribute :pid
        attribute :start_time
      end
    end
  end
end