deleteVodSource method
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,
);
}