Interface ISwitchQosRules
- Namespace
- Meraki.Api.Interfaces.Products.Switch
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface ISwitchQosRules
Methods
CreateNetworkSwitchQosRuleAsync(string, SwitchSettingsQosRuleCreationRequest, CancellationToken)
Add a quality of service rule
[Post("/networks/{networkId}/switch/qosRules")]
Task<QosRule> CreateNetworkSwitchQosRuleAsync(string networkId, SwitchSettingsQosRuleCreationRequest createNetworkSwitchSettingsQosRule, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
createNetworkSwitchSettingsQosRule
SwitchSettingsQosRuleCreationRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteNetworkSwitchQosRuleAsync(string, string, CancellationToken)
Delete a quality of service rule
[Delete("/networks/{networkId}/switch/qosRules/{qosRuleId}")]
Task DeleteNetworkSwitchQosRuleAsync(string networkId, string qosRuleId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
qosRuleId
stringThe quality of service rule id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchQosRuleAsync(string, string, CancellationToken)
Return a quality of service rule
[Get("/networks/{networkId}/switch/qosRules/{qosRuleId}")]
Task<QosRule> GetNetworkSwitchQosRuleAsync(string networkId, string qosRuleId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
qosRuleId
stringThe quality of service rule id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchQosRulesAsync(string, CancellationToken)
List quality of service rules
[Get("/networks/{networkId}/switch/qosRules")]
Task<List<QosRule>> GetNetworkSwitchQosRulesAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchQosRulesOrderAsync(string, CancellationToken)
Return the quality of service rule IDs by order in which they will be processed by the switch
[Get("/networks/{networkId}/switch/qosRules/order")]
Task<QosRulesOrder> GetNetworkSwitchQosRulesOrderAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkSwitchQosRuleAsync(string, string, SwitchSettingsQosRuleUpdateRequest, CancellationToken)
Update a quality of service rule
[Put("/networks/{networkId}/switch/qosRules/{qosRuleId}")]
Task<QosRule> UpdateNetworkSwitchQosRuleAsync(string networkId, string qosRuleId, SwitchSettingsQosRuleUpdateRequest updateNetworkSwitchSettingsQosRule, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
qosRuleId
stringupdateNetworkSwitchSettingsQosRule
SwitchSettingsQosRuleUpdateRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkSwitchQosRulesOrderAsync(string, QosRulesOrder, CancellationToken)
Update the order in which the rules should be processed by the switch
[Put("/networks/{networkId}/switch/qosRules/order")]
Task<QosRulesOrder> UpdateNetworkSwitchQosRulesOrderAsync(string networkId, QosRulesOrder qosRulesOrder, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
qosRulesOrder
QosRulesOrdercancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call