deleteApplication method

Future<void> deleteApplication({
  1. required String applicationId,
})

Deletes an application. An application has to be in a stopped or created state in order to be deleted.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter applicationId : The ID of the application that will be deleted.

Implementation

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