Table of Contents

Class SwitchSettingsQosRuleUpdateRequest

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

UpdateNetworkSwitchSettingsQosRule

[DataContract]
public class SwitchSettingsQosRuleUpdateRequest
Inheritance
SwitchSettingsQosRuleUpdateRequest
Inherited Members

Properties

DestinationPort

The destination port of the incoming packet. Applicable only if protocol is TCP or UDP.

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "dstPort")]
public int? DestinationPort { get; set; }

Property Value

int?

Dscp

DSCP tag that should be assigned to incoming packet. Set this to -1 to trust incoming DSCP. Default value is 0.

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "dscp")]
public int? Dscp { get; set; }

Property Value

int?

DstPortRange

The destination port range of the incoming packet. Applicable only if protocol is set to TCP or UDP. Example: 70-80

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "dstPortRange")]
public string DstPortRange { get; set; }

Property Value

string

Protocol

Gets or Sets Protocol

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "protocol")]
public TcpUdpAnyCapsProtocol Protocol { get; set; }

Property Value

TcpUdpAnyCapsProtocol

SourcePort

The source port of the incoming packet. Applicable only if protocol is TCP or UDP.

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "srcPort")]
public int? SourcePort { get; set; }

Property Value

int?

SrcPortRange

The source port range of the incoming packet. Applicable only if protocol is set to TCP or UDP. Example: 70-80

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "srcPortRange")]
public string SrcPortRange { get; set; }

Property Value

string

Vlan

The VLAN of the incoming packet. A null value will match any VLAN.

[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "vlan")]
public int? Vlan { get; set; }

Property Value

int?