n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
79 lines (78 loc) • 2.11 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getClientsDescription = void 0;
/**
* Parameters for getClients operation
*/
exports.getClientsDescription = [
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
operation: ['getClients'],
resource: ['gateway'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
},
displayOptions: {
show: {
operation: ['getClients'],
resource: ['gateway'],
domain: ['monitoring'],
returnAll: [false],
},
},
},
{
displayName: 'Serial',
name: 'serial',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['gateway'],
domain: ['monitoring'],
operation: ['getClients'],
},
},
description: 'Serial number of gateway to be queried',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['gateway'],
domain: ['monitoring'],
operation: ['getClients'],
},
},
options: [
{
displayName: 'Reservation',
name: 'reservation',
type: 'boolean',
default: false,
description: 'Flag to turn on/off listing DHCP reservations(if any)',
},
],
},
];