n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
61 lines (60 loc) • 1.55 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.checkVersionDescription = void 0;
/**
* Parameters for the checkVersion operation
*/
exports.checkVersionDescription = [
{
displayName: 'Device Type',
name: 'deviceType',
type: 'options',
required: true,
default: 'IAP',
description: 'Type of device to check firmware version for',
options: [
{
name: 'Access Points (IAP)',
value: 'IAP',
},
{
name: 'MAS Switches',
value: 'MAS',
},
{
name: 'Aruba Switches',
value: 'HP',
},
{
name: 'CX Switches',
value: 'CX',
},
{
name: 'Controllers',
value: 'CONTROLLER',
},
],
displayOptions: {
show: {
operation: ['checkVersion'],
resource: ['version'],
domain: ['firmware'],
},
},
},
{
displayName: 'Firmware Version',
name: 'firmwareVersion',
type: 'string',
required: true,
default: '',
description: 'The firmware version to check',
displayOptions: {
show: {
operation: ['checkVersion'],
resource: ['version'],
domain: ['firmware'],
},
},
},
];