diff --git a/specification/search/data-plane/Azure.Search/preview/2019-05-06-preview/searchservice.json b/specification/search/data-plane/Azure.Search/preview/2019-05-06-preview/searchservice.json index de05a298e613..9ef95d9358f2 100644 --- a/specification/search/data-plane/Azure.Search/preview/2019-05-06-preview/searchservice.json +++ b/specification/search/data-plane/Azure.Search/preview/2019-05-06-preview/searchservice.json @@ -5845,6 +5845,10 @@ "required": false, "$ref": "#/definitions/PdfTextRotationAlgorithm" }, + "executionEnvironment": { + "required": false, + "$ref": "#/definitions/ExecutionEnvironment" + }, "queryTimeout": { "type": "string", "required": false, @@ -6002,6 +6006,32 @@ "default": "none", "description": "Determines algorithm for text extraction from PDF files in Azure blob storage." }, + "ExecutionEnvironment": { + "type": "string", + "enum": [ + "standard", + "private" + ], + "x-ms-enum": { + "name": "IndexerExecutionEnvironment", + "modelAsString": true, + "values": [ + { + "value": "standard", + "name": "standard", + "description": "Indicates that Azure Cognitive Search can determine where the indexer should execute. This is the default environment when nothing is specified and is the recommended value." + }, + { + "value": "private", + "name": "private", + "description": "Indicates that the indexer should run with the environment provisioned specifically for the search service. This should only be specified as the execution environment if the indexer needs to access resources securely over shared private link resources." + } + ] + }, + "x-nullable": true, + "default": "standard", + "description": "Specifies the environment in which the indexer should execute." + }, "FieldMappingFunction": { "properties": { "name": {