Table of Contents

Interface IApplianceVlansSettings

Namespace
Meraki.Api.Interfaces.Products.Appliance
Assembly
Meraki.Api.dll
public interface IApplianceVlansSettings

Methods

GetNetworkApplianceVlansSettingsAsync(string, CancellationToken)

Returns the enabled status of VLANs for the network

[Get("/networks/{networkId}/appliance/vlans/settings")]
Task<VlansEnabledState> GetNetworkApplianceVlansSettingsAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<VlansEnabledState>

UpdateNetworkApplianceVlansSettingsAsync(string, VlansEnabledState, CancellationToken)

Enable/Disable VLANs for the given network

[Put("/networks/{networkId}/appliance/vlans/settings")]
Task<VlansEnabledState> UpdateNetworkApplianceVlansSettingsAsync(string networkId, VlansEnabledState updateNetworkVlansEnabledState, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkVlansEnabledState VlansEnabledState
cancellationToken CancellationToken

Returns

Task<VlansEnabledState>