Class: InfrastructureIpStruct

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

Overview

http://soapi.ovh.com/managerInfrastructureIpStruct

Constant Summary collapse

@@schema_type =
"InfrastructureIpStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["country", ["SOAP::SOAPString", XSD::QName.new(nil, "country")]], ["netname", ["SOAP::SOAPString", XSD::QName.new(nil, "netname")]], ["routedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "routedTo")]], ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]], ["addressesNumber", ["SOAP::SOAPInt", XSD::QName.new(nil, "addressesNumber")]], ["networkIp", ["SOAP::SOAPString", XSD::QName.new(nil, "networkIp")]], ["ipAddressFromBlock", ["MyArrayOfStringType", XSD::QName.new(nil, "ipAddressFromBlock")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(country = nil, netname = nil, routedTo = nil, status = nil, addressesNumber = nil, networkIp = nil, ipAddressFromBlock = nil) ⇒ InfrastructureIpStruct

Returns a new instance of InfrastructureIpStruct.



4079
4080
4081
4082
4083
4084
4085
4086
4087
# File 'lib/ovhrb/manager/manager.rb', line 4079

def initialize(country = nil, netname = nil, routedTo = nil, status = nil, addressesNumber = nil, networkIp = nil, ipAddressFromBlock = nil)
  @country = country
  @netname = netname
  @routedTo = routedTo
  @status = status
  @addressesNumber = addressesNumber
  @networkIp = networkIp
  @ipAddressFromBlock = ipAddressFromBlock
end

Instance Attribute Details

#addressesNumberObject

Returns the value of attribute addressesNumber.



4075
4076
4077
# File 'lib/ovhrb/manager/manager.rb', line 4075

def addressesNumber
  @addressesNumber
end

#countryObject

Returns the value of attribute country.



4071
4072
4073
# File 'lib/ovhrb/manager/manager.rb', line 4071

def country
  @country
end

#ipAddressFromBlockObject

Returns the value of attribute ipAddressFromBlock.



4077
4078
4079
# File 'lib/ovhrb/manager/manager.rb', line 4077

def ipAddressFromBlock
  @ipAddressFromBlock
end

#netnameObject

Returns the value of attribute netname.



4072
4073
4074
# File 'lib/ovhrb/manager/manager.rb', line 4072

def netname
  @netname
end

#networkIpObject

Returns the value of attribute networkIp.



4076
4077
4078
# File 'lib/ovhrb/manager/manager.rb', line 4076

def networkIp
  @networkIp
end

#routedToObject

Returns the value of attribute routedTo.



4073
4074
4075
# File 'lib/ovhrb/manager/manager.rb', line 4073

def routedTo
  @routedTo
end

#statusObject

Returns the value of attribute status.



4074
4075
4076
# File 'lib/ovhrb/manager/manager.rb', line 4074

def status
  @status
end