transliterates
Creates, updates, deletes, gets or lists a transliterates resource.
Overview
| Name | transliterates |
| Type | Resource |
| Id | azure.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
transliterate | exec | language, fromScript, toScript, endpoint, inputs | X-ClientTraceId | Transliterate 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.
| 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: ) |
fromScript | string | Specifies 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. |
language | string | Specifies 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. |
toScript | string | Specifies 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-ClientTraceId | string | A client-generated GUID to uniquely identify the request. Default value is None. |
Lifecycle Methods
- transliterate
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 }}"
}'
;