n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
71 lines (70 loc) • 1.99 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getNetworksDescription = void 0;
/**
* Parameters for getNetworks operation
*/
exports.getNetworksDescription = [
{
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: ['getNetworks'],
resource: ['network'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
},
displayOptions: {
show: {
operation: ['getNetworks'],
resource: ['network'],
domain: ['monitoring'],
returnAll: [false],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['network'],
domain: ['monitoring'],
operation: ['getNetworks'],
},
},
options: [
{
displayName: 'Calculate_client_count',
name: 'calculate_client_count',
type: 'boolean',
default: false,
description: 'Whether to calculate client count per SSID',
},
{
displayName: 'Sort',
name: 'sort',
type: 'string',
default: '',
description: "Sort parameter may be one of +essid, -essid. Default is '+essid'",
},
],
},
];