All files / src/commands/ng ng.delete.command.js

77.27% Statements 17/22
100% Branches 1/1
0% Functions 0/1
77.27% Lines 17/22

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x           193x 193x  
import { defineCommand } from '../../lib/define-command.js';
import { styleText } from '../../lib/style-text.js';
import { Logger } from '../../logger.js';
import * as networkGroup from '../../models/ng.js';
import { orgaIdOrNameOption } from '../global.options.js';
import { ngIdOrLabelArg } from './ng.args.js';
 
export const ngDeleteCommand = defineCommand({
  description: 'Delete a Network Group',
  since: '3.12.0',
  options: {
    org: orgaIdOrNameOption,
  },
  args: [ngIdOrLabelArg],
  async handler(options, ngIdOrLabel) {
    const { org } = options;

    await networkGroup.destroy(ngIdOrLabel, org);
    const ngText = ngIdOrLabel.ngResourceLabel ?? ngIdOrLabel.ngId;
    Logger.printSuccess(`Network Group ${styleText('green', ngText)} successfully deleted!`);
  },
});