deleteVodSource method

Future<void> deleteVodSource({
  1. required String sourceLocationName,
  2. required String vodSourceName,
})

The video on demand (VOD) source to delete.

Parameter sourceLocationName : The name of the source location associated with this VOD Source.

Parameter vodSourceName : The name of the VOD source.

Implementation

Future<void> deleteVodSource({
  required String sourceLocationName,
  required String vodSourceName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/sourceLocation/${Uri.encodeComponent(sourceLocationName)}/vodSource/${Uri.encodeComponent(vodSourceName)}',
    exceptionFnMap: _exceptionFns,
  );
}