Skip to main content

healths

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

Overview

Namehealths
TypeResource
Idazure.ai_text_analytics.healths

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
healthexecendpoint, id, textmodel-version, stringIndexType, loggingOptOutSubmit healthcare analysis job. Start a healthcare analysis job to recognize healthcare related entities (drugs, conditions, symptoms, etc) and their relations.

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). (default: )
loggingOptOutboolean(Optional) If set to true, you opt-out of having your text input logged for troubleshooting. By default, Text Analytics logs your input text for 48 hours, solely to allow for troubleshooting issues in providing you with the Text Analytics natural language processing functions. Setting this parameter to true, disables input logging and may limit our ability to remediate issues that occur. Please see Cognitive Services Compliance and Privacy notes at https://aka.ms/cs-compliance for additional details, and Microsoft Responsible AI principles at https://www.microsoft.com/ai/responsible-ai. Default value is None.
model-versionstring(Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. Default value is None.
stringIndexTypestring(Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets. Known values are: "TextElement_v8", "UnicodeCodePoint", and "Utf16CodeUnit". Default value is None.

Lifecycle Methods

Submit healthcare analysis job. Start a healthcare analysis job to recognize healthcare related entities (drugs, conditions, symptoms, etc) and their relations.

EXEC azure.ai_text_analytics.healths.health 
@endpoint='{{ endpoint }}' --required,
@model-version='{{ model-version }}',
@stringIndexType='{{ stringIndexType }}',
@loggingOptOut={{ loggingOptOut }}
@@json=
'{
"id": "{{ id }}",
"text": "{{ text }}",
"language": "{{ language }}"
}'
;