Class: Virtuozzo::SOAP::Types::Filer::Cpu_loadType

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

Overview

http://www.swsoft.com/webservices/vzl/4.0.0/typescpu_loadType

system - SOAP::SOAPLong
user - SOAP::SOAPLong
nice - SOAP::SOAPLong
idle - SOAP::SOAPLong

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(system = nil, user = nil, nice = nil, idle = nil) ⇒ Cpu_loadType

Returns a new instance of Cpu_loadType.



346
347
348
349
350
351
# File 'lib/virtuozzo/soap/types/filer.rb', line 346

def initialize(system = nil, user = nil, nice = nil, idle = nil)
  @system = system
  @user = user
  @nice = nice
  @idle = idle
end

Instance Attribute Details

#idleObject

Returns the value of attribute idle.



344
345
346
# File 'lib/virtuozzo/soap/types/filer.rb', line 344

def idle
  @idle
end

#niceObject

Returns the value of attribute nice.



343
344
345
# File 'lib/virtuozzo/soap/types/filer.rb', line 343

def nice
  @nice
end

#systemObject

Returns the value of attribute system.



341
342
343
# File 'lib/virtuozzo/soap/types/filer.rb', line 341

def system
  @system
end

#userObject

Returns the value of attribute user.



342
343
344
# File 'lib/virtuozzo/soap/types/filer.rb', line 342

def user
  @user
end