UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

26 lines 1.01 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from "../../resource.mjs"; import { SinglePage } from "../../pagination.mjs"; export class Connections extends APIResource { /** * Lists all connections detected by Page Shield. */ list(params, options) { const { zone_id, ...query } = params; return this._client.getAPIList(`/zones/${zone_id}/page_shield/connections`, ConnectionsSinglePage, { query, ...options, }); } /** * Fetches a connection detected by Page Shield by connection ID. */ get(connectionId, params, options) { const { zone_id } = params; return this._client.get(`/zones/${zone_id}/page_shield/connections/${connectionId}`, options)._thenUnwrap((obj) => obj.result); } } export class ConnectionsSinglePage extends SinglePage { } Connections.ConnectionsSinglePage = ConnectionsSinglePage; //# sourceMappingURL=connections.mjs.map