Skip to content

Commit

Permalink
add entity enums (Azure#18410)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapratico authored Apr 29, 2021
1 parent 5a4da24 commit ddb6a18
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 5.1.0b7 (Unreleased)

**New Features**
- Added enums `EntityConditionality`, `EntityCertainty`, and `EntityAssociation`.

## 5.1.0b6 (2021-03-09)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@
from ._paging import AnalyzeHealthcareEntitiesResult
from ._generated.v3_1_preview_5.models import (
PiiCategory as PiiEntityCategoryType,
RelationType as HealthcareEntityRelationType
RelationType as HealthcareEntityRelationType,
Conditionality as EntityConditionality,
Certainty as EntityCertainty,
Association as EntityAssociation
)

__all__ = [
Expand Down Expand Up @@ -99,6 +102,9 @@
"HealthcareRelation",
"HealthcareRelationRole",
"HealthcareEntityAssertion",
"EntityConditionality",
"EntityCertainty",
"EntityAssociation"
]

__version__ = VERSION

0 comments on commit ddb6a18

Please sign in to comment.