sesterce-cli
Version:
A powerful command-line interface tool for managing Sesterce Cloud services. Sesterce CLI provides easy access to GPU cloud instances, AI inference services, container registries, and SSH key management directly from your terminal.
13 lines (11 loc) • 334 B
text/typescript
import { GpuCloudVolumeRegion } from "./region";
export interface GpuCloudVolume {
readonly _id: string;
readonly name: string;
readonly capacity: number;
readonly availabilityZone: string;
readonly region: GpuCloudVolumeRegion;
readonly hourlyPrice: number;
readonly createdAt: string;
readonly updatedAt: string;
}