Table of Contents

Interface ISwitchAccessControlLists

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

Represents a collection of functions to interact with the API endpoints

public interface ISwitchAccessControlLists

Methods

GetNetworkSwitchAccessControlListsAsync(string, CancellationToken)

Return the access control lists for a MS network

[Get("/networks/{networkId}/switch/accessControlLists")]
Task<SwitchAccessControlListRules> GetNetworkSwitchAccessControlListsAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<SwitchAccessControlListRules>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkSwitchAccessControlListsAsync(string, SwitchAccessControlListRules, CancellationToken)

Update the access control lists for a MS network

[Put("/networks/{networkId}/switch/accessControlLists")]
Task<SwitchAccessControlListRules> UpdateNetworkSwitchAccessControlListsAsync(string networkId, SwitchAccessControlListRules updateNetworkSwitchAccessControlLists, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkSwitchAccessControlLists SwitchAccessControlListRules
cancellationToken CancellationToken

Returns

Task<SwitchAccessControlListRules>

Exceptions

ApiException

Thrown when fails to make API call