Skip to content

Commit 9517abc

Browse files
authored
Merge pull request #268204 from MicrosoftDocs/main
3/6 11:00 AM IST Publish
2 parents b5ba67a + 6071328 commit 9517abc

22 files changed

+59
-68
lines changed

articles/ai-services/containers/azure-kubernetes-recipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ The following steps are needed to get the required information to connect your c
191191
1. Get your container registry ID.
192192
193193
```azurecli-interactive
194-
az acr show --resource-group cogserv-container-rg --name pattyregistry --query "id" --o table
194+
az acr show --resource-group cogserv-container-rg --name pattyregistry --query "id" --output table
195195
```
196196
197197
Save the output for the scope parameter value, `<acrId>`, in the next step. It looks like:

articles/ai-services/language-service/text-analytics-for-health/how-to/use-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Once the container is on the host computer, use the [docker run](https://docs.do
7070
There are multiple ways you can install and run the Text Analytics for health container.
7171

7272
- Use the Azure portal to create a Language resource, and use Docker to get your container.
73-
- Use an Azure VM with Docker to run the container. Refer to [Docker on Azure](../../../../docker/index.yml).
73+
- Use an Azure VM with Docker to run the container.
7474
- Use the following PowerShell and Azure CLI scripts to automate resource deployment and container configuration.
7575

7676
When you use the Text Analytics for health container, the data contained in your API requests and responses is not visible to Microsoft, and is not used for training the model applied to your data.

articles/ai-services/openai/whisper-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ echo export AZURE_OPENAI_ENDPOINT="REPLACE_WITH_YOUR_ENDPOINT_HERE" >> /etc/envi
9494

9595
::: zone pivot="programming-language-python"
9696

97-
[!INCLUDE [REST API quickstart](includes/whisper-python.md)]
97+
[!INCLUDE [Python quickstart](includes/whisper-python.md)]
9898

9999
::: zone-end
100100

articles/ai-studio/how-to/generate-data-qa.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ pip3 install azure-identity azure-ai-generative
2727
pip3 install wikipedia langchain nltk unstructured
2828
```
2929

30-
## Connect to Azure Open AI
30+
## Connect to Azure OpenAI
3131

32-
We need to connect to Azure Open AI so that we can access the LLM to generate data for us.
32+
We need to connect to Azure OpenAI so that we can access the LLM to generate data for us.
3333

3434
```python
3535
from azure.ai.resources.client import AIClient
@@ -175,7 +175,7 @@ To use the `generated_qa.jsonl` file for evaluation, you need to add this file a
175175

176176
## Generate data from files
177177

178-
Generating data from files might be more practical for large amounts of data. You can use the `generate_async()` function OF THE `QADataGenerator` to make concurrent requests to Azure Open AI for generating data from files.
178+
Generating data from files might be more practical for large amounts of data. You can use the `generate_async()` function OF THE `QADataGenerator` to make concurrent requests to Azure OpenAI for generating data from files.
179179

180180
Files might have large texts that go beyond model's context lengths. They need to be split to create smaller chunks. Moreover, they shouldn't be split mid-sentence. Such partial sentences might lead to improper QA samples. You can use LangChain's `NLTKTextSplitter` to split the files before generating data.
181181

articles/application-gateway/for-containers/how-to-header-rewrite-ingress-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: greg-lindsay
66
ms.service: application-gateway
77
ms.subservice: appgw-for-containers
88
ms.topic: conceptual
9-
ms.date: 02/27/2024
9+
ms.date: 03/5/2024
1010
ms.author: greglin
1111
---
1212

@@ -43,7 +43,7 @@ The following figure illustrates an example of a request with a specific user ag
4343
- two services called `backend-v1` and `backend-v2` in the `test-infra` namespace
4444
- two deployments called `backend-v1` and `backend-v2` in the `test-infra` namespace
4545

46-
## Deploy the required Gateway API resources
46+
## Deploy the required Ingress API resources
4747

4848
# [ALB managed deployment](#tab/alb-managed)
4949

@@ -200,7 +200,7 @@ spec:
200200
EOF
201201
```
202202

203-
Once the HTTPRoute resource is created, ensure the route has been _Accepted_ and the Application Gateway for Containers resource has been _Programmed_.
203+
Once the IngressExtension resource is created, ensure the resource returns _No validation errors_ and is valid.
204204

205205
```bash
206206
kubectl get IngressExtension header-rewrite -n test-infra -o yaml
@@ -333,4 +333,4 @@ Via the response we should see:
333333
}
334334
```
335335

336-
Congratulations, you have installed ALB Controller, deployed a backend application and modified header values via Gateway API on Application Gateway for Containers.
336+
Congratulations, you have installed ALB Controller, deployed a backend application and modified header values via Ingress API on Application Gateway for Containers.

articles/azure-maps/android-sdk-migration-guide.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To use the Map Control in a web page, you must have one of the following prerequ
2222

2323
## Create a WebView
2424

25-
Add a `WebView` if your Android application doesn't have one. Do so by adding the `WebView` element to your layout XML or programmatically in your Java code. Be sure it's configured to occupy the desired area of your layout.
25+
Add a WebView if your Android application doesn't have one. Do so by adding the `WebView` element to your layout XML or programmatically in your Java code. Be sure it's configured to occupy the desired area of your layout.
2626

2727
```xml
2828
<?xml version="1.0" encoding="utf-8"?>
@@ -41,13 +41,13 @@ Add a `WebView` if your Android application doesn't have one. Do so by adding th
4141
</androidx.coordinatorlayout.widget.CoordinatorLayout>
4242
```
4343

44-
Enable internet access by adding permissions in AndroidManifest.xml.
44+
Enable internet access by adding permissions in _AndroidManifest.xml_.
4545

4646
```xml
4747
<uses-permission android:name="android.permission.INTERNET" />
4848
```
4949

50-
In your activity or fragment, initialize the WebView and enable JavaScript by updating the settings. Load the HTML file that contains the Web SDK code. You can either load it from the assets folder or from a remote URL.
50+
In your activity or fragment, initialize the `WebView` and enable JavaScript by updating the settings. Load the HTML file that contains the Web SDK code. You can either load it from the assets folder or from a remote URL.
5151

5252
```java
5353
import android.os.Bundle;
@@ -134,13 +134,13 @@ In your HTML file, initialize a map with your subscription key. Replace `<YOUR_S
134134
</html>
135135
```
136136

137-
Save and run the app. A map should be shown within a WebView. Add any features or functionalities that you want to use from the Web SDK. You can refer to the [Azure Maps documentation] and the [Azure Maps Code Samples website] for more use cases.
137+
Save and run the app. A map will appear within a WebView. Add any required features or functionality from the Web SDK. For more information, see [Azure Maps Documentation] and [Azure Maps Samples].
138138

139139
:::image type="content" source="./media/android-sdk-migration-guide/maps-android.png" alt-text="A screenshot of a map in a WebView.":::
140140

141141
## Communication between native code and WebView (optional)
142142

143-
To enable communication between your Android application and the WebView, you can use the WebView's `addJavascriptInterface` method to expose a Java object to the JavaScript running in the WebView. It allows you to call Java methods from your JavaScript code. For more information, see the [Android WebView documentation].
143+
To enable communication between your Android application and the WebView, you can use the WebView's `addJavascriptInterface` method to expose a Java object to the JavaScript running in the WebView. It allows you to call Java methods from your JavaScript code. For more information, see [WebView] in the Android documentation.
144144

145145
## Clean Up Native Map Implementation
146146

@@ -160,9 +160,7 @@ Learn how to add maps to web and mobile applications using the Map Control clien
160160
[Azure Maps account]: quick-demo-map-app.md#create-an-azure-maps-account
161161
[subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
162162
[authentication options]: /javascript/api/azure-maps-control/atlas.authenticationoptions
163-
[Azure Maps documentation]: how-to-use-map-control.md
164-
[Azure Maps Code Samples website]: https://samples.azuremaps.com/
165-
[Android WebView documentation]: https://developer.android.com/reference/android/webkit/WebView
163+
[Azure Maps Documentation]: how-to-use-map-control.md
164+
[Azure Maps Samples]: https://samples.azuremaps.com/
165+
[WebView]: https://developer.android.com/reference/android/webkit/WebView
166166
[Use the Azure Maps map control]: how-to-use-map-control.md
167-
168-

articles/azure-maps/ios-sdk-migration-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To use the Map Control in a web page, you must have one of the following prerequ
2222

2323
## Create a WebView
2424

25-
Add a `WebView` if your iOS application doesn't have one. Do so by adding the `WKWebView` to your storyboard or programmatically in your Swift code. Be sure it's configured to occupy the desired area of your layout.
25+
Add a WebView if your iOS application doesn't have one. Do so by adding the `WKWebView` to your storyboard or programmatically in your Swift code. Be sure it's configured to occupy the desired area of your layout.
2626

2727
```swift
2828
import UIKit
@@ -117,7 +117,7 @@ In your HTML file, initialize a map with your subscription key. Replace `<YOUR_S
117117
</html>
118118
```
119119

120-
Save and run the app. A map should be shown within a WebView. Add any features or functionalities that you want to use from the Web SDK. You can refer to the [Azure Maps documentation] and the [Azure Maps Code Samples website] for more use cases.
120+
Save and run the app. A map should be shown within a WebView. Add any features or functionalities that you want to use from the Web SDK. You can refer to the [Azure Maps Documentation] and the [Azure Maps Samples] for more use cases.
121121

122122
:::image type="content" source="./media/ios-sdk-migration-guide/maps-ios.png" alt-text="A screenshot of a map in a WebView.":::
123123

@@ -143,8 +143,8 @@ Learn how to add maps to web and mobile applications using the Map Control clien
143143
[Azure Maps account]: quick-demo-map-app.md#create-an-azure-maps-account
144144
[subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
145145
[authentication options]: /javascript/api/azure-maps-control/atlas.authenticationoptions
146-
[Azure Maps documentation]: how-to-use-map-control.md
147-
[Azure Maps Code Samples website]: https://samples.azuremaps.com/
146+
[Azure Maps Documentation]: how-to-use-map-control.md
147+
[Azure Maps Samples]: https://samples.azuremaps.com/
148148
[WKScriptMessageHandler]: https://developer.apple.com/documentation/webkit/wkscriptmessagehandler
149149
[Use the Azure Maps map control]: how-to-use-map-control.md
150150

articles/azure-monitor/agents/om-agents.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ union *
220220

221221
When you no longer require integration between your Operations Manager management group and the Log Analytics workspace, several steps are required to properly remove the connection and configuration in the management group. The following procedure has you update your Log Analytics workspace by deleting the reference of your management group, deleting the Azure Monitor connectors, and then deleting management packs that support integration with the service.
222222

223-
Management packs for the solutions you've enabled that integrate with Operations Manager and the management packs required to support integration with Azure Monitor can't be easily deleted from the management group. The reason is that some of the Azure Monitor management packs have dependencies on other related management packs. To delete management packs that have a dependency on other management packs, download the script to [remove a management pack with dependencies](https://gallery.technet.microsoft.com/scriptcenter/Script-to-remove-a-84f6873e) from TechNet Script Center.
224-
225223
1. Open the Operations Manager command shell with an account that's a member of the Operations Manager Administrators role.
226224

227225
> [!WARNING]

articles/azure-monitor/containers/monitor-kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ If you have an existing Grafana environment, then you can continue to use it and
121121

122122
When you enable Container Insights for your Kubernetes cluster, it deploys a containerized version of the [Azure Monitor agent](../agents/log-analytics-agent.md) that sends data to a Log Analytics workspace in Azure Monitor. Container insights collects container stdout/stderr, infrastructure logs, and performance data. All log data is stored in a Log Analytics workspace where they can be analyzed using [Kusto Query Language (KQL)](../logs/log-query-overview.md).
123123

124-
See [Enable Container insights](../containers/container-insights-onboard.md) for prerequisites and configuration options for onboarding your Kubernetes clusters. [Onboard using Azure Policy](container-insights-enable-aks-policy.md) to ensure that all clusters retain a consistent configuration.
124+
See [Enable Container insights](../containers/container-insights-onboard.md) for prerequisites and configuration options for onboarding your Kubernetes clusters. [Onboard using Azure Policy](/azure/azure-monitor/containers/kubernetes-monitoring-enable?tabs=policy#enable-container-insights) to ensure that all clusters retain a consistent configuration.
125125

126126
Once Container insights is enabled for a cluster, perform the following actions to optimize your installation.
127127

articles/azure-netapp-files/understand-path-lengths.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: anfdocs
1111

1212
# Understand path lengths in Azure NetApp Files
1313

14-
File and path length refers to the number of Unicode characters in a file path, including directories. This limit is a factor if the individual character lengths, which are determined by the size of the character in bytes. For instance, NFS and SMB allow path components of 255 bytes. The file encoding format of ASCII uses 8-bit encoding, meaning file path components (such as a file or folder name) in ASCII can be up to 255 characters since ASCII characters are 1 byte in size.
14+
File and path length refers to the number of Unicode characters in a file path, including directories. This limit is a factor in the individual character lengths, which are determined by the size of the character in bytes. For instance, NFS and SMB allow path components of 255 bytes. The file encoding format of ASCII uses 8-bit encoding, meaning file path components (such as a file or folder name) in ASCII can be up to 255 characters since ASCII characters are 1 byte in size.
1515

1616
The following table shows the supported component and path lengths in Azure NetApp Files volumes:
1717

0 commit comments

Comments
 (0)