Class: VirtualServerPortRange
- Inherits:
-
Object
- Object
- VirtualServerPortRange
- Defined in:
- lib/api/virtualserver/VirtualServer.rb
Overview
/VirtualServer.PortRange
low - SOAP::SOAPInt
high - SOAP::SOAPInt
Instance Attribute Summary collapse
-
#high ⇒ Object
Returns the value of attribute high.
-
#low ⇒ Object
Returns the value of attribute low.
Instance Method Summary collapse
-
#initialize(low = nil, high = nil) ⇒ VirtualServerPortRange
constructor
A new instance of VirtualServerPortRange.
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
#high ⇒ Object
Returns the value of attribute high.
37 38 39 |
# File 'lib/api/virtualserver/VirtualServer.rb', line 37 def high @high end |
#low ⇒ Object
Returns the value of attribute low.
36 37 38 |
# File 'lib/api/virtualserver/VirtualServer.rb', line 36 def low @low end |