Condividi tramite


LoadTestRunClient.GenerateTestRunInsights Method

Definition

Overloads

Name Description
GenerateTestRunInsights(WaitUntil, String, CancellationToken)

Generate insights for the test run.

GenerateTestRunInsights(WaitUntil, String, RequestContext)

Generate insights for the test run.

GenerateTestRunInsights(WaitUntil, String, CancellationToken)

Source:
LoadTestRunClient.cs

Generate insights for the test run.

public virtual Azure.Operation GenerateTestRunInsights(Azure.WaitUntil waitUntil, string testRunId, System.Threading.CancellationToken cancellationToken = default);
abstract member GenerateTestRunInsights : Azure.WaitUntil * string * System.Threading.CancellationToken -> Azure.Operation
override this.GenerateTestRunInsights : Azure.WaitUntil * string * System.Threading.CancellationToken -> Azure.Operation
Public Overridable Function GenerateTestRunInsights (waitUntil As WaitUntil, testRunId As String, Optional cancellationToken As CancellationToken = Nothing) As Operation

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

testRunId
String

Unique name for the load test run, must contain only lower-case alphabetic, numeric, underscore or hyphen characters.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

testRunId is null.

testRunId is an empty string, and was expected to be non-empty.

Applies to

GenerateTestRunInsights(WaitUntil, String, RequestContext)

Source:
LoadTestRunClient.cs

Generate insights for the test run.

public virtual Azure.Operation GenerateTestRunInsights(Azure.WaitUntil waitUntil, string testRunId, Azure.RequestContext context);
abstract member GenerateTestRunInsights : Azure.WaitUntil * string * Azure.RequestContext -> Azure.Operation
override this.GenerateTestRunInsights : Azure.WaitUntil * string * Azure.RequestContext -> Azure.Operation
Public Overridable Function GenerateTestRunInsights (waitUntil As WaitUntil, testRunId As String, context As RequestContext) As Operation

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

testRunId
String

Unique name for the load test run, must contain only lower-case alphabetic, numeric, underscore or hyphen characters.

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

testRunId is null.

testRunId is an empty string, and was expected to be non-empty.

Applies to