Interface ISwitchStacks
- Namespace
- Meraki.Api.Interfaces.Products.Switch
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface ISwitchStacks
Methods
AddNetworkSwitchStackAsync(string, string, NetworkSwitchStackCreationRequest, CancellationToken)
Add a switch to a stack
[Post("/networks/{networkId}/switch/stacks/{switchStackId}/add")]
Task<SwitchStack> AddNetworkSwitchStackAsync(string networkId, string switchStackId, NetworkSwitchStackCreationRequest addNetworkSwitchStack, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
addNetworkSwitchStack
NetworkSwitchStackCreationRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
CreateNetworkSwitchStackAsync(string, SwitchStackCreationRequest, CancellationToken)
Create a switch stack
[Post("/networks/{networkId}/switch/stacks")]
Task<SwitchStack> CreateNetworkSwitchStackAsync(string networkId, SwitchStackCreationRequest createNetworkSwitchStack, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
createNetworkSwitchStack
SwitchStackCreationRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
CreateNetworkSwitchStackRoutingInterfaceAsync(string, string, RoutingInterfaceCreateRequest, CancellationToken)
Create a layer 3 interface for a switch stack
[Post("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces")]
Task<RoutingInterface> CreateNetworkSwitchStackRoutingInterfaceAsync(string networkId, string switchStackId, RoutingInterfaceCreateRequest routingInterface, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringroutingInterface
RoutingInterfaceCreateRequestcancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
CreateNetworkSwitchStackRoutingStaticRouteAsync(string, string, SwitchStaticRouteCreationRequest, CancellationToken)
Create a layer 3 static route for a switch stack
[Post("/networks/{networkId}/switch/stacks/{switchStackId}/routing/staticRoutes")]
Task<SwitchStaticRoute> CreateNetworkSwitchStackRoutingStaticRouteAsync(string networkId, string switchStackId, SwitchStaticRouteCreationRequest createNetworkSwitchStackRoutingStaticRoute, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
createNetworkSwitchStackRoutingStaticRoute
SwitchStaticRouteCreationRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteNetworkSwitchStackAsync(string, string, CancellationToken)
Delete a stack
[Delete("/networks/{networkId}/switch/stacks/{switchStackId}")]
Task DeleteNetworkSwitchStackAsync(string networkId, string switchStackId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteNetworkSwitchStackRoutingInterfaceAsync(string, string, string, CancellationToken)
Delete a layer 3 interface from a switch stack
[Delete("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}")]
Task DeleteNetworkSwitchStackRoutingInterfaceAsync(string networkId, string switchStackId, string interfaceId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringinterfaceId
stringcancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
DeleteNetworkSwitchStackRoutingStaticRouteAsync(string, string, string, CancellationToken)
Delete a layer 3 static route for a switch stack
[Delete("/networks/{networkId}/switch/stacks/{switchStackId}/routing/staticRoutes/{staticRouteId}")]
Task DeleteNetworkSwitchStackRoutingStaticRouteAsync(string networkId, string switchStackId, string staticRouteId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
staticRouteId
stringThe static route id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStackAsync(string, string, CancellationToken)
Show a switch stack
[Get("/networks/{networkId}/switch/stacks/{switchStackId}")]
Task<SwitchStack> GetNetworkSwitchStackAsync(string networkId, string switchStackId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStackRoutingInterfaceAsync(string, string, string, CancellationToken)
Return a layer 3 interface from a switch stack
[Get("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}")]
Task<RoutingInterface> GetNetworkSwitchStackRoutingInterfaceAsync(string networkId, string switchStackId, string interfaceId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringinterfaceId
stringcancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStackRoutingInterfaceDhcpAsync(string, string, string, CancellationToken)
Return a layer 3 interface DHCP configuration for a switch stack
[Get("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}/dhcp")]
Task<RoutingInterfaceDhcp> GetNetworkSwitchStackRoutingInterfaceDhcpAsync(string networkId, string switchStackId, string interfaceId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
interfaceId
stringThe interface id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStackRoutingInterfacesAsync(string, string, CancellationToken)
List layer 3 interfaces for a switch stack
[Get("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces")]
Task<List<RoutingInterface>> GetNetworkSwitchStackRoutingInterfacesAsync(string networkId, string switchStackId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringcancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStackRoutingStaticRouteAsync(string, string, string, CancellationToken)
Return a layer 3 static route for a switch stack
[Get("/networks/{networkId}/switch/stacks/{switchStackId}/routing/staticRoutes/{staticRouteId}")]
Task<SwitchStaticRoute> GetNetworkSwitchStackRoutingStaticRouteAsync(string networkId, string switchStackId, string staticRouteId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
staticRouteId
stringThe static route id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStackRoutingStaticRoutesAsync(string, string, CancellationToken)
List layer 3 static routes for a switch stack
[Get("/networks/{networkId}/switch/stacks/{switchStackId}/routing/staticRoutes")]
Task<List<SwitchStaticRoute>> GetNetworkSwitchStackRoutingStaticRoutesAsync(string networkId, string switchStackId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
GetNetworkSwitchStacksAsync(string, CancellationToken)
List the switch stacks in a network
[Get("/networks/{networkId}/switch/stacks")]
Task<List<SwitchStack>> GetNetworkSwitchStacksAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
RemoveNetworkSwitchStackAsync(string, string, RemoveNetworkSwitchStack, CancellationToken)
Remove a switch from a stack
[Post("/networks/{networkId}/switch/stacks/{switchStackId}/remove")]
Task<SwitchStack> RemoveNetworkSwitchStackAsync(string networkId, string switchStackId, RemoveNetworkSwitchStack removeNetworkSwitchStack, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
removeNetworkSwitchStack
RemoveNetworkSwitchStackcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkSwitchStackRoutingInterfaceAsync(string, string, string, RoutingInterfaceUpdateRequest, CancellationToken)
Update a layer 3 interface for a switch stack
[Put("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}")]
Task<RoutingInterface> UpdateNetworkSwitchStackRoutingInterfaceAsync(string networkId, string switchStackId, string interfaceId, RoutingInterfaceUpdateRequest routingInterface, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringinterfaceId
stringroutingInterface
RoutingInterfaceUpdateRequestcancellationToken
CancellationTokenThe cancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkSwitchStackRoutingInterfaceDhcpAsync(string, string, string, RoutingInterfaceDhcp, CancellationToken)
Update a layer 3 interface DHCP configuration for a switch stack
[Put("/networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}/dhcp")]
Task<RoutingInterfaceDhcp> UpdateNetworkSwitchStackRoutingInterfaceDhcpAsync(string networkId, string switchStackId, string interfaceId, RoutingInterfaceDhcp routingInterfaceDhcp, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
interfaceId
stringThe interface id
routingInterfaceDhcp
RoutingInterfaceDhcpcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkSwitchStackRoutingStaticRouteAsync(string, string, string, SwitchStaticRouteCreationRequest, CancellationToken)
Update a layer 3 static route for a switch stack
[Put("/networks/{networkId}/switch/stacks/{switchStackId}/routing/staticRoutes/{staticRouteId}")]
Task<SwitchStaticRoute> UpdateNetworkSwitchStackRoutingStaticRouteAsync(string networkId, string switchStackId, string staticRouteId, SwitchStaticRouteCreationRequest updateNetworkSwitchStackRoutingStaticRoute, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
switchStackId
stringThe switch stack id
staticRouteId
stringThe static route id
updateNetworkSwitchStackRoutingStaticRoute
SwitchStaticRouteCreationRequestcancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call