@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
35 lines (34 loc) • 761 B
TypeScript
import Output from './Output';
import OutputType from './OutputType';
/**
* @export
* @class AzureOutput
*/
export declare class AzureOutput extends Output {
/**
* Discriminator property for Output
* @type {string}
* @memberof AzureOutput
*/
readonly type: OutputType;
/**
* Azure Account Name (required)
* @type {string}
* @memberof AzureOutput
*/
accountName?: string;
/**
* Azure Account Key (required)
* @type {string}
* @memberof AzureOutput
*/
accountKey?: string;
/**
* Name of the bucket (required)
* @type {string}
* @memberof AzureOutput
*/
container?: string;
constructor(obj?: Partial<AzureOutput>);
}
export default AzureOutput;