UNPKG

balena-cli

Version:

The official balena Command Line Interface

106 lines (105 loc) 5.39 kB
import { Command } from '@oclif/core'; export default class TagListCmd extends Command { static aliases: string[]; static deprecateAliases: boolean; static description: string; static examples: string[]; static flags: { fleet: { exclusive: string[]; name: string; char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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 | import("@oclif/core/lib/interfaces").Deprecation; aliases?: string[]; charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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, import("@oclif/core/lib/interfaces").CustomOptions>; defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; input: string[]; default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; }; device: { exclusive: string[]; name: string; char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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 | import("@oclif/core/lib/interfaces").Deprecation; aliases?: string[]; charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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, import("@oclif/core/lib/interfaces").CustomOptions>; defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; input: string[]; default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; }; release: { exclusive: string[]; name: string; char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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 | import("@oclif/core/lib/interfaces").Deprecation; aliases?: string[]; charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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, import("@oclif/core/lib/interfaces").CustomOptions>; defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; input: string[]; default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; }; }; static authenticated: boolean; run(): Promise<void>; protected missingResourceMessage: string; }