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) • 635 B
TypeScript
import { IpAddresses } from "./IpAddresses";
import { VLan } from "./VLan";
/**
* NetworkAdapter
* @targetNSAlias `tns`
* @targetNamespace `http://schemas.datacontract.org/2004/07/Aruba.Cloud.Provisioning.Entities`
*/
export interface NetworkAdapter {
/** IPAddresses */
IPAddresses?: IpAddresses;
/** xs:int */
Id?: number;
/** xs:string */
MacAddress?: string;
/** NetworkAdapterTypes|xs:string|Ethernet0,Ethernet1,Ethernet2 */
NetworkAdapterType?: string;
/** ReconnectableIPs */
ReconnectableIPs?: IpAddresses;
/** xs:int */
ServerId?: number;
/** VLan */
VLan?: VLan;
}