DiscoveryModelFactory.RunResult Method

Definition

Run result.

public static Azure.AI.Discovery.RunResult RunResult(string status = default, string runtimeDetails = default, DateTimeOffset? createdAt = default, DateTimeOffset? completedAt = default, string createdBy = default, Azure.AI.Discovery.RunResultToolReport toolReport = default, System.Collections.Generic.IEnumerable<Azure.AI.Discovery.OutputDataUri> outputData = default, string debugInfo = default);
static member RunResult : string * string * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string * Azure.AI.Discovery.RunResultToolReport * seq<Azure.AI.Discovery.OutputDataUri> * string -> Azure.AI.Discovery.RunResult
Public Shared Function RunResult (Optional status As String = Nothing, Optional runtimeDetails As String = Nothing, Optional createdAt As Nullable(Of DateTimeOffset) = Nothing, Optional completedAt As Nullable(Of DateTimeOffset) = Nothing, Optional createdBy As String = Nothing, Optional toolReport As RunResultToolReport = Nothing, Optional outputData As IEnumerable(Of OutputDataUri) = Nothing, Optional debugInfo As String = Nothing) As RunResult

Parameters

status
String

Status of the run.

runtimeDetails
String

Human-readable details about the run status.

createdAt
Nullable<DateTimeOffset>

The timestamp when the resource was created.

completedAt
Nullable<DateTimeOffset>

The time the run completed.

createdBy
String

The user that started the tool run.

toolReport
RunResultToolReport

Details provided by the tool (rather than the platform).

outputData
IEnumerable<OutputDataUri>

Output data URIs.

debugInfo
String

Debugging information.

Returns

A new RunResult instance for mocking.

Applies to