cloudflare
Version:
The official TypeScript library for the Cloudflare API
24 lines • 984 B
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Copy = void 0;
const resource_1 = require("../../resource.js");
class Copy extends resource_1.APIResource {
/**
* Uploads a video to Stream from a provided URL.
*/
create(params, options) {
const { account_id, 'Upload-Creator': uploadCreator, 'Upload-Metadata': uploadMetadata, ...body } = params;
return this._client.post(`/accounts/${account_id}/stream/copy`, {
body,
...options,
headers: {
...(uploadCreator != null ? { 'Upload-Creator': uploadCreator } : undefined),
...(uploadMetadata != null ? { 'Upload-Metadata': uploadMetadata } : undefined),
...options?.headers,
},
})._thenUnwrap((obj) => obj.result);
}
}
exports.Copy = Copy;
//# sourceMappingURL=copy.js.map