blob: b6028f86cde84c2f6c281b6e495b50827ff30b62 [file] [log] [blame]
// DO NOT EDIT. This file is automatically generated.
export interface MeetingPoint {
PodName: string;
Port: number;
Username: string;
MachineID: string;
LastUpdated: string;
}
export interface Pod {
Name: string;
LastUpdated: string;
}
export interface SetNoteRequest {
Message: string;
}
export interface SupplyChromeOSRequest {
SSHUserIP: string;
SuppliedDimensions: SwarmingDimensions;
}
export interface Annotation {
Message: string;
User: string;
Timestamp: string;
}
export interface FrontendDescription {
Mode: Mode;
Annotation: Annotation;
Note: Annotation;
Version: string;
PowerCycle: boolean;
LastUpdated: string;
Battery: number;
Temperature: { [key: string]: number };
RunningSwarmingTask: boolean;
LaunchedSwarming: boolean;
DeviceUptime: number;
SSHUserIP: string;
Dimensions: SwarmingDimensions;
}
export type SwarmingDimensions = { [key: string]: string[] | null } | null;
export type Mode = "available" | "maintenance" | "recovery";
export type ListMachinesResponse = FrontendDescription[];