Class: IControl::Management::SRVRecord
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::Management::SRVRecord
- Defined in:
- lib/icontrol/management.rb,
lib/icontrol/management.rb
Overview
struct that describes a DNS "SRV“ Record
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The domain name of the record.
-
#port ⇒ Numeric
The port for this service.
-
#priority ⇒ Numeric
The priority to use for this record.
-
#target ⇒ String
The target to use for this record.
-
#ttl ⇒ Numeric
The TTL for this record.
-
#weight ⇒ Numeric
The weight to use for this record.
Instance Attribute Details
#domain_name ⇒ String
The domain name of the record
333 334 335 |
# File 'lib/icontrol/management.rb', line 333 def domain_name @domain_name end |
#port ⇒ Numeric
The port for this service
333 334 335 |
# File 'lib/icontrol/management.rb', line 333 def port @port end |
#priority ⇒ Numeric
The priority to use for this record
333 334 335 |
# File 'lib/icontrol/management.rb', line 333 def priority @priority end |
#target ⇒ String
The target to use for this record
333 334 335 |
# File 'lib/icontrol/management.rb', line 333 def target @target end |
#ttl ⇒ Numeric
The TTL for this record
333 334 335 |
# File 'lib/icontrol/management.rb', line 333 def ttl @ttl end |
#weight ⇒ Numeric
The weight to use for this record
333 334 335 |
# File 'lib/icontrol/management.rb', line 333 def weight @weight end |