n8n-nodes-arubacentralnextgen
Version:
n8n community node for Aruba Central NextGen API integration with modern monitoring and management capabilities
42 lines (41 loc) • 1.36 kB
TypeScript
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
* Get all DHCP profiles
*/
export declare function getAllDHCP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific DHCP profile by name
*/
export declare function getDHCP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create a new DHCP profile
*/
export declare function createDHCP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update an existing DHCP profile
*/
export declare function updateDHCP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete a DHCP profile
*/
export declare function deleteDHCP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get all QoS profiles
*/
export declare function getAllQoS(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get a specific QoS profile by name
*/
export declare function getQoS(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create a new QoS profile
*/
export declare function createQoS(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update an existing QoS profile
*/
export declare function updateQoS(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete a QoS profile
*/
export declare function deleteQoS(this: IExecuteFunctions): Promise<INodeExecutionData[]>;