@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
52 lines (51 loc) • 2.41 kB
TypeScript
import { BaseAPI } from '../../../../common/BaseAPI';
import Configuration from '../../../../common/Configuration';
import CustomdataApi from './customdata/CustomdataApi';
import InformationApi from './information/InformationApi';
import BitmovinResponse from '../../../../models/BitmovinResponse';
import ProgressiveWavMuxing from '../../../../models/ProgressiveWavMuxing';
import PaginationResponse from '../../../../models/PaginationResponse';
import { ProgressiveWavMuxingListQueryParams, ProgressiveWavMuxingListQueryParamsBuilder } from './ProgressiveWavMuxingListQueryParams';
/**
* ProgressiveWavApi - object-oriented interface
* @export
* @class ProgressiveWavApi
* @extends {BaseAPI}
*/
export default class ProgressiveWavApi extends BaseAPI {
customdata: CustomdataApi;
information: InformationApi;
constructor(configuration: Configuration);
/**
* @summary Add Progressive Wav muxing
* @param {string} encodingId Id of the encoding.
* @param {ProgressiveWavMuxing} progressiveWavMuxing The Progressive WAV muxing to be created
* @throws {BitmovinError}
* @memberof ProgressiveWavApi
*/
create(encodingId: string, progressiveWavMuxing?: ProgressiveWavMuxing): Promise<ProgressiveWavMuxing>;
/**
* @summary Delete Progressive WAV muxing
* @param {string} encodingId Id of the encoding.
* @param {string} muxingId Id of the Progressive WAV muxing
* @throws {BitmovinError}
* @memberof ProgressiveWavApi
*/
delete(encodingId: string, muxingId: string): Promise<BitmovinResponse>;
/**
* @summary Progressive WAV muxing details
* @param {string} encodingId Id of the encoding.
* @param {string} muxingId Id of the Progressive WAV muxing
* @throws {BitmovinError}
* @memberof ProgressiveWavApi
*/
get(encodingId: string, muxingId: string): Promise<ProgressiveWavMuxing>;
/**
* @summary List Progressive WAV muxings
* @param {string} encodingId Id of the encoding.
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
* @throws {BitmovinError}
* @memberof ProgressiveWavApi
*/
list(encodingId: string, queryParameters?: ProgressiveWavMuxingListQueryParams | ((q: ProgressiveWavMuxingListQueryParamsBuilder) => ProgressiveWavMuxingListQueryParamsBuilder)): Promise<PaginationResponse<ProgressiveWavMuxing>>;
}