Table of Contents

Interface IWirelessSsidsVpn

Namespace
Meraki.Api.Interfaces.Products.Wireless
Assembly
Meraki.Api.dll
public interface IWirelessSsidsVpn

Methods

GetNetworkWirelessSsidVpnAsync(string, string, CancellationToken)

List the VPN settings for the SSID.

[Get("/networks/{networkId}/wireless/ssids/{number}/vpn")]
Task<VpnSettings> GetNetworkWirelessSsidVpnAsync(string networkId, string number, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

number string

The SSID number

cancellationToken CancellationToken

Returns

Task<VpnSettings>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkWirelessSsidVpnAsync(string, string, VpnSettings, CancellationToken)

Update the VPN settings for the SSID

[Put("/networks/{networkId}/wireless/ssids/{number}/vpn")]
Task<VpnSettings> UpdateNetworkWirelessSsidVpnAsync(string networkId, string number, VpnSettings updateNetworkWirelessSsidVpn, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

number string

The SSID number

updateNetworkWirelessSsidVpn VpnSettings
cancellationToken CancellationToken

Returns

Task<VpnSettings>

Exceptions

ApiException

Thrown when fails to make API call