diff --git a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EthThresholds/Messages.cs b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EthThresholds/Messages.cs
index 5d4190c..bbaf467 100644
--- a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EthThresholds/Messages.cs
+++ b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EthThresholds/Messages.cs
@@ -4,6 +4,9 @@
using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;
+ ///
+ /// Inter-App Message allowing to add new entries to the Ethernet Thresholds table.
+ ///
public class CreateEthThreshold : Message
{
public EthThresholdData ThresholdData { get; set; }
@@ -24,6 +27,9 @@ public class CreateEthThresholdResult : Message
public string ThresholdID { get; set; }
}
+ ///
+ /// Inter-App Message allowing to edit existing entries from the Ethernet Thresholds table.
+ ///
public class EditEthThreshold : Message
{
public string ThresholdToUpdateName { get; set; }
@@ -46,6 +52,9 @@ public class EditEthThresholdResult : Message
public string ThresholdId { get; set; }
}
+ ///
+ /// Inter-App Message allowing to delete existing entries from the Ethernet Thresholds table.
+ ///
public class DeleteEthThresholds : Message
{
public IEnumerable ThresholdToDeleteNames { get; set; }
diff --git a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EtrThresholds/Messages.cs b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EtrThresholds/Messages.cs
index c985848..5b17c02 100644
--- a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EtrThresholds/Messages.cs
+++ b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/EtrThresholds/Messages.cs
@@ -4,6 +4,9 @@
using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;
+ ///
+ /// Inter-App Message allowing to add new entries to the ETR Thresholds table.
+ ///
public class CreateEtrThreshold : Message
{
public EtrThresholdData ThresholdData { get; set; }
@@ -24,6 +27,9 @@ public class CreateEtrThresholdResult : Message
public string ThresholdID { get; set; }
}
+ ///
+ /// Inter-App Message allowing to edit existing entries from the ETR Thresholds table.
+ ///
public class EditEtrThreshold : Message
{
public string ThresholdToUpdateName { get; set; }
@@ -46,6 +52,9 @@ public class EditEtrThresholdResult : Message
public string ThresholdId { get; set; }
}
+ ///
+ /// Inter-App Message allowing to delete existing entries from the ETR Thresholds table.
+ ///
public class DeleteEtrThresholds : Message
{
public IEnumerable ThresholdToDeleteNames { get; set; }
diff --git a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholds/Messages.cs b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholds/Messages.cs
index b713e7f..5804ee6 100644
--- a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholds/Messages.cs
+++ b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholds/Messages.cs
@@ -4,6 +4,9 @@
using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;
+ ///
+ /// Inter-App Message allowing to add new entries to the PID Thresholds table.
+ ///
public class CreatePidThreshold : Message
{
public PidThresholdData ThresholdData { get; set; }
@@ -24,6 +27,9 @@ public class CreatePidThresholdResult : Message
public string ThresholdID { get; set; }
}
+ ///
+ /// Inter-App Message allowing to edit existing entries from the PID Thresholds table.
+ ///
public class EditPidThreshold : Message
{
public string ThresholdToUpdateName { get; set; }
@@ -46,6 +52,9 @@ public class EditPidThresholdResult : Message
public string ThresholdId { get; set; }
}
+ ///
+ /// Inter-App Message allowing to delete existing entries from the PID Thresholds table.
+ ///
public class DeletePidThresholds : Message
{
public IEnumerable ThresholdToDeleteNames { get; set; }
diff --git a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholdsPresets/Messages.cs b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholdsPresets/Messages.cs
index e9c196d..451ad78 100644
--- a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholdsPresets/Messages.cs
+++ b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/AlarmThresholds/PidThresholdsPresets/Messages.cs
@@ -4,6 +4,9 @@
using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;
+ ///
+ /// Inter-App Message allowing to add new entries to the PID Threshold Presets table.
+ ///
public class CreatePidThresholdPreset : Message
{
public string ThresholdName { get; set; }
@@ -27,6 +30,9 @@ public class CreatePidThresholdPresetResult : Message
////public string ThresholdID { get; set; }
}
+ ///
+ /// Inter-App Message allowing to edit existing entries from the PID Threshold Presets table.
+ ///
public class EditPidThresholdPreset : Message
{
///
@@ -74,6 +80,9 @@ public class EditPidThresholdPresetResult : Message
public string ThresholdPresetKey { get; set; }
}
+ ///
+ /// Inter-App Message allowing to delete existing entries from the PID Threshold Presets table.
+ ///
public class DeletePidThresholdPreset : Message
{
///
diff --git a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/Ethernet/Messages.cs b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/Ethernet/Messages.cs
index 09d05a2..98e4f4d 100644
--- a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/Ethernet/Messages.cs
+++ b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/Ethernet/Messages.cs
@@ -4,6 +4,9 @@
using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;
+ ///
+ /// Inter-App Message allowing to add new entries to the Ethernet Available Streams table.
+ ///
public class CreateEthStream : Message
{
public EthStreamData StreamData { get; set; }
@@ -26,6 +29,9 @@ public class CreateEthStreamResult : Message
public int StreamID { get; set; }
}
+ ///
+ /// Inter-App Message allowing to edit existing entries from the Ethernet Available Streams table.
+ ///
public class EditEthStream : Message
{
public string Key { get; set; }
@@ -48,6 +54,9 @@ public class EditEthStreamResult : Message
public string StreamKey { get; set; }
}
+ ///
+ /// Inter-App Message allowing to delete existing entries from the Ethernet Available Streams table.
+ ///
public class DeleteEthStreams : Message
{
public string[] StreamKeys { get; set; }
diff --git a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/OTT/Messages.cs b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/OTT/Messages.cs
index edff176..3b8b617 100644
--- a/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/OTT/Messages.cs
+++ b/Utils.ConnectorAPI.BridgeTechnologies.VBProbeSeries/OTT/Messages.cs
@@ -4,6 +4,9 @@
using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;
+ ///
+ /// Inter-App Message allowing to add new entries to the OTT Available Channels table.
+ ///
public class CreateOttChannel : Message
{
public OttChannelData ChannelData { get; set; }
@@ -24,6 +27,9 @@ public class CreateOttChannelResult : Message
public string ChannelId { get; set; }
}
+ ///
+ /// Inter-App Message allowing to edit existing entries from the OTT Available Channels table.
+ ///
public class EditOttChannel : Message
{
public string ChannelId { get; set; }
@@ -46,6 +52,9 @@ public class EditOttChannelResult : Message
public string ChannelId { get; set; }
}
+ ///
+ /// Inter-App Message allowing to delete existing entries from the OTT Available Channels table.
+ ///
public class DeleteOttChannels : Message
{
public string[] ChannelIds { get; set; }