UNPKG

@c8y/ngx-components

Version:

Angular modules for Cumulocity IoT applications

37 lines 1.01 kB
export declare const NEW_SERVER_ID = "new"; export interface OpcuaServer { name: string; id: string; gatewayId?: string; subtitle?: string; connectionStatus?: any; enabeled?: any; config: OpcuaServerConfig; quickInfo?: { padlock?: string; padlockMsg?: string; }; active: true | false; } export interface OpcuaServerConfig { securityMode: string; keystorePass?: any; keystoreFilename?: string; keystoreBinaryId?: any; certificatePass?: any; userIdentityMode?: string; serverUrl?: string; userName?: string; userPassword?: string; passwordEncrypted?: boolean; rescanCron?: any; timeout?: number; autoReconnect?: boolean; targetConnectionState?: 'enabled' | 'disabled' | null; statusCheckInterval?: number; valid?: boolean; autoScanAddressSpace?: boolean; partialAddressScanNodeIds?: Array<string>; partialAddressScan?: boolean; } //# sourceMappingURL=opcua-server.interface.d.ts.map