aruba-admin
Version:
A TypeScript/Node.js library for interacting with Aruba Cloud's SOAP API with full type support and multi-region connectivity.
24 lines (23 loc) • 781 B
TypeScript
import { ProductInfo } from "./ProductInfo";
import { BillingType } from "./BillingType";
import { LoadBalancerContactsId } from "./LoadBalancerContactsId";
import { TemplateLicense } from "./TemplateLicense";
/**
* VirtualMachineResourcesProducts
* @targetNSAlias `tns`
* @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.WsEndUser.Business.Entities`
*/
export interface VirtualMachineResourcesProducts {
/** ProductInfo */
ProductInfo?: ProductInfo;
/** ResourceType */
ResourceType?: BillingType;
/** TemplateIDs */
TemplateIDs?: LoadBalancerContactsId;
/** TemplateLicense */
TemplateLicense?: TemplateLicense;
/** xs:int */
VMMServerTypeID?: number;
/** xs:int */
VirtualMachinePricingTypeID?: number;
}