Azure.Search (preview:2025-05-01)

2025/05/06 • 1 updated methods

Indexers_Resync (updated)
Description Resync selective options from the datasource to be re-ingested by the indexer.
Reference Link ¶

⚶ Changes

{
  "#id": "Indexers_Resync",
  "$parameters": {
    "@added_7d4e6c9932104e4bb6299290ffd4a9df": {
      "#name": "indexerResync",
      "Required": true,
      "$schema": {
        "Type": "object",
        "$properties": [
          {
            "#name": "options",
            "Description": "Re-sync options that have been pre-defined from data source.",
            "Required": false,
            "Type": "array",
            "$items": {
              "Description": "Options with various types of permission data to index.",
              "Enum": [
                [
                  "permissions",
                  "Indexer to re-ingest pre-selected permissions data from data source to index."
                ]
              ],
              "Type": "string"
            }
          }
        ]
      }
    },
    "@removed_16ef013087134d5397f926955b8f0fda": {
      "#name": "indexerResyncOptions",
      "Required": true,
      "$schema": {
        "Description": "Re-sync options that have been pre-defined from data source.",
        "Type": "array",
        "$items": {
          "Description": "Options with various types of permission data to index.",
          "Enum": [
            [
              "permissions",
              "Indexer to re-ingest pre-selected permissions data from data source to index."
            ]
          ],
          "Type": "string"
        }
      }
    }
  }
}

⚼ Request

POST:  /indexers('{indexerName}')/search.resync
{
indexerName: string ,
indexerResync:
{
options:
[
string ,
]
,
}
,
x-ms-client-request-id: string ,
api-version: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}