Class: SqlpriveStruct

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

Overview

Constant Summary collapse

@@schema_type =
"sqlpriveStruct"
@@schema_ns =
"http://soapi.ovh.com/manager"
@@schema_element =
[["server", ["SOAP::SOAPString", XSD::QName.new(nil, "server")]], ["expiration", ["SOAP::SOAPString", XSD::QName.new(nil, "expiration")]], ["memory", ["SOAP::SOAPString", XSD::QName.new(nil, "memory")]], ["ip", ["SOAP::SOAPString", XSD::QName.new(nil, "ip")]], ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]], ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(server = nil, expiration = nil, memory = nil, ip = nil, type = nil, version = nil) ⇒ SqlpriveStruct

Returns a new instance of SqlpriveStruct.



3815
3816
3817
3818
3819
3820
3821
3822
# File 'lib/ovhrb/manager/manager.rb', line 3815

def initialize(server = nil, expiration = nil, memory = nil, ip = nil, type = nil, version = nil)
  @server = server
  @expiration = expiration
  @memory = memory
  @ip = ip
  @type = type
  @version = version
end

Instance Attribute Details

#expirationObject

Returns the value of attribute expiration.



3809
3810
3811
# File 'lib/ovhrb/manager/manager.rb', line 3809

def expiration
  @expiration
end

#ipObject

Returns the value of attribute ip.



3811
3812
3813
# File 'lib/ovhrb/manager/manager.rb', line 3811

def ip
  @ip
end

#memoryObject

Returns the value of attribute memory.



3810
3811
3812
# File 'lib/ovhrb/manager/manager.rb', line 3810

def memory
  @memory
end

#serverObject

Returns the value of attribute server.



3808
3809
3810
# File 'lib/ovhrb/manager/manager.rb', line 3808

def server
  @server
end

#typeObject

Returns the value of attribute type.



3812
3813
3814
# File 'lib/ovhrb/manager/manager.rb', line 3812

def type
  @type
end

#versionObject

Returns the value of attribute version.



3813
3814
3815
# File 'lib/ovhrb/manager/manager.rb', line 3813

def version
  @version
end