BlueprintUnassignCommand constructor

BlueprintUnassignCommand()

Creates the blueprint-unassign command.

Implementation

BlueprintUnassignCommand() {
  _addApiOptions(argParser);
  _addSelectorOptions(argParser);
  argParser.addFlag(
    'purge-adopted',
    negatable: false,
    help:
        'Also remove what the machine already had before this blueprint '
        'touched it. Off by default, and deliberately.',
  );
}