Table of Contents

Interface ISwitchStormControl

Namespace
Meraki.Api.Interfaces.Products.Switch
Assembly
Meraki.Api.dll

Represents a collection of functions to interact with the API endpoints

public interface ISwitchStormControl

Methods

GetNetworkSwitchStormControlAsync(string, CancellationToken)

Return the storm control configuration for a switch network

[Get("/networks/{networkId}/switch/stormControl")]
Task<StormControl> GetNetworkSwitchStormControlAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<StormControl>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkSwitchStormControlAsync(string, StormControl, CancellationToken)

Update the storm control configuration for a switch network

[Put("/networks/{networkId}/switch/stormControl")]
Task<StormControl> UpdateNetworkSwitchStormControlAsync(string networkId, StormControl updateNetworkSwitchSettingsStormControl, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkSwitchSettingsStormControl StormControl
cancellationToken CancellationToken

Returns

Task<StormControl>

Exceptions

ApiException

Thrown when fails to make API call