UNPKG

n8n-nodes-arubacentral

Version:

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

42 lines (36 loc) 1.37 kB
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; import { apiRequest } from '../../../../helpers/apiRequest'; import { logger } from '../../../../helpers/logger'; import { handleApiError } from '../../../../helpers/errorHandler'; /** * Get CX Switch Stack Port Details * * GET /monitoring/v1/cx_switch_stacks/{stack_id}/ports * * @param this The n8n execution context * @returns Formatted API response */ export async function getCxSwitchStackPortDetails( this: IExecuteFunctions, ): Promise<INodeExecutionData[]> { try { // Get parameters const stackId = this.getNodeParameter('stack_id', 0) as string; logger.debug( 'monitoring:switch:getCxSwitchStackPortDetails', `Getting port details for CX switch stack with ID: ${stackId}`, ); // Make API request const endpoint = `/monitoring/v1/cx_switch_stacks/${encodeURIComponent(stackId)}/ports`; const responseData = await apiRequest.call(this, 'GET', endpoint); logger.debug( 'monitoring:switch:getCxSwitchStackPortDetails', 'Successfully retrieved CX switch stack port details', ); // Return formatted response return [{ json: responseData }]; } catch (error) { logger.error('monitoring:switch:getCxSwitchStackPortDetails:error', { message: error.message }); return handleApiError.call(this, error, 'Failed to get CX switch stack port details'); } }