Class: Zonesync::Zonefile::SRV
- Defined in:
- lib/zonesync/zonefile.rb
Instance Attribute Summary collapse
-
#domainname ⇒ Object
(also: #target)
Returns the value of attribute domainname.
-
#host ⇒ Object
Returns the value of attribute host.
-
#port ⇒ Object
Returns the value of attribute port.
-
#priority ⇒ Object
Returns the value of attribute priority.
-
#weight ⇒ Object
Returns the value of attribute weight.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ SRV
constructor
A new instance of SRV.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ SRV
Returns a new instance of SRV.
263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/zonesync/zonefile.rb', line 263 def initialize(vars, zonefile_record) @vars = vars if zonefile_record self.host = qualify_host(zonefile_record.host.to_s) @vars[:last_host] = host self.ttl = zonefile_record.ttl.to_i self.klass = zonefile_record.klass.to_s self.priority = zonefile_record.priority.to_i self.weight = zonefile_record.weight.to_i self.port = zonefile_record.port.to_i self.domainname = qualify_host(zonefile_record.target.to_s) self.comment = zonefile_record.comment&.to_s end end |
Instance Attribute Details
#domainname ⇒ Object Also known as: target
Returns the value of attribute domainname.
261 262 263 |
# File 'lib/zonesync/zonefile.rb', line 261 def domainname @domainname end |
#host ⇒ Object
Returns the value of attribute host.
261 262 263 |
# File 'lib/zonesync/zonefile.rb', line 261 def host @host end |
#port ⇒ Object
Returns the value of attribute port.
261 262 263 |
# File 'lib/zonesync/zonefile.rb', line 261 def port @port end |
#priority ⇒ Object
Returns the value of attribute priority.
261 262 263 |
# File 'lib/zonesync/zonefile.rb', line 261 def priority @priority end |
#weight ⇒ Object
Returns the value of attribute weight.
261 262 263 |
# File 'lib/zonesync/zonefile.rb', line 261 def weight @weight end |