Skip to content

Commit d218371

Browse files
authored
Add annotation cache support (#15397)
* Add annotation cache support * CR fixes
1 parent 7360a2d commit d218371

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

specification/search/data-plane/Azure.Search/preview/2021-04-30-Preview/searchservice.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
},
7171
{
7272
"$ref": "#/parameters/ApiVersionParameter"
73+
},
74+
{
75+
"$ref": "#/parameters/IgnoreResetRequirementsParameter"
7376
}
7477
],
7578
"x-ms-request-id": "request-id",
@@ -419,6 +422,12 @@
419422
},
420423
{
421424
"$ref": "#/parameters/ApiVersionParameter"
425+
},
426+
{
427+
"$ref": "#/parameters/DisableCacheReprocessingChangeDetectionParameter"
428+
},
429+
{
430+
"$ref": "#/parameters/IgnoreResetRequirementsParameter"
422431
}
423432
],
424433
"x-ms-request-id": "request-id",
@@ -727,6 +736,12 @@
727736
},
728737
{
729738
"$ref": "#/parameters/ApiVersionParameter"
739+
},
740+
{
741+
"$ref": "#/parameters/DisableCacheReprocessingChangeDetectionParameter"
742+
},
743+
{
744+
"$ref": "#/parameters/IgnoreResetRequirementsParameter"
730745
}
731746
],
732747
"x-ms-request-id": "request-id",
@@ -6301,6 +6316,14 @@
63016316
"url": "https://aka.ms/azure-search-encryption-with-cmk"
63026317
},
63036318
"x-nullable": true
6319+
},
6320+
"cache": {
6321+
"$ref": "#/definitions/SearchIndexerCache",
6322+
"x-nullable": true,
6323+
"description": "Adds caching to an enrichment pipeline to allow for incremental modification steps without having to rebuild the index every time.",
6324+
"externalDocs": {
6325+
"url": "https://docs.microsoft.com/azure/search/search-howto-incremental-index"
6326+
}
63046327
}
63056328
},
63066329
"required": [
@@ -9532,6 +9555,19 @@
95329555
],
95339556
"description": "A customer-managed encryption key in Azure Key Vault. Keys that you create and manage can be used to encrypt or decrypt data-at-rest in Azure Cognitive Search, such as indexes and synonym maps."
95349557
},
9558+
"SearchIndexerCache": {
9559+
"properties": {
9560+
"storageConnectionString": {
9561+
"type": "string",
9562+
"description": "The connection string to the storage account where the cache data will be persisted."
9563+
},
9564+
"enableReprocessing": {
9565+
"type": "boolean",
9566+
"x-nullable": true,
9567+
"description": "Specifies whether incremental reprocessing is enabled."
9568+
}
9569+
}
9570+
},
95359571
"AzureActiveDirectoryApplicationCredentials": {
95369572
"properties": {
95379573
"applicationId": {
@@ -9745,6 +9781,22 @@
97459781
"x-ms-skip-url-encoding": true,
97469782
"description": "The endpoint URL of the search service.",
97479783
"x-ms-parameter-location": "client"
9784+
},
9785+
"DisableCacheReprocessingChangeDetectionParameter": {
9786+
"name": "disableCacheReprocessingChangeDetection",
9787+
"in": "query",
9788+
"required": false,
9789+
"type": "boolean",
9790+
"description": "Disables cache reprocessing change detection.",
9791+
"x-ms-parameter-location": "method"
9792+
},
9793+
"IgnoreResetRequirementsParameter": {
9794+
"name": "ignoreResetRequirements",
9795+
"in": "query",
9796+
"required": false,
9797+
"type": "boolean",
9798+
"description": "Ignores cache reset requirements.",
9799+
"x-ms-parameter-location": "method"
97489800
}
97499801
}
97509802
}

0 commit comments

Comments
 (0)