n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
72 lines (71 loc) • 1.95 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.listSwitchStacksDescription = void 0;
/**
* Parameters for listSwitchStacks operation
*/
exports.listSwitchStacksDescription = [
{
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: ['listSwitchStacks'],
resource: ['switch'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
},
displayOptions: {
show: {
operation: ['listSwitchStacks'],
resource: ['switch'],
domain: ['monitoring'],
returnAll: [false],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
operation: ['listSwitchStacks'],
resource: ['switch'],
domain: ['monitoring'],
},
},
options: [
{
displayName: 'Hostname',
name: 'hostname',
type: 'string',
default: '',
description: 'Filter by stack hostname',
},
{
displayName: 'Group',
name: 'group',
type: 'string',
default: '',
description: 'Filter by group name',
},
],
},
];