Class: DedicatedFailoverStruct

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

Overview

http://soapi.ovh.com/managerdedicatedFailoverStruct

Constant Summary collapse

@@schema_type =
"dedicatedFailoverStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["ip", ["SOAP::SOAPString", XSD::QName.new(nil, "ip")]], ["routedTo", ["SOAP::SOAPString", XSD::QName.new(nil, "routedTo")]], ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]], ["ssl", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "ssl")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ip = nil, routedTo = nil, comment = nil, ssl = nil) ⇒ DedicatedFailoverStruct

Returns a new instance of DedicatedFailoverStruct.



2374
2375
2376
2377
2378
2379
# File 'lib/ovhrb/manager/manager.rb', line 2374

def initialize(ip = nil, routedTo = nil, comment = nil, ssl = nil)
  @ip = ip
  @routedTo = routedTo
  @comment = comment
  @ssl = ssl
end

Instance Attribute Details

#commentObject

Returns the value of attribute comment.



2371
2372
2373
# File 'lib/ovhrb/manager/manager.rb', line 2371

def comment
  @comment
end

#ipObject

Returns the value of attribute ip.



2369
2370
2371
# File 'lib/ovhrb/manager/manager.rb', line 2369

def ip
  @ip
end

#routedToObject

Returns the value of attribute routedTo.



2370
2371
2372
# File 'lib/ovhrb/manager/manager.rb', line 2370

def routedTo
  @routedTo
end

#sslObject

Returns the value of attribute ssl.



2372
2373
2374
# File 'lib/ovhrb/manager/manager.rb', line 2372

def ssl
  @ssl
end