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.

27 lines (26 loc) 633 B
import { ProductInfo } from "./ProductInfo"; /** * CPU * @targetNSAlias `q4` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.WsEndUser.Business.Entities` */ export interface Cpu { /** xs:int */ FreeQuantity?: number; /** xs:boolean */ IsEncrypted?: boolean; /** xs:int */ NewQuantity?: number; /** xs:int */ ProductID?: number; /** ProductInfo */ ProductInfo?: ProductInfo; /** xs:int */ Quantity?: number; /** xs:int */ ResourceID?: number; /** xs:int */ ResourceProductId?: number; /** xs:string */ ResourceProductType?: string; }