Interface ISwitchMtu
- Namespace
- Meraki.Api.Interfaces.Products.Switch
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface ISwitchMtu
Methods
GetNetworkSwitchMtuAsync(string, CancellationToken)
Return the MTU configuration
[Get("/networks/{networkId}/switch/mtu")]
Task<SwitchMtu> GetNetworkSwitchMtuAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkSwitchMtuAsync(string, SwitchMtu, CancellationToken)
Update the MTU configuration
[Put("/networks/{networkId}/switch/mtu")]
Task<SwitchMtu> UpdateNetworkSwitchMtuAsync(string networkId, SwitchMtu updateSwitchMtu, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
updateSwitchMtu
SwitchMtucancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call