UNPKG

n8n-nodes-arubacentral

Version:

n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities

42 lines (41 loc) 1.11 kB
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow'; export declare class ArubaCentralOAuth2Api implements ICredentialType { name: string; displayName: string; documentationUrl: string; __defaults: { tokenType: string; tokenExpiredStatusCode: number; tokenPropertyName: string; }; properties: ({ displayName: string; name: string; type: NodePropertyTypes; default: string; placeholder: string; required: boolean; description: string; typeOptions?: undefined; } | { displayName: string; name: string; type: NodePropertyTypes; default: string; required: boolean; description: string; placeholder?: undefined; typeOptions?: undefined; } | { displayName: string; name: string; type: NodePropertyTypes; typeOptions: { password: boolean; }; default: string; required: boolean; description: string; placeholder?: undefined; })[]; }