Class: VirtualServerPortRange

Inherits:
Object
  • Object
show all
Defined in:
lib/api/virtualserver/VirtualServer.rb

Overview

/VirtualServer.PortRange

low - SOAP::SOAPInt
high - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(low = nil, high = nil) ⇒ VirtualServerPortRange

Returns a new instance of VirtualServerPortRange.



39
40
41
42
# File 'lib/api/virtualserver/VirtualServer.rb', line 39

def initialize(low = nil, high = nil)
  @low = low
  @high = high
end

Instance Attribute Details

#highObject

Returns the value of attribute high.



37
38
39
# File 'lib/api/virtualserver/VirtualServer.rb', line 37

def high
  @high
end

#lowObject

Returns the value of attribute low.



36
37
38
# File 'lib/api/virtualserver/VirtualServer.rb', line 36

def low
  @low
end