Table of Contents

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 string

The network id

cancellationToken CancellationToken

Returns

Task<SwitchMtu>

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 string

The network id

updateSwitchMtu SwitchMtu
cancellationToken CancellationToken

Returns

Task<SwitchMtu>

Exceptions

ApiException

Thrown when fails to make API call