@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
29 lines (26 loc) • 1.85 kB
text/typescript
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTSamplingIntervalDiagnostics } from "./dt_sampling_interval_diagnostics";
import type { DTServerDiagnosticsSummary } from "./dt_server_diagnostics_summary";
import type { DTSubscriptionDiagnostics } from "./dt_subscription_diagnostics";
import type { UASamplingIntervalDiagnosticsArray } from "./ua_sampling_interval_diagnostics_array";
import type { UAServerDiagnosticsSummary } from "./ua_server_diagnostics_summary";
import type { UASessionsDiagnosticsSummary } from "./ua_sessions_diagnostics_summary";
import type { UASubscriptionDiagnosticsArray } from "./ua_subscription_diagnostics_array";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |ServerDiagnosticsType i=2020 |
* |isAbstract |false |
*/
export interface UAServerDiagnostics_Base {
serverDiagnosticsSummary: UAServerDiagnosticsSummary<DTServerDiagnosticsSummary>;
samplingIntervalDiagnosticsArray?: UASamplingIntervalDiagnosticsArray<DTSamplingIntervalDiagnostics[]>;
subscriptionDiagnosticsArray: UASubscriptionDiagnosticsArray<DTSubscriptionDiagnostics[]>;
sessionsDiagnosticsSummary: UASessionsDiagnosticsSummary;
enabledFlag: UAProperty<boolean, DataType.Boolean>;
}
export interface UAServerDiagnostics extends UAObject, UAServerDiagnostics_Base {}