analyzes
Creates, updates, deletes, gets or lists an analyzes resource.
Overview
| Name | analyzes |
| Type | Resource |
| Id | azure.ai_content_understanding.analyzes |
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 | exec | analyzer_id, stringEncoding, endpoint | 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. |
Lifecycle Methods
- analyze
Extract content and fields from input.
EXEC azure.ai_content_understanding.analyzes.analyze
@analyzer_id='{{ analyzer_id }}' --required,
@stringEncoding='{{ stringEncoding }}' --required,
@endpoint='{{ endpoint }}' --required,
@processingLocation='{{ processingLocation }}'
;