UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

45 lines 1.85 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import * as WatermarksAPI from 'cloudflare/resources/stream/watermarks'; import { multipartFormRequestOptions } from 'cloudflare/core'; import { SinglePage } from 'cloudflare/pagination'; export class Watermarks extends APIResource { /** * Creates watermark profiles using a single `HTTP POST multipart/form-data` * request. */ create(params, options) { const { account_id, ...body } = params; return this._client.post(`/accounts/${account_id}/stream/watermarks`, multipartFormRequestOptions({ body, ...options }))._thenUnwrap((obj) => obj.result); } /** * Lists all watermark profiles for an account. */ list(params, options) { const { account_id } = params; return this._client.getAPIList(`/accounts/${account_id}/stream/watermarks`, WatermarksSinglePage, options); } /** * Deletes a watermark profile. */ delete(identifier, params, options) { const { account_id, body } = params; return this._client.delete(`/accounts/${account_id}/stream/watermarks/${identifier}`, { body: body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Retrieves details for a single watermark profile. */ get(identifier, params, options) { const { account_id } = params; return this._client.get(`/accounts/${account_id}/stream/watermarks/${identifier}`, options)._thenUnwrap((obj) => obj.result); } } export class WatermarksSinglePage extends SinglePage { } (function (Watermarks) { Watermarks.WatermarksSinglePage = WatermarksAPI.WatermarksSinglePage; })(Watermarks || (Watermarks = {})); //# sourceMappingURL=watermarks.mjs.map