cloudflare
Version:
The official TypeScript library for the Cloudflare API
33 lines • 1.18 kB
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Downloads = void 0;
const resource_1 = require("../../../../resource.js");
class Downloads extends resource_1.APIResource {
/**
* Downloads artifacts for an executed command. Bulk downloads are not supported
*
* @example
* ```ts
* const download =
* await client.zeroTrust.dex.commands.downloads.get(
* '5758fefe-ae7e-4538-a39b-1fef6abcb909',
* 'filename',
* { account_id: '01a7362d577a6c3019a474fd6f485823' },
* );
*
* const content = await download.blob();
* console.log(content);
* ```
*/
get(commandId, filename, params, options) {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/dex/commands/${commandId}/downloads/${filename}`, {
...options,
headers: { Accept: 'application/zip', ...options?.headers },
__binaryResponse: true,
});
}
}
exports.Downloads = Downloads;
//# sourceMappingURL=downloads.js.map