Skip to main content

supported_languages

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

Overview

Namesupported_languages
TypeResource
Idazure.ai_text_analytics_authoring.supported_languages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
languageCodestringThe language code. This is BCP-47 representation of a language. For example, "en" for English, "en-gb" for English (UK), "es" for Spanish etc. Required.
languageNamestringThe language name. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_supported_languagesselectendpointprojectKind, top, skip, maxpagesizeLists the supported languages.

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
projectKindstringThe project kind, default value is CustomSingleLabelClassification. Known values are: "CustomSingleLabelClassification", "CustomMultiLabelClassification", "CustomEntityRecognition", "CustomAbstractiveSummarization", "CustomHealthcare", and "CustomTextSentiment". Default value is None.
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 supported languages.

SELECT
languageCode,
languageName
FROM azure.ai_text_analytics_authoring.supported_languages
WHERE endpoint = '{{ endpoint }}' -- required
AND projectKind = '{{ projectKind }}'
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
;