Sha256: c8ceabcd9e47d66412040249a0281019e8f85347d71cd2b265e485e5a1ff5001
Contents?: true
Size: 945 Bytes
Versions: 17
Compression:
Stored size: 945 Bytes
Contents
# DnsRecord ## Example DnsRecord Object ``` { "id": "customdomain.com-CNAME-site.files.com", "domain": "my-custom-domain.com", "rrtype": "CNAME", "value": "mysite.files.com" } ``` * `id` (string): Unique label for DNS record; used by Zapier and other integrations. * `domain` (string): DNS record domain name * `rrtype` (string): DNS record type * `value` (string): DNS record value --- ## Show site DNS configuration ``` Files::DnsRecord.list( page: 1, per_page: 1 ) ``` ### Parameters * `page` (int64): Current page number. * `per_page` (int64): 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. * `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
Version data entries
17 entries across 17 versions & 1 rubygems