Table of Contents

Interface ISwitchDhcpServerPolicy

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

Represents a collection of functions to interact with the API endpoints

public interface ISwitchDhcpServerPolicy

Methods

GetNetworkSwitchDhcpServerPolicyAsync(string, CancellationToken)

Return the DHCP server policy

[Get("/networks/{networkId}/switch/dhcpServerPolicy")]
Task<DhcpServerPolicy> GetNetworkSwitchDhcpServerPolicyAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<DhcpServerPolicy>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkSwitchDhcpServerPolicyAsync(string, DhcpServerPolicy, CancellationToken)

Update the DHCP server policy

[Put("/networks/{networkId}/switch/dhcpServerPolicy")]
Task<DhcpServerPolicy> UpdateNetworkSwitchDhcpServerPolicyAsync(string networkId, DhcpServerPolicy updateNetworkSwitchSettingsDhcpServerPolicy, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

updateNetworkSwitchSettingsDhcpServerPolicy DhcpServerPolicy
cancellationToken CancellationToken

Returns

Task<DhcpServerPolicy>

Exceptions

ApiException

Thrown when fails to make API call