bitmovin_api_sdk.encoding.encodings.streams package

Subpackages

Submodules

bitmovin_api_sdk.encoding.encodings.streams.stream_list_query_params module

class bitmovin_api_sdk.encoding.encodings.streams.stream_list_query_params.StreamListQueryParams(offset: Optional[int] = None, limit: Optional[int] = None)[source]

Bases: object

property attribute_map
property openapi_types

bitmovin_api_sdk.encoding.encodings.streams.streams_api module

class bitmovin_api_sdk.encoding.encodings.streams.streams_api.StreamsApi(**kwargs)[source]

Bases: BaseApi

create(encoding_id: string_types, stream: Stream, **kwargs: dict) Stream[source]

Add Stream

Parameters
  • encoding_id (string_types, required) – Id of the encoding.

  • stream (Stream, required) – The Stream to be created

Returns

Stream

Return type

Stream

delete(encoding_id: string_types, stream_id: string_types, **kwargs: dict) BitmovinResponse[source]

Delete Stream

Parameters
  • encoding_id (string_types, required) – Id of the encoding.

  • stream_id (string_types, required) – Id of the stream.

Returns

Id of the stream

Return type

BitmovinResponse

get(encoding_id: string_types, stream_id: string_types, **kwargs: dict) Stream[source]

Stream Details

Parameters
  • encoding_id (string_types, required) – Id of the encoding.

  • stream_id (string_types, required) – Id of the stream.

Returns

Stream

Return type

Stream

list(encoding_id: string_types, query_params: StreamListQueryParams = None, **kwargs: dict) Stream[source]

List Streams

Parameters
  • encoding_id (string_types, required) – Id of the encoding.

  • query_params (StreamListQueryParams) – Query parameters

Returns

List of streams

Return type

Stream

Module contents