Interface ICellularGatewayLan
- Namespace
- Meraki.Api.Interfaces.Products.CellularGateway
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface ICellularGatewayLanMethods
GetDeviceCellularGatewayLanAsync(string, CancellationToken)
Show the LAN Settings of a MG
[Get("/devices/{serial}/cellularGateway/lan")]
Task<CellularGatewayLan> GetDeviceCellularGatewayLanAsync(string serial, CancellationToken cancellationToken = default)Parameters
- serialstring
- The serial number 
- cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
- Thrown when fails to make API call 
UpdateDeviceCellularGatewayLanAsync(string, CellularGatewayLanUpdateRequest, CancellationToken)
Update the LAN Settings for a single MG.
[Put("/devices/{serial}/cellularGateway/lan")]
Task<CellularGatewayLan> UpdateDeviceCellularGatewayLanAsync(string serial, CellularGatewayLanUpdateRequest cellularGatewaySettings, CancellationToken cancellationToken = default)Parameters
- serialstring
- The serial number 
- cellularGatewaySettingsCellularGatewayLanUpdateRequest
- Body for updating LAN settings 
- cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
- Thrown when fails to make API call