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
stringThe network id
cancellationToken
CancellationToken
Returns
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
stringThe network id
alternateManagementInterface
AlternateManagementInterfaceBody for updating network switch alternate management interface
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call