n8n-nodes-arubacentralnextgen
Version:
n8n community node for Aruba Central NextGen API integration with modern monitoring and management capabilities
102 lines (101 loc) • 3.51 kB
TypeScript
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
* Get all ethernet interface profiles
*/
export declare function getAllEthernetInterface(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific ethernet interface profile
*/
export declare function getEthernetInterface(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create an ethernet interface profile
*/
export declare function createEthernetInterface(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update an ethernet interface profile
*/
export declare function updateEthernetInterface(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete an ethernet interface profile
*/
export declare function deleteEthernetInterface(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get all port channel profiles
*/
export declare function getAllPortChannel(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific port channel profile
*/
export declare function getPortChannel(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create a port channel profile
*/
export declare function createPortChannel(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update a port channel profile
*/
export declare function updatePortChannel(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete a port channel profile
*/
export declare function deletePortChannel(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get all LACP profiles
*/
export declare function getAllLACP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific LACP profile
*/
export declare function getLACP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create a LACP profile
*/
export declare function createLACP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update a LACP profile
*/
export declare function updateLACP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete a LACP profile
*/
export declare function deleteLACP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get all loopback interface profiles
*/
export declare function getAllLoopback(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific loopback interface profile
*/
export declare function getLoopback(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create a loopback interface profile
*/
export declare function createLoopback(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update a loopback interface profile
*/
export declare function updateLoopback(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete a loopback interface profile
*/
export declare function deleteLoopback(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get all LLDP profiles
*/
export declare function getAllLLDP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific LLDP profile
*/
export declare function getLLDP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create a LLDP profile
*/
export declare function createLLDP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update a LLDP profile
*/
export declare function updateLLDP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete a LLDP profile
*/
export declare function deleteLLDP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;