defaults
Creates, updates, deletes, gets or lists a defaults resource.
Overview
| Name | defaults |
| Type | Resource |
| Id | azure.ai_content_understanding.defaults |
Fields
The following fields are returned by SELECT queries:
- get_defaults
| Name | Datatype | Description |
|---|---|---|
modelDeployments | object | Specify the default mapping of model names to LLM/embedding deployments in Microsoft Foundry. For details and current semantics, see https://aka.ms/cudoc-quickstart-rest _. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_defaults | select | endpoint | Return default settings for this Content Understanding resource. | |
update_defaults | update | endpoint | Update default settings for this Content Understanding resource. |
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), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: ) |
SELECT examples
- get_defaults
Return default settings for this Content Understanding resource.
SELECT
modelDeployments
FROM azure.ai_content_understanding.defaults
WHERE endpoint = '{{ endpoint }}' -- required
;
UPDATE examples
- update_defaults
Update default settings for this Content Understanding resource.
UPDATE azure.ai_content_understanding.defaults
SET
-- No updatable properties
WHERE
endpoint = '{{ endpoint }}' --required
RETURNING
modelDeployments;