startApplicationRefresh method
Refreshes a registered application.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw UnauthorizedException.
May throw ValidationException.
Parameter applicationId :
The ID of the application.
Implementation
Future<StartApplicationRefreshOutput> startApplicationRefresh({
required String applicationId,
}) async {
final $payload = <String, dynamic>{
'ApplicationId': applicationId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/start-application-refresh',
exceptionFnMap: _exceptionFns,
);
return StartApplicationRefreshOutput.fromJson(response);
}