bitmovin_api_sdk.encoding.manifests.dash.periods package

Subpackages

Submodules

bitmovin_api_sdk.encoding.manifests.dash.periods.period_list_query_params module

class bitmovin_api_sdk.encoding.manifests.dash.periods.period_list_query_params.PeriodListQueryParams(offset: Optional[int] = None, limit: Optional[int] = None)[source]

Bases: object

property attribute_map
property openapi_types

bitmovin_api_sdk.encoding.manifests.dash.periods.periods_api module

class bitmovin_api_sdk.encoding.manifests.dash.periods.periods_api.PeriodsApi(**kwargs)[source]

Bases: BaseApi

create(manifest_id: string_types, period: Period, **kwargs: dict) Period[source]

Add Period

Parameters
  • manifest_id (string_types, required) – Id of the manifest

  • period (Period, required) – The Period to be added to the manifest

Returns

Period

Return type

Period

delete(manifest_id: string_types, period_id: string_types, **kwargs: dict) BitmovinResponse[source]

Delete Period

Parameters
  • manifest_id (string_types, required) – Id of the manifest

  • period_id (string_types, required) – Id of the period to be deleted

Returns

Id of the Period

Return type

BitmovinResponse

get(manifest_id: string_types, period_id: string_types, **kwargs: dict) Period[source]

Period Details

Parameters
  • manifest_id (string_types, required) – Id of the manifest

  • period_id (string_types, required) – Id of the period

Returns

Period details

Return type

Period

list(manifest_id: string_types, query_params: PeriodListQueryParams = None, **kwargs: dict) Period[source]

List all Periods

Parameters
  • manifest_id (string_types, required) – Id of the manifest

  • query_params (PeriodListQueryParams) – Query parameters

Returns

List of Periods

Return type

Period

Module contents