Class: Nettica::Stubs::DomainRecord
- Inherits:
-
Object
- Object
- Nettica::Stubs::DomainRecord
- 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
-
#data ⇒ Object
Returns the value of attribute data.
-
#domainName ⇒ Object
Returns the value of attribute domainName.
-
#hostName ⇒ Object
Returns the value of attribute hostName.
-
#priority ⇒ Object
Returns the value of attribute priority.
-
#recordType ⇒ Object
Returns the value of attribute recordType.
-
#tTL ⇒ Object
Returns the value of attribute tTL.
Instance Method Summary collapse
-
#initialize(domainName = nil, hostName = nil, recordType = nil, data = nil, tTL = nil, priority = nil) ⇒ DomainRecord
constructor
A new instance of DomainRecord.
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
#data ⇒ Object
Returns the value of attribute data.
89 90 91 |
# File 'lib/nettica/stubs/nettica.rb', line 89 def data @data end |
#domainName ⇒ Object
Returns the value of attribute domainName.
86 87 88 |
# File 'lib/nettica/stubs/nettica.rb', line 86 def domainName @domainName end |
#hostName ⇒ Object
Returns the value of attribute hostName.
87 88 89 |
# File 'lib/nettica/stubs/nettica.rb', line 87 def hostName @hostName end |
#priority ⇒ Object
Returns the value of attribute priority.
91 92 93 |
# File 'lib/nettica/stubs/nettica.rb', line 91 def priority @priority end |
#recordType ⇒ Object
Returns the value of attribute recordType.
88 89 90 |
# File 'lib/nettica/stubs/nettica.rb', line 88 def recordType @recordType end |
#tTL ⇒ Object
Returns the value of attribute tTL.
90 91 92 |
# File 'lib/nettica/stubs/nettica.rb', line 90 def tTL @tTL end |