n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
19 lines (18 loc) • 675 B
TypeScript
import { getNetworks } from './operations/getNetworks.methods';
import { getNetwork_name } from './operations/getNetwork_name.methods';
import { getBandwidth_usage } from './operations/getBandwidth_usage.methods';
/**
* All operations available for the network resource
*/
export declare const networkOperations: {
getNetworks: typeof getNetworks;
getNetwork_name: typeof getNetwork_name;
getBandwidth_usage: typeof getBandwidth_usage;
};
/**
* Check if a network operation exists
*
* @param operation Operation name to check
* @returns boolean indicating if the operation exists
*/
export declare function hasNetworkOperation(operation: string): boolean;