Skip to content

Commit 7cd22b4

Browse files
authored
[TA] Prepare for November Release. (Azure#17696)
* no AAD but add note for what reason AAD is not working for healthcare
1 parent 8db7cef commit 7cd22b4

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Release History
2-
## 5.1.0-beta.3 (Unreleased)
2+
## 5.1.0-beta.3 (2020-11-19)
33
### New features
4-
- Added support for healthcare analysis feature. It is represented as a long-running operation. Cancellation supported.
4+
- Added support for healthcare recognition feature. It is represented as a long-running operation. Cancellation supported.
55
- Added support for analyze tasks feature, It analyzes multiple tasks (such as, entity recognition, PII entity recognition
66
and key phrases extraction) simultaneously in a list of document.
7+
- Currently, Azure Active Directory (AAD) is not supported in the Healthcare recognition feature. For more information, see
8+
[here](https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview).
9+
- Both new features listed above are available in `West US2`, `East US2`, `Central US`, `North Europe` and `West Europe`
10+
regions and in Standard tier.
711

812
## 5.0.1 (2020-11-12)
913
### Dependency updates

sdk/textanalytics/azure-ai-textanalytics/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,8 @@ Please refer to the service documentation for a conceptual discussion of [entity
313313
### Recognize healthcare entities
314314
Text Analytics for health is a containerized service that extracts and labels relevant medical information from
315315
unstructured texts such as doctor's notes, discharge summaries, clinical documents, and electronic health records.
316-
For more information see [How to: Use Text Analytics for health][healthcare].
316+
Currently, Azure Active Directory (AAD) is not supported in the Healthcare recognition feature. In order to use this
317+
functionality, request to access public preview is required. For more information see [How to: Use Text Analytics for health][healthcare].
317318
<!-- embedme ./src/samples/java/com/azure/ai/textanalytics/ReadmeSamples.java#L189-L232 -->
318319
```java
319320
List<TextDocumentInput> documents = Arrays.asList(new TextDocumentInput("0",

sdk/textanalytics/azure-ai-textanalytics/src/main/java/com/azure/ai/textanalytics/TextAnalyticsAsyncClient.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,6 +1019,10 @@ public Mono<Response<AnalyzeSentimentResultCollection>> analyzeSentimentBatchWit
10191019
* Analyze healthcare entities, entity linking, and entity relations in a list of
10201020
* {@link TextDocumentInput document} with provided request options.
10211021
*
1022+
* Note: In order to use this functionality, request to access public preview is required.
1023+
* Azure Active Directory (AAD) is not currently supported. For more information see
1024+
* <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">this</a>.
1025+
*
10221026
* See <a href="https://aka.ms/talangs">this</a> supported languages in Text Analytics API.
10231027
*
10241028
* <p>Analyze healthcare entities, entity linking, and entity relations in a list of
@@ -1048,6 +1052,10 @@ public PollerFlux<TextAnalyticsOperationResult, PagedFlux<HealthcareTaskResult>>
10481052
/**
10491053
* Cancel a long-running operation healthcare task by given a healthcare task identification number.
10501054
*
1055+
* Note: In order to use this functionality, request to access public preview is required.
1056+
* Azure Active Directory (AAD) is not currently supported. For more information see
1057+
* <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">this</a>.
1058+
*
10511059
* <p><strong>Code Sample</strong></p>
10521060
* {@codesnippet com.azure.ai.textanalytics.TextAnalyticsAsyncClient.beginCancelHealthcareTask#String-RecognizeHealthcareEntityOptions}
10531061
*

sdk/textanalytics/azure-ai-textanalytics/src/main/java/com/azure/ai/textanalytics/TextAnalyticsClient.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -878,6 +878,10 @@ public Response<AnalyzeSentimentResultCollection> analyzeSentimentBatchWithRespo
878878
* Analyze healthcare entities, entity linking, and entity relations in a list of
879879
* {@link TextDocumentInput document} with provided request options.
880880
*
881+
* Note: In order to use this functionality, request to access public preview is required.
882+
* Azure Active Directory (AAD) is not currently supported. For more information see
883+
* <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">this</a>.
884+
*
881885
* See <a href="https://aka.ms/talangs">this</a> supported languages in Text Analytics API.
882886
*
883887
* <p><strong>Code Sample</strong></p>
@@ -909,6 +913,10 @@ public SyncPoller<TextAnalyticsOperationResult, PagedIterable<HealthcareTaskResu
909913
/**
910914
* Cancel a long-running operation healthcare task by given a healthcare task identification number.
911915
*
916+
* Note: In order to use this functionality, request to access public preview is required.
917+
* Azure Active Directory (AAD) is not currently supported. For more information see
918+
* <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">this</a>.
919+
*
912920
* <p><strong>Code Sample</strong></p>
913921
* {@codesnippet com.azure.ai.textanalytics.TextAnalyticsClient.beginCancelHealthcareTask#String-RecognizeHealthcareEntityOptions-Context}
914922
*

0 commit comments

Comments
 (0)