UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

46 lines 1.72 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.Tests = void 0; const resource_1 = require("cloudflare/resource"); class Tests extends resource_1.APIResource { /** * Starts a test for a specific webpage, in a specific region. */ create(url, params, options) { const { zone_id, ...body } = params; return this._client.post(`/zones/${zone_id}/speed_api/pages/${url}/tests`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Test history (list of tests) for a specific webpage. */ list(url, params, options) { const { zone_id, ...query } = params; return this._client.get(`/zones/${zone_id}/speed_api/pages/${url}/tests`, { query, ...options }); } /** * Deletes all tests for a specific webpage from a specific region. Deleted tests * are still counted as part of the quota. */ delete(url, params, options) { const { zone_id, region } = params; return this._client.delete(`/zones/${zone_id}/speed_api/pages/${url}/tests`, { query: { region }, ...options, })._thenUnwrap((obj) => obj.result); } /** * Retrieves the result of a specific test. */ get(url, testId, params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/speed_api/pages/${url}/tests/${testId}`, options)._thenUnwrap((obj) => obj.result); } } exports.Tests = Tests; (function (Tests) { })(Tests = exports.Tests || (exports.Tests = {})); //# sourceMappingURL=tests.js.map