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
serialstringThe serial number
cancellationTokenCancellationToken
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
serialstringThe serial number
managementInterfaceSettingsUpdateDtoDeviceManagementInterfaceSettingsBody for updating management interface settings
cancellationTokenCancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call