Table of Contents

Interface ILiveToolsCableTest

Namespace
Meraki.Api.Interfaces.General.LiveTools
Assembly
Meraki.Api.dll
public interface ILiveToolsCableTest

Methods

CreateDeviceLiveToolsCableTestAsync(string, LiveToolsCableTestCreate, CancellationToken)

Enqueue a job to perform a cable test for the device on the specified ports.

[Post("/devices/{serial}/liveTools/cableTest")]
Task<LiveToolsCableTest> CreateDeviceLiveToolsCableTestAsync(string serial, LiveToolsCableTestCreate createDeviceLiveToolsCableTest, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

createDeviceLiveToolsCableTest LiveToolsCableTestCreate

Body

cancellationToken CancellationToken

Returns

Task<LiveToolsCableTest>

Exceptions

ApiException

Thrown when fails to make API call

GetDeviceLiveToolsCableTestAsync(string, string, CancellationToken)

Return a cable test live tool job.

[Get("/devices/{serial}/liveTools/cableTest/{id}")]
Task<LiveToolsCableTestResult> GetDeviceLiveToolsCableTestAsync(string serial, string id, CancellationToken cancellationToken = default)

Parameters

serial string

The serial number

id string

The cable test id

cancellationToken CancellationToken

Returns

Task<LiveToolsCableTestResult>

Exceptions

ApiException

Thrown when fails to make API call