UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

24 lines 839 B
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.Fields = void 0; const resource_1 = require("../../../resource.js"); class Fields extends resource_1.APIResource { /** * Lists all fields available. The response is json object with key-value pairs, * where keys are field names, and values are descriptions. * * @example * ```ts * const field = await client.logs.received.fields.get({ * zone_id: '023e105f4ecef8ad9ca31a8372d0c353', * }); * ``` */ get(params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/logs/received/fields`, options); } } exports.Fields = Fields; //# sourceMappingURL=fields.js.map