Skip to content

Commit

Permalink
[Text Analytics] Fix outdated PII aka.ms link (Azure#32656)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseharriaga authored Nov 23, 2022
1 parent cc8f22c commit fa94d48
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Azure.AI.TextAnalytics
/// A word or phrase identified as a Personally Identifiable Information
/// that can be categorized as known type in a given taxonomy.
/// The set of categories recognized by the Language service is described at
/// <see href="https://aka.ms/tanerpii"/>.
/// <see href="https://aka.ms/azsdk/language/pii"/>.
/// </summary>
public readonly struct PiiEntity
{
Expand Down Expand Up @@ -38,15 +38,15 @@ internal PiiEntity(string text, string category, string subcategory, double conf
/// named entity recognition model, such as Financial Account
/// Identification/Social Security Number/Phone Number, etc.
/// The list of available categories is described at
/// <see href="https://aka.ms/tanerpii"/>.
/// <see href="https://aka.ms/azsdk/language/pii"/>.
/// </summary>
public PiiEntityCategory Category { get; }

/// <summary>
/// Gets the subcategory of the entity inferred by the Language service's
/// named entity recognition model. This property may not have a value if
/// a subcategory doesn't exist for this entity. The list of available categories and
/// subcategories is described at <see href="https://aka.ms/tanerpii"/>.
/// subcategories is described at <see href="https://aka.ms/azsdk/language/pii"/>.
/// </summary>
public string SubCategory { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public enum PiiEntityDomain
None,
/// <summary>
/// Protected Health Information entities.
/// For more information see <see href="https://aka.ms/tanerpii"/>.
/// For more information, see <see href="https://aka.ms/azsdk/language/pii"/>.
/// </summary>
ProtectedHealthInformation
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public RecognizePiiEntitiesAction(RecognizePiiEntitiesOptions options)

/// <summary>
/// Filters the response entities to ones only included in the specified domain.
/// For more information see <see href="https://aka.ms/tanerpii"/>.
/// For more information see <see href="https://aka.ms/azsdk/language/pii"/>.
/// </summary>
public PiiEntityDomain DomainFilter { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public RecognizePiiEntitiesOptions()

/// <summary>
/// Filters the response entities to ones only included in the specified domain.
/// For more information see <see href="https://aka.ms/tanerpii"/>.
/// For more information see <see href="https://aka.ms/azsdk/language/pii"/>.
/// </summary>
public PiiEntityDomain DomainFilter { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ public virtual Response<RecognizeEntitiesResultCollection> RecognizeEntitiesBatc
/// and categorize those entities into types such as US social security
/// number, drivers license number, or credit card number.
/// <para>For more information on available categories, see
/// <see href="https://aka.ms/tanerpii"/>.</para>
/// <see href="https://aka.ms/azsdk/language/pii"/>.</para>
/// <para>For a list of languages supported by this operation, see
/// <see href="https://aka.ms/talangs"/>.</para>
/// <para>For document length limits, maximum batch size, and supported text encoding, see
Expand Down Expand Up @@ -542,7 +542,7 @@ public virtual async Task<Response<PiiEntityCollection>> RecognizePiiEntitiesAsy
/// and categorize those entities into types such as US social security
/// number, drivers license number, or credit card number.
/// <para>For more information on available categories, see
/// <see href="https://aka.ms/tanerpii"/>.</para>
/// <see href="https://aka.ms/azsdk/language/pii"/>.</para>
/// <para>For a list of languages supported by this operation, see
/// <see href="https://aka.ms/talangs"/>.</para>
/// <para>For document length limits, maximum batch size, and supported text encoding, see
Expand Down Expand Up @@ -576,7 +576,7 @@ public virtual Response<PiiEntityCollection> RecognizePiiEntities(string documen
/// and categorize those entities into types such as US social security
/// number, drivers license number, or credit card number.
/// <para>For more information on available categories, see
/// <see href="https://aka.ms/tanerpii"/>.</para>
/// <see href="https://aka.ms/azsdk/language/pii"/>.</para>
/// <para>For a list of languages supported by this operation, see
/// <see href="https://aka.ms/talangs"/>.</para>
/// <para>For document length limits, maximum batch size, and supported text encoding, see
Expand Down Expand Up @@ -610,7 +610,7 @@ public virtual async Task<Response<RecognizePiiEntitiesResultCollection>> Recogn
/// and categorize those entities into types such as US social security
/// number, drivers license number, or credit card number.
/// <para>For more information on available categories, see
/// <see href="https://aka.ms/tanerpii"/>.</para>
/// <see href="https://aka.ms/azsdk/language/pii"/>.</para>
/// <para>For a list of languages supported by this operation, see
/// <see href="https://aka.ms/talangs"/>.</para>
/// <para>For document length limits, maximum batch size, and supported text encoding, see
Expand Down Expand Up @@ -644,7 +644,7 @@ public virtual Response<RecognizePiiEntitiesResultCollection> RecognizePiiEntiti
/// and categorize those entities into types such as US social security
/// number, drivers license number, or credit card number.
/// <para>For more information on available categories, see
/// <see href="https://aka.ms/tanerpii"/>.</para>
/// <see href="https://aka.ms/azsdk/language/pii"/>.</para>
/// <para>For a list of languages supported by this operation, see
/// <see href="https://aka.ms/talangs"/>.</para>
/// <para>For document length limits, maximum batch size, and supported text encoding, see
Expand Down Expand Up @@ -673,7 +673,7 @@ public virtual async Task<Response<RecognizePiiEntitiesResultCollection>> Recogn
/// and categorize those entities into types such as US social security
/// number, drivers license number, or credit card number.
/// <para>For more information on available categories, see
/// <see href="https://aka.ms/tanerpii"/>.</para>
/// <see href="https://aka.ms/azsdk/language/pii"/>.</para>
/// <para>For a list of languages supported by this operation, see
/// <see href="https://aka.ms/talangs"/>.</para>
/// <para>For document length limits, maximum batch size, and supported text encoding, see
Expand Down

0 comments on commit fa94d48

Please sign in to comment.