Skip to main content

assigned_resource_deployments

Creates, updates, deletes, gets or lists an assigned_resource_deployments resource.

Overview

Nameassigned_resource_deployments
TypeResource
Idazure.ai_text_analytics_authoring.assigned_resource_deployments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
deploymentsMetadataarrayRepresents the resource region. Required.
projectNamestringRepresents the project name. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_assigned_resource_deploymentsselectendpointtop, skip, maxpagesizeLists the deployments to which an Azure resource is assigned. This doesn't return deployments belonging to projects owned by this resource. It only returns deployments belonging to projects owned by other resources.

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: )
maxpagesizeinteger
skipintegerThe number of result items to skip. Default value is None.
topintegerThe number of result items to return. Default value is None.

SELECT examples

Lists the deployments to which an Azure resource is assigned. This doesn't return deployments belonging to projects owned by this resource. It only returns deployments belonging to projects owned by other resources.

SELECT
deploymentsMetadata,
projectName
FROM azure.ai_text_analytics_authoring.assigned_resource_deployments
WHERE endpoint = '{{ endpoint }}' -- required
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
;