cloudflare
Version:
The official TypeScript library for the Cloudflare API
22 lines • 844 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../../../resource.mjs";
export class Logs extends APIResource {
/**
* Fetch deployment logs for a project.
*
* @example
* ```ts
* const log =
* await client.pages.projects.deployments.history.logs.get(
* 'this-is-my-project-01',
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
get(projectName, deploymentId, params, options) {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/pages/projects/${projectName}/deployments/${deploymentId}/history/logs`, options)._thenUnwrap((obj) => obj.result);
}
}
//# sourceMappingURL=logs.mjs.map