Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5845,6 +5845,10 @@
"required": false,
"$ref": "#/definitions/PdfTextRotationAlgorithm"
},
"executionEnvironment": {
"required": false,
"$ref": "#/definitions/ExecutionEnvironment"
},
"queryTimeout": {
"type": "string",
"required": false,
Expand Down Expand Up @@ -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": {
Expand Down