Skip to content

Commit af6fae2

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into fixes4
2 parents 3546d8b + 4329fdc commit af6fae2

11 files changed

+526
-70
lines changed

articles/azure-monitor/agents/data-collection-text-log.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ To create the data collection rule in the Azure portal:
122122

123123
1. Specify the following information:
124124

125-
- **File Pattern** - Identifies where the log files are located on the local disk. You can enter multiple file patterns separated by commas if your AMA is using Fluent Bit v1.5.1 or more.
125+
- **File Pattern** - Identifies where the log files are located on the local disk. You can enter multiple file patterns separated by commas (on Linux, AMA version 1.26 or higher is required to collect from a comma-separated list of file patterns).
126126

127127
Examples of valid inputs:
128128
- 20220122-MyLog.txt
129129
- ProcessA_MyLog.txt
130-
- ErrorsOnly_MyLog.txt, WarningOnly_MyLog.txt
130+
- ErrorsOnly_MyLog.txt, WarningOnly_MyLog.txt
131131

132132
> [!NOTE]
133133
> Multiple log files of the same type commonly exist in the same directory. For example, a machine might create a new file every day to prevent the log file from growing too large. To collect log data in this scenario, you can use a file wildcard. Use the format `C:\directoryA\directoryB\*MyLog.txt` for Windows and `/var/*.log` for Linux. There is no support for directory wildcards.

articles/azure-video-indexer/release-notes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ To stay up-to-date with the most recent Azure Video Indexer developments, this a
2020

2121
## May 2023
2222

23+
### API breaking change
24+
25+
We're introducing a change in behavior that may break your existing query logic. The change is in the **List** and **Search** APIs, find a detailed change between the current and the new behavior in a table that follows. You may need to update your code to utilize the [new APIs](https://api-portal.videoindexer.ai/).
26+
27+
|API |Current|New|The breaking change|
28+
|---|---|---|---|
29+
|List Videos|• List all videos/projects according to 'IsBase' boolean parameter. If 'IsBase' is not defined, list both.<br/>• Returns videos in all states (In progress/Proccessed/Failed). |• List Videos API will Return only videos (with paging) in all states.<br/>• List Projects API will return only projects (with paging).|• List videos API was divided into two new API’s **List Videos** and **List Projects**<br/>• The 'IsBase' parameter no longer has a meaning. |
30+
|Search Videos|• Search all videos/projects according to 'IsBase' boolean parameter. If 'IsBase' is not defined, search both. <br/>• Search videos in all states (In progress/Proccessed/Failed). |Search only processed videos.|• Search Videos API will only search videos and not projects.<br/>• The 'IsBase' parameter no longer has a meaning.<br/>• Search Videos API will only search Processed videos (and not Failed/InProgress ones.)|
31+
2332
### Support for HTTP/2
2433

2534
Added support for HTTP/2 for our [Data Plane API](https://api-portal.videoindexer.ai/). [HTTP/2](https://en.wikipedia.org/wiki/HTTP/2) offers several benefits over HTTP/1.1, which continues to be supported for backwards compatibility. One of the main benefits of HTTP/2 is increased performance, better reliability and reduced system resource requirements over HTTP/1.1. With this change we now support HTTP/2 for both the Video Indexer [Portal](https://videoindexer.ai/) and our Data Plane API. We advise to update your code to take advantage of this change.

articles/energy-data-services/how-to-use-managed-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ To add the application ID:
9898
* [Access token](how-to-manage-users.md#prerequisites)
9999
* Application ID of the managed identity
100100

101-
2. Use the [Add Member API](https://microsoft.github.io/meds-samples/rest-apis/index.html?page=/meds-samples/rest-apis/entitlements_openapi.yaml#/add-member-api/addMemberUsingPOST) to add the application ID of the user-assigned managed identity to the appropriate entitlement groups.
101+
2. Use the [Add Member API](https://microsoft.github.io/adme-samples/rest-apis/index.html?page=/adme-samples/rest-apis/M12/entitlements_openapi.yaml#/add-member-api) to add the application ID of the user-assigned managed identity to the appropriate entitlement groups.
102102

103103
> [!NOTE]
104104
> In the following commands, be sure to use the application ID of the managed identity and not the object ID.

articles/machine-learning/.openpublishing.redirection.machine-learning.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"redirect_url": "/azure/machine-learning/how-to-network-security-overview",
66
"redirect_document_id": false
77
},
8+
{
9+
"source_path_from_root": "/articles/machine-learning/how-to-manage-imported-data-assets.md",
10+
"redirect_url": "/azure/machine-learning/",
11+
"redirect_document_id": false
12+
},
813
{
914
"source_path_from_root": "/articles/machine-learning/v1/how-to-workspace-diagnostic-api.md",
1015
"redirect_url": "/azure/machine-learning/how-to-workspace-diagnostic-api",

articles/machine-learning/how-to-image-processing-batch.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ __endpoint.yml__
6666

6767
Run the following code to create the endpoint.
6868

69-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="create_batch_endpoint" :::
69+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="create_endpoint" :::
7070

7171
# [Python](#tab/python)
7272

@@ -193,7 +193,7 @@ One the scoring script is created, it's time to create a batch deployment for it
193193

194194
Then, create the deployment with the following command:
195195

196-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="create_batch_deployment_set_default" :::
196+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="create_deployment" :::
197197

198198
# [Python](#tab/python)
199199

@@ -342,7 +342,7 @@ For testing our endpoint, we are going to use a sample of 1000 images from the o
342342

343343
To download the predictions, use the following command:
344344

345-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="download_scores" :::
345+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="download_outputs" :::
346346

347347
# [Python](#tab/python)
348348

@@ -398,7 +398,7 @@ On those cases, we may want to perform inference on the entire batch of data. Th
398398

399399
Then, create the deployment with the following command:
400400

401-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="create_batch_deployment_ht" :::
401+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/imagenet-classifier/deploy-and-run.sh" ID="create_deployment_ht" :::
402402

403403
# [Python](#tab/python)
404404

articles/machine-learning/how-to-nlp-processing-batch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ We are going to create a batch endpoint named `text-summarization-batch` where t
125125
126126
# [Azure CLI](#tab/cli)
127127
128-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/huggingface-text-summarization/deploy-and-run.sh" ID="create_batch_endpoint" :::
128+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/huggingface-text-summarization/deploy-and-run.sh" ID="create_endpoint" :::
129129
130130
# [Python](#tab/python)
131131
@@ -222,7 +222,7 @@ Let's create the deployment that will host the model:
222222

223223
Then, create the deployment with the following command:
224224

225-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/huggingface-text-summarization/deploy-and-run.sh" ID="create_batch_deployment_set_default" :::
225+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/huggingface-text-summarization/deploy-and-run.sh" ID="create_deployment" :::
226226

227227
# [Python](#tab/python)
228228

articles/machine-learning/how-to-use-batch-endpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ A batch endpoint is an HTTPS endpoint that clients can call to trigger a batch i
9797
9898
Run the following code to create a batch deployment under the batch endpoint and set it as the default deployment.
9999
100-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deploy-and-run.sh" ID="create_batch_endpoint" :::
100+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deploy-and-run.sh" ID="create_endpoint" :::
101101
102102
# [Python](#tab/python)
103103
@@ -176,7 +176,7 @@ For instance, the following example downloads the output __score__ from the job.
176176

177177
# [Azure CLI](#tab/cli)
178178

179-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deploy-and-run.sh" ID="download_scores" :::
179+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deploy-and-run.sh" ID="download_outputs" :::
180180

181181
# [Python](#tab/python)
182182

@@ -212,7 +212,7 @@ To add a new deployment to an existing endpoint, use the code:
212212

213213
# [Azure CLI](#tab/cli)
214214

215-
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deploy-and-run.sh" ID="create_new_deployment_not_default" :::
215+
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/mnist-classifier/deploy-and-run.sh" ID="create_deployment_non_default" :::
216216

217217
# [Python](#tab/python)
218218

articles/virtual-machines/image-builder-api-update-release-notes.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: kof-f
55
ms.service: virtual-machines
66
ms.topic: conceptual
77
ms.workload: infrastructure
8-
ms.date: 04/04/2022
8+
ms.date: 05/08/2023
99
ms.reviewer: erd
1010
ms.subservice: image-builder
1111
ms.custom: references_regions
@@ -17,11 +17,30 @@ ms.custom: references_regions
1717

1818
**Applies to:** :heavy_check_mark: Linux VMs :heavy_check_mark: Windows VMs :heavy_check_mark: Flexible scale sets :heavy_check_mark: Uniform scale sets
1919

20-
This article contains all major API changes and feature updates for the Azure VM Image Builder service.
20+
This article contains all major API changes and feature updates for the Azure VM Image Builder (AIB) service.
2121

2222
## API releases
2323

2424

25+
### Version 2022-07-01
26+
27+
**Improvements**
28+
- Added support to use the latest image version stored in Azure Compute Gallery as the source for the image template
29+
- Added `versioning` to support generating version numbers for image distributions. For more information, see [properties: versioning](../virtual-machines/linux/image-builder-json.md#versioning)
30+
- Added support for per region configuration when distributing to Azure Compute Gallery. For more information, see [Distribute:targetRegions](../virtual-machines/linux/image-builder-json.md#distribute-targetregions)
31+
- Added new 'File' validation type. For more information, see [validate properties](../virtual-machines/linux/image-builder-json.md#properties-validate)
32+
- VHDs can now be distributed to a custom blob or container in a custom storage account. For more information, see [Distribute: VHD](../virtual-machines/linux/image-builder-json.md#distribute-vhd)
33+
- Added support for using a [Direct Shared Gallery](/azure/virtual-machines/shared-image-galleries?tabs=azure-cli#sharing) image as the source for the image template
34+
35+
36+
**Changes**
37+
- `replicationRegions` is now deprecated for gallery distributions. For more information, use [gallery-replicated-regions](/cli/azure/image/builder/output?view=azure-cli-latest#az-image-builder-output-add-examples&preserve-view=true)
38+
- VHDs can now be distributed to a custom blob or container in a custom storage account
39+
- `targetRegions` array added and applied only to "SharedImage" type distribute. For more information on `targetRegions`, see [Azure Compute Gallery](../../articles/virtual-machines/azure-compute-gallery.md)
40+
- Added support for using a [Direct Shared Gallery](/azure/virtual-machines/shared-image-galleries?tabs=azure-cli#sharing) image as the source for the image template. Direct Shared Gallery is currently in preview.
41+
42+
43+
2544
### Version 2022-02-14
2645

2746
**Improvements**

0 commit comments

Comments
 (0)