Class SsidTrafficShapingRule
Rule11
[DataContract]
public class SsidTrafficShapingRule
- Inheritance
-
SsidTrafficShapingRule
- Inherited Members
Properties
Definitions
A list of objects describing the definitions of your traffic shaping rule. At least one definition is required.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "definitions")]
public List<Definition> Definitions { get; set; }
Property Value
DscpTagValue
The DSCP tag applied by your rule. null means 'Do not change DSCP tag'. For a list of possible tag values, use the trafficShaping/dscpTaggingOptions endpoint.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "dscpTagValue")]
public int? DscpTagValue { get; set; }
Property Value
- int?
PcpTagValue
The PCP tag applied by your rule. Can be 0 (lowest priority) through 7 (highest priority). null means 'Do not set PCP tag'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "pcpTagValue")]
public int? PcpTagValue { get; set; }
Property Value
- int?
PerClientBandwidthLimits
An object describing the bandwidth settings for your rule.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "perClientBandwidthLimits")]
public PerClientBandwidthLimits PerClientBandwidthLimits { get; set; }