2019-08-28 18:51:56 +00:00
|
|
|
/**
|
|
|
|
* @license
|
2021-04-13 21:44:58 +00:00
|
|
|
* Copyright 2019-2021 Balena Ltd.
|
2019-08-28 18:51:56 +00:00
|
|
|
*
|
|
|
|
* 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 { flags } from '@oclif/command';
|
|
|
|
|
2020-02-27 12:38:50 +00:00
|
|
|
import type { IBooleanFlag } from '@oclif/parser/lib/flags';
|
2020-07-15 19:13:18 +00:00
|
|
|
import { stripIndent } from './lazy';
|
2020-12-10 12:30:17 +00:00
|
|
|
import { lowercaseIfSlug } from './normalization';
|
2019-08-28 18:51:56 +00:00
|
|
|
|
|
|
|
export const application = flags.string({
|
|
|
|
char: 'a',
|
2020-12-10 12:30:17 +00:00
|
|
|
description: 'application name, slug (preferred), or numeric ID (deprecated)',
|
|
|
|
parse: lowercaseIfSlug,
|
2019-08-28 18:51:56 +00:00
|
|
|
});
|
2020-06-17 13:46:25 +00:00
|
|
|
// TODO: Consider remove second alias 'app' when we can, to simplify.
|
|
|
|
export const app = flags.string({
|
|
|
|
description: "same as '--application'",
|
2020-12-10 12:30:17 +00:00
|
|
|
parse: lowercaseIfSlug,
|
2020-06-17 13:46:25 +00:00
|
|
|
});
|
2019-08-28 18:51:56 +00:00
|
|
|
|
|
|
|
export const device = flags.string({
|
|
|
|
char: 'd',
|
|
|
|
description: 'device UUID',
|
|
|
|
});
|
|
|
|
|
|
|
|
export const help: IBooleanFlag<void> = flags.help({ char: 'h' });
|
|
|
|
|
|
|
|
export const quiet: IBooleanFlag<boolean> = flags.boolean({
|
|
|
|
char: 'q',
|
|
|
|
description: 'suppress warning messages',
|
|
|
|
default: false,
|
|
|
|
});
|
|
|
|
|
2020-05-26 09:17:30 +00:00
|
|
|
export const release = flags.string({
|
|
|
|
char: 'r',
|
|
|
|
description: 'release id',
|
|
|
|
});
|
|
|
|
|
2019-12-04 18:04:57 +00:00
|
|
|
export const service = flags.string({
|
|
|
|
char: 's',
|
|
|
|
description: 'service name',
|
|
|
|
});
|
|
|
|
|
2019-08-28 18:51:56 +00:00
|
|
|
export const verbose: IBooleanFlag<boolean> = flags.boolean({
|
|
|
|
char: 'v',
|
|
|
|
description: 'produce verbose output',
|
2020-12-04 21:09:33 +00:00
|
|
|
default: false,
|
2019-08-28 18:51:56 +00:00
|
|
|
});
|
2020-04-17 13:19:33 +00:00
|
|
|
|
|
|
|
export const yes: IBooleanFlag<boolean> = flags.boolean({
|
|
|
|
char: 'y',
|
|
|
|
description: 'answer "yes" to all questions (non interactive use)',
|
2020-12-04 21:09:33 +00:00
|
|
|
default: false,
|
2020-04-17 13:19:33 +00:00
|
|
|
});
|
2020-06-17 13:46:25 +00:00
|
|
|
|
|
|
|
export const force: IBooleanFlag<boolean> = flags.boolean({
|
|
|
|
char: 'f',
|
|
|
|
description: 'force action if the update lock is set',
|
2020-12-04 21:09:33 +00:00
|
|
|
default: false,
|
2020-06-17 13:46:25 +00:00
|
|
|
});
|
2020-07-15 19:13:18 +00:00
|
|
|
|
|
|
|
export const drive = flags.string({
|
|
|
|
char: 'd',
|
|
|
|
description: stripIndent`
|
|
|
|
the drive to write the image to, eg. \`/dev/sdb\` or \`/dev/mmcblk0\`.
|
|
|
|
Careful with this as you can erase your hard drive.
|
|
|
|
Check \`balena util available-drives\` for available options.
|
|
|
|
`,
|
|
|
|
});
|
2020-12-10 12:30:17 +00:00
|
|
|
|
2021-04-13 21:44:58 +00:00
|
|
|
export const driveOrImg = flags.string({
|
|
|
|
char: 'd',
|
|
|
|
description:
|
|
|
|
'path to OS image file (e.g. balena.img) or block device (e.g. /dev/disk2)',
|
|
|
|
});
|
|
|
|
|
|
|
|
export const deviceType = flags.string({
|
|
|
|
description:
|
|
|
|
'device type (Check available types with `balena devices supported`)',
|
|
|
|
char: 't',
|
|
|
|
required: true,
|
|
|
|
});
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
export const json: IBooleanFlag<boolean> = flags.boolean({
|
|
|
|
char: 'j',
|
|
|
|
description: 'produce JSON output instead of tabular output',
|
|
|
|
default: false,
|
|
|
|
});
|