Skip to main content

transliterates

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

Overview

Nametransliterates
TypeResource
Idazure.ai_translation_text.transliterates

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:

NameAccessible byRequired ParamsOptional ParamsDescription
transliterateexeclanguage, fromScript, toScript, endpoint, inputsX-ClientTraceIdTransliterate Text. Transliterate Text.

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: )
fromScriptstringSpecifies the script used by the input text. Look up supported languages using the transliteration scope, to find input scripts available for the selected language. Required.
languagestringSpecifies the language of the text to convert from one script to another. Possible languages are listed in the transliteration scope obtained by querying the service for its supported languages. Required.
toScriptstringSpecifies the output script. Look up supported languages using the transliteration scope, to find output scripts available for the selected combination of input language and input script. Required.
X-ClientTraceIdstringA client-generated GUID to uniquely identify the request. Default value is None.

Lifecycle Methods

Transliterate Text. Transliterate Text.

EXEC azure.ai_translation_text.transliterates.transliterate 
@language='{{ language }}' --required,
@fromScript='{{ fromScript }}' --required,
@toScript='{{ toScript }}' --required,
@endpoint='{{ endpoint }}' --required,
@X-ClientTraceId='{{ X-ClientTraceId }}'
@@json=
'{
"inputs": "{{ inputs }}"
}'
;