n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
65 lines (64 loc) • 1.65 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSiteDetailsDescription = void 0;
/**
* Parameters for getSiteDetails operation
*/
exports.getSiteDetailsDescription = [
{
displayName: 'Lookup By',
name: 'lookupBy',
type: 'options',
options: [
{
name: 'Site ID',
value: 'id',
},
{
name: 'Site Name',
value: 'name',
},
],
default: 'id',
description: 'How to identify the site',
displayOptions: {
show: {
operation: ['getSiteDetails'],
resource: ['site'],
domain: ['monitoring'],
},
},
},
{
displayName: 'Site ID',
name: 'site_id',
type: 'number',
required: true,
default: '',
description: 'ID of the site to get details for',
displayOptions: {
show: {
operation: ['getSiteDetails'],
resource: ['site'],
domain: ['monitoring'],
lookupBy: ['id'],
},
},
},
{
displayName: 'Site Name',
name: 'site_name',
type: 'string',
required: true,
default: '',
description: 'Name of the site to get details for',
displayOptions: {
show: {
operation: ['getSiteDetails'],
resource: ['site'],
domain: ['monitoring'],
lookupBy: ['name'],
},
},
},
];