getApplication method
Displays detailed information about a specified application.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter applicationId :
The ID of the application that will be described.
Implementation
Future<GetApplicationResponse> getApplication({
required String applicationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/applications/${Uri.encodeComponent(applicationId)}',
exceptionFnMap: _exceptionFns,
);
return GetApplicationResponse.fromJson(response);
}