n8n-nodes-arubacentralnextgen
Version:
n8n community node for Aruba Central NextGen API integration with modern monitoring and management capabilities
27 lines (26 loc) • 979 B
TypeScript
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
/**
* Get All Dump Server Profiles
* Returns all Dump Server profiles, optionally filtered.
*/
export declare function getAllDumpServer(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Get Dump Server Profile
* Returns a specific Dump Server profile by name.
*/
export declare function getDumpServer(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Create Dump Server Profile
* Creates a new Dump Server profile.
*/
export declare function createDumpServer(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Update Dump Server Profile
* Updates an existing Dump Server profile.
*/
export declare function updateDumpServer(this: IExecuteFunctions): Promise<INodeExecutionData[]>;
/**
* Delete Dump Server Profile
* Deletes a Dump Server profile by name.
*/
export declare function deleteDumpServer(this: IExecuteFunctions): Promise<INodeExecutionData[]>;