Skip to content

Commit

Permalink
Added x-nullable to configuration parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifermarsman committed Aug 4, 2020
1 parent dd2ca6f commit 732f032
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5793,68 +5793,84 @@
"type": "object",
"properties": {
"parsingMode": {
"x-nullable": true,
"$ref": "#/definitions/ParsingMode"
},
"excludedFileNameExtensions": {
"type": "string",
"x-nullable": true,
"description": "Comma-delimited list of filename extensions to ignore when processing from Azure blob storage. For example, you could exclude \".png, .mp4\" to skip over those files during indexing."
},
"indexedFileNameExtensions": {
"type": "string",
"x-nullable": true,
"description": "Comma-delimited list of filename extensions to select when processing from Azure blob storage. For example, you could focus indexing on specific application files \".docx, .pptx, .msg\" to specifically include those file types."
},
"failOnUnsupportedContentType": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "For Azure blobs, set to false if you want to continue indexing when an unsupported content type is encountered, and you don't know all the content types (file extensions) in advance."
},
"failOnUnprocessableDocument": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "For Azure blobs, set to false if you want to continue indexing if a document fails indexing."
},
"indexStorageMetadataOnlyForOversizedDocuments": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "For Azure blobs, set this property to true to still index storage metadata for blob content that is too large to process. Oversized blobs are treated as errors by default. For limits on blob size, see https://docs.microsoft.com/azure/search/search-limits-quotas-capacity."
},
"delimitedTextHeaders": {
"type": "string",
"x-nullable": true,
"description": "For CSV blobs, specifies a comma-delimited list of column headers, useful for mapping source fields to destination fields in an index."
},
"delimitedTextDelimiter": {
"type": "string",
"x-nullable": true,
"description": "For CSV blobs, specifies the end-of-line single-character delimiter for CSV files where each line starts a new document (for example, \"|\")."
},
"firstLineContainsHeaders": {
"type": "boolean",
"default": true,
"x-nullable": true,
"description": "For CSV blobs, indicates that the first (non-blank) line of each blob contains headers."
},
"documentRoot": {
"type": "string",
"x-nullable": true,
"description": "For JSON arrays, given a structured or semi-structured document, you can specify a path to the array using this property."
},
"dataToExtract": {
"x-nullable": true,
"$ref": "#/definitions/DataToExtract"
},
"imageAction": {
"x-nullable": true,
"$ref": "#/definitions/ImageAction"
},
"allowSkillsetToReadFileData": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "If true, will create a path //document//file_data that is an object representing the original file data downloaded from your blob data source. This allows you to pass the original file data to a custom skill for processing within the enrichment pipeline, or to the Document Extraction skill."
},
"pdfTextRotationAlgorithm": {
"x-nullable": true,
"$ref": "#/definitions/PdfTextRotationAlgorithm"
},
"executionEnvironment": {
"x-nullable": true,
"$ref": "#/definitions/ExecutionEnvironment"
},
"queryTimeout": {
"type": "string",
"default": "00:05:00",
"x-nullable": true,
"description": "Increases the timeout beyond the 5-minute default for Azure SQL database data sources, specified in the format \"hh:mm:ss\"."
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5793,68 +5793,84 @@
"type": "object",
"properties": {
"parsingMode": {
"x-nullable": true,
"$ref": "#/definitions/ParsingMode"
},
"excludedFileNameExtensions": {
"type": "string",
"x-nullable": true,
"description": "Comma-delimited list of filename extensions to ignore when processing from Azure blob storage. For example, you could exclude \".png, .mp4\" to skip over those files during indexing."
},
"indexedFileNameExtensions": {
"type": "string",
"x-nullable": true,
"description": "Comma-delimited list of filename extensions to select when processing from Azure blob storage. For example, you could focus indexing on specific application files \".docx, .pptx, .msg\" to specifically include those file types."
},
"failOnUnsupportedContentType": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "For Azure blobs, set to false if you want to continue indexing when an unsupported content type is encountered, and you don't know all the content types (file extensions) in advance."
},
"failOnUnprocessableDocument": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "For Azure blobs, set to false if you want to continue indexing if a document fails indexing."
},
"indexStorageMetadataOnlyForOversizedDocuments": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "For Azure blobs, set this property to true to still index storage metadata for blob content that is too large to process. Oversized blobs are treated as errors by default. For limits on blob size, see https://docs.microsoft.com/azure/search/search-limits-quotas-capacity."
},
"delimitedTextHeaders": {
"type": "string",
"x-nullable": true,
"description": "For CSV blobs, specifies a comma-delimited list of column headers, useful for mapping source fields to destination fields in an index."
},
"delimitedTextDelimiter": {
"type": "string",
"x-nullable": true,
"description": "For CSV blobs, specifies the end-of-line single-character delimiter for CSV files where each line starts a new document (for example, \"|\")."
},
"firstLineContainsHeaders": {
"type": "boolean",
"default": true,
"x-nullable": true,
"description": "For CSV blobs, indicates that the first (non-blank) line of each blob contains headers."
},
"documentRoot": {
"type": "string",
"x-nullable": true,
"description": "For JSON arrays, given a structured or semi-structured document, you can specify a path to the array using this property."
},
"dataToExtract": {
"x-nullable": true,
"$ref": "#/definitions/DataToExtract"
},
"imageAction": {
"x-nullable": true,
"$ref": "#/definitions/ImageAction"
},
"allowSkillsetToReadFileData": {
"type": "boolean",
"default": false,
"x-nullable": true,
"description": "If true, will create a path //document//file_data that is an object representing the original file data downloaded from your blob data source. This allows you to pass the original file data to a custom skill for processing within the enrichment pipeline, or to the Document Extraction skill."
},
"pdfTextRotationAlgorithm": {
"x-nullable": true,
"$ref": "#/definitions/PdfTextRotationAlgorithm"
},
"executionEnvironment": {
"x-nullable": true,
"$ref": "#/definitions/ExecutionEnvironment"
},
"queryTimeout": {
"type": "string",
"default": "00:05:00",
"x-nullable": true,
"description": "Increases the timeout beyond the 5-minute default for Azure SQL database data sources, specified in the format \"hh:mm:ss\"."
}
},
Expand Down

0 comments on commit 732f032

Please sign in to comment.