Skip to content

Commit b4672aa

Browse files
authored
[TA] No AAD for healthcare docs updated (Azure#17092)
1 parent 661b4ec commit b4672aa

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## 5.1.0-beta.3 (2020-11-19)
44
### New Features
5-
- Added `HealthcareOperation` long running operation for new asynchronous `Text Analytics for health` hosted API with support for batch processing.
5+
- Added `HealthcareOperation` long running operation for new asynchronous `Text Analytics for health` hosted API with support for batch processing. Note this is a currently in a gated preview where AAD is not supported. More information [here](https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview).
66
- Added `AnalyzeOperation` long running operation for new asynchronous `Analyze API` to support batch processing of Named entity recognition, Personally Identifiable Information and Key phrase extraction.
7-
- Both new features listed above are available in `West US2`, `East US2`, `Central US`, `North Europe` and `West Europe` regions. Also, both the new features are available in Standard tier.
7+
- Both new features listed above are available in `West US2`, `East US2`, `Central US`, `North Europe` and `West Europe` regions and in Standard tier.
88

99
### Breaking changes
1010
- Modified the way to turn on Opinion Mining feature in `AnalyzeSentiment` to a bool property called `IncludeOpinionMining`.

sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,9 +2081,14 @@ private Response<RecognizeLinkedEntitiesResultCollection> RecognizeLinkedEntitie
20812081
/// found in the passed-in document, and include information linking the
20822082
/// entities to their corresponding entries in a well-known knowledge base.
20832083
/// For a list of languages supported by this operation, see
2084-
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/language-support"/>.
2084+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/language-support"/>.
20852085
/// For document length limits, maximum batch size, and supported text encoding, see
20862086
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/overview#data-limits"/>.
2087+
/// <remarks><para>
2088+
/// Note: In order to use this functionality, request to access public preview is required.
2089+
/// Azure Active Directory (AAD) is not currently supported. For more information see
2090+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview"/>.
2091+
/// </para></remarks>
20872092
/// </summary>
20882093
/// <param name="document">The document to analyze.</param>
20892094
/// <param name="language">The language that the document is written in.</param>
@@ -2129,6 +2134,11 @@ public virtual async Task<HealthcareOperation> StartHealthcareAsync(string docum
21292134
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/language-support"/>.
21302135
/// For document length limits, maximum batch size, and supported text encoding, see
21312136
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/overview#data-limits"/>.
2137+
/// <remarks><para>
2138+
/// Note: In order to use this functionality, request to access public preview is required.
2139+
/// Azure Active Directory (AAD) is not currently supported. For more information see
2140+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview"/>.
2141+
/// </para></remarks>
21322142
/// </summary>
21332143
/// <param name="document">The document to analyze.</param>
21342144
/// <param name="language">The language that the document is written in.</param>
@@ -2173,6 +2183,11 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu
21732183
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/language-support"/>.
21742184
/// For document length limits, maximum batch size, and supported text encoding, see
21752185
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/overview#data-limits"/>.
2186+
/// <remarks><para>
2187+
/// Note: In order to use this functionality, request to access public preview is required.
2188+
/// Azure Active Directory (AAD) is not currently supported. For more information see
2189+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview"/>.
2190+
/// </para></remarks>
21762191
/// </summary>
21772192
/// <param name="documents">The documents to analyze.</param>
21782193
/// <param name="language">The language that the document is written in.</param>
@@ -2198,6 +2213,11 @@ public virtual async Task<HealthcareOperation> StartHealthcareBatchAsync(IEnumer
21982213
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/language-support"/>.
21992214
/// For document length limits, maximum batch size, and supported text encoding, see
22002215
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/overview#data-limits"/>.
2216+
/// <remarks><para>
2217+
/// Note: In order to use this functionality, request to access public preview is required.
2218+
/// Azure Active Directory (AAD) is not currently supported. For more information see
2219+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview"/>.
2220+
/// </para></remarks>
22012221
/// </summary>
22022222
/// <param name="documents">The documents to analyze.</param>
22032223
/// <param name="language">The language that the document is written in.
@@ -2230,6 +2250,11 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable<string> docu
22302250
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/language-support"/>.
22312251
/// For document length limits, maximum batch size, and supported text encoding, see
22322252
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/overview#data-limits"/>.
2253+
/// <remarks><para>
2254+
/// Note: In order to use this functionality, request to access public preview is required.
2255+
/// Azure Active Directory (AAD) is not currently supported. For more information see
2256+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview"/>.
2257+
/// </para></remarks>
22332258
/// </summary>
22342259
/// <param name="documents">The documents to analyze.</param>
22352260
/// <param name="options">The additional configurable options<see cref="HealthcareOptions"/></param>
@@ -2255,6 +2280,11 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable<TextDocument
22552280
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/language-support"/>.
22562281
/// For document length limits, maximum batch size, and supported text encoding, see
22572282
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/overview#data-limits"/>.
2283+
/// <remarks><para>
2284+
/// Note: In order to use this functionality, request to access public preview is required.
2285+
/// Azure Active Directory (AAD) is not currently supported. For more information see
2286+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview"/>.
2287+
/// </para></remarks>
22582288
/// </summary>
22592289
/// <param name="documents">The documents to analyze.</param>
22602290
/// <param name="options">The additional configurable options<see cref="HealthcareOptions"/></param>

0 commit comments

Comments
 (0)