Class NetworkOpportunisticPcapUpdateRequestEnablement
Enablement settings
[DataContract]
public class NetworkOpportunisticPcapUpdateRequestEnablement
- Inheritance
-
NetworkOpportunisticPcapUpdateRequestEnablement
- Inherited Members
Constructors
NetworkOpportunisticPcapUpdateRequestEnablement()
public NetworkOpportunisticPcapUpdateRequestEnablement()
Properties
NetworkWide
Controls Opportunistic Pcap enablement within a network:
- 0 - Disabled
- 1 - Enabled
- 2 - Enabled only for some APs/Tags
[DataMember(Name = "networkWide")]
public int? NetworkWide { get; set; }
Property Value
- int?
Serials
AP serials for which Opportunistic Pcap should be enabled. Any list of serial sent here will overwrite the existing list of enabled APs.
Do not send anything to keep the previous settings. Valid only when opportunistic pcap is not set at network level(i.e.networkWide = 2)
[DataMember(Name = "serials")]
public List<string>? Serials { get; set; }
Property Value
Tags
AP tags for which Opportunistic Pcap should be enabled. Any list of tags sent here will overwrite the existing list of enabled tags.
Do not send anything to keep the previous settings.Valid only when opportunistic pcap is not set at network level(i.e.networkWide = 2)
[DataMember(Name = "tags")]
public List<string>? Tags { get; set; }