n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
61 lines (60 loc) • 1.82 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPortsBandwidthUsageDescription = void 0;
/**
* Parameters for getPortsBandwidthUsage operation
*/
exports.getPortsBandwidthUsageDescription = [
{
displayName: 'Serial',
name: 'serial',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['gateway'],
domain: ['monitoring'],
operation: ['getPortsBandwidthUsage'],
},
},
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: ['getPortsBandwidthUsage'],
},
},
options: [
{
displayName: 'From Timestamp',
name: 'from_timestamp',
type: 'number',
default: '',
description: 'Need information from this timestamp. Timestamp is epoch in seconds.',
},
{
displayName: 'To Timestamp',
name: 'to_timestamp',
type: 'number',
default: '',
description: 'Need information to this timestamp. Timestamp is epoch in seconds.',
},
{
displayName: 'Port',
name: 'port',
type: 'string',
default: '',
description: 'Filter by Port (example GE0/0/1)',
},
],
},
];