UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

41 lines (40 loc) 923 B
import AzureServicePrincipal from './AzureServicePrincipal'; import Input from './Input'; import InputType from './InputType'; /** * @export * @class AzureInput */ export declare class AzureInput extends Input { /** * Discriminator property for Input * @type {string} * @memberof AzureInput */ readonly type: InputType; /** * Azure Account Name (required) * @type {string} * @memberof AzureInput */ accountName?: string; /** * Azure Account Key * @type {string} * @memberof AzureInput */ accountKey?: string; /** * @type {AzureServicePrincipal} * @memberof AzureInput */ servicePrincipal?: AzureServicePrincipal; /** * Name of the bucket (required) * @type {string} * @memberof AzureInput */ container?: string; constructor(obj?: Partial<AzureInput>); } export default AzureInput;