cloudflare
Version:
The official TypeScript library for the Cloudflare API
103 lines • 3.97 kB
TypeScript
import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as DirectUploadAPI from 'cloudflare/resources/stream/direct-upload';
import * as StreamAPI from 'cloudflare/resources/stream/stream';
import * as WatermarksAPI from 'cloudflare/resources/stream/watermarks';
export declare class DirectUpload extends APIResource {
/**
* Creates a direct upload that allows video uploads without an API key.
*/
create(params: DirectUploadCreateParams, options?: Core.RequestOptions): Core.APIPromise<DirectUploadCreateResponse>;
}
export interface DirectUploadCreateResponse {
/**
* Indicates the date and time at which the video will be deleted. Omit the field
* to indicate no change, or include with a `null` value to remove an existing
* scheduled deletion. If specified, must be at least 30 days from upload time.
*/
scheduledDeletion?: string;
/**
* A Cloudflare-generated unique identifier for a media item.
*/
uid?: string;
/**
* The URL an unauthenticated upload can use for a single
* `HTTP POST multipart/form-data` request.
*/
uploadURL?: string;
watermark?: WatermarksAPI.Watermark;
}
export interface DirectUploadCreateParams {
/**
* Path param: The account identifier tag.
*/
account_id: string;
/**
* Body param: The maximum duration in seconds for a video upload. Can be set for a
* video that is not yet uploaded to limit its duration. Uploads that exceed the
* specified duration will fail during processing. A value of `-1` means the value
* is unknown.
*/
maxDurationSeconds: number;
/**
* Body param: Lists the origins allowed to display the video. Enter allowed origin
* domains in an array and use `*` for wildcard subdomains. Empty arrays allow the
* video to be viewed on any origin.
*/
allowedOrigins?: Array<StreamAPI.AllowedOrigins>;
/**
* Body param: A user-defined identifier for the media creator.
*/
creator?: string;
/**
* Body param: The date and time after upload when videos will not be accepted.
*/
expiry?: string;
/**
* Body param: A user modifiable key-value store used to reference other systems of
* record for managing videos.
*/
meta?: unknown;
/**
* Body param: Indicates whether the video can be a accessed using the UID. When
* set to `true`, a signed token must be generated with a signing key to view the
* video.
*/
requireSignedURLs?: boolean;
/**
* Body param: Indicates the date and time at which the video will be deleted. Omit
* the field to indicate no change, or include with a `null` value to remove an
* existing scheduled deletion. If specified, must be at least 30 days from upload
* time.
*/
scheduledDeletion?: string;
/**
* Body param: The timestamp for a thumbnail image calculated as a percentage value
* of the video's duration. To convert from a second-wise timestamp to a
* percentage, divide the desired timestamp by the total duration of the video. If
* this value is not set, the default thumbnail image is taken from 0s of the
* video.
*/
thumbnailTimestampPct?: number;
/**
* Body param:
*/
watermark?: DirectUploadCreateParams.Watermark;
/**
* Header param: A user-defined identifier for the media creator.
*/
'Upload-Creator'?: string;
}
export declare namespace DirectUploadCreateParams {
interface Watermark {
/**
* The unique identifier for the watermark profile.
*/
uid?: string;
}
}
export declare namespace DirectUpload {
export import DirectUploadCreateResponse = DirectUploadAPI.DirectUploadCreateResponse;
export import DirectUploadCreateParams = DirectUploadAPI.DirectUploadCreateParams;
}
//# sourceMappingURL=direct-upload.d.ts.map