Class: Nettica::Stubs::DomainRecord

Inherits:
Object
  • Object
show all
Defined in:
lib/nettica/stubs/nettica.rb

Overview

http://www.nettica.com/DNS/DnsApiDomainRecord

domainName - SOAP::SOAPString
hostName - SOAP::SOAPString
recordType - SOAP::SOAPString
data - SOAP::SOAPString
tTL - SOAP::SOAPInt
priority - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(domainName = nil, hostName = nil, recordType = nil, data = nil, tTL = nil, priority = nil) ⇒ DomainRecord

Returns a new instance of DomainRecord.



93
94
95
96
97
98
99
100
# File 'lib/nettica/stubs/nettica.rb', line 93

def initialize(domainName = nil, hostName = nil, recordType = nil, data = nil, tTL = nil, priority = nil)
  @domainName = domainName
  @hostName = hostName
  @recordType = recordType
  @data = data
  @tTL = tTL
  @priority = priority
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



89
90
91
# File 'lib/nettica/stubs/nettica.rb', line 89

def data
  @data
end

#domainNameObject

Returns the value of attribute domainName.



86
87
88
# File 'lib/nettica/stubs/nettica.rb', line 86

def domainName
  @domainName
end

#hostNameObject

Returns the value of attribute hostName.



87
88
89
# File 'lib/nettica/stubs/nettica.rb', line 87

def hostName
  @hostName
end

#priorityObject

Returns the value of attribute priority.



91
92
93
# File 'lib/nettica/stubs/nettica.rb', line 91

def priority
  @priority
end

#recordTypeObject

Returns the value of attribute recordType.



88
89
90
# File 'lib/nettica/stubs/nettica.rb', line 88

def recordType
  @recordType
end

#tTLObject

Returns the value of attribute tTL.



90
91
92
# File 'lib/nettica/stubs/nettica.rb', line 90

def tTL
  @tTL
end