n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
52 lines (51 loc) • 1.56 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getClientMatchSteerHistoryDescription = void 0;
/**
* Parameters for getClientMatchSteerHistory operation
*/
exports.getClientMatchSteerHistoryDescription = [
{
displayName: 'Serial',
name: 'serial',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['ap'],
domain: ['monitoring'],
operation: ['getClientMatchSteerHistory'],
},
},
description: 'Serial Number of AP to get client steering history for. Note: This is an undocumented API that may not be available on all clusters or APs.',
},
{
displayName: 'From Timestamp',
name: 'from_timestamp',
type: 'number',
default: '',
displayOptions: {
show: {
resource: ['ap'],
domain: ['monitoring'],
operation: ['getClientMatchSteerHistory'],
},
},
description: 'Start time for steering history (epoch timestamp)',
},
{
displayName: 'To Timestamp',
name: 'to_timestamp',
type: 'number',
default: '',
displayOptions: {
show: {
resource: ['ap'],
domain: ['monitoring'],
operation: ['getClientMatchSteerHistory'],
},
},
description: 'End time for steering history (epoch timestamp)',
},
];