Class: Virtuozzo::SOAP::Drivers::Process::Kill

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/drivers/process/types.rb

Overview

http://www.swsoft.com/webservices/vza/4.0.0/vzaprocessmkill

eid - (any)
pid - SOAP::SOAPInt
signal - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(eid = nil, pid = [], signal = nil) ⇒ Kill

Returns a new instance of Kill.



2415
2416
2417
2418
2419
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2415

def initialize(eid = nil, pid = [], signal = nil)
  @eid = eid
  @pid = pid
  @signal = signal
end

Instance Attribute Details

#eidObject

Returns the value of attribute eid.



2411
2412
2413
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2411

def eid
  @eid
end

#pidObject

Returns the value of attribute pid.



2412
2413
2414
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2412

def pid
  @pid
end

#signalObject

Returns the value of attribute signal.



2413
2414
2415
# File 'lib/virtuozzo/soap/drivers/process/types.rb', line 2413

def signal
  @signal
end