@@ -8,6 +8,16 @@ namespace Skyline.DataMiner.Scripting
8
8
{
9
9
public static class Parameter
10
10
{
11
+ /// <summary>PID: 100 | Type: read</summary>
12
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
13
+ public const int sourcevsgname_100 = 100 ;
14
+ /// <summary>PID: 100 | Type: read</summary>
15
+ public const int sourcevsgname = 100 ;
16
+ /// <summary>PID: 102 | Type: read</summary>
17
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
18
+ public const int destinationvsgname_102 = 102 ;
19
+ /// <summary>PID: 102 | Type: read</summary>
20
+ public const int destinationvsgname = 102 ;
11
21
/// <summary>PID: 200 | Type: read</summary>
12
22
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
13
23
public const int lastconnecttime_200 = 200 ;
@@ -40,6 +50,16 @@ public static class Parameter
40
50
public const int fleinterappreturn = 9990991 ;
41
51
public class Write
42
52
{
53
+ /// <summary>PID: 101 | Type: write</summary>
54
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
55
+ public const int sourcevsgname_101 = 101 ;
56
+ /// <summary>PID: 101 | Type: write</summary>
57
+ public const int sourcevsgname = 101 ;
58
+ /// <summary>PID: 103 | Type: write</summary>
59
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
60
+ public const int destinationvsgname_103 = 103 ;
61
+ /// <summary>PID: 103 | Type: write</summary>
62
+ public const int destinationvsgname = 103 ;
43
63
/// <summary>PID: 9991158 | Type: write</summary>
44
64
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
45
65
public const int fleincomingflowstableexpectedrxbitrate_9991158 = 9991158 ;
@@ -799,6 +819,10 @@ public class Idx
799
819
}
800
820
public class WriteParameters
801
821
{
822
+ /// <summary>PID: 101 | Type: write</summary>
823
+ public System . Object Sourcevsgname { get { return Protocol . GetParameter ( 101 ) ; } set { Protocol . SetParameter ( 101 , value ) ; } }
824
+ /// <summary>PID: 103 | Type: write</summary>
825
+ public System . Object Destinationvsgname { get { return Protocol . GetParameter ( 103 ) ; } set { Protocol . SetParameter ( 103 , value ) ; } }
802
826
/// <summary>PID: 9991158 | Type: write</summary>
803
827
public System . Object Fleincomingflowstableexpectedrxbitrate { get { return Protocol . GetParameter ( 9991158 ) ; } set { Protocol . SetParameter ( 9991158 , value ) ; } }
804
828
/// <summary>PID: 9991165 | Type: write | DISCREETS: Delete = 1</summary>
@@ -829,6 +853,12 @@ public interface SLProtocolExt : SLProtocol
829
853
FleprovisionedflowstableQActionTable fleprovisionedflowstable { get ; set ; }
830
854
object Afterstartup_dummy { get ; set ; }
831
855
object Trigger1min_dummy { get ; set ; }
856
+ object Sourcevsgname_100 { get ; set ; }
857
+ object Sourcevsgname { get ; set ; }
858
+ object Sourcevsgname_101 { get ; set ; }
859
+ object Destinationvsgname_102 { get ; set ; }
860
+ object Destinationvsgname { get ; set ; }
861
+ object Destinationvsgname_103 { get ; set ; }
832
862
object Lastconnecttime_200 { get ; set ; }
833
863
object Lastconnecttime { get ; set ; }
834
864
object Connectduration_201 { get ; set ; }
@@ -995,6 +1025,22 @@ public class ConcreteSLProtocolExt : ConcreteSLProtocol, SLProtocolExt
995
1025
public System . Object Afterstartup_dummy { get { return GetParameter ( 2 ) ; } set { SetParameter ( 2 , value ) ; } }
996
1026
/// <summary>PID: 10 | Type: dummy</summary>
997
1027
public System . Object Trigger1min_dummy { get { return GetParameter ( 10 ) ; } set { SetParameter ( 10 , value ) ; } }
1028
+ /// <summary>PID: 100 | Type: read</summary>
1029
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1030
+ public System . Object Sourcevsgname_100 { get { return GetParameter ( 100 ) ; } set { SetParameter ( 100 , value ) ; } }
1031
+ /// <summary>PID: 100 | Type: read</summary>
1032
+ public System . Object Sourcevsgname { get { return GetParameter ( 100 ) ; } set { SetParameter ( 100 , value ) ; } }
1033
+ /// <summary>PID: 101 | Type: write</summary>
1034
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1035
+ public System . Object Sourcevsgname_101 { get { return GetParameter ( 101 ) ; } set { SetParameter ( 101 , value ) ; } }
1036
+ /// <summary>PID: 102 | Type: read</summary>
1037
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1038
+ public System . Object Destinationvsgname_102 { get { return GetParameter ( 102 ) ; } set { SetParameter ( 102 , value ) ; } }
1039
+ /// <summary>PID: 102 | Type: read</summary>
1040
+ public System . Object Destinationvsgname { get { return GetParameter ( 102 ) ; } set { SetParameter ( 102 , value ) ; } }
1041
+ /// <summary>PID: 103 | Type: write</summary>
1042
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
1043
+ public System . Object Destinationvsgname_103 { get { return GetParameter ( 103 ) ; } set { SetParameter ( 103 , value ) ; } }
998
1044
/// <summary>PID: 200 | Type: read</summary>
999
1045
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
1000
1046
public System . Object Lastconnecttime_200 { get { return GetParameter ( 200 ) ; } set { SetParameter ( 200 , value ) ; } }
0 commit comments