Show / Hide Table of Contents

Class IngestApi

Inheritance
System.Object
IngestApi
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Encoding.Encodings.InputStreams.Ingest
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class IngestApi

Constructors

IngestApi(IBitmovinApiClientFactory)

Declaration
public IngestApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type Name Description
IBitmovinApiClientFactory apiClientFactory

Properties

Builder

Fluent builder for creating an instance of IngestApi

Declaration
public static BitmovinApiBuilder<IngestApi> Builder { get; }
Property Value
Type Description
BitmovinApiBuilder<IngestApi>

Methods

CreateAsync(String, IngestInputStream)

Add Ingest Input Stream

Declaration
public Task<IngestInputStream> CreateAsync(string encodingId, IngestInputStream ingestInputStream)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

IngestInputStream ingestInputStream

The Ingest Input Stream to be created

Returns
Type Description
System.Threading.Tasks.Task<IngestInputStream>

DeleteAsync(String, String)

Delete Ingest Input Stream

Declaration
public Task<BitmovinResponse> DeleteAsync(string encodingId, string inputStreamId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String inputStreamId

Id of the ingest input stream. (required)

Returns
Type Description
System.Threading.Tasks.Task<BitmovinResponse>

GetAsync(String, String)

Ingest Input Stream Details

Declaration
public Task<IngestInputStream> GetAsync(string encodingId, string inputStreamId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String inputStreamId

Id of the ingest input stream. (required)

Returns
Type Description
System.Threading.Tasks.Task<IngestInputStream>

ListAsync(String, Func<IngestApi.ListQueryParams, IngestApi.ListQueryParams>[])

List Ingest Input Streams

Declaration
public Task<PaginationResponse<IngestInputStream>> ListAsync(string encodingId, params Func<IngestApi.ListQueryParams, IngestApi.ListQueryParams>[] queryParams)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.Func<IngestApi.ListQueryParams, IngestApi.ListQueryParams>[] queryParams

The query parameters for sorting, filtering and paging options (optional)

Returns
Type Description
System.Threading.Tasks.Task<PaginationResponse<IngestInputStream>>
Back to top Generated by DocFX