Interface ICellularGatewayUplink
- Namespace
- Meraki.Api.Interfaces.Products.CellularGateway
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface ICellularGatewayUplink
Methods
GetNetworkCellularGatewayUplinkAsync(string, CancellationToken)
Returns the uplink settings for your MG network.
[Get("/networks/{networkId}/cellularGateway/uplink")]
Task<NetworkCellularGatewayUplink> GetNetworkCellularGatewayUplinkAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkCellularGatewayUplinkAsync(string, NetworkCellularGatewayUplink, CancellationToken)
Updates the uplink settings for your MG network.
[Put("/networks/{networkId}/cellularGateway/uplink")]
Task<NetworkCellularGatewayUplink> UpdateNetworkCellularGatewayUplinkAsync(string networkId, NetworkCellularGatewayUplink updateNetworkCellularGatewaySettingsUplink, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
updateNetworkCellularGatewaySettingsUplink
NetworkCellularGatewayUplinkBody for updating uplink settings
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call