Class: Virtuozzo::SOAP::Types::Mailer::Cpu_loadType

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/mailer.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.



250
251
252
253
254
255
# File 'lib/virtuozzo/soap/types/mailer.rb', line 250

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.



248
249
250
# File 'lib/virtuozzo/soap/types/mailer.rb', line 248

def idle
  @idle
end

#niceObject

Returns the value of attribute nice.



247
248
249
# File 'lib/virtuozzo/soap/types/mailer.rb', line 247

def nice
  @nice
end

#systemObject

Returns the value of attribute system.



245
246
247
# File 'lib/virtuozzo/soap/types/mailer.rb', line 245

def system
  @system
end

#userObject

Returns the value of attribute user.



246
247
248
# File 'lib/virtuozzo/soap/types/mailer.rb', line 246

def user
  @user
end