balena-cli
Version:
The official balena Command Line Interface
29 lines (28 loc) • 1.69 kB
TypeScript
import { Command } from '@oclif/core';
import type { Interfaces } from '@oclif/core';
export default class OsConfigureCmd extends Command {
static description: string;
static examples: string[];
static args: {
image: Interfaces.Arg<string, Record<string, unknown>>;
};
static flags: {
'system-connection': Interfaces.OptionFlag<string[] | undefined, Interfaces.CustomOptions>;
advanced: Interfaces.BooleanFlag<boolean>;
'config-app-update-poll-interval': Interfaces.OptionFlag<number | undefined, Interfaces.CustomOptions>;
'config-network': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
'config-wifi-key': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
'config-wifi-ssid': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
dev: Interfaces.BooleanFlag<boolean>;
secureBoot: Interfaces.BooleanFlag<boolean>;
'device-type': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
'initial-device-name': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
'provisioning-key-name': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
'provisioning-key-expiry-date': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
fleet: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
device: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
config: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
};
static authenticated: boolean;
run(): Promise<void>;
}