n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
43 lines (41 loc) • 971 B
text/typescript
// getSyncedApList.descriptions.ts
import { INodeProperties } from 'n8n-workflow';
export const getSyncedApListDescription: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
domain: ['keymanagement'],
resource: ['syncedaplist'],
},
},
options: [
{
name: 'Get Synced AP List',
value: 'getSyncedApList',
description: 'Get list of Access Points that have keys synchronized for a specific client',
action: 'Get synced AP list',
},
],
default: 'getSyncedApList',
},
{
displayName: 'Client MAC Address',
name: 'client_mac',
type: 'string',
required: true,
displayOptions: {
show: {
domain: ['keymanagement'],
resource: ['syncedaplist'],
operation: ['getSyncedApList'],
},
},
default: '',
placeholder: '00:11:22:33:44:55',
description: 'MAC address of the client to get synced AP list for',
},
];