Skip to content

Commit ed733bb

Browse files
authored
Merge branch 'main' into heidist-june27
2 parents 196b81d + b20944e commit ed733bb

File tree

87 files changed

+2120
-1144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2120
-1144
lines changed

.openpublishing.redirection.azure-monitor.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5509,6 +5509,11 @@
55095509
"redirect_url": "/azure/azure-monitor/logs/resource-manager-workspace",
55105510
"redirect_document_id": false
55115511
},
5512+
{
5513+
"source_path_from_root": "/articles/azure-monitor/logs/resource-manager-cluster.md",
5514+
"redirect_url": "/azure/azure-monitor/logs/logs-dedicated-clusters",
5515+
"redirect_document_id": false
5516+
},
55125517
{
55135518
"source_path_from_root": "/articles/azure-monitor/visualize/powerbi.md",
55145519
"redirect_url": "/azure/azure-monitor/logs/log-powerbi",

articles/ai-services/translator/containers/faq.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
manager: nitinme
77
ms.service: azure-ai-translator
88
ms.topic: faq
9-
ms.date: 03/11/2024
9+
ms.date: 06/27/2024
1010
ms.author: lajanuar
1111
title: Azure AI Translator container FAQ
1212
summary: |
@@ -19,7 +19,7 @@ sections:
1919
What is the Azure AI Translator container?
2020
answer: |
2121
22-
Azure AI Translator containers are Docker images that allow you to run the Translator service locally or in your own environment. You can use the Translator container to translate text between languages, detect the language of a text, and transliterate from one script to another. The Transltor container is available in a gated preview.
22+
Azure AI Translator containers are Docker images that allow you to run the Translator service locally or in your own environment. You can use the Translator container to translate text between languages, detect the language of a text, and transliterate from one script to another. The Translator container is generally available as a gated release.
2323
2424
- question: |
2525
What are the benefits of using the Azure AI Translator container?
@@ -32,7 +32,7 @@ sections:
3232
- "**Data residency**: You can keep your data within your own environment."
3333
3434
- question: |
35-
How do I access and use the Translator gated preview container?
35+
How do I access and use the Translator gated release container?
3636
answer: |
3737
38-
To access a gated preview container, you must have a valid Azure subscription and request access to the gated preview. You can run a gated preview container if your Translator resource was created with the approved Azure subscription ID. You can't run the container until your Azure subscription is approved for [connected](https://aka.ms/csgate-translator) or [disconnected](https://aka.ms/csdisconnectedcontainers) container access.
38+
To access a gated release container, you must have a valid Azure subscription and request access. You can run a gated release container if your Translator resource was created with the approved Azure subscription ID. You can't run the container until your Azure subscription is approved for [connected](https://aka.ms/csgate-translator) or [disconnected](https://aka.ms/csdisconnectedcontainers) container access.

articles/ai-services/translator/containers/install-run.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: laujan
77
manager: nitinme
88
ms.service: azure-ai-translator
99
ms.topic: how-to
10-
ms.date: 06/21/2024
10+
ms.date: 06/27/2024
1111
ms.author: lajanuar
1212
recommendations: false
1313
keywords: on-premises, Docker, container, identify
@@ -28,7 +28,7 @@ In this article, learn how to install and run the Translator container online wi
2828

2929
* **🆕 Text Transliteration**. Convert text from one language script or writing system to another language script or writing system in real time. For more information, *see* [Container: transliterate text](transliterate-text-parameters.md).
3030

31-
* **🆕 Document translation (preview)**. Synchronously translate documents while preserving structure and format in real time. For more information, *see* [Container:translate documents](translate-document-parameters.md).
31+
* **🆕 Document translation**. Synchronously translate documents while preserving structure and format in real time. For more information, *see* [Container:translate documents](translate-document-parameters.md).
3232

3333
## Prerequisites
3434

@@ -175,7 +175,7 @@ docker run --rm -it -p 5000:5000 --memory 12g --cpus 4 \
175175
mcr.microsoft.com/azure-cognitive-services/translator/text-translation:latest
176176
```
177177
178-
The above command:
178+
The Docker command:
179179

180180
* Creates a running Translator container from a downloaded container image.
181181
* Allocates 12 gigabytes (GB) of memory and four CPU core.

articles/ai-services/translator/containers/translate-document-parameters.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,11 @@ manager: nitinme
88

99
ms.service: azure-ai-translator
1010
ms.topic: reference
11-
ms.date: 04/29/2024
11+
ms.date: 06/27/2024
1212
ms.author: lajanuar
1313
---
1414

15-
# Container: Translate Documents (preview)
16-
17-
> [!IMPORTANT]
18-
>
19-
> * Azure AI Translator public preview releases provide early access to features that are in active development.
20-
> * Features, approaches, and processes may change, prior to General Availability (GA), based on user feedback.
15+
# Container: Translate Documents
2116

2217
**Translate document with source language specified**.
2318

@@ -32,7 +27,7 @@ ms.author: lajanuar
3227
Example:
3328

3429
```bash
35-
curl -i -X POST "http://localhost:5000/translator/document:translate?sourceLanguage=en&targetLanguage=hi&api-version=2023-11-01-preview" -F "document=@C:\Test\test-file.md;type=text/markdown" -o "C:\translation\translated-file.md"
30+
curl -i -X POST "http://localhost:5000/translator/document:translate?sourceLanguage=en&targetLanguage=hi&api-version=2024-05-01" -F "document=@C:\Test\test-file.md;type=text/markdown" -o "C:\translation\translated-file.md"
3631
```
3732

3833
## Synchronous request headers and parameters
@@ -71,7 +66,7 @@ For this project, you need a source document to translate. You can download our
7166
Here's an example cURL HTTP request using localhost:5000:
7267

7368
```bash
74-
curl -v "http://localhost:5000/translator/document:translate?sourceLanguage=en&targetLanguage=es&api-version=2023-11-01-preview" -F "document=@document-translation-sample-docx" -o "C:\translation\translated-file.md"
69+
curl -v "http://localhost:5000/translator/document:translate?sourceLanguage=en&targetLanguage=es&api-version=2024-05-01" -F "document=@document-translation-sample-docx" -o "C:\translation\translated-file.md"
7570
```
7671

7772
***Upon successful completion***:

articles/ai-services/translator/document-translation/quickstarts/client-library-sdks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: azure-ai-translator
99
ms.custom: devx-track-dotnet, devx-track-python
1010
ms.topic: quickstart
11-
ms.date: 06/19/2024
11+
ms.date: 06/27/2024
1212
ms.author: lajanuar
1313
zone_pivot_groups: programming-languages-document-sdk
1414
---
@@ -24,7 +24,7 @@ Document Translation is a cloud-based feature of the [Azure AI Translator](../..
2424
> * Document Translation is currently supported in the Translator (single-service) resource only, and is **not** included in the Azure AI services (multi-service) resource.
2525
> * Document Translation is supported in paid tiers. The Language Studio supports the S1 or D3 instance tiers. We suggest that you select Standard S1 to try Document Translation. *See* [Azure AI services pricing—Translator](https://azure.microsoft.com/pricing/details/cognitive-services/translator/).
2626
> * Document Translation public preview releases provide early access to features that are in active development. Features, approaches, and processes may change, prior to General Availability (GA), based on user feedback.
27-
> * The public preview version of Document Translation client libraries default to REST API version [**2024-05-01**](/rest/api/aiservices/operation-groups?view=rest-aiservices-2024-02-29-preview&preserve-view=true).
27+
> * The public preview version of Document Translation client libraries default to REST API version **2024-05-01**.
2828
2929
## Prerequisites
3030

articles/ai-services/translator/document-translation/reference/get-documents-status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: lajanuar
88
author: laujan
99
ms.service: azure-ai-translator
1010
ms.topic: reference
11-
ms.date: 02/09/2024
11+
ms.date: 06/27/2024
1212
---
1313

1414
# Get status for all documents

articles/ai-services/translator/document-translation/reference/rest-api-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: laujan
77
manager: nitinme
88
ms.service: azure-ai-translator
99
ms.topic: reference
10-
ms.date: 06/19/2024
10+
ms.date: 06/27/2024
1111
ms.author: lajanuar
1212
---
1313

@@ -52,7 +52,7 @@ Document Translation is a cloud-based feature of the Azure AI Translator service
5252
| Request|Method| Description|API path|
5353
|---------|:-------|-------|-----|
5454
|***Single*** |***Synchronous***|***Document***|***Translation***|
55-
|[**Translate document**](translate-document.md)|POST|Synchronously translate a single document.|`{document-translation-endpoint}/translator/document:translate?sourceLanguage={source language}&targetLanguage={target language}&api-version=2023-11-01-preview" -H "Ocp-Apim-Subscription-Key:{your-key}" -F "document={path-to-your-document-with-file-extension};type={ContentType}/{file-extension}" -F "glossary={path-to-your-glossary-with-file-extension};type={ContentType}/{file-extension}" -o "{path-to-output-file}"`|
55+
|[**Translate document**](translate-document.md)|POST|Synchronously translate a single document.|`{document-translation-endpoint}/translator/document:translate?sourceLanguage={source language}&targetLanguage={target language}&api-version=2024-05-01" -H "Ocp-Apim-Subscription-Key:{your-key}" -F "document={path-to-your-document-with-file-extension};type={ContentType}/{file-extension}" -F "glossary={path-to-your-glossary-with-file-extension};type={ContentType}/{file-extension}" -o "{path-to-output-file}"`|
5656
|||||
5757
|***Batch***|***Asynchronous***|***Documents***| ***Translation***|
5858
|[**Start translation**](start-translation.md)|POST|Start a batch document translation job.|`{document-translation-endpoint}.cognitiveservices.azure.com/translator/text/batch/v1.1/batches`|

articles/ai-services/translator/document-translation/reference/translate-document.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: laujan
66
manager: nitinme
77
ms.service: azure-ai-translator
88
ms.topic: quickstart
9-
ms.date: 02/12/2024
9+
ms.date: 06/27/2024
1010
ms.author: lajanuar
1111
recommendations: false
1212
---
@@ -55,7 +55,7 @@ Query string parameters:
5555

5656
|Query parameter | Description |
5757
| --- | --- |
58-
|**api-version** | _Required parameter_.<br>Version of the API requested by the client. Current value is `2023-11-01-preview`. |
58+
|**api-version** | _Required parameter_.<br>Version of the API requested by the client. Current value is `2024-05-01`. |
5959
|**targetLanguage**|_Required parameter_.<br>Specifies the language of the output document. The target language must be one of the supported languages included in the translation scope.|
6060
|&bull; **document=**<br> &bull; **type=**|_Required parameters_.<br>&bull; Path to the file location for your source document and file format type.</br> &bull; Ex: **"document=@C:\Test\Test-file.txt;type=text/html**|
6161
|**--output**|_Required parameter_.<br> &bull; File path for the target file location. Your translated file is printed to the output file.</br> &bull; Ex: **"C:\Test\Test-file-output.txt"**. The file extension should be the same as the source file.|

articles/ai-services/translator/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ items:
193193
- name: "🆕 Container: Transliterate text"
194194
displayName: docker,docker-run,run,pull,swagger,c#,python,import,cpu,EULA,billing
195195
href: containers/transliterate-text-parameters.md
196-
- name: "🆕 Container: Translate documents (preview)"
196+
- name: "🆕 Container: Translate documents"
197197
displayName: docker,docker-run,run,pull,swagger,c#,python,import,cpu,EULA,billing
198198
href: containers/translate-document-parameters.md
199199
- name: Translator container FAQ

articles/api-management/api-management-howto-api-inspector.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: devdivchpfy22
1212

1313
# Tutorial: Debug your APIs using request tracing
1414

15-
[!INCLUDE [api-management-availability-premium-dev-standard-basic-consumption](../../includes/api-management-availability-premium-dev-standard-basic-consumption.md)]
15+
[!INCLUDE [api-management-availability-all-tiers](../../includes/api-management-availability-all-tiers.md)]
1616

1717
This tutorial describes how to inspect (trace) request processing in Azure API Management. Tracing helps you debug and troubleshoot your API.
1818

@@ -25,8 +25,6 @@ In this tutorial, you learn how to:
2525
2626
:::image type="content" source="media/api-management-howto-api-inspector/api-inspector-002.png" alt-text="Screenshot showing the API inspector." lightbox="media/api-management-howto-api-inspector/api-inspector-002.png":::
2727

28-
[!INCLUDE [api-management-availability-tracing-v2-tiers](../../includes/api-management-availability-tracing-v2-tiers.md)]
29-
3028
## Prerequisites
3129

3230
+ Learn the [Azure API Management terminology](api-management-terminology.md).

0 commit comments

Comments
 (0)