Indexers - Reset Docs
重設數據源中的特定檔,以選擇性地由索引器重新內嵌。
POST {endpoint}/indexers('{indexerName}')/search.resetdocs?api-version=2023-10-01-Preview
POST {endpoint}/indexers('{indexerName}')/search.resetdocs?overwrite={overwrite}&api-version=2023-10-01-Preview
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
endpoint
|
path | True |
string |
搜尋服務的端點 URL。 |
indexer
|
path | True |
string |
要重設檔的索引器名稱。 |
api-version
|
query | True |
string |
用戶端 API 版本。 |
overwrite
|
query |
boolean |
如果為 false,則會將索引鍵或標識碼附加至現有的標識碼。 如果為 true,則只有此承載中的金鑰或標識符會排入佇列以重新擷取。 |
要求標頭
名稱 | 必要 | 類型 | Description |
---|---|---|---|
x-ms-client-request-id |
string uuid |
與要求一起傳送的追蹤標識碼,以協助偵錯。 |
要求本文
名稱 | 類型 | Description |
---|---|---|
datasourceDocumentIds |
string[] |
要重設的數據源檔識別碼 |
documentKeys |
string[] |
要重設的檔索引鍵 |
回應
名稱 | 類型 | Description |
---|---|---|
204 No Content | ||
Other Status Codes |
錯誤回應。 |
範例
SearchServiceResetDocs
範例要求
POST https://myservice.search.windows.net/indexers('myindexer')/search.resetdocs?overwrite=False&api-version=2023-10-01-Preview
{
"documentKeys": [
"documentKey1",
"documentKey2"
]
}
範例回覆
定義
SearchError
描述 API 的錯誤狀況。
名稱 | 類型 | Description |
---|---|---|
code |
string |
其中一組伺服器定義的錯誤碼。 |
details |
導致此錯誤之特定錯誤的詳細數據陣列。 |
|
message |
string |
人類看得懂的錯誤表示法。 |