UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

23 lines 875 B
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.PayloadLogs = void 0; const resource_1 = require("../../../resource.js"); class PayloadLogs extends resource_1.APIResource { /** * Set payload log settings */ update(params, options) { const { account_id, ...body } = params; return this._client.put(`/accounts/${account_id}/dlp/payload_log`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Get payload log settings */ get(params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/dlp/payload_log`, options)._thenUnwrap((obj) => obj.result); } } exports.PayloadLogs = PayloadLogs; //# sourceMappingURL=payload-logs.js.map