Class: Virtuozzo::SOAP::Types::Up2date::Cpu_loadType

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



1061
1062
1063
1064
1065
1066
# File 'lib/virtuozzo/soap/types/up2date.rb', line 1061

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.



1059
1060
1061
# File 'lib/virtuozzo/soap/types/up2date.rb', line 1059

def idle
  @idle
end

#niceObject

Returns the value of attribute nice.



1058
1059
1060
# File 'lib/virtuozzo/soap/types/up2date.rb', line 1058

def nice
  @nice
end

#systemObject

Returns the value of attribute system.



1056
1057
1058
# File 'lib/virtuozzo/soap/types/up2date.rb', line 1056

def system
  @system
end

#userObject

Returns the value of attribute user.



1057
1058
1059
# File 'lib/virtuozzo/soap/types/up2date.rb', line 1057

def user
  @user
end