Skip to main content

defaults

Creates, updates, deletes, gets or lists a defaults resource.

Overview

Namedefaults
TypeResource
Idazure.ai_content_understanding.defaults

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
modelDeploymentsobjectSpecify 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_defaultsselectendpointReturn default settings for this Content Understanding resource.
update_defaultsupdateendpointUpdate 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.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )

SELECT examples

Return default settings for this Content Understanding resource.

SELECT
modelDeployments
FROM azure.ai_content_understanding.defaults
WHERE endpoint = '{{ endpoint }}' -- required
;

UPDATE examples

Update default settings for this Content Understanding resource.

UPDATE azure.ai_content_understanding.defaults
SET
-- No updatable properties
WHERE
endpoint = '{{ endpoint }}' --required
RETURNING
modelDeployments;