deleteProfiles method

Future<void> deleteProfiles(
  1. List<String> profileNames, {
  2. String? commandTag,
  3. bool requestResult = true,
})

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,
  );
}