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.

32 lines (31 loc) 851 B
import { AddonLicenses } from "./AddonLicenses"; import { LicenseKeys } from "./LicenseKeys"; /** * PleskLicense * @targetNSAlias `tns` * @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Provisioning.Entities` */ export interface PleskLicense { /** AddonLicenses */ AddonLicenses?: AddonLicenses; /** xs:dateTime */ CreationDate?: Date; /** xs:string */ LicenseCode?: string; /** xs:string */ LicenseDescription?: string; /** xs:int */ LicenseID?: number; /** LicenseKeys */ LicenseKeys?: LicenseKeys; /** xs:int */ LicensePleskTypeID?: number; /** LicenseStatusTypes|xs:string|All,Creating,Active,Deleting */ LicenseStatus?: string; /** xs:int */ ProductID?: number; /** xs:int */ Quantity?: number; /** xs:int */ ResourceID?: number; }