@@ -8,6 +8,26 @@ namespace Skyline.DataMiner.Scripting
8
8
{
9
9
public static class Parameter
10
10
{
11
+ /// <summary>PID: 200 | Type: read</summary>
12
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
13
+ public const int lastconnecttime_200 = 200 ;
14
+ /// <summary>PID: 200 | Type: read</summary>
15
+ public const int lastconnecttime = 200 ;
16
+ /// <summary>PID: 201 | Type: read</summary>
17
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
18
+ public const int connectduration_201 = 201 ;
19
+ /// <summary>PID: 201 | Type: read</summary>
20
+ public const int connectduration = 201 ;
21
+ /// <summary>PID: 210 | Type: read</summary>
22
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
23
+ public const int lastdisconnecttime_210 = 210 ;
24
+ /// <summary>PID: 210 | Type: read</summary>
25
+ public const int lastdisconnecttime = 210 ;
26
+ /// <summary>PID: 211 | Type: read</summary>
27
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
28
+ public const int disconnectduration_211 = 211 ;
29
+ /// <summary>PID: 211 | Type: read</summary>
30
+ public const int disconnectduration = 211 ;
11
31
/// <summary>PID: 9990990 | Type: read</summary>
12
32
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
13
33
public const int fleinterappreceive_9990990 = 9990990 ;
@@ -808,6 +828,15 @@ public interface SLProtocolExt : SLProtocol
808
828
/// <summary>PID: 9991300</summary>
809
829
FleprovisionedflowstableQActionTable fleprovisionedflowstable { get ; set ; }
810
830
object Afterstartup_dummy { get ; set ; }
831
+ object Trigger1min_dummy { get ; set ; }
832
+ object Lastconnecttime_200 { get ; set ; }
833
+ object Lastconnecttime { get ; set ; }
834
+ object Connectduration_201 { get ; set ; }
835
+ object Connectduration { get ; set ; }
836
+ object Lastdisconnecttime_210 { get ; set ; }
837
+ object Lastdisconnecttime { get ; set ; }
838
+ object Disconnectduration_211 { get ; set ; }
839
+ object Disconnectduration { get ; set ; }
811
840
object Interfacestableid_1001 { get ; set ; }
812
841
object Interfacestableid { get ; set ; }
813
842
object Interfacestablename_1002 { get ; set ; }
@@ -964,6 +993,28 @@ public class ConcreteSLProtocolExt : ConcreteSLProtocol, SLProtocolExt
964
993
public FleprovisionedflowstableQActionTable fleprovisionedflowstable { get ; set ; }
965
994
/// <summary>PID: 2 | Type: dummy</summary>
966
995
public System . Object Afterstartup_dummy { get { return GetParameter ( 2 ) ; } set { SetParameter ( 2 , value ) ; } }
996
+ /// <summary>PID: 10 | Type: dummy</summary>
997
+ public System . Object Trigger1min_dummy { get { return GetParameter ( 10 ) ; } set { SetParameter ( 10 , value ) ; } }
998
+ /// <summary>PID: 200 | Type: read</summary>
999
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1000
+ public System . Object Lastconnecttime_200 { get { return GetParameter ( 200 ) ; } set { SetParameter ( 200 , value ) ; } }
1001
+ /// <summary>PID: 200 | Type: read</summary>
1002
+ public System . Object Lastconnecttime { get { return GetParameter ( 200 ) ; } set { SetParameter ( 200 , value ) ; } }
1003
+ /// <summary>PID: 201 | Type: read</summary>
1004
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1005
+ public System . Object Connectduration_201 { get { return GetParameter ( 201 ) ; } set { SetParameter ( 201 , value ) ; } }
1006
+ /// <summary>PID: 201 | Type: read</summary>
1007
+ public System . Object Connectduration { get { return GetParameter ( 201 ) ; } set { SetParameter ( 201 , value ) ; } }
1008
+ /// <summary>PID: 210 | Type: read</summary>
1009
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1010
+ public System . Object Lastdisconnecttime_210 { get { return GetParameter ( 210 ) ; } set { SetParameter ( 210 , value ) ; } }
1011
+ /// <summary>PID: 210 | Type: read</summary>
1012
+ public System . Object Lastdisconnecttime { get { return GetParameter ( 210 ) ; } set { SetParameter ( 210 , value ) ; } }
1013
+ /// <summary>PID: 211 | Type: read</summary>
1014
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1015
+ public System . Object Disconnectduration_211 { get { return GetParameter ( 211 ) ; } set { SetParameter ( 211 , value ) ; } }
1016
+ /// <summary>PID: 211 | Type: read</summary>
1017
+ public System . Object Disconnectduration { get { return GetParameter ( 211 ) ; } set { SetParameter ( 211 , value ) ; } }
967
1018
/// <summary>PID: 1001 | Type: read</summary>
968
1019
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
969
1020
public System . Object Interfacestableid_1001 { get { return GetParameter ( 1001 ) ; } set { SetParameter ( 1001 , value ) ; } }
0 commit comments