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 23 24 25 26 27 | 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x | import { deleteDrain } from '../../clever-client/drains.js';
import { defineCommand } from '../../lib/define-command.js';
import { styleText } from '../../lib/style-text.js';
import { Logger } from '../../logger.js';
import { resolveDrainResource } from '../../models/drain.js';
import { sendToApi } from '../../models/send-to-api.js';
import { addonIdOrRealIdOption, aliasOption, appIdOrNameOption } from '../global.options.js';
import { drainIdArg } from './drain.args.js';
export const drainRemoveCommand = defineCommand({
description: 'Remove a drain',
since: '0.9.0',
options: {
alias: aliasOption,
appIdOrName: appIdOrNameOption,
addonIdOrRealId: addonIdOrRealIdOption,
},
args: [drainIdArg],
async handler(options, drainId) {
const { alias, appIdOrName, addonIdOrRealId } = options;
const { ownerId, resourceId } = await resolveDrainResource(alias, appIdOrName, addonIdOrRealId);
await deleteDrain({ ownerId, resourceId, drainId }).then(sendToApi);
Logger.printSuccess(`Drain ${styleText(['bold', 'green'], drainId)} has been successfully removed!`);
},
});
|