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.

23 lines (22 loc) 565 B
import { VirtualDisks2 } from "./VirtualDisks2"; /** * server * @targetNSAlias `q183` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Provisioning.Entities` */ export interface Server2 { /** xs:int */ CPUQuantity?: number; /** xs:int */ OpenStackFlavorID?: number; /** xs:int */ RAMQuantity?: number; /** xs:boolean */ RestartAfterExecuted?: boolean; /** xs:int */ ServerId?: number; /** xs:int */ SmartVMWarePackageID?: number; /** VirtualDisks */ VirtualDisks?: VirtualDisks2; }