UNPKG

balena-cli

Version:

The official balena Command Line Interface

110 lines (92 loc) 3.09 kB
/** * @license * Copyright 2016-2020 Balena Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Args, Command } from '@oclif/core'; import * as cf from '../../utils/common-flags'; import { getBalenaSdk, stripIndent } from '../../utils/lazy'; import { applicationIdInfo } from '../../utils/messages'; export default class TagRmCmd extends Command { public static description = stripIndent` Remove a tag from a fleet, device or release. Remove a tag from a fleet, device or release. ${applicationIdInfo.split('\n').join('\n\t\t')} `; public static examples = [ '$ balena tag rm myTagKey --fleet MyFleet', '$ balena tag rm myTagKey -f myorg/myfleet', '$ balena tag rm myTagKey --device 7cf02a6', '$ balena tag rm myTagKey --release 1234', '$ balena tag rm myTagKey --release b376b0e544e9429483b656490e5b9443b4349bd6', ]; public static args = { tagKey: Args.string({ description: 'the key string of the tag', required: true, }), }; public static flags = { fleet: { ...cf.fleet, exclusive: ['device', 'release'], }, device: { ...cf.device, exclusive: ['fleet', 'release'], }, release: { ...cf.release, exclusive: ['fleet', 'device'], }, }; public static authenticated = true; public async run() { const { args: params, flags: options } = await this.parse(TagRmCmd); const balena = getBalenaSdk(); // Check user has specified one of application/device/release if (!options.fleet && !options.device && !options.release) { const { ExpectedError } = await import('../../errors'); throw new ExpectedError(TagRmCmd.missingResourceMessage); } if (options.fleet) { const { getFleetSlug } = await import('../../utils/sdk'); return balena.models.application.tags.remove( await getFleetSlug(balena, options.fleet), params.tagKey, ); } if (options.device) { return balena.models.device.tags.remove(options.device, params.tagKey); } if (options.release) { const { disambiguateReleaseParam } = await import( '../../utils/normalization' ); const releaseParam = await disambiguateReleaseParam( balena, options.release, ); return balena.models.release.tags.remove(releaseParam, params.tagKey); } } protected static missingResourceMessage = stripIndent` To remove a resource tag, you must provide exactly one of: * A fleet, with --fleet <fleetNameOrSlug> * A device, with --device <UUID> * A release, with --release <ID or commit> See the help page for examples: $ balena help tag rm `; }