ListIndexersResult Class

  • java.lang.Object
    • com.azure.search.documents.indexes.models.ListIndexersResult

Implements

public final class ListIndexersResult
implements JsonSerializable<ListIndexersResult>

Response from a List Indexers request. If successful, it includes the full definitions of all indexers.

Method Summary

Modifier and Type Method and Description
static ListIndexersResult fromJson(JsonReader jsonReader)

Reads an instance of ListIndexersResult from the JsonReader.

List<SearchIndexer> getIndexers()

Get the indexers property: The indexers in the Search service.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Method Details

fromJson

public static ListIndexersResult fromJson(JsonReader jsonReader)

Reads an instance of ListIndexersResult from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of ListIndexersResult if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

getIndexers

public List<SearchIndexer> getIndexers()

Get the indexers property: The indexers in the Search service.

Returns:

the indexers value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to