UNPKG

n8n-nodes-arubacentral

Version:

n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities

34 lines (33 loc) 2.27 kB
/** * Operations available in the aiops domain */ export declare const aiopsOperations: { connectivity: { getConnectivityGlobal: typeof import("./connectivity/operations/getConnectivityGlobal.methods").getConnectivityGlobal; getConnectivitySite: typeof import("./connectivity/operations/getConnectivitySite.methods").getConnectivitySite; getConnectivityGroup: typeof import("./connectivity/operations/getConnectivityGroup.methods").getConnectivityGroup; }; insights: { getInsightsNetwork: typeof import("./insights/operations/getInsightsNetwork.methods").getInsightsNetwork; getInsightsSite: typeof import("./insights/operations/getInsightsSite.methods").getInsightsSite; getInsightsAp: typeof import("./insights/operations/getInsightsAp.methods").getInsightsAp; getInsightsClient: typeof import("./insights/operations/getInsightsClient.methods").getInsightsClient; getInsightsGateway: typeof import("./insights/operations/getInsightsGateway.methods").getInsightsGateway; getInsightsSwitch: typeof import("./insights/operations/getInsightsSwitch.methods").getInsightsSwitch; }; insightDetails: { getInsightDetailsNetwork: typeof import("./insightDetails/operations/getInsightDetailsNetwork.methods").getInsightDetailsNetwork; getInsightDetailsSite: typeof import("./insightDetails/operations/getInsightDetailsSite.methods").getInsightDetailsSite; getInsightDetailsAp: typeof import("./insightDetails/operations/getInsightDetailsAp.methods").getInsightDetailsAp; getInsightDetailsClient: typeof import("./insightDetails/operations/getInsightDetailsClient.methods").getInsightDetailsClient; getInsightDetailsGateway: typeof import("./insightDetails/operations/getInsightDetailsGateway.methods").getInsightDetailsGateway; getInsightDetailsSwitch: typeof import("./insightDetails/operations/getInsightDetailsSwitch.methods").getInsightDetailsSwitch; }; }; /** * Check if an operation exists in the aiops domain * @param resource Resource name * @param operation Operation name * @returns boolean indicating if the operation exists */ export declare function hasOperation(resource: string, operation: string): boolean;