Share via


IndexerExecutionInfo Constructors

Definition

Overloads

IndexerExecutionInfo()

Initializes a new instance of the IndexerExecutionInfo class.

IndexerExecutionInfo(IndexerStatus, IndexerExecutionResult, IList<IndexerExecutionResult>, IndexerLimits)

Initializes a new instance of the IndexerExecutionInfo class.

IndexerExecutionInfo()

Source:
IndexerExecutionInfo.cs

Initializes a new instance of the IndexerExecutionInfo class.

public IndexerExecutionInfo ();
Public Sub New ()

Applies to

IndexerExecutionInfo(IndexerStatus, IndexerExecutionResult, IList<IndexerExecutionResult>, IndexerLimits)

Source:
IndexerExecutionInfo.cs

Initializes a new instance of the IndexerExecutionInfo class.

public IndexerExecutionInfo (Microsoft.Azure.Search.Models.IndexerStatus status = Microsoft.Azure.Search.Models.IndexerStatus.Unknown, Microsoft.Azure.Search.Models.IndexerExecutionResult lastResult = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.IndexerExecutionResult> executionHistory = default, Microsoft.Azure.Search.Models.IndexerLimits limits = default);
new Microsoft.Azure.Search.Models.IndexerExecutionInfo : Microsoft.Azure.Search.Models.IndexerStatus * Microsoft.Azure.Search.Models.IndexerExecutionResult * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.IndexerExecutionResult> * Microsoft.Azure.Search.Models.IndexerLimits -> Microsoft.Azure.Search.Models.IndexerExecutionInfo
Public Sub New (Optional status As IndexerStatus = Microsoft.Azure.Search.Models.IndexerStatus.Unknown, Optional lastResult As IndexerExecutionResult = Nothing, Optional executionHistory As IList(Of IndexerExecutionResult) = Nothing, Optional limits As IndexerLimits = Nothing)

Parameters

status
IndexerStatus

Overall indexer status. Possible values include: 'unknown', 'error', 'running'

lastResult
IndexerExecutionResult

The result of the most recent or an in-progress indexer execution.

executionHistory
IList<IndexerExecutionResult>

History of the recent indexer executions, sorted in reverse chronological order.

limits
IndexerLimits

The execution limits for the indexer.

Applies to