node-ovh-ts
Version:
OVH API wrapper library for TypeScript
19 lines (17 loc) • 375 B
TypeScript
type CloudImageImage = {
creationDate?: Date;
flavorType?: string | null;
id?: string;
minDisk?: number;
minRam?: number;
name?: string;
planCode?: string | null;
region?: string;
size?: number;
status?: string;
tags?: string[] | null;
type?: string;
user?: string;
visibility?: string;
};
export { CloudImageImage };