IndexerOperationsExtensions.GetStatus Method (IIndexerOperations, String)

 

Applies To: Microsoft Azure

Returns the current status and execution history of an indexer. (see https://msdn.microsoft.com/library/azure/dn946884.aspx for more information)

Namespace:   Microsoft.Azure.Search
Assembly:  Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)

Syntax

public static IndexerGetStatusResponse GetStatus(
    this IIndexerOperations operations,
    string indexerName
)
public:
[ExtensionAttribute]
static IndexerGetStatusResponse^ GetStatus(
    IIndexerOperations^ operations,
    String^ indexerName
)
static member GetStatus : 
        operations:IIndexerOperations *
        indexerName:string -> IndexerGetStatusResponse
<ExtensionAttribute>
Public Shared Function GetStatus (
    operations As IIndexerOperations,
    indexerName As String
) As IndexerGetStatusResponse

Parameters

  • indexerName
    Type: System.String

    Required. The name of the indexer for which to retrieve status.

Return Value

Type: Microsoft.Azure.Search.Models.IndexerGetStatusResponse

Current status and execution history of an indexer.

See Also

IndexerOperationsExtensions Class
Microsoft.Azure.Search Namespace

Return to top