@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
45 lines (44 loc) • 1.64 kB
TypeScript
import { BaseAPI } from '../../../common/BaseAPI';
import Configuration from '../../../common/Configuration';
import CustomdataApi from './customdata/CustomdataApi';
import AzureInput from '../../../models/AzureInput';
import PaginationResponse from '../../../models/PaginationResponse';
import { AzureInputListQueryParams, AzureInputListQueryParamsBuilder } from './AzureInputListQueryParams';
/**
* AzureApi - object-oriented interface
* @export
* @class AzureApi
* @extends {BaseAPI}
*/
export default class AzureApi extends BaseAPI {
customdata: CustomdataApi;
constructor(configuration: Configuration);
/**
* @summary Create Azure Input
* @param {AzureInput} azureInput The Azure input to be created
* @throws {BitmovinError}
* @memberof AzureApi
*/
create(azureInput?: AzureInput): Promise<AzureInput>;
/**
* @summary Delete Azure Input
* @param {string} inputId Id of the input
* @throws {BitmovinError}
* @memberof AzureApi
*/
delete(inputId: string): Promise<AzureInput>;
/**
* @summary Azure Input Details
* @param {string} inputId Id of the input
* @throws {BitmovinError}
* @memberof AzureApi
*/
get(inputId: string): Promise<AzureInput>;
/**
* @summary List Azure Inputs
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
* @throws {BitmovinError}
* @memberof AzureApi
*/
list(queryParameters?: AzureInputListQueryParams | ((q: AzureInputListQueryParamsBuilder) => AzureInputListQueryParamsBuilder)): Promise<PaginationResponse<AzureInput>>;
}