n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
54 lines (53 loc) • 1.4 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getInsightsSwitchDescription = void 0;
/**
* Parameters for getInsightsSwitch operation
*/
exports.getInsightsSwitchDescription = [
{
displayName: 'Switch Serial',
name: 'sw_serial',
type: 'string',
required: true,
default: '',
description: 'Switch serial number to get insights for',
displayOptions: {
show: {
operation: ['getInsightsSwitch'],
resource: ['insights'],
domain: ['aiops'],
},
},
},
{
displayName: 'From',
name: 'from',
type: 'dateTime',
required: true,
default: '',
description: 'Start time for data retrieval',
displayOptions: {
show: {
operation: ['getInsightsSwitch'],
resource: ['insights'],
domain: ['aiops'],
},
},
},
{
displayName: 'To',
name: 'to',
type: 'dateTime',
required: true,
default: '',
description: 'End time for data retrieval',
displayOptions: {
show: {
operation: ['getInsightsSwitch'],
resource: ['insights'],
domain: ['aiops'],
},
},
},
];