n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
69 lines (68 loc) • 1.8 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getComplianceVersionDescription = void 0;
/**
* Parameters for the getComplianceVersion operation
*/
exports.getComplianceVersionDescription = [
{
displayName: 'Device Type',
name: 'deviceType',
type: 'options',
required: true,
default: 'IAP',
description: 'Type of device to get compliance 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: ['getComplianceVersion'],
resource: ['upgrade'],
domain: ['firmware'],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
operation: ['getComplianceVersion'],
resource: ['upgrade'],
domain: ['firmware'],
},
},
options: [
{
displayName: 'Group',
name: 'group',
type: 'string',
default: '',
description: 'Filter by group name',
},
],
},
];