fly-machines-sdk
Version:
API that provides ability to manage applications on Fly.io
24 lines (23 loc) • 402 B
TypeScript
export interface AppDetails {
app: App;
}
export interface App {
hostname: string;
deployed: boolean;
state: string;
config: Config;
machines: Machines;
}
export interface Config {
services: Service[];
}
export interface Service {
internalPort: number;
}
export interface Machines {
nodes: Node[];
}
export interface Node {
instanceId: string;
id: string;
}