UNPKG

n8n-nodes-arubacentralnextgen

Version:

n8n community node for Aruba Central NextGen API integration with modern monitoring and management capabilities

23 lines (22 loc) 770 B
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; /** * AP System Profile Configuration Methods * API Reference: https://developer.arubanetworks.com/central/reference/ * Base Path: /configuration/v1 */ /** * Get all AP system profiles */ export declare function getAllAPProfiles(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Create an AP system profile */ export declare function createAPProfile(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Update an AP system profile */ export declare function updateAPProfile(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Delete an AP system profile */ export declare function deleteAPProfile(this: IExecuteFunctions): Promise<INodeExecutionData[]>;