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.

19 lines (18 loc) 460 B
import { BillingType } from "./BillingType"; /** * PlannedChange * @targetNSAlias `tns` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Provisioning.Entities.PrivateCloud` */ export interface PlannedChange { /** xs:dateTime */ EffectiveDate?: Date; /** xs:int */ NewProductID?: number; /** xs:int */ Quantity?: number; /** xs:int */ ResourceID?: number; /** Status */ Status?: BillingType; }