Interface IDeviceManagementInterface
- Namespace
- Meraki.Api.Interfaces.General.Devices
- Assembly
- Meraki.Api.dll
public interface IDeviceManagementInterface
Methods
GetDeviceManagementInterfaceAsync(string, CancellationToken)
Return the management interface settings for a device
[Get("/devices/{serial}/managementInterface")]
Task<DeviceManagementInterfaceSettings> GetDeviceManagementInterfaceAsync(string serial, CancellationToken cancellationToken = default)
Parameters
serial
stringThe serial number
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateDeviceManagementInterfaceAsync(string, DeviceManagementInterfaceSettings, CancellationToken)
Update the management interface settings for a device
[Put("/devices/{serial}/managementInterface")]
Task<DeviceManagementInterfaceSettings> UpdateDeviceManagementInterfaceAsync(string serial, DeviceManagementInterfaceSettings managementInterfaceSettingsUpdateDto, CancellationToken cancellationToken = default)
Parameters
serial
stringThe serial number
managementInterfaceSettingsUpdateDto
DeviceManagementInterfaceSettingsBody for updating management interface settings
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call