resumeReplication method
Resume Replication.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw UninitializedAccountException.
May throw ValidationException.
Parameter sourceServerID :
Resume Replication Request source server ID.
Parameter accountID :
Resume Replication Request account ID.
Implementation
Future<SourceServer> resumeReplication({
required String sourceServerID,
String? accountID,
}) async {
final $payload = <String, dynamic>{
'sourceServerID': sourceServerID,
if (accountID != null) 'accountID': accountID,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/ResumeReplication',
exceptionFnMap: _exceptionFns,
);
return SourceServer.fromJson(response);
}