removeSourceServerAction method

Future<void> removeSourceServerAction({
  1. required String actionID,
  2. required String sourceServerID,
  3. String? accountID,
})

Remove source server post migration custom action.

May throw ResourceNotFoundException. May throw UninitializedAccountException. May throw ValidationException.

Parameter actionID : Source server post migration custom action ID to remove.

Parameter sourceServerID : Source server ID of the post migration custom action to remove.

Parameter accountID : Source server post migration account ID.

Implementation

Future<void> removeSourceServerAction({
  required String actionID,
  required String sourceServerID,
  String? accountID,
}) async {
  final $payload = <String, dynamic>{
    'actionID': actionID,
    'sourceServerID': sourceServerID,
    if (accountID != null) 'accountID': accountID,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/RemoveSourceServerAction',
    exceptionFnMap: _exceptionFns,
  );
}