n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
93 lines (92 loc) • 2.37 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDetailDescription = void 0;
/**
* Parameters for getDetail operation
*/
exports.getDetailDescription = [
{
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: ['getDetail'],
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: ['getDetail'],
resource: ['gateway'],
domain: ['monitoring'],
returnAll: [false],
},
},
},
{
displayName: 'Serial',
name: 'serial',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['gateway'],
domain: ['monitoring'],
operation: ['getDetail'],
},
},
description: 'Serial number of gateway to be queried',
},
{
displayName: 'Timerange',
name: 'timerange',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['gateway'],
domain: ['monitoring'],
operation: ['getDetail'],
},
},
description: 'Time range for Uplink stats information. 3H = 3 Hours, 1D = 1 Day, 1W = 1 Week, 1M = 1Month, 3M = 3Months.',
options: [
{
name: '3H',
value: '3H',
},
{
name: '1D',
value: '1D',
},
{
name: '1W',
value: '1W',
},
{
name: '1M',
value: '1M',
},
{
name: '3M',
value: '3M',
},
],
},
];