UNPKG

balena-cli

Version:

The official balena Command Line Interface

90 lines (89 loc) 4.55 kB
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: { advanced: Interfaces.BooleanFlag<boolean>; fleet: { exclusive: string[]; name: string; char?: Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase; summary?: string; description?: string; helpLabel?: string; helpGroup?: string; env?: string; hidden?: boolean; required?: boolean; dependsOn?: string[]; exactlyOne?: string[]; relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[]; deprecated?: true | Interfaces.Deprecation; aliases?: string[]; charAliases?: (Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase)[]; deprecateAliases?: boolean; noCacheDefault?: boolean; type: "option"; helpValue?: string | string[]; options?: readonly string[]; multiple?: boolean; multipleNonGreedy?: boolean; delimiter?: ","; allowStdin?: boolean | "only"; parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, Interfaces.CustomOptions>; defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, Interfaces.CustomOptions>; input: string[]; default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, Interfaces.CustomOptions>; }; config: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>; '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: { exclusive: string[]; name: string; char?: Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase; summary?: string; description?: string; helpLabel?: string; helpGroup?: string; env?: string; hidden?: boolean; required?: boolean; dependsOn?: string[]; exactlyOne?: string[]; relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[]; deprecated?: true | Interfaces.Deprecation; aliases?: string[]; charAliases?: (Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase)[]; deprecateAliases?: boolean; noCacheDefault?: boolean; type: "option"; helpValue?: string | string[]; options?: readonly string[]; multiple?: boolean; multipleNonGreedy?: boolean; delimiter?: ","; allowStdin?: boolean | "only"; parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, Interfaces.CustomOptions>; defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, Interfaces.CustomOptions>; input: string[]; default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, Interfaces.CustomOptions>; }; 'device-type': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>; 'initial-device-name': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>; version: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>; 'system-connection': 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>; }; static authenticated: boolean; run(): Promise<void>; }