Sha256: 7430a050eff5c2f9c683a4af11940cd4f675c7df0cafe496f334979c4752f072

Contents?: true

Size: 1.6 KB

Versions: 18

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

module Files
  class DnsRecord
    attr_reader :options, :attributes

    def initialize(attributes = {}, options = {})
      @attributes = attributes || {}
      @options = options || {}
    end

    # string - Unique label for DNS record; used by Zapier and other integrations.
    def id
      @attributes[:id]
    end

    # string - DNS record domain name
    def domain
      @attributes[:domain]
    end

    # string - DNS record type
    def rrtype
      @attributes[:rrtype]
    end

    # string - DNS record value
    def value
      @attributes[:value]
    end

    # Parameters:
    #   page - integer - Current page number.
    #   per_page - integer - Number of records to show per page.  (Max: 10,000, 1,000 or less is recommended).
    #   action - string - Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
    def self.list(params = {}, options = {})
      raise InvalidParameterError.new("Bad parameter: page must be an Integer") if params.dig(:page) and !params.dig(:page).is_a?(Integer)
      raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
      raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String)

      response, options = Api.send_request("/dns_records", :get, params, options)
      response.data.map { |object| DnsRecord.new(object, options) }
    end

    def self.all(params = {}, options = {})
      list(params, options)
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
files.com-1.0.33 lib/files.com/models/dns_record.rb
files.com-1.0.32 lib/files.com/models/dns_record.rb
files.com-1.0.31 lib/files.com/models/dns_record.rb
files.com-1.0.30 lib/files.com/models/dns_record.rb
files.com-1.0.29 lib/files.com/models/dns_record.rb
files.com-1.0.28 lib/files.com/models/dns_record.rb
files.com-1.0.27 lib/files.com/models/dns_record.rb
files.com-1.0.26 lib/files.com/models/dns_record.rb
files.com-1.0.25 lib/files.com/models/dns_record.rb
files.com-1.0.24 lib/files.com/models/dns_record.rb
files.com-1.0.23 lib/files.com/models/dns_record.rb
files.com-1.0.22 lib/files.com/models/dns_record.rb
files.com-1.0.21 lib/files.com/models/dns_record.rb
files.com-1.0.20 lib/files.com/models/dns_record.rb
files.com-1.0.19 lib/files.com/models/dns_record.rb
files.com-1.0.18 lib/files.com/models/dns_record.rb
files.com-1.0.17 lib/files.com/models/dns_record.rb
files.com-1.0.16 lib/files.com/models/dns_record.rb