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