n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
51 lines (50 loc) • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getStatusDescription = void 0;
/**
* Parameters for the getStatus operation
*/
exports.getStatusDescription = [
{
displayName: 'Identifier Type',
name: 'identifierType',
type: 'options',
options: [
{
name: 'Swarm ID',
value: 'swarm_id',
description: 'Use swarm ID as identifier',
},
{
name: 'Serial Number',
value: 'serial',
description: 'Use device serial number as identifier',
},
],
default: 'serial',
required: true,
description: 'Type of identifier to use',
displayOptions: {
show: {
operation: ['getStatus'],
resource: ['status'],
domain: ['firmware'],
},
},
},
{
displayName: 'Identifier',
name: 'identifier',
type: 'string',
default: '',
required: true,
description: 'Value of the identifier (swarm ID or serial number)',
displayOptions: {
show: {
operation: ['getStatus'],
resource: ['status'],
domain: ['firmware'],
},
},
},
];