removeTemplateAction method
Remove template post migration custom action.
May throw ResourceNotFoundException.
May throw UninitializedAccountException.
May throw ValidationException.
Parameter actionID :
Template post migration custom action ID to remove.
Parameter launchConfigurationTemplateID :
Launch configuration template ID of the post migration custom action to
remove.
Implementation
Future<void> removeTemplateAction({
required String actionID,
required String launchConfigurationTemplateID,
}) async {
final $payload = <String, dynamic>{
'actionID': actionID,
'launchConfigurationTemplateID': launchConfigurationTemplateID,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/RemoveTemplateAction',
exceptionFnMap: _exceptionFns,
);
}