node-opcua-types 2.154.0 → 2.155.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_generated_opcua_types.d.ts +819 -225
- package/dist/_generated_opcua_types.js +4379 -2111
- package/dist/_generated_opcua_types.js.map +1 -1
- package/package.json +9 -9
- package/source/_generated_opcua_types.ts +5168 -2412
|
@@ -120,6 +120,44 @@ export declare class SimpleAttributeOperand extends FilterOperand {
|
|
|
120
120
|
decode(stream: BinaryStream): void;
|
|
121
121
|
get schema(): IStructuredTypeSchema;
|
|
122
122
|
}
|
|
123
|
+
export interface ActionMethodDataTypeOptions {
|
|
124
|
+
objectId?: (NodeIdLike | null);
|
|
125
|
+
methodId?: (NodeIdLike | null);
|
|
126
|
+
}
|
|
127
|
+
export declare class ActionMethodDataType extends ExtensionObject {
|
|
128
|
+
static get schema(): IStructuredTypeSchema;
|
|
129
|
+
static possibleFields: string[];
|
|
130
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
131
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
132
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
133
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
134
|
+
objectId: NodeId;
|
|
135
|
+
methodId: NodeId;
|
|
136
|
+
constructor(options?: ActionMethodDataTypeOptions | null);
|
|
137
|
+
encode(stream: OutputBinaryStream): void;
|
|
138
|
+
decode(stream: BinaryStream): void;
|
|
139
|
+
get schema(): IStructuredTypeSchema;
|
|
140
|
+
}
|
|
141
|
+
export interface ActionTargetDataTypeOptions {
|
|
142
|
+
actionTargetId?: UInt16;
|
|
143
|
+
name?: UAString;
|
|
144
|
+
description?: (LocalizedTextLike | null);
|
|
145
|
+
}
|
|
146
|
+
export declare class ActionTargetDataType extends ExtensionObject {
|
|
147
|
+
static get schema(): IStructuredTypeSchema;
|
|
148
|
+
static possibleFields: string[];
|
|
149
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
150
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
151
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
152
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
153
|
+
actionTargetId: UInt16;
|
|
154
|
+
name: UAString;
|
|
155
|
+
description: LocalizedText;
|
|
156
|
+
constructor(options?: ActionTargetDataTypeOptions | null);
|
|
157
|
+
encode(stream: OutputBinaryStream): void;
|
|
158
|
+
decode(stream: BinaryStream): void;
|
|
159
|
+
get schema(): IStructuredTypeSchema;
|
|
160
|
+
}
|
|
123
161
|
export interface RequestHeaderOptions {
|
|
124
162
|
authenticationToken?: (NodeIdLike | null);
|
|
125
163
|
timestamp?: DateTime;
|
|
@@ -2824,6 +2862,30 @@ export declare class DoubleComplexNumberType extends ExtensionObject {
|
|
|
2824
2862
|
decode(stream: BinaryStream): void;
|
|
2825
2863
|
get schema(): IStructuredTypeSchema;
|
|
2826
2864
|
}
|
|
2865
|
+
export interface DtlsPubSubConnectionDataTypeOptions {
|
|
2866
|
+
clientCipherSuite?: UAString;
|
|
2867
|
+
serverCipherSuites?: UAString[] | null;
|
|
2868
|
+
zeroRTT?: UABoolean;
|
|
2869
|
+
certificateGroupId?: (NodeIdLike | null);
|
|
2870
|
+
verifyClientCertificate?: UABoolean;
|
|
2871
|
+
}
|
|
2872
|
+
export declare class DtlsPubSubConnectionDataType extends ExtensionObject {
|
|
2873
|
+
static get schema(): IStructuredTypeSchema;
|
|
2874
|
+
static possibleFields: string[];
|
|
2875
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
2876
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
2877
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
2878
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
2879
|
+
clientCipherSuite: UAString;
|
|
2880
|
+
serverCipherSuites: UAString[] | null;
|
|
2881
|
+
zeroRTT: UABoolean;
|
|
2882
|
+
certificateGroupId: NodeId;
|
|
2883
|
+
verifyClientCertificate: UABoolean;
|
|
2884
|
+
constructor(options?: DtlsPubSubConnectionDataTypeOptions | null);
|
|
2885
|
+
encode(stream: OutputBinaryStream): void;
|
|
2886
|
+
decode(stream: BinaryStream): void;
|
|
2887
|
+
get schema(): IStructuredTypeSchema;
|
|
2888
|
+
}
|
|
2827
2889
|
export interface ElementOperandOptions extends FilterOperandOptions {
|
|
2828
2890
|
index?: UInt32;
|
|
2829
2891
|
}
|
|
@@ -3506,6 +3568,7 @@ export declare enum IdentityCriteriaType {
|
|
|
3506
3568
|
AuthenticatedUser = 6,
|
|
3507
3569
|
Application = 7,
|
|
3508
3570
|
X509Subject = 8,
|
|
3571
|
+
TrustedApplication = 9,
|
|
3509
3572
|
Invalid = 4294967295
|
|
3510
3573
|
}
|
|
3511
3574
|
export declare const _enumerationIdentityCriteriaType: Enum;
|
|
@@ -3546,237 +3609,806 @@ export declare class IssuedIdentityToken extends UserIdentityToken {
|
|
|
3546
3609
|
decode(stream: BinaryStream): void;
|
|
3547
3610
|
get schema(): IStructuredTypeSchema;
|
|
3548
3611
|
}
|
|
3549
|
-
export
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
export declare enum JsonDataSetMessageContentMask {
|
|
3561
|
-
None = 0,
|
|
3562
|
-
DataSetWriterId = 1,
|
|
3563
|
-
MetaDataVersion = 2,
|
|
3564
|
-
SequenceNumber = 4,
|
|
3565
|
-
Timestamp = 8,
|
|
3566
|
-
Status = 16,
|
|
3567
|
-
MessageType = 32,
|
|
3568
|
-
DataSetWriterName = 64,
|
|
3569
|
-
ReversibleFieldEncoding = 128,
|
|
3570
|
-
PublisherId = 256,
|
|
3571
|
-
WriterGroupName = 512,
|
|
3572
|
-
MinorVersion = 1024
|
|
3573
|
-
}
|
|
3574
|
-
export declare const _enumerationJsonDataSetMessageContentMask: Enum;
|
|
3575
|
-
export interface JsonDataSetReaderMessageDataTypeOptions extends DataSetReaderMessageDataTypeOptions {
|
|
3576
|
-
networkMessageContentMask?: JsonNetworkMessageContentMask;
|
|
3577
|
-
dataSetMessageContentMask?: JsonDataSetMessageContentMask;
|
|
3612
|
+
export interface JsonActionMetaDataMessageOptions {
|
|
3613
|
+
messageId?: UAString;
|
|
3614
|
+
messageType?: UAString;
|
|
3615
|
+
publisherId?: UAString;
|
|
3616
|
+
dataSetWriterId?: UInt16;
|
|
3617
|
+
dataSetWriterName?: UAString;
|
|
3618
|
+
timestamp?: DateTime;
|
|
3619
|
+
actionTargets?: ActionTargetDataTypeOptions[] | null;
|
|
3620
|
+
request?: DataSetMetaDataTypeOptions;
|
|
3621
|
+
response?: DataSetMetaDataTypeOptions;
|
|
3622
|
+
actionMethods?: ActionMethodDataTypeOptions[] | null;
|
|
3578
3623
|
}
|
|
3579
|
-
export declare class
|
|
3624
|
+
export declare class JsonActionMetaDataMessage extends ExtensionObject {
|
|
3580
3625
|
static get schema(): IStructuredTypeSchema;
|
|
3581
3626
|
static possibleFields: string[];
|
|
3582
3627
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3583
3628
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3584
3629
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3585
3630
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3631
|
+
messageId: UAString;
|
|
3632
|
+
messageType: UAString;
|
|
3633
|
+
publisherId: UAString;
|
|
3634
|
+
dataSetWriterId: UInt16;
|
|
3635
|
+
dataSetWriterName: UAString;
|
|
3636
|
+
timestamp: DateTime;
|
|
3637
|
+
actionTargets: ActionTargetDataType[] | null;
|
|
3638
|
+
request: DataSetMetaDataType;
|
|
3639
|
+
response: DataSetMetaDataType;
|
|
3640
|
+
actionMethods: ActionMethodDataType[] | null;
|
|
3641
|
+
constructor(options?: JsonActionMetaDataMessageOptions | null);
|
|
3589
3642
|
encode(stream: OutputBinaryStream): void;
|
|
3590
3643
|
decode(stream: BinaryStream): void;
|
|
3591
|
-
setNetworkMessageContentMask(value: any): JsonNetworkMessageContentMask;
|
|
3592
|
-
setDataSetMessageContentMask(value: any): JsonDataSetMessageContentMask;
|
|
3593
3644
|
get schema(): IStructuredTypeSchema;
|
|
3594
3645
|
}
|
|
3595
|
-
export interface
|
|
3596
|
-
|
|
3646
|
+
export interface JsonActionNetworkMessageOptions {
|
|
3647
|
+
messageId?: UAString;
|
|
3648
|
+
messageType?: UAString;
|
|
3649
|
+
publisherId?: UAString;
|
|
3650
|
+
timestamp?: DateTime;
|
|
3651
|
+
responseAddress?: UAString;
|
|
3652
|
+
correlationData?: ByteString;
|
|
3653
|
+
requestorId?: UAString;
|
|
3654
|
+
timeoutHint?: Double;
|
|
3655
|
+
messages?: (ExtensionObject | null)[] | null;
|
|
3597
3656
|
}
|
|
3598
|
-
export declare class
|
|
3657
|
+
export declare class JsonActionNetworkMessage extends ExtensionObject {
|
|
3599
3658
|
static get schema(): IStructuredTypeSchema;
|
|
3600
3659
|
static possibleFields: string[];
|
|
3601
3660
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3602
3661
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3603
3662
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3604
3663
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3605
|
-
|
|
3606
|
-
|
|
3664
|
+
messageId: UAString;
|
|
3665
|
+
messageType: UAString;
|
|
3666
|
+
publisherId: UAString;
|
|
3667
|
+
timestamp: DateTime;
|
|
3668
|
+
responseAddress: UAString;
|
|
3669
|
+
correlationData: ByteString;
|
|
3670
|
+
requestorId: UAString;
|
|
3671
|
+
timeoutHint: Double;
|
|
3672
|
+
messages: (ExtensionObject | null)[] | null;
|
|
3673
|
+
constructor(options?: JsonActionNetworkMessageOptions | null);
|
|
3607
3674
|
encode(stream: OutputBinaryStream): void;
|
|
3608
3675
|
decode(stream: BinaryStream): void;
|
|
3609
|
-
setDataSetMessageContentMask(value: any): JsonDataSetMessageContentMask;
|
|
3610
3676
|
get schema(): IStructuredTypeSchema;
|
|
3611
3677
|
}
|
|
3612
|
-
export
|
|
3678
|
+
export declare enum ActionState {
|
|
3679
|
+
Idle = 0,
|
|
3680
|
+
Executing = 1,
|
|
3681
|
+
Done = 2,
|
|
3682
|
+
Invalid = 4294967295
|
|
3613
3683
|
}
|
|
3614
|
-
export declare
|
|
3684
|
+
export declare const _enumerationActionState: Enum;
|
|
3685
|
+
export interface JsonActionRequestMessageOptions {
|
|
3686
|
+
dataSetWriterId?: UInt16;
|
|
3687
|
+
actionTargetId?: UInt16;
|
|
3688
|
+
dataSetWriterName?: UAString;
|
|
3689
|
+
writerGroupName?: UAString;
|
|
3690
|
+
metaDataVersion?: ConfigurationVersionDataTypeOptions;
|
|
3691
|
+
minorVersion?: UInt32;
|
|
3692
|
+
timestamp?: DateTime;
|
|
3693
|
+
messageType?: UAString;
|
|
3694
|
+
requestId?: UInt16;
|
|
3695
|
+
actionState?: ActionState;
|
|
3696
|
+
payload?: (ExtensionObject | null);
|
|
3697
|
+
}
|
|
3698
|
+
export declare class JsonActionRequestMessage extends ExtensionObject {
|
|
3615
3699
|
static get schema(): IStructuredTypeSchema;
|
|
3616
3700
|
static possibleFields: string[];
|
|
3617
3701
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3618
3702
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3619
3703
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3620
3704
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3621
|
-
|
|
3705
|
+
dataSetWriterId: UInt16;
|
|
3706
|
+
actionTargetId: UInt16;
|
|
3707
|
+
dataSetWriterName: UAString;
|
|
3708
|
+
writerGroupName: UAString;
|
|
3709
|
+
metaDataVersion: ConfigurationVersionDataType;
|
|
3710
|
+
minorVersion: UInt32;
|
|
3711
|
+
timestamp: DateTime;
|
|
3712
|
+
messageType: UAString;
|
|
3713
|
+
requestId: UInt16;
|
|
3714
|
+
actionState: ActionState;
|
|
3715
|
+
payload: (ExtensionObject | null);
|
|
3716
|
+
constructor(options?: JsonActionRequestMessageOptions | null);
|
|
3622
3717
|
encode(stream: OutputBinaryStream): void;
|
|
3623
3718
|
decode(stream: BinaryStream): void;
|
|
3719
|
+
setActionState(value: any): ActionState;
|
|
3624
3720
|
get schema(): IStructuredTypeSchema;
|
|
3625
3721
|
}
|
|
3626
|
-
export interface
|
|
3627
|
-
|
|
3722
|
+
export interface PubSubGroupDataTypeOptions {
|
|
3723
|
+
name?: UAString;
|
|
3724
|
+
enabled?: UABoolean;
|
|
3725
|
+
securityMode?: MessageSecurityMode;
|
|
3726
|
+
securityGroupId?: UAString;
|
|
3727
|
+
securityKeyServices?: EndpointDescriptionOptions[] | null;
|
|
3728
|
+
maxNetworkMessageSize?: UInt32;
|
|
3729
|
+
groupProperties?: KeyValuePairOptions[] | null;
|
|
3628
3730
|
}
|
|
3629
|
-
export declare class
|
|
3731
|
+
export declare class PubSubGroupDataType extends ExtensionObject {
|
|
3630
3732
|
static get schema(): IStructuredTypeSchema;
|
|
3631
3733
|
static possibleFields: string[];
|
|
3632
3734
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3633
3735
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3634
3736
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3635
3737
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3636
|
-
|
|
3637
|
-
|
|
3738
|
+
name: UAString;
|
|
3739
|
+
enabled: UABoolean;
|
|
3740
|
+
securityMode: MessageSecurityMode;
|
|
3741
|
+
securityGroupId: UAString;
|
|
3742
|
+
securityKeyServices: EndpointDescription[] | null;
|
|
3743
|
+
maxNetworkMessageSize: UInt32;
|
|
3744
|
+
groupProperties: KeyValuePair[] | null;
|
|
3745
|
+
constructor(options?: PubSubGroupDataTypeOptions | null);
|
|
3638
3746
|
encode(stream: OutputBinaryStream): void;
|
|
3639
3747
|
decode(stream: BinaryStream): void;
|
|
3640
|
-
|
|
3748
|
+
setSecurityMode(value: any): MessageSecurityMode;
|
|
3641
3749
|
get schema(): IStructuredTypeSchema;
|
|
3642
3750
|
}
|
|
3643
|
-
export interface
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3751
|
+
export interface WriterGroupDataTypeOptions extends PubSubGroupDataTypeOptions {
|
|
3752
|
+
writerGroupId?: UInt16;
|
|
3753
|
+
publishingInterval?: Double;
|
|
3754
|
+
keepAliveTime?: Double;
|
|
3755
|
+
priority?: Byte;
|
|
3756
|
+
localeIds?: UAString[] | null;
|
|
3757
|
+
headerLayoutUri?: UAString;
|
|
3758
|
+
transportSettings?: (ExtensionObject | null);
|
|
3759
|
+
messageSettings?: (ExtensionObject | null);
|
|
3760
|
+
dataSetWriters?: DataSetWriterDataTypeOptions[] | null;
|
|
3648
3761
|
}
|
|
3649
|
-
export declare class
|
|
3762
|
+
export declare class WriterGroupDataType extends PubSubGroupDataType {
|
|
3650
3763
|
static get schema(): IStructuredTypeSchema;
|
|
3651
3764
|
static possibleFields: string[];
|
|
3652
3765
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3653
3766
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3654
3767
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3655
3768
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3769
|
+
writerGroupId: UInt16;
|
|
3770
|
+
publishingInterval: Double;
|
|
3771
|
+
keepAliveTime: Double;
|
|
3772
|
+
priority: Byte;
|
|
3773
|
+
localeIds: UAString[] | null;
|
|
3774
|
+
headerLayoutUri: UAString;
|
|
3775
|
+
transportSettings: (ExtensionObject | null);
|
|
3776
|
+
messageSettings: (ExtensionObject | null);
|
|
3777
|
+
dataSetWriters: DataSetWriterDataType[] | null;
|
|
3778
|
+
constructor(options?: WriterGroupDataTypeOptions | null);
|
|
3661
3779
|
encode(stream: OutputBinaryStream): void;
|
|
3662
3780
|
decode(stream: BinaryStream): void;
|
|
3663
3781
|
get schema(): IStructuredTypeSchema;
|
|
3664
3782
|
}
|
|
3665
|
-
export interface
|
|
3666
|
-
|
|
3783
|
+
export interface ReaderGroupDataTypeOptions extends PubSubGroupDataTypeOptions {
|
|
3784
|
+
transportSettings?: (ExtensionObject | null);
|
|
3785
|
+
messageSettings?: (ExtensionObject | null);
|
|
3786
|
+
dataSetReaders?: DataSetReaderDataTypeOptions[] | null;
|
|
3667
3787
|
}
|
|
3668
|
-
export declare class
|
|
3788
|
+
export declare class ReaderGroupDataType extends PubSubGroupDataType {
|
|
3669
3789
|
static get schema(): IStructuredTypeSchema;
|
|
3670
3790
|
static possibleFields: string[];
|
|
3671
3791
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3672
3792
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3673
3793
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3674
3794
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3675
|
-
|
|
3676
|
-
|
|
3795
|
+
transportSettings: (ExtensionObject | null);
|
|
3796
|
+
messageSettings: (ExtensionObject | null);
|
|
3797
|
+
dataSetReaders: DataSetReaderDataType[] | null;
|
|
3798
|
+
constructor(options?: ReaderGroupDataTypeOptions | null);
|
|
3677
3799
|
encode(stream: OutputBinaryStream): void;
|
|
3678
3800
|
decode(stream: BinaryStream): void;
|
|
3679
3801
|
get schema(): IStructuredTypeSchema;
|
|
3680
3802
|
}
|
|
3681
|
-
export interface
|
|
3682
|
-
|
|
3683
|
-
|
|
3803
|
+
export interface PubSubConnectionDataTypeOptions {
|
|
3804
|
+
name?: UAString;
|
|
3805
|
+
enabled?: UABoolean;
|
|
3806
|
+
publisherId?: (VariantLike | null);
|
|
3807
|
+
transportProfileUri?: UAString;
|
|
3808
|
+
address?: (ExtensionObject | null);
|
|
3809
|
+
connectionProperties?: KeyValuePairOptions[] | null;
|
|
3810
|
+
transportSettings?: (ExtensionObject | null);
|
|
3811
|
+
writerGroups?: WriterGroupDataTypeOptions[] | null;
|
|
3812
|
+
readerGroups?: ReaderGroupDataTypeOptions[] | null;
|
|
3684
3813
|
}
|
|
3685
|
-
export declare class
|
|
3814
|
+
export declare class PubSubConnectionDataType extends ExtensionObject {
|
|
3686
3815
|
static get schema(): IStructuredTypeSchema;
|
|
3687
3816
|
static possibleFields: string[];
|
|
3688
3817
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3689
3818
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3690
3819
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3691
3820
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3821
|
+
name: UAString;
|
|
3822
|
+
enabled: UABoolean;
|
|
3823
|
+
publisherId: Variant;
|
|
3824
|
+
transportProfileUri: UAString;
|
|
3825
|
+
address: (ExtensionObject | null);
|
|
3826
|
+
connectionProperties: KeyValuePair[] | null;
|
|
3827
|
+
transportSettings: (ExtensionObject | null);
|
|
3828
|
+
writerGroups: WriterGroupDataType[] | null;
|
|
3829
|
+
readerGroups: ReaderGroupDataType[] | null;
|
|
3830
|
+
constructor(options?: PubSubConnectionDataTypeOptions | null);
|
|
3695
3831
|
encode(stream: OutputBinaryStream): void;
|
|
3696
3832
|
decode(stream: BinaryStream): void;
|
|
3697
3833
|
get schema(): IStructuredTypeSchema;
|
|
3698
3834
|
}
|
|
3699
|
-
export interface
|
|
3700
|
-
|
|
3701
|
-
|
|
3835
|
+
export interface JsonActionResponderMessageOptions {
|
|
3836
|
+
messageId?: UAString;
|
|
3837
|
+
messageType?: UAString;
|
|
3838
|
+
publisherId?: UAString;
|
|
3839
|
+
timestamp?: DateTime;
|
|
3840
|
+
connection?: PubSubConnectionDataTypeOptions;
|
|
3702
3841
|
}
|
|
3703
|
-
export declare class
|
|
3842
|
+
export declare class JsonActionResponderMessage extends ExtensionObject {
|
|
3704
3843
|
static get schema(): IStructuredTypeSchema;
|
|
3705
3844
|
static possibleFields: string[];
|
|
3706
3845
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3707
3846
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3708
3847
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3709
3848
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3849
|
+
messageId: UAString;
|
|
3850
|
+
messageType: UAString;
|
|
3851
|
+
publisherId: UAString;
|
|
3852
|
+
timestamp: DateTime;
|
|
3853
|
+
connection: PubSubConnectionDataType;
|
|
3854
|
+
constructor(options?: JsonActionResponderMessageOptions | null);
|
|
3713
3855
|
encode(stream: OutputBinaryStream): void;
|
|
3714
3856
|
decode(stream: BinaryStream): void;
|
|
3715
3857
|
get schema(): IStructuredTypeSchema;
|
|
3716
3858
|
}
|
|
3717
|
-
export interface
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3859
|
+
export interface JsonActionResponseMessageOptions {
|
|
3860
|
+
dataSetWriterId?: UInt16;
|
|
3861
|
+
actionTargetId?: UInt16;
|
|
3862
|
+
dataSetWriterName?: UAString;
|
|
3863
|
+
writerGroupName?: UAString;
|
|
3864
|
+
metaDataVersion?: ConfigurationVersionDataTypeOptions;
|
|
3865
|
+
minorVersion?: UInt32;
|
|
3866
|
+
timestamp?: DateTime;
|
|
3867
|
+
status?: StatusCode;
|
|
3868
|
+
messageType?: UAString;
|
|
3869
|
+
requestId?: UInt16;
|
|
3870
|
+
actionState?: ActionState;
|
|
3871
|
+
payload?: (ExtensionObject | null);
|
|
3721
3872
|
}
|
|
3722
|
-
export declare class
|
|
3873
|
+
export declare class JsonActionResponseMessage extends ExtensionObject {
|
|
3723
3874
|
static get schema(): IStructuredTypeSchema;
|
|
3724
3875
|
static possibleFields: string[];
|
|
3725
3876
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3726
3877
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3727
3878
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3728
3879
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3880
|
+
dataSetWriterId: UInt16;
|
|
3881
|
+
actionTargetId: UInt16;
|
|
3882
|
+
dataSetWriterName: UAString;
|
|
3883
|
+
writerGroupName: UAString;
|
|
3884
|
+
metaDataVersion: ConfigurationVersionDataType;
|
|
3885
|
+
minorVersion: UInt32;
|
|
3886
|
+
timestamp: DateTime;
|
|
3887
|
+
status: StatusCode;
|
|
3888
|
+
messageType: UAString;
|
|
3889
|
+
requestId: UInt16;
|
|
3890
|
+
actionState: ActionState;
|
|
3891
|
+
payload: (ExtensionObject | null);
|
|
3892
|
+
constructor(options?: JsonActionResponseMessageOptions | null);
|
|
3733
3893
|
encode(stream: OutputBinaryStream): void;
|
|
3734
3894
|
decode(stream: BinaryStream): void;
|
|
3895
|
+
setActionState(value: any): ActionState;
|
|
3735
3896
|
get schema(): IStructuredTypeSchema;
|
|
3736
3897
|
}
|
|
3737
|
-
export interface
|
|
3738
|
-
|
|
3739
|
-
|
|
3898
|
+
export interface JsonApplicationDescriptionMessageOptions {
|
|
3899
|
+
messageId?: UAString;
|
|
3900
|
+
messageType?: UAString;
|
|
3901
|
+
publisherId?: UAString;
|
|
3902
|
+
timestamp?: DateTime;
|
|
3903
|
+
description?: ApplicationDescriptionOptions;
|
|
3904
|
+
serverCapabilities?: UAString[] | null;
|
|
3740
3905
|
}
|
|
3741
|
-
export declare class
|
|
3906
|
+
export declare class JsonApplicationDescriptionMessage extends ExtensionObject {
|
|
3742
3907
|
static get schema(): IStructuredTypeSchema;
|
|
3743
3908
|
static possibleFields: string[];
|
|
3744
3909
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3745
3910
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3746
3911
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3747
3912
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3913
|
+
messageId: UAString;
|
|
3914
|
+
messageType: UAString;
|
|
3915
|
+
publisherId: UAString;
|
|
3916
|
+
timestamp: DateTime;
|
|
3917
|
+
description: ApplicationDescription;
|
|
3918
|
+
serverCapabilities: UAString[] | null;
|
|
3919
|
+
constructor(options?: JsonApplicationDescriptionMessageOptions | null);
|
|
3751
3920
|
encode(stream: OutputBinaryStream): void;
|
|
3752
3921
|
decode(stream: BinaryStream): void;
|
|
3753
3922
|
get schema(): IStructuredTypeSchema;
|
|
3754
3923
|
}
|
|
3755
|
-
export interface
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3924
|
+
export interface JsonDataSetMessageOptions {
|
|
3925
|
+
dataSetWriterId?: UInt16;
|
|
3926
|
+
dataSetWriterName?: UAString;
|
|
3927
|
+
publisherId?: UAString;
|
|
3928
|
+
writerGroupName?: UAString;
|
|
3929
|
+
sequenceNumber?: UInt32;
|
|
3930
|
+
metaDataVersion?: ConfigurationVersionDataTypeOptions;
|
|
3931
|
+
minorVersion?: UInt32;
|
|
3932
|
+
timestamp?: DateTime;
|
|
3933
|
+
status?: StatusCode;
|
|
3934
|
+
messageType?: UAString;
|
|
3935
|
+
payload?: (ExtensionObject | null);
|
|
3760
3936
|
}
|
|
3761
|
-
export declare class
|
|
3937
|
+
export declare class JsonDataSetMessage extends ExtensionObject {
|
|
3762
3938
|
static get schema(): IStructuredTypeSchema;
|
|
3763
3939
|
static possibleFields: string[];
|
|
3764
3940
|
static dataTypeNodeId: ExpandedNodeId;
|
|
3765
3941
|
static encodingDefaultBinary: ExpandedNodeId;
|
|
3766
3942
|
static encodingDefaultXml: ExpandedNodeId;
|
|
3767
3943
|
static encodingDefaultJson: ExpandedNodeId;
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3944
|
+
dataSetWriterId: UInt16;
|
|
3945
|
+
dataSetWriterName: UAString;
|
|
3946
|
+
publisherId: UAString;
|
|
3947
|
+
writerGroupName: UAString;
|
|
3948
|
+
sequenceNumber: UInt32;
|
|
3949
|
+
metaDataVersion: ConfigurationVersionDataType;
|
|
3950
|
+
minorVersion: UInt32;
|
|
3951
|
+
timestamp: DateTime;
|
|
3952
|
+
status: StatusCode;
|
|
3953
|
+
messageType: UAString;
|
|
3954
|
+
payload: (ExtensionObject | null);
|
|
3955
|
+
constructor(options?: JsonDataSetMessageOptions | null);
|
|
3773
3956
|
encode(stream: OutputBinaryStream): void;
|
|
3774
3957
|
decode(stream: BinaryStream): void;
|
|
3775
|
-
setTimestampsToReturn(value: any): TimestampsToReturn;
|
|
3776
3958
|
get schema(): IStructuredTypeSchema;
|
|
3777
3959
|
}
|
|
3778
|
-
export interface
|
|
3779
|
-
|
|
3960
|
+
export interface JsonDataSetMetaDataMessageOptions {
|
|
3961
|
+
messageId?: UAString;
|
|
3962
|
+
messageType?: UAString;
|
|
3963
|
+
publisherId?: UAString;
|
|
3964
|
+
dataSetWriterId?: UInt16;
|
|
3965
|
+
writerGroupName?: UAString;
|
|
3966
|
+
dataSetWriterName?: UAString;
|
|
3967
|
+
timestamp?: DateTime;
|
|
3968
|
+
metaData?: DataSetMetaDataTypeOptions;
|
|
3969
|
+
}
|
|
3970
|
+
export declare class JsonDataSetMetaDataMessage extends ExtensionObject {
|
|
3971
|
+
static get schema(): IStructuredTypeSchema;
|
|
3972
|
+
static possibleFields: string[];
|
|
3973
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
3974
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
3975
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
3976
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
3977
|
+
messageId: UAString;
|
|
3978
|
+
messageType: UAString;
|
|
3979
|
+
publisherId: UAString;
|
|
3980
|
+
dataSetWriterId: UInt16;
|
|
3981
|
+
writerGroupName: UAString;
|
|
3982
|
+
dataSetWriterName: UAString;
|
|
3983
|
+
timestamp: DateTime;
|
|
3984
|
+
metaData: DataSetMetaDataType;
|
|
3985
|
+
constructor(options?: JsonDataSetMetaDataMessageOptions | null);
|
|
3986
|
+
encode(stream: OutputBinaryStream): void;
|
|
3987
|
+
decode(stream: BinaryStream): void;
|
|
3988
|
+
get schema(): IStructuredTypeSchema;
|
|
3989
|
+
}
|
|
3990
|
+
export declare enum JsonNetworkMessageContentMask {
|
|
3991
|
+
None = 0,
|
|
3992
|
+
NetworkMessageHeader = 1,
|
|
3993
|
+
DataSetMessageHeader = 2,
|
|
3994
|
+
SingleDataSetMessage = 4,
|
|
3995
|
+
PublisherId = 8,
|
|
3996
|
+
DataSetClassId = 16,
|
|
3997
|
+
ReplyTo = 32,
|
|
3998
|
+
WriterGroupName = 64
|
|
3999
|
+
}
|
|
4000
|
+
export declare const _enumerationJsonNetworkMessageContentMask: Enum;
|
|
4001
|
+
export declare enum JsonDataSetMessageContentMask {
|
|
4002
|
+
None = 0,
|
|
4003
|
+
DataSetWriterId = 1,
|
|
4004
|
+
MetaDataVersion = 2,
|
|
4005
|
+
SequenceNumber = 4,
|
|
4006
|
+
Timestamp = 8,
|
|
4007
|
+
Status = 16,
|
|
4008
|
+
MessageType = 32,
|
|
4009
|
+
DataSetWriterName = 64,
|
|
4010
|
+
FieldEncoding1 = 128,
|
|
4011
|
+
PublisherId = 256,
|
|
4012
|
+
WriterGroupName = 512,
|
|
4013
|
+
MinorVersion = 1024,
|
|
4014
|
+
FieldEncoding2 = 2048
|
|
4015
|
+
}
|
|
4016
|
+
export declare const _enumerationJsonDataSetMessageContentMask: Enum;
|
|
4017
|
+
export interface JsonDataSetReaderMessageDataTypeOptions extends DataSetReaderMessageDataTypeOptions {
|
|
4018
|
+
networkMessageContentMask?: JsonNetworkMessageContentMask;
|
|
4019
|
+
dataSetMessageContentMask?: JsonDataSetMessageContentMask;
|
|
4020
|
+
}
|
|
4021
|
+
export declare class JsonDataSetReaderMessageDataType extends DataSetReaderMessageDataType {
|
|
4022
|
+
static get schema(): IStructuredTypeSchema;
|
|
4023
|
+
static possibleFields: string[];
|
|
4024
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4025
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4026
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4027
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4028
|
+
networkMessageContentMask: JsonNetworkMessageContentMask;
|
|
4029
|
+
dataSetMessageContentMask: JsonDataSetMessageContentMask;
|
|
4030
|
+
constructor(options?: JsonDataSetReaderMessageDataTypeOptions | null);
|
|
4031
|
+
encode(stream: OutputBinaryStream): void;
|
|
4032
|
+
decode(stream: BinaryStream): void;
|
|
4033
|
+
setNetworkMessageContentMask(value: any): JsonNetworkMessageContentMask;
|
|
4034
|
+
setDataSetMessageContentMask(value: any): JsonDataSetMessageContentMask;
|
|
4035
|
+
get schema(): IStructuredTypeSchema;
|
|
4036
|
+
}
|
|
4037
|
+
export interface JsonDataSetWriterMessageDataTypeOptions extends DataSetWriterMessageDataTypeOptions {
|
|
4038
|
+
dataSetMessageContentMask?: JsonDataSetMessageContentMask;
|
|
4039
|
+
}
|
|
4040
|
+
export declare class JsonDataSetWriterMessageDataType extends DataSetWriterMessageDataType {
|
|
4041
|
+
static get schema(): IStructuredTypeSchema;
|
|
4042
|
+
static possibleFields: string[];
|
|
4043
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4044
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4045
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4046
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4047
|
+
dataSetMessageContentMask: JsonDataSetMessageContentMask;
|
|
4048
|
+
constructor(options?: JsonDataSetWriterMessageDataTypeOptions | null);
|
|
4049
|
+
encode(stream: OutputBinaryStream): void;
|
|
4050
|
+
decode(stream: BinaryStream): void;
|
|
4051
|
+
setDataSetMessageContentMask(value: any): JsonDataSetMessageContentMask;
|
|
4052
|
+
get schema(): IStructuredTypeSchema;
|
|
4053
|
+
}
|
|
4054
|
+
export interface JsonNetworkMessageOptions {
|
|
4055
|
+
messageId?: UAString;
|
|
4056
|
+
messageType?: UAString;
|
|
4057
|
+
publisherId?: UAString;
|
|
4058
|
+
writerGroupName?: UAString;
|
|
4059
|
+
dataSetClassId?: UAString;
|
|
4060
|
+
messages?: (ExtensionObject | null)[] | null;
|
|
4061
|
+
}
|
|
4062
|
+
export declare class JsonNetworkMessage extends ExtensionObject {
|
|
4063
|
+
static get schema(): IStructuredTypeSchema;
|
|
4064
|
+
static possibleFields: string[];
|
|
4065
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4066
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4067
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4068
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4069
|
+
messageId: UAString;
|
|
4070
|
+
messageType: UAString;
|
|
4071
|
+
publisherId: UAString;
|
|
4072
|
+
writerGroupName: UAString;
|
|
4073
|
+
dataSetClassId: UAString;
|
|
4074
|
+
messages: (ExtensionObject | null)[] | null;
|
|
4075
|
+
constructor(options?: JsonNetworkMessageOptions | null);
|
|
4076
|
+
encode(stream: OutputBinaryStream): void;
|
|
4077
|
+
decode(stream: BinaryStream): void;
|
|
4078
|
+
get schema(): IStructuredTypeSchema;
|
|
4079
|
+
}
|
|
4080
|
+
export interface JsonPubSubConnectionMessageOptions {
|
|
4081
|
+
messageId?: UAString;
|
|
4082
|
+
messageType?: UAString;
|
|
4083
|
+
publisherId?: UAString;
|
|
4084
|
+
timestamp?: DateTime;
|
|
4085
|
+
connection?: PubSubConnectionDataTypeOptions;
|
|
4086
|
+
}
|
|
4087
|
+
export declare class JsonPubSubConnectionMessage extends ExtensionObject {
|
|
4088
|
+
static get schema(): IStructuredTypeSchema;
|
|
4089
|
+
static possibleFields: string[];
|
|
4090
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4091
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4092
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4093
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4094
|
+
messageId: UAString;
|
|
4095
|
+
messageType: UAString;
|
|
4096
|
+
publisherId: UAString;
|
|
4097
|
+
timestamp: DateTime;
|
|
4098
|
+
connection: PubSubConnectionDataType;
|
|
4099
|
+
constructor(options?: JsonPubSubConnectionMessageOptions | null);
|
|
4100
|
+
encode(stream: OutputBinaryStream): void;
|
|
4101
|
+
decode(stream: BinaryStream): void;
|
|
4102
|
+
get schema(): IStructuredTypeSchema;
|
|
4103
|
+
}
|
|
4104
|
+
export interface JsonServerEndpointsMessageOptions {
|
|
4105
|
+
messageId?: UAString;
|
|
4106
|
+
messageType?: UAString;
|
|
4107
|
+
publisherId?: UAString;
|
|
4108
|
+
timestamp?: DateTime;
|
|
4109
|
+
description?: ApplicationDescriptionOptions;
|
|
4110
|
+
endpoints?: EndpointDescriptionOptions[] | null;
|
|
4111
|
+
}
|
|
4112
|
+
export declare class JsonServerEndpointsMessage extends ExtensionObject {
|
|
4113
|
+
static get schema(): IStructuredTypeSchema;
|
|
4114
|
+
static possibleFields: string[];
|
|
4115
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4116
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4117
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4118
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4119
|
+
messageId: UAString;
|
|
4120
|
+
messageType: UAString;
|
|
4121
|
+
publisherId: UAString;
|
|
4122
|
+
timestamp: DateTime;
|
|
4123
|
+
description: ApplicationDescription;
|
|
4124
|
+
endpoints: EndpointDescription[] | null;
|
|
4125
|
+
constructor(options?: JsonServerEndpointsMessageOptions | null);
|
|
4126
|
+
encode(stream: OutputBinaryStream): void;
|
|
4127
|
+
decode(stream: BinaryStream): void;
|
|
4128
|
+
get schema(): IStructuredTypeSchema;
|
|
4129
|
+
}
|
|
4130
|
+
export declare enum PubSubState {
|
|
4131
|
+
Disabled = 0,
|
|
4132
|
+
Paused = 1,
|
|
4133
|
+
Operational = 2,
|
|
4134
|
+
Error = 3,
|
|
4135
|
+
PreOperational = 4,
|
|
4136
|
+
Invalid = 4294967295
|
|
4137
|
+
}
|
|
4138
|
+
export declare const _enumerationPubSubState: Enum;
|
|
4139
|
+
export interface JsonStatusMessageOptions {
|
|
4140
|
+
messageId?: UAString;
|
|
4141
|
+
messageType?: UAString;
|
|
4142
|
+
publisherId?: UAString;
|
|
4143
|
+
timestamp?: DateTime;
|
|
4144
|
+
isCyclic?: UABoolean;
|
|
4145
|
+
status?: PubSubState;
|
|
4146
|
+
nextReportTime?: DateTime;
|
|
4147
|
+
}
|
|
4148
|
+
export declare class JsonStatusMessage extends ExtensionObject {
|
|
4149
|
+
static get schema(): IStructuredTypeSchema;
|
|
4150
|
+
static possibleFields: string[];
|
|
4151
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4152
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4153
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4154
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4155
|
+
messageId: UAString;
|
|
4156
|
+
messageType: UAString;
|
|
4157
|
+
publisherId: UAString;
|
|
4158
|
+
timestamp: DateTime;
|
|
4159
|
+
isCyclic: UABoolean;
|
|
4160
|
+
status: PubSubState;
|
|
4161
|
+
nextReportTime: DateTime;
|
|
4162
|
+
constructor(options?: JsonStatusMessageOptions | null);
|
|
4163
|
+
encode(stream: OutputBinaryStream): void;
|
|
4164
|
+
decode(stream: BinaryStream): void;
|
|
4165
|
+
setStatus(value: any): PubSubState;
|
|
4166
|
+
get schema(): IStructuredTypeSchema;
|
|
4167
|
+
}
|
|
4168
|
+
export interface WriterGroupMessageDataTypeOptions {
|
|
4169
|
+
}
|
|
4170
|
+
export declare class WriterGroupMessageDataType extends ExtensionObject {
|
|
4171
|
+
static get schema(): IStructuredTypeSchema;
|
|
4172
|
+
static possibleFields: string[];
|
|
4173
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4174
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4175
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4176
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4177
|
+
constructor(options?: WriterGroupMessageDataTypeOptions | null);
|
|
4178
|
+
encode(stream: OutputBinaryStream): void;
|
|
4179
|
+
decode(stream: BinaryStream): void;
|
|
4180
|
+
get schema(): IStructuredTypeSchema;
|
|
4181
|
+
}
|
|
4182
|
+
export interface JsonWriterGroupMessageDataTypeOptions extends WriterGroupMessageDataTypeOptions {
|
|
4183
|
+
networkMessageContentMask?: JsonNetworkMessageContentMask;
|
|
4184
|
+
}
|
|
4185
|
+
export declare class JsonWriterGroupMessageDataType extends WriterGroupMessageDataType {
|
|
4186
|
+
static get schema(): IStructuredTypeSchema;
|
|
4187
|
+
static possibleFields: string[];
|
|
4188
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4189
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4190
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4191
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4192
|
+
networkMessageContentMask: JsonNetworkMessageContentMask;
|
|
4193
|
+
constructor(options?: JsonWriterGroupMessageDataTypeOptions | null);
|
|
4194
|
+
encode(stream: OutputBinaryStream): void;
|
|
4195
|
+
decode(stream: BinaryStream): void;
|
|
4196
|
+
setNetworkMessageContentMask(value: any): JsonNetworkMessageContentMask;
|
|
4197
|
+
get schema(): IStructuredTypeSchema;
|
|
4198
|
+
}
|
|
4199
|
+
export interface LinearConversionDataTypeOptions {
|
|
4200
|
+
initialAddend?: Float;
|
|
4201
|
+
multiplicand?: Float;
|
|
4202
|
+
divisor?: Float;
|
|
4203
|
+
finalAddend?: Float;
|
|
4204
|
+
}
|
|
4205
|
+
export declare class LinearConversionDataType extends ExtensionObject {
|
|
4206
|
+
static get schema(): IStructuredTypeSchema;
|
|
4207
|
+
static possibleFields: string[];
|
|
4208
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4209
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4210
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4211
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4212
|
+
initialAddend: Float;
|
|
4213
|
+
multiplicand: Float;
|
|
4214
|
+
divisor: Float;
|
|
4215
|
+
finalAddend: Float;
|
|
4216
|
+
constructor(options?: LinearConversionDataTypeOptions | null);
|
|
4217
|
+
encode(stream: OutputBinaryStream): void;
|
|
4218
|
+
decode(stream: BinaryStream): void;
|
|
4219
|
+
get schema(): IStructuredTypeSchema;
|
|
4220
|
+
}
|
|
4221
|
+
export interface LiteralOperandOptions extends FilterOperandOptions {
|
|
4222
|
+
value?: (VariantLike | null);
|
|
4223
|
+
}
|
|
4224
|
+
export declare class LiteralOperand extends FilterOperand {
|
|
4225
|
+
static get schema(): IStructuredTypeSchema;
|
|
4226
|
+
static possibleFields: string[];
|
|
4227
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4228
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4229
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4230
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4231
|
+
value: Variant;
|
|
4232
|
+
constructor(options?: LiteralOperandOptions | null);
|
|
4233
|
+
encode(stream: OutputBinaryStream): void;
|
|
4234
|
+
decode(stream: BinaryStream): void;
|
|
4235
|
+
get schema(): IStructuredTypeSchema;
|
|
4236
|
+
}
|
|
4237
|
+
export declare enum ManAddrIfSubtype {
|
|
4238
|
+
None = 0,
|
|
4239
|
+
Unknown = 1,
|
|
4240
|
+
PortRef = 2,
|
|
4241
|
+
SystemPortNumber = 3,
|
|
4242
|
+
Invalid = 4294967295
|
|
4243
|
+
}
|
|
4244
|
+
export declare const _enumerationManAddrIfSubtype: Enum;
|
|
4245
|
+
export interface LldpManagementAddressTxPortTypeOptions {
|
|
4246
|
+
addressSubtype?: UInt32;
|
|
4247
|
+
manAddress?: UAString;
|
|
4248
|
+
txEnable?: UABoolean;
|
|
4249
|
+
addrLen?: UInt32;
|
|
4250
|
+
ifSubtype?: ManAddrIfSubtype;
|
|
4251
|
+
ifId?: UInt32;
|
|
4252
|
+
}
|
|
4253
|
+
export declare class LldpManagementAddressTxPortType extends ExtensionObject {
|
|
4254
|
+
static get schema(): IStructuredTypeSchema;
|
|
4255
|
+
static possibleFields: string[];
|
|
4256
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4257
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4258
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4259
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4260
|
+
addressSubtype: UInt32;
|
|
4261
|
+
manAddress: UAString;
|
|
4262
|
+
txEnable: UABoolean;
|
|
4263
|
+
addrLen: UInt32;
|
|
4264
|
+
ifSubtype: ManAddrIfSubtype;
|
|
4265
|
+
ifId: UInt32;
|
|
4266
|
+
constructor(options?: LldpManagementAddressTxPortTypeOptions | null);
|
|
4267
|
+
encode(stream: OutputBinaryStream): void;
|
|
4268
|
+
decode(stream: BinaryStream): void;
|
|
4269
|
+
setIfSubtype(value: any): ManAddrIfSubtype;
|
|
4270
|
+
get schema(): IStructuredTypeSchema;
|
|
4271
|
+
}
|
|
4272
|
+
export interface LldpManagementAddressTypeOptions {
|
|
4273
|
+
addressSubtype?: UInt32;
|
|
4274
|
+
address?: UAString;
|
|
4275
|
+
ifSubtype?: ManAddrIfSubtype;
|
|
4276
|
+
ifId?: UInt32;
|
|
4277
|
+
}
|
|
4278
|
+
export declare class LldpManagementAddressType extends ExtensionObject {
|
|
4279
|
+
static get schema(): IStructuredTypeSchema;
|
|
4280
|
+
static possibleFields: string[];
|
|
4281
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4282
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4283
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4284
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4285
|
+
addressSubtype: UInt32;
|
|
4286
|
+
address: UAString;
|
|
4287
|
+
ifSubtype: ManAddrIfSubtype;
|
|
4288
|
+
ifId: UInt32;
|
|
4289
|
+
constructor(options?: LldpManagementAddressTypeOptions | null);
|
|
4290
|
+
encode(stream: OutputBinaryStream): void;
|
|
4291
|
+
decode(stream: BinaryStream): void;
|
|
4292
|
+
setIfSubtype(value: any): ManAddrIfSubtype;
|
|
4293
|
+
get schema(): IStructuredTypeSchema;
|
|
4294
|
+
}
|
|
4295
|
+
export interface LldpTlvTypeOptions {
|
|
4296
|
+
tlvType?: UInt32;
|
|
4297
|
+
tlvInfo?: ByteString;
|
|
4298
|
+
}
|
|
4299
|
+
export declare class LldpTlvType extends ExtensionObject {
|
|
4300
|
+
static get schema(): IStructuredTypeSchema;
|
|
4301
|
+
static possibleFields: string[];
|
|
4302
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4303
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4304
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4305
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4306
|
+
tlvType: UInt32;
|
|
4307
|
+
tlvInfo: ByteString;
|
|
4308
|
+
constructor(options?: LldpTlvTypeOptions | null);
|
|
4309
|
+
encode(stream: OutputBinaryStream): void;
|
|
4310
|
+
decode(stream: BinaryStream): void;
|
|
4311
|
+
get schema(): IStructuredTypeSchema;
|
|
4312
|
+
}
|
|
4313
|
+
export interface MdnsDiscoveryConfigurationOptions extends DiscoveryConfigurationOptions {
|
|
4314
|
+
mdnsServerName?: UAString;
|
|
4315
|
+
serverCapabilities?: UAString[] | null;
|
|
4316
|
+
}
|
|
4317
|
+
export declare class MdnsDiscoveryConfiguration extends DiscoveryConfiguration {
|
|
4318
|
+
static get schema(): IStructuredTypeSchema;
|
|
4319
|
+
static possibleFields: string[];
|
|
4320
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4321
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4322
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4323
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4324
|
+
mdnsServerName: UAString;
|
|
4325
|
+
serverCapabilities: UAString[] | null;
|
|
4326
|
+
constructor(options?: MdnsDiscoveryConfigurationOptions | null);
|
|
4327
|
+
encode(stream: OutputBinaryStream): void;
|
|
4328
|
+
decode(stream: BinaryStream): void;
|
|
4329
|
+
get schema(): IStructuredTypeSchema;
|
|
4330
|
+
}
|
|
4331
|
+
export interface MethodAttributesOptions extends NodeAttributesOptions {
|
|
4332
|
+
executable?: UABoolean;
|
|
4333
|
+
userExecutable?: UABoolean;
|
|
4334
|
+
}
|
|
4335
|
+
export declare class MethodAttributes extends NodeAttributes {
|
|
4336
|
+
static get schema(): IStructuredTypeSchema;
|
|
4337
|
+
static possibleFields: string[];
|
|
4338
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4339
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4340
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4341
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4342
|
+
executable: UABoolean;
|
|
4343
|
+
userExecutable: UABoolean;
|
|
4344
|
+
constructor(options?: MethodAttributesOptions | null);
|
|
4345
|
+
encode(stream: OutputBinaryStream): void;
|
|
4346
|
+
decode(stream: BinaryStream): void;
|
|
4347
|
+
get schema(): IStructuredTypeSchema;
|
|
4348
|
+
}
|
|
4349
|
+
export interface ModelChangeStructureDataTypeOptions {
|
|
4350
|
+
affected?: (NodeIdLike | null);
|
|
4351
|
+
affectedType?: (NodeIdLike | null);
|
|
4352
|
+
verb?: Byte;
|
|
4353
|
+
}
|
|
4354
|
+
export declare class ModelChangeStructureDataType extends ExtensionObject {
|
|
4355
|
+
static get schema(): IStructuredTypeSchema;
|
|
4356
|
+
static possibleFields: string[];
|
|
4357
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4358
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4359
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4360
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4361
|
+
affected: NodeId;
|
|
4362
|
+
affectedType: NodeId;
|
|
4363
|
+
verb: Byte;
|
|
4364
|
+
constructor(options?: ModelChangeStructureDataTypeOptions | null);
|
|
4365
|
+
encode(stream: OutputBinaryStream): void;
|
|
4366
|
+
decode(stream: BinaryStream): void;
|
|
4367
|
+
get schema(): IStructuredTypeSchema;
|
|
4368
|
+
}
|
|
4369
|
+
export interface MonitoredItemModifyRequestOptions {
|
|
4370
|
+
monitoredItemId?: UInt32;
|
|
4371
|
+
requestedParameters?: MonitoringParametersOptions;
|
|
4372
|
+
}
|
|
4373
|
+
export declare class MonitoredItemModifyRequest extends ExtensionObject {
|
|
4374
|
+
static get schema(): IStructuredTypeSchema;
|
|
4375
|
+
static possibleFields: string[];
|
|
4376
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4377
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4378
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4379
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4380
|
+
monitoredItemId: UInt32;
|
|
4381
|
+
requestedParameters: MonitoringParameters;
|
|
4382
|
+
constructor(options?: MonitoredItemModifyRequestOptions | null);
|
|
4383
|
+
encode(stream: OutputBinaryStream): void;
|
|
4384
|
+
decode(stream: BinaryStream): void;
|
|
4385
|
+
get schema(): IStructuredTypeSchema;
|
|
4386
|
+
}
|
|
4387
|
+
export interface ModifyMonitoredItemsRequestOptions {
|
|
4388
|
+
requestHeader?: RequestHeaderOptions;
|
|
4389
|
+
subscriptionId?: UInt32;
|
|
4390
|
+
timestampsToReturn?: TimestampsToReturn;
|
|
4391
|
+
itemsToModify?: MonitoredItemModifyRequestOptions[] | null;
|
|
4392
|
+
}
|
|
4393
|
+
export declare class ModifyMonitoredItemsRequest extends ExtensionObject {
|
|
4394
|
+
static get schema(): IStructuredTypeSchema;
|
|
4395
|
+
static possibleFields: string[];
|
|
4396
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
4397
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
4398
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
4399
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
4400
|
+
requestHeader: RequestHeader;
|
|
4401
|
+
subscriptionId: UInt32;
|
|
4402
|
+
timestampsToReturn: TimestampsToReturn;
|
|
4403
|
+
itemsToModify: MonitoredItemModifyRequest[] | null;
|
|
4404
|
+
constructor(options?: ModifyMonitoredItemsRequestOptions | null);
|
|
4405
|
+
encode(stream: OutputBinaryStream): void;
|
|
4406
|
+
decode(stream: BinaryStream): void;
|
|
4407
|
+
setTimestampsToReturn(value: any): TimestampsToReturn;
|
|
4408
|
+
get schema(): IStructuredTypeSchema;
|
|
4409
|
+
}
|
|
4410
|
+
export interface MonitoredItemModifyResultOptions {
|
|
4411
|
+
statusCode?: StatusCode;
|
|
3780
4412
|
revisedSamplingInterval?: Double;
|
|
3781
4413
|
revisedQueueSize?: UInt32;
|
|
3782
4414
|
filterResult?: (ExtensionObject | null);
|
|
@@ -4311,119 +4943,6 @@ export declare class PublishedDataSetDataType extends ExtensionObject {
|
|
|
4311
4943
|
decode(stream: BinaryStream): void;
|
|
4312
4944
|
get schema(): IStructuredTypeSchema;
|
|
4313
4945
|
}
|
|
4314
|
-
export interface PubSubGroupDataTypeOptions {
|
|
4315
|
-
name?: UAString;
|
|
4316
|
-
enabled?: UABoolean;
|
|
4317
|
-
securityMode?: MessageSecurityMode;
|
|
4318
|
-
securityGroupId?: UAString;
|
|
4319
|
-
securityKeyServices?: EndpointDescriptionOptions[] | null;
|
|
4320
|
-
maxNetworkMessageSize?: UInt32;
|
|
4321
|
-
groupProperties?: KeyValuePairOptions[] | null;
|
|
4322
|
-
}
|
|
4323
|
-
export declare class PubSubGroupDataType extends ExtensionObject {
|
|
4324
|
-
static get schema(): IStructuredTypeSchema;
|
|
4325
|
-
static possibleFields: string[];
|
|
4326
|
-
static dataTypeNodeId: ExpandedNodeId;
|
|
4327
|
-
static encodingDefaultBinary: ExpandedNodeId;
|
|
4328
|
-
static encodingDefaultXml: ExpandedNodeId;
|
|
4329
|
-
static encodingDefaultJson: ExpandedNodeId;
|
|
4330
|
-
name: UAString;
|
|
4331
|
-
enabled: UABoolean;
|
|
4332
|
-
securityMode: MessageSecurityMode;
|
|
4333
|
-
securityGroupId: UAString;
|
|
4334
|
-
securityKeyServices: EndpointDescription[] | null;
|
|
4335
|
-
maxNetworkMessageSize: UInt32;
|
|
4336
|
-
groupProperties: KeyValuePair[] | null;
|
|
4337
|
-
constructor(options?: PubSubGroupDataTypeOptions | null);
|
|
4338
|
-
encode(stream: OutputBinaryStream): void;
|
|
4339
|
-
decode(stream: BinaryStream): void;
|
|
4340
|
-
setSecurityMode(value: any): MessageSecurityMode;
|
|
4341
|
-
get schema(): IStructuredTypeSchema;
|
|
4342
|
-
}
|
|
4343
|
-
export interface WriterGroupDataTypeOptions extends PubSubGroupDataTypeOptions {
|
|
4344
|
-
writerGroupId?: UInt16;
|
|
4345
|
-
publishingInterval?: Double;
|
|
4346
|
-
keepAliveTime?: Double;
|
|
4347
|
-
priority?: Byte;
|
|
4348
|
-
localeIds?: UAString[] | null;
|
|
4349
|
-
headerLayoutUri?: UAString;
|
|
4350
|
-
transportSettings?: (ExtensionObject | null);
|
|
4351
|
-
messageSettings?: (ExtensionObject | null);
|
|
4352
|
-
dataSetWriters?: DataSetWriterDataTypeOptions[] | null;
|
|
4353
|
-
}
|
|
4354
|
-
export declare class WriterGroupDataType extends PubSubGroupDataType {
|
|
4355
|
-
static get schema(): IStructuredTypeSchema;
|
|
4356
|
-
static possibleFields: string[];
|
|
4357
|
-
static dataTypeNodeId: ExpandedNodeId;
|
|
4358
|
-
static encodingDefaultBinary: ExpandedNodeId;
|
|
4359
|
-
static encodingDefaultXml: ExpandedNodeId;
|
|
4360
|
-
static encodingDefaultJson: ExpandedNodeId;
|
|
4361
|
-
writerGroupId: UInt16;
|
|
4362
|
-
publishingInterval: Double;
|
|
4363
|
-
keepAliveTime: Double;
|
|
4364
|
-
priority: Byte;
|
|
4365
|
-
localeIds: UAString[] | null;
|
|
4366
|
-
headerLayoutUri: UAString;
|
|
4367
|
-
transportSettings: (ExtensionObject | null);
|
|
4368
|
-
messageSettings: (ExtensionObject | null);
|
|
4369
|
-
dataSetWriters: DataSetWriterDataType[] | null;
|
|
4370
|
-
constructor(options?: WriterGroupDataTypeOptions | null);
|
|
4371
|
-
encode(stream: OutputBinaryStream): void;
|
|
4372
|
-
decode(stream: BinaryStream): void;
|
|
4373
|
-
get schema(): IStructuredTypeSchema;
|
|
4374
|
-
}
|
|
4375
|
-
export interface ReaderGroupDataTypeOptions extends PubSubGroupDataTypeOptions {
|
|
4376
|
-
transportSettings?: (ExtensionObject | null);
|
|
4377
|
-
messageSettings?: (ExtensionObject | null);
|
|
4378
|
-
dataSetReaders?: DataSetReaderDataTypeOptions[] | null;
|
|
4379
|
-
}
|
|
4380
|
-
export declare class ReaderGroupDataType extends PubSubGroupDataType {
|
|
4381
|
-
static get schema(): IStructuredTypeSchema;
|
|
4382
|
-
static possibleFields: string[];
|
|
4383
|
-
static dataTypeNodeId: ExpandedNodeId;
|
|
4384
|
-
static encodingDefaultBinary: ExpandedNodeId;
|
|
4385
|
-
static encodingDefaultXml: ExpandedNodeId;
|
|
4386
|
-
static encodingDefaultJson: ExpandedNodeId;
|
|
4387
|
-
transportSettings: (ExtensionObject | null);
|
|
4388
|
-
messageSettings: (ExtensionObject | null);
|
|
4389
|
-
dataSetReaders: DataSetReaderDataType[] | null;
|
|
4390
|
-
constructor(options?: ReaderGroupDataTypeOptions | null);
|
|
4391
|
-
encode(stream: OutputBinaryStream): void;
|
|
4392
|
-
decode(stream: BinaryStream): void;
|
|
4393
|
-
get schema(): IStructuredTypeSchema;
|
|
4394
|
-
}
|
|
4395
|
-
export interface PubSubConnectionDataTypeOptions {
|
|
4396
|
-
name?: UAString;
|
|
4397
|
-
enabled?: UABoolean;
|
|
4398
|
-
publisherId?: (VariantLike | null);
|
|
4399
|
-
transportProfileUri?: UAString;
|
|
4400
|
-
address?: (ExtensionObject | null);
|
|
4401
|
-
connectionProperties?: KeyValuePairOptions[] | null;
|
|
4402
|
-
transportSettings?: (ExtensionObject | null);
|
|
4403
|
-
writerGroups?: WriterGroupDataTypeOptions[] | null;
|
|
4404
|
-
readerGroups?: ReaderGroupDataTypeOptions[] | null;
|
|
4405
|
-
}
|
|
4406
|
-
export declare class PubSubConnectionDataType extends ExtensionObject {
|
|
4407
|
-
static get schema(): IStructuredTypeSchema;
|
|
4408
|
-
static possibleFields: string[];
|
|
4409
|
-
static dataTypeNodeId: ExpandedNodeId;
|
|
4410
|
-
static encodingDefaultBinary: ExpandedNodeId;
|
|
4411
|
-
static encodingDefaultXml: ExpandedNodeId;
|
|
4412
|
-
static encodingDefaultJson: ExpandedNodeId;
|
|
4413
|
-
name: UAString;
|
|
4414
|
-
enabled: UABoolean;
|
|
4415
|
-
publisherId: Variant;
|
|
4416
|
-
transportProfileUri: UAString;
|
|
4417
|
-
address: (ExtensionObject | null);
|
|
4418
|
-
connectionProperties: KeyValuePair[] | null;
|
|
4419
|
-
transportSettings: (ExtensionObject | null);
|
|
4420
|
-
writerGroups: WriterGroupDataType[] | null;
|
|
4421
|
-
readerGroups: ReaderGroupDataType[] | null;
|
|
4422
|
-
constructor(options?: PubSubConnectionDataTypeOptions | null);
|
|
4423
|
-
encode(stream: OutputBinaryStream): void;
|
|
4424
|
-
decode(stream: BinaryStream): void;
|
|
4425
|
-
get schema(): IStructuredTypeSchema;
|
|
4426
|
-
}
|
|
4427
4946
|
export interface PubSubConfigurationDataTypeOptions {
|
|
4428
4947
|
publishedDataSets?: PublishedDataSetDataTypeOptions[] | null;
|
|
4429
4948
|
connections?: PubSubConnectionDataTypeOptions[] | null;
|
|
@@ -4750,6 +5269,40 @@ export declare class PublishedDataSetSourceDataType extends ExtensionObject {
|
|
|
4750
5269
|
decode(stream: BinaryStream): void;
|
|
4751
5270
|
get schema(): IStructuredTypeSchema;
|
|
4752
5271
|
}
|
|
5272
|
+
export interface PublishedActionDataTypeOptions extends PublishedDataSetSourceDataTypeOptions {
|
|
5273
|
+
requestDataSetMetaData?: DataSetMetaDataTypeOptions;
|
|
5274
|
+
actionTargets?: ActionTargetDataTypeOptions[] | null;
|
|
5275
|
+
}
|
|
5276
|
+
export declare class PublishedActionDataType extends PublishedDataSetSourceDataType {
|
|
5277
|
+
static get schema(): IStructuredTypeSchema;
|
|
5278
|
+
static possibleFields: string[];
|
|
5279
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
5280
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
5281
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
5282
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
5283
|
+
requestDataSetMetaData: DataSetMetaDataType;
|
|
5284
|
+
actionTargets: ActionTargetDataType[] | null;
|
|
5285
|
+
constructor(options?: PublishedActionDataTypeOptions | null);
|
|
5286
|
+
encode(stream: OutputBinaryStream): void;
|
|
5287
|
+
decode(stream: BinaryStream): void;
|
|
5288
|
+
get schema(): IStructuredTypeSchema;
|
|
5289
|
+
}
|
|
5290
|
+
export interface PublishedActionMethodDataTypeOptions extends PublishedActionDataTypeOptions {
|
|
5291
|
+
actionMethods?: ActionMethodDataTypeOptions[] | null;
|
|
5292
|
+
}
|
|
5293
|
+
export declare class PublishedActionMethodDataType extends PublishedActionDataType {
|
|
5294
|
+
static get schema(): IStructuredTypeSchema;
|
|
5295
|
+
static possibleFields: string[];
|
|
5296
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
5297
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
5298
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
5299
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
5300
|
+
actionMethods: ActionMethodDataType[] | null;
|
|
5301
|
+
constructor(options?: PublishedActionMethodDataTypeOptions | null);
|
|
5302
|
+
encode(stream: OutputBinaryStream): void;
|
|
5303
|
+
decode(stream: BinaryStream): void;
|
|
5304
|
+
get schema(): IStructuredTypeSchema;
|
|
5305
|
+
}
|
|
4753
5306
|
export interface PublishedVariableDataTypeOptions {
|
|
4754
5307
|
publishedVariable?: (NodeIdLike | null);
|
|
4755
5308
|
attributeId?: UInt32;
|
|
@@ -5078,6 +5631,47 @@ export declare class ReadEventDetails2 extends ReadEventDetails {
|
|
|
5078
5631
|
decode(stream: BinaryStream): void;
|
|
5079
5632
|
get schema(): IStructuredTypeSchema;
|
|
5080
5633
|
}
|
|
5634
|
+
export declare enum SortOrderType {
|
|
5635
|
+
Ascending = 0,
|
|
5636
|
+
Descending = 1,
|
|
5637
|
+
Invalid = 4294967295
|
|
5638
|
+
}
|
|
5639
|
+
export declare const _enumerationSortOrderType: Enum;
|
|
5640
|
+
export interface SortRuleElementOptions {
|
|
5641
|
+
sortOrder?: SortOrderType;
|
|
5642
|
+
eventField?: SimpleAttributeOperandOptions;
|
|
5643
|
+
}
|
|
5644
|
+
export declare class SortRuleElement extends ExtensionObject {
|
|
5645
|
+
static get schema(): IStructuredTypeSchema;
|
|
5646
|
+
static possibleFields: string[];
|
|
5647
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
5648
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
5649
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
5650
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
5651
|
+
sortOrder: SortOrderType;
|
|
5652
|
+
eventField: SimpleAttributeOperand;
|
|
5653
|
+
constructor(options?: SortRuleElementOptions | null);
|
|
5654
|
+
encode(stream: OutputBinaryStream): void;
|
|
5655
|
+
decode(stream: BinaryStream): void;
|
|
5656
|
+
setSortOrder(value: any): SortOrderType;
|
|
5657
|
+
get schema(): IStructuredTypeSchema;
|
|
5658
|
+
}
|
|
5659
|
+
export interface ReadEventDetailsSortedOptions extends ReadEventDetailsOptions {
|
|
5660
|
+
sortClause?: SortRuleElementOptions[] | null;
|
|
5661
|
+
}
|
|
5662
|
+
export declare class ReadEventDetailsSorted extends ReadEventDetails {
|
|
5663
|
+
static get schema(): IStructuredTypeSchema;
|
|
5664
|
+
static possibleFields: string[];
|
|
5665
|
+
static dataTypeNodeId: ExpandedNodeId;
|
|
5666
|
+
static encodingDefaultBinary: ExpandedNodeId;
|
|
5667
|
+
static encodingDefaultXml: ExpandedNodeId;
|
|
5668
|
+
static encodingDefaultJson: ExpandedNodeId;
|
|
5669
|
+
sortClause: SortRuleElement[] | null;
|
|
5670
|
+
constructor(options?: ReadEventDetailsSortedOptions | null);
|
|
5671
|
+
encode(stream: OutputBinaryStream): void;
|
|
5672
|
+
decode(stream: BinaryStream): void;
|
|
5673
|
+
get schema(): IStructuredTypeSchema;
|
|
5674
|
+
}
|
|
5081
5675
|
export interface ReadProcessedDetailsOptions extends HistoryReadDetailsOptions {
|
|
5082
5676
|
startTime?: DateTime;
|
|
5083
5677
|
endTime?: DateTime;
|
|
@@ -6031,7 +6625,7 @@ export interface SubscriptionDiagnosticsDataTypeOptions {
|
|
|
6031
6625
|
disabledMonitoredItemCount?: UInt32;
|
|
6032
6626
|
monitoringQueueOverflowCount?: UInt32;
|
|
6033
6627
|
nextSequenceNumber?: UInt32;
|
|
6034
|
-
|
|
6628
|
+
eventQueueOverflowCount?: UInt32;
|
|
6035
6629
|
}
|
|
6036
6630
|
export declare class SubscriptionDiagnosticsDataType extends ExtensionObject {
|
|
6037
6631
|
static get schema(): IStructuredTypeSchema;
|
|
@@ -6070,7 +6664,7 @@ export declare class SubscriptionDiagnosticsDataType extends ExtensionObject {
|
|
|
6070
6664
|
disabledMonitoredItemCount: UInt32;
|
|
6071
6665
|
monitoringQueueOverflowCount: UInt32;
|
|
6072
6666
|
nextSequenceNumber: UInt32;
|
|
6073
|
-
|
|
6667
|
+
eventQueueOverflowCount: UInt32;
|
|
6074
6668
|
constructor(options?: SubscriptionDiagnosticsDataTypeOptions | null);
|
|
6075
6669
|
encode(stream: OutputBinaryStream): void;
|
|
6076
6670
|
decode(stream: BinaryStream): void;
|