UNPKG

n8n-nodes-arubacentralnextgen

Version:

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

27 lines (26 loc) 893 B
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; /** * Get All NTP Profiles * Returns all NTP server profiles, optionally filtered. */ export declare function getAllNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Get NTP Profile * Returns a specific NTP profile by name. */ export declare function getNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Create NTP Profile * Creates a new NTP server profile. */ export declare function createNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Update NTP Profile * Updates an existing NTP server profile. */ export declare function updateNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>; /** * Delete NTP Profile * Deletes an NTP server profile by name. */ export declare function deleteNTP(this: IExecuteFunctions): Promise<INodeExecutionData[]>;