@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
35 lines (34 loc) • 953 B
TypeScript
import AnalyticsOutput from './AnalyticsOutput';
import AnalyticsOutputType from './AnalyticsOutputType';
/**
* @export
* @class AnalyticsAzureOutput
*/
export declare class AnalyticsAzureOutput extends AnalyticsOutput {
/**
* Discriminator property for AnalyticsOutput
* @type {string}
* @memberof AnalyticsAzureOutput
*/
readonly type: AnalyticsOutputType;
/**
* Azure Account Name (required)
* @type {string}
* @memberof AnalyticsAzureOutput
*/
accountName?: string;
/**
* Microsoft Azure Account Access Key with the `Contributor Role` (required)
* @type {string}
* @memberof AnalyticsAzureOutput
*/
accountKey?: string;
/**
* Microsoft Azure container name (required)
* @type {string}
* @memberof AnalyticsAzureOutput
*/
container?: string;
constructor(obj?: Partial<AnalyticsAzureOutput>);
}
export default AnalyticsAzureOutput;