balena-cli
Version:
The official balena Command Line Interface
21 lines (20 loc) • 1.03 kB
TypeScript
import { Command } from '@oclif/core';
import type { BalenaSDK } from 'balena-sdk';
export default class DeviceMoveCmd extends Command {
static description: string;
static examples: string[];
static args: {
uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
static flags: {
fleet: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
};
static authenticated: boolean;
private getDevices;
run(): Promise<void>;
interactivelySelectApplication(balena: BalenaSDK, devices: Awaited<ReturnType<typeof this.getDevices>>): Promise<Omit<import("balena-sdk/typings/pinejs-client-core").SelectResultObject<import("balena-sdk").Application, "slug" | "id" | "app_name">, "is_for__device_type"> & import("balena-sdk/typings/pinejs-client-core").ExpandResourceExpandObject<import("balena-sdk").Application, {
is_for__device_type: {
$select: "slug";
};
}>>;
}