@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
25 lines (24 loc) • 1.31 kB
TypeScript
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base";
import type { UAString } from "node-opcua-basic-types";
import type { StatusCode } from "node-opcua-status-code";
import type { DataType } from "node-opcua-variant";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |KeyCredentialConfigurationType i=18001 |
* |isAbstract |false |
*/
export interface UAKeyCredentialConfiguration_Base {
resourceUri: UAProperty<UAString, DataType.String>;
profileUri: UAProperty<UAString, DataType.String>;
endpointUrls?: UAProperty<UAString[], DataType.String>;
credentialId?: UAProperty<UAString, DataType.String>;
serviceStatus?: UAProperty<StatusCode, DataType.StatusCode>;
getEncryptingKey?: UAMethod;
updateCredential?: UAMethod;
deleteCredential?: UAMethod;
}
export interface UAKeyCredentialConfiguration extends UAObject, UAKeyCredentialConfiguration_Base {
}