UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

26 lines 1.27 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import * as FieldsAPI from 'cloudflare/resources/logs/received/fields'; export class Received extends APIResource { constructor() { super(...arguments); this.fields = new FieldsAPI.Fields(this._client); } /** * The `/received` api route allows customers to retrieve their edge HTTP logs. The * basic access pattern is "give me all the logs for zone Z for minute M", where * the minute M refers to the time records were received at Cloudflare's central * data center. `start` is inclusive, and `end` is exclusive. Because of that, to * get all data, at minutely cadence, starting at 10AM, the proper values are: * `start=2018-05-20T10:00:00Z&end=2018-05-20T10:01:00Z`, then * `start=2018-05-20T10:01:00Z&end=2018-05-20T10:02:00Z` and so on; the overlap * will be handled properly. */ get(zoneIdentifier, query, options) { return this._client.get(`/zones/${zoneIdentifier}/logs/received`, { query, ...options }); } } (function (Received) { Received.Fields = FieldsAPI.Fields; })(Received || (Received = {})); //# sourceMappingURL=received.mjs.map