Class: Google::Apis::DnsV1::ResourceRecordSet
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DnsV1::ResourceRecordSet
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dns_v1/classes.rb,
 generated/google/apis/dns_v1/representations.rb,
 generated/google/apis/dns_v1/representations.rb
Overview
A unit of data that will be returned by the DNS servers.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    For example, www.example.com. 
- 
  
    
      #rrdatas  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1). 
- 
  
    
      #signature_rrdatas  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    As defined in RFC 4034 (section 3.2). 
- 
  
    
      #ttl  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of seconds that this ResourceRecordSet can be cached by resolvers. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier of a supported record type, for example, A, AAAA, MX, TXT, and so on. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ResourceRecordSet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ResourceRecordSet. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResourceRecordSet
Returns a new instance of ResourceRecordSet
| 827 828 829 | # File 'generated/google/apis/dns_v1/classes.rb', line 827 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "dns#
resourceRecordSet".
Corresponds to the JSON property kind
| 799 800 801 | # File 'generated/google/apis/dns_v1/classes.rb', line 799 def kind @kind end | 
#name ⇒ String
For example, www.example.com.
Corresponds to the JSON property name
| 804 805 806 | # File 'generated/google/apis/dns_v1/classes.rb', line 804 def name @name end | 
#rrdatas ⇒ Array<String>
As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).
Corresponds to the JSON property rrdatas
| 809 810 811 | # File 'generated/google/apis/dns_v1/classes.rb', line 809 def rrdatas @rrdatas end | 
#signature_rrdatas ⇒ Array<String>
As defined in RFC 4034 (section 3.2).
Corresponds to the JSON property signatureRrdatas
| 814 815 816 | # File 'generated/google/apis/dns_v1/classes.rb', line 814 def signature_rrdatas @signature_rrdatas end | 
#ttl ⇒ Fixnum
Number of seconds that this ResourceRecordSet can be cached by resolvers.
Corresponds to the JSON property ttl
| 819 820 821 | # File 'generated/google/apis/dns_v1/classes.rb', line 819 def ttl @ttl end | 
#type ⇒ String
The identifier of a supported record type, for example, A, AAAA, MX, TXT, and
so on.
Corresponds to the JSON property type
| 825 826 827 | # File 'generated/google/apis/dns_v1/classes.rb', line 825 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 832 833 834 835 836 837 838 839 | # File 'generated/google/apis/dns_v1/classes.rb', line 832 def update!(**args) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @rrdatas = args[:rrdatas] if args.key?(:rrdatas) @signature_rrdatas = args[:signature_rrdatas] if args.key?(:signature_rrdatas) @ttl = args[:ttl] if args.key?(:ttl) @type = args[:type] if args.key?(:type) end |