UNPKG

aruba-admin

Version:

A TypeScript/Node.js library for interacting with Aruba Cloud's SOAP API with full type support and multi-region connectivity.

16 lines (15 loc) 332 B
/** * DiskInfo * @targetNSAlias `tns` * @targetNamespace `http://schemas.datacontract.org/2004/07/WcfPerformance.Entities` */ export interface DiskInfo { /** xs:long */ Capacity?: number; /** xs:string */ DiskPath?: string; /** xs:long */ FreeSpace?: number; /** xs:long */ UsedSpace?: number; }