startApplication method
Starts a specified application and initializes initial capacity if configured.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw ValidationException.
Parameter applicationId :
The ID of the application to start.
Implementation
Future<void> startApplication({
required String applicationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'POST',
requestUri: '/applications/${Uri.encodeComponent(applicationId)}/start',
exceptionFnMap: _exceptionFns,
);
}