import { BaseAPI } from '../../../common/BaseAPI'; import Configuration from '../../../common/Configuration'; import CustomdataApi from './customdata/CustomdataApi'; import AnalyticsAzureOutput from '../../../models/AnalyticsAzureOutput'; import PaginationResponse from '../../../models/PaginationResponse'; import { AnalyticsAzureOutputListQueryParams, AnalyticsAzureOutputListQueryParamsBuilder } from './AnalyticsAzureOutputListQueryParams'; /** * AzureApi - object-oriented interface * @export * @class AzureApi * @extends {BaseAPI} */ export default class AzureApi extends BaseAPI { customdata: CustomdataApi; constructor(configuration: Configuration); /** * @summary Create Microsoft Azure Output * @param {AnalyticsAzureOutput} analyticsAzureOutput The Microsoft Azure output to be created * @throws {BitmovinError} * @memberof AzureApi */ create(analyticsAzureOutput?: AnalyticsAzureOutput): Promise; /** * @summary Delete Microsoft Azure Output * @param {string} outputId Id of the output * @throws {BitmovinError} * @memberof AzureApi */ delete(outputId: string): Promise; /** * @summary Microsoft Azure Output Details * @param {string} outputId Id of the output * @throws {BitmovinError} * @memberof AzureApi */ get(outputId: string): Promise; /** * @summary List Microsoft Azure Outputs * @param {*} [queryParameters] query parameters for filtering, sorting and pagination * @throws {BitmovinError} * @memberof AzureApi */ list(queryParameters?: AnalyticsAzureOutputListQueryParams | ((q: AnalyticsAzureOutputListQueryParamsBuilder) => AnalyticsAzureOutputListQueryParamsBuilder)): Promise>; }