Class: DedicatedIpLoadBalancingStruct

Inherits:
Object
  • Object
show all
Defined in:
lib/ovhrb/manager/manager.rb

Overview

http://soapi.ovh.com/managerdedicatedIpLoadBalancingStruct

Constant Summary collapse

@@schema_type =
"dedicatedIpLoadBalancingStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["ipLoadBalancing", ["SOAP::SOAPString", XSD::QName.new(nil, "ipLoadBalancing")]], ["active", ["SOAP::SOAPInt", XSD::QName.new(nil, "active")]], ["inactive", ["SOAP::SOAPInt", XSD::QName.new(nil, "inactive")]], ["serverList", ["MyArrayOfDedicatedIpLoadBalancingServerStructType", XSD::QName.new(nil, "serverList")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, ipLoadBalancing = nil, active = nil, inactive = nil, serverList = nil) ⇒ DedicatedIpLoadBalancingStruct

Returns a new instance of DedicatedIpLoadBalancingStruct.



2665
2666
2667
2668
2669
2670
2671
# File 'lib/ovhrb/manager/manager.rb', line 2665

def initialize(name = nil, ipLoadBalancing = nil, active = nil, inactive = nil, serverList = nil)
  @name = name
  @ipLoadBalancing = ipLoadBalancing
  @active = active
  @inactive = inactive
  @serverList = serverList
end

Instance Attribute Details

#activeObject

Returns the value of attribute active.



2661
2662
2663
# File 'lib/ovhrb/manager/manager.rb', line 2661

def active
  @active
end

#inactiveObject

Returns the value of attribute inactive.



2662
2663
2664
# File 'lib/ovhrb/manager/manager.rb', line 2662

def inactive
  @inactive
end

#ipLoadBalancingObject

Returns the value of attribute ipLoadBalancing.



2660
2661
2662
# File 'lib/ovhrb/manager/manager.rb', line 2660

def ipLoadBalancing
  @ipLoadBalancing
end

#nameObject

Returns the value of attribute name.



2659
2660
2661
# File 'lib/ovhrb/manager/manager.rb', line 2659

def name
  @name
end

#serverListObject

Returns the value of attribute serverList.



2663
2664
2665
# File 'lib/ovhrb/manager/manager.rb', line 2663

def serverList
  @serverList
end