analyze_binaries
Creates, updates, deletes, gets or lists an analyze_binaries resource.
Overview
| Name | analyze_binaries |
| Type | Resource |
| Id | azure.ai_content_understanding.analyze_binaries |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
analyze_binary | exec | analyzer_id, stringEncoding, endpoint | range, processingLocation | Extract content and fields from input. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
analyzer_id | string | The unique identifier of the analyzer. Required. |
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: ) |
stringEncoding | string | The string encoding format for content spans in the response. Possible values are 'codePoint', 'utf16', and utf8. Default is codePoint."). Required. |
processingLocation | string | The location where the data may be processed. Defaults to global. Known values are: "geography", "dataZone", and "global". Default value is None. |
range | string | Range of the input to analyze (ex. 1-3,5,9-). Document content uses 1-based page numbers, while audio visual content uses integer milliseconds. Default value is None. |
Lifecycle Methods
- analyze_binary
Extract content and fields from input.
EXEC azure.ai_content_understanding.analyze_binaries.analyze_binary
@analyzer_id='{{ analyzer_id }}' --required,
@stringEncoding='{{ stringEncoding }}' --required,
@endpoint='{{ endpoint }}' --required,
@range='{{ range }}',
@processingLocation='{{ processingLocation }}'
;