analyzes
Creates, updates, deletes, gets or lists an analyzes resource.
Overview
| Name | analyzes |
| Type | Resource |
| Id | azure.ai_text_analytics.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 | endpoint, analysisInput, tasks | Submit analysis job. Submit a collection of text documents for analysis. Specify one or more unique tasks to be executed. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
Lifecycle Methods
- analyze
Submit analysis job. Submit a collection of text documents for analysis. Specify one or more unique tasks to be executed.
EXEC azure.ai_text_analytics.analyzes.analyze
@endpoint='{{ endpoint }}' --required
@@json=
'{
"displayName": "{{ displayName }}",
"analysisInput": "{{ analysisInput }}",
"tasks": "{{ tasks }}"
}'
;