deleteSipMediaApplication method
Deletes a SIP media application.
May throw UnauthorizedClientException. May throw NotFoundException. May throw ForbiddenException. May throw BadRequestException. May throw ConflictException. May throw ThrottledClientException. May throw ServiceUnavailableException. May throw ServiceFailureException.
Parameter sipMediaApplicationId
:
The SIP media application ID.
Implementation
Future<void> deleteSipMediaApplication({
required String sipMediaApplicationId,
}) async {
ArgumentError.checkNotNull(sipMediaApplicationId, 'sipMediaApplicationId');
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/sip-media-applications/${Uri.encodeComponent(sipMediaApplicationId)}',
exceptionFnMap: _exceptionFns,
);
}