Table of Contents

Interface ISwitchAlternateManagementInterface

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

Represents a collection of functions to interact with the API endpoints

public interface ISwitchAlternateManagementInterface

Methods

GetNetworkSwitchAlternateManagementInterfaceAsync(string, CancellationToken)

Return the switch alternate management interface for the network

[Get("/networks/{networkId}/switch/alternateManagementInterface")]
Task<AlternateManagementInterface> GetNetworkSwitchAlternateManagementInterfaceAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<AlternateManagementInterface>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkSwitchAlternateManagementInterfaceAsync(string, AlternateManagementInterface, CancellationToken)

Update the switch alternate management interface for the network

[Put("/networks/{networkId}/switch/alternateManagementInterface")]
Task<AlternateManagementInterface> UpdateNetworkSwitchAlternateManagementInterfaceAsync(string networkId, AlternateManagementInterface alternateManagementInterface, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

alternateManagementInterface AlternateManagementInterface

Body for updating network switch alternate management interface

cancellationToken CancellationToken

Returns

Task<AlternateManagementInterface>

Exceptions

ApiException

Thrown when fails to make API call