deleteProfiles method
Deletes one or more DataWedge profiles.
profileNames is a list of profile names to delete.
Use deleteAllDeletableProfiles to delete all deletable profiles at once.
Implementation
Future<void> deleteProfiles(
List<String> profileNames, {
String? commandTag,
bool requestResult = true,
}) {
return sendCommand(
command: DataWedgeApi.deleteProfile,
value: profileNames,
commandTag: commandTag ?? 'DELETE_PROFILE',
requestResult: requestResult,
);
}