UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

28 lines (27 loc) 805 B
import BitmovinResource from './BitmovinResource'; /** * @export * @class AzureAccount */ export declare class AzureAccount extends BitmovinResource { /** * Your Azure Subscription ID (The ID of your subscription where you intend to run the Encoding VMs) (required) * @type {string} * @memberof AzureAccount */ subscriptionId?: string; /** * The name of the resource group where you intend to run the Encoding VMs (required) * @type {string} * @memberof AzureAccount */ resourceGroupId?: string; /** * The ID of your Active Directory where your subscription runs in (required) * @type {string} * @memberof AzureAccount */ tenantId?: string; constructor(obj?: Partial<AzureAccount>); } export default AzureAccount;