UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

42 lines (41 loc) 1.03 kB
import GoogleCloudRegion from './GoogleCloudRegion'; import Output from './Output'; import OutputType from './OutputType'; /** * @export * @class GcsOutput */ export declare class GcsOutput extends Output { /** * Discriminator property for Output * @type {string} * @memberof GcsOutput */ readonly type: OutputType; /** * GCS access key (required) * @type {string} * @memberof GcsOutput */ accessKey?: string; /** * GCS secret key (required) * @type {string} * @memberof GcsOutput */ secretKey?: string; /** * Name of the bucket (required) * @type {string} * @memberof GcsOutput */ bucketName?: string; /** * The cloud region in which the bucket is located. Is used to determine the ideal location for your encodings automatically. * @type {GoogleCloudRegion} * @memberof GcsOutput */ cloudRegion?: GoogleCloudRegion; constructor(obj?: Partial<GcsOutput>); } export default GcsOutput;