Table of Contents

Interface ICellularGatewayDhcp

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

Represents a collection of functions to interact with the API endpoints

public interface ICellularGatewayDhcp

Methods

GetNetworkCellularGatewayDhcpAsync(string, CancellationToken)

List common DHCP settings of MGs

[Get("/networks/{networkId}/cellularGateway/dhcp")]
Task<NetworkCellularGatewayDhcp> GetNetworkCellularGatewayDhcpAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<NetworkCellularGatewayDhcp>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkCellularGatewayDhcpAsync(string, NetworkCellularGatewayDhcp, CancellationToken)

Update common DHCP settings of MGs

[Put("/networks/{networkId}/cellularGateway/dhcp")]
Task<NetworkCellularGatewayDhcp> UpdateNetworkCellularGatewayDhcpAsync(string networkId, NetworkCellularGatewayDhcp updateNetworkCellularGatewaySettingsDhcp, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkCellularGatewaySettingsDhcp NetworkCellularGatewayDhcp

Body for updating DHCP settings

cancellationToken CancellationToken

Returns

Task<NetworkCellularGatewayDhcp>

Exceptions

ApiException

Thrown when fails to make API call