deletePackagingGroup method

Future<void> deletePackagingGroup({
  1. required String id,
})

Deletes a MediaPackage VOD PackagingGroup resource.

May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException. May throw UnprocessableEntityException.

Parameter id : The ID of the MediaPackage VOD PackagingGroup resource to delete.

Implementation

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