BlueprintApplyCommand constructor

BlueprintApplyCommand()

Creates the blueprint-apply command.

Implementation

BlueprintApplyCommand() {
  _addApiOptions(argParser);
  _addSelectorOptions(argParser);
  argParser
    ..addFlag('dry-run', negatable: false, help: 'Plan, and change nothing.')
    ..addFlag(
      'async',
      negatable: false,
      help: 'Do not wait. Prints an operation id to ask about later.',
    );
}