Skip to content

Commit 5fca43c

Browse files
authored
Merge pull request #289394 from MicrosoftDocs/main
10/29/2024 AM Publish
2 parents e427311 + 3eb236a commit 5fca43c

37 files changed

+128
-132
lines changed

articles/azure-functions/start-stop-vms/troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99

1010
# Troubleshoot common issues with Start/Stop VMs
1111

12-
This article provides information on troubleshooting and resolving issues that may occur while attempting to install and configure Start/Stop VMs. For general information, see [Start/Stop VMs overview](overview.md).
12+
This article provides information on troubleshooting and resolving issues that may occur while attempting to install and configure Start/Stop VMs.
1313

1414
## General validation and troubleshooting
1515

articles/azure-maps/add-custom-protocol-pmtiles.md

Lines changed: 9 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -20,45 +20,28 @@ By using the `addProtocol` function, which registers a callback triggered before
2020
The first step is to add a reference to the protocol. The following example references the `pmtiles` library:
2121

2222
```html
23-
<script src="https://unpkg.com/pmtiles@3.0.5/dist/pmtiles.js"></script>
23+
<script src="https://unpkg.com/pmtiles@3.2.0/dist/pmtiles.js"></script>
2424
```
2525

2626
Next, initialize the MapLibre PMTiles protocol.
2727

2828
```js
29-
//Initialize the plugin.
30-
const protocol = new pmtiles.Protocol();
31-
atlas.addProtocol("pmtiles", (request) => {
32-
return new Promise((resolve, reject) => {
33-
const callback = (err, data) => {
34-
if (err) {
35-
reject(err);
36-
} else {
37-
resolve({ data });
38-
}
39-
};
40-
protocol.tile(request, callback);
41-
});
42-
});
43-
```
44-
45-
## Add PMTiles protocol
46-
47-
To add the PMTiles protocol, hook the data source with the specified protocol URI scheme. The following sample uses the [Overture] building dataset to add building data over the basemap.
48-
49-
```js
50-
const PMTILES_URL = "https://overturemaps-tiles-us-west-2-beta.s3.amazonaws.com/2024-07-22/buildings.pmtiles";
51-
protocol.add(new pmtiles.PMTiles(PMTILES_URL));
29+
//Initialize the plugin.
30+
const protocol = new pmtiles.Protocol();
31+
atlas.addProtocol("pmtiles", protocol.tile);
5232
```
5333

5434
## Add PMTiles as a map source
5535

36+
The following sample uses the [Overture] building dataset to add building data over the basemap.
37+
5638
PMTiles are added as a map source during the map event. Once added, the specified URI scheme is available to the Azure Maps Web SDK. In the following sample, the PMTiles URL is added as a `VectorTileSource`.
5739

5840
```js
41+
const PMTILES_URL = "https://overturemaps-tiles-us-west-2-beta.s3.amazonaws.com/2024-07-22/buildings.pmtiles";
5942
//Add the source to the map.
6043
map.sources.add(
61-
new atlas.source.VectorTileSource("pmtiles", {
44+
new atlas.source.VectorTileSource("my_source", {
6245
type: "vector",
6346
url: `pmtiles://${PMTILES_URL}`,
6447
})
@@ -77,7 +60,7 @@ The following sample uses the building theme's properties (for example, building
7760
```js
7861
//Create a polygon extrusion layer.
7962
layer = new atlas.layer.PolygonExtrusionLayer(
80-
"pmtiles",
63+
"my_source",
8164
"building",
8265
{
8366
sourceLayer: "building",

articles/azure-resource-manager/management/move-resource-group-and-subscription.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,10 @@ When you receive this error, you have two options. Either move your resources to
479479

480480
No, you can't move a resource group to a new subscription. But, you can move all of the resources in the resource group to a resource group in another subscription. Settings such as tags, role assignments, and policies aren't automatically transferred from the original resource group to the destination resource group. You need to reapply these settings to the new resource group. For more information, see [Move resources to new resource group or subscription](./move-support-resources.md).
481481

482+
### Unsupported scenarios
483+
484+
The platform blocks a scenario where resources from Subscription A are migrated to Subscription B when *at the same time* resources from Subscription B are migrated to Subscription C. This is by design.
485+
482486
## Next steps
483487

484488
For a list of which resources support move, see [Move operation support for resources](move-support-resources.md).

articles/communication-services/concepts/privacy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Audio and video communication is ephemerally processed by the service and no cal
104104

105105
### Call Recording
106106

107-
Call recordings are stored temporarily in the same geography that was selected for ```Data Location``` during resource creation for 48 hours. After this the recording is deleted and you are responsible for storing the recording in a secure and compliant location.
107+
Call recordings are stored temporarily in the same geography that was selected for ```Data Location``` during resource creation for 24 hours. After this the recording is deleted and you are responsible for storing the recording in a secure and compliant location.
108108

109109
### Email
110110
Email message content is ephemerally stored for processing in the resource's ```Data Location``` specified by you during resource provisioning. Email message delivery logs are available in Azure Monitor Logs, where you are in control to define the workspace to store logs. Domain sender usernames (or MailFrom) values are stored in the resource's ```Data Location``` until explicitly deleted. Recipient's email addresses that result in hard bounced messages are temporarily retained for spam and abuse prevention and detection.

articles/container-apps/ingress-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ With TCP ingress enabled, your container app:
8383
In addition to the main HTTP/TCP port for your container apps, you might expose additional TCP ports to enable applications that accept TCP connections on multiple ports.
8484

8585
> [!NOTE]
86-
> This feature requires using the latest preview version of the container apps CLI extension.
86+
> To use this feature, you must have the container apps CLI extension. Run `az extension add -n containerapp` in order to install the latest version of the container apps CLI extension.
8787
8888
The following apply to additional TCP ports:
8989
- Additional TCP ports can only be external if the app itself is set as external and the container app is using a custom VNet.

articles/data-factory/connector-office-365.md

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ author: jianleishen
66
ms.subservice: data-movement
77
ms.custom: synapse
88
ms.topic: conceptual
9-
ms.date: 09/26/2024
9+
ms.date: 10/29/2024
1010
ms.author: jianleishen
1111
---
12-
# Copy and transform data from Microsoft 365 (Office 365) into Azure using Azure Data Factory or Synapse Analytics
12+
# Copy from Microsoft 365 (Office 365) into Azure using Azure Data Factory or Synapse Analytics
1313
[!INCLUDE[appliesto-adf-asa-md](includes/appliesto-adf-asa-md.md)]
1414

1515
Azure Data Factory and Synapse Analytics pipelines integrate with [Microsoft Graph data connect](/graph/data-connect-concept-overview), allowing you to bring the rich organizational data in your Microsoft 365 (Office 365) tenant into Azure in a scalable way and build analytics applications and extract insights based on these valuable data assets. Integration with Privileged Access Management provides secured access control for the valuable curated data in Microsoft 365 (Office 365). Refer to [this link](/graph/data-connect-concept-overview) for an overview of Microsoft Graph data connect.
@@ -332,33 +332,5 @@ To copy data from Microsoft 365 (Office 365), the following properties are suppo
332332
]
333333
```
334334

335-
## Transform data with the Microsoft 365 connector
336-
337-
Microsoft 365 datasets can be used as a source with mapping data flows. The data flow will transform the data by flattening the dataset automatically. This allows users to concentrate on leveraging the flattened dataset to accelerate their analytics scenarios.
338-
339-
### Mapping data flow properties
340-
341-
To create a mapping data flow using the Microsoft 365 connector as a source, complete the following steps:
342-
343-
1. In ADF Studio, go to the **Data flows** section of the **Author** hub, select the **** button to drop down the **Data flow actions** menu, and select the **New data flow** item. Turn on debug mode by using the **Data flow debug** button in the top bar of data flow canvas.
344-
345-
:::image type="content" source="media/connector-office-365/connector-office-365-mapping-data-flow-data-flow-debug.png" alt-text="Screenshot of the data flow debug button in mapping data flow.":::
346-
347-
2. In the mapping data flow editor, select **Add Source**.
348-
349-
:::image type="content" source="media/connector-office-365/connector-office-365-mapping-data-flow-add-source.png" alt-text="Screenshot of add source in mapping data flow.":::
350-
351-
3. On the tab **Source settings**, select **Inline** in the **Source type** property, **Microsoft 365 (Office 365)** in the **Inline dataset type**, and the Microsoft 365 linked service that you have created earlier.
352-
353-
:::image type="content" source="media/connector-office-365/connector-office-365-mapping-data-flow-select-dataset.png" alt-text="Screenshot of the select dataset option in source settings of mapping data flow source.":::
354-
355-
4. On the tab **Source options** select the **Table name** of the Microsoft 365 table that you would like to transform. Also select the **Auto flatten** option to decide if you would like data flow to auto flatten the source dataset.
356-
357-
:::image type="content" source="media/connector-office-365/connector-office-365-mapping-data-flow-source-options.png" alt-text="Screenshot of the source options of mapping data flow source.":::
358-
359-
5. For the tabs **Projection**, **Optimize** and **Inspect**, please follow [mapping data flow](concepts-data-flow-overview.md).
360-
361-
6. On the tab **Data preview** click on the **Refresh** button to fetch a sample dataset for validation.
362-
363335
## Related content
364336
For a list of data stores supported as sources and sinks by the copy activity, see [supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).

articles/devtest-labs/how-to-move-labs.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ author: RoseHJM
88
ms.date: 09/30/2023
99
---
1010

11-
# Move DevTest Labs and schedules to another region
11+
# Move DevTest Labs and Schedules
1212

13-
You can move DevTest Labs and their associated schedules to another region. To move a lab, create a copy of an existing lab in another region. When you've moved your lab, and you have a virtual machine (VM) in the target region, you can move your lab schedules.
13+
You can move DevTest Labs and their associated schedules to another region or resource group. You can move resource groups through the Azure Portal. To move a lab, create a copy of an existing lab in another region. When you've moved your lab, and you have a virtual machine (VM) in the target region, you can move your lab schedules..
1414

1515
In this article, you learn how to:
1616
> [!div class="checklist"]
1717
> >
18+
> - Move resources to different resource groups.
1819
> - Export an Azure Resource Manager (ARM) template of your lab.
1920
> - Modify the template by adding or updating the target region and other parameters.
2021
> - Deploy the template to create the new lab in the target region.
@@ -39,11 +40,18 @@ In this article, you learn how to:
3940

4041
## Move a lab
4142

42-
The following section describes how to create and customize an ARM template to move a lab from one region to another.
43+
The following section describes how to move resources to a different resource group and create and customize an ARM template to move a lab from one region to another.
4344

4445
You can move a schedule without moving a lab, if you have a VM in the target region. If you want to move a schedule without moving a lab, see [Move a schedule](#move-a-schedule).
4546

46-
### Prepare to move a lab
47+
### Move Resource Groups using Azure Portal
48+
Moving resources between resource groups in different locations is now seamlessly enabled in DevTest Labs. You can effortlessly transfer any resource from one group to another within the same subscription.
49+
50+
To begin, select the resource you wish to move. On the resource's **Overview** page, you'll find the current **Resource Group** displayed at the top. Next to the resource group name, you'll see the word `(move)` in parentheses.
51+
52+
Click the hyperlinked `move` text, which will direct you to a new page where you can relocate the resource to any other resource group within the same subscription. Please note that moving the resource will not change its location, even if the destination resource group is in a different location. If you're not moving resources through the Azure Portal or if you're transferring to a resource group in a different subscription, alternative methods using ARM are outlined below.
53+
54+
### Move Labs to a Different Region
4755

4856
When you move a lab, there are some steps you must take to prepare for the move. You need to:
4957

@@ -314,7 +322,7 @@ Use the following steps to export and redeploy your schedule in another Azure re
314322

315323
## Discard or clean up
316324

317-
After the deployment, if you want to start over, you can delete the target lab, and repeat the steps described in the [Prepare](#prepare-to-move-a-lab) and [Move](#deploy-the-template-to-move-the-lab) sections of this article.
325+
After the deployment, if you want to start over, you can delete the target lab, and repeat the steps described in the [Prepare](#move-labs-to-a-different-region) and [Move](#deploy-the-template-to-move-the-lab) sections of this article.
318326

319327
To commit the changes and complete the move, you must delete the original lab.
320328

articles/event-hubs/transport-layer-security-audit-minimum-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To create a policy with an audit effect for the minimum TLS version with the Azu
3737
},
3838
{
3939
"not": {
40-
"field": " Microsoft.EventHub/namespaces/minimumTlsVersion",
40+
"field": "Microsoft.EventHub/namespaces/minimumTlsVersion",
4141
"equals": "1.2"
4242
}
4343
}
@@ -122,4 +122,4 @@ See the following documentation for more information.
122122

123123
- [Enforce a minimum required version of Transport Layer Security (TLS) for requests to an Event Hubs namespace](transport-layer-security-enforce-minimum-version.md)
124124
- [Configure the minimum TLS version for an Event Hubs namespace](transport-layer-security-configure-minimum-version.md)
125-
- [Configure Transport Layer Security (TLS) for an Event Hubs client application](transport-layer-security-configure-client-version.md)
125+
- [Configure Transport Layer Security (TLS) for an Event Hubs client application](transport-layer-security-configure-client-version.md)

articles/event-hubs/transport-layer-security-enforce-minimum-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Event Hubs
44
description: Configure a service bus namespace to require a minimum version of Transport Layer Security (TLS) for clients making requests against Azure Event Hubs.
55
author: EldertGrootenboer
66
ms.topic: article
7-
ms.date: 06/24/2024
7+
ms.date: 10/28/2024
88
ms.author: egrootenboer
99
---
1010

@@ -17,7 +17,7 @@ Azure Event Hubs supports choosing a specific TLS version for namespaces. Curren
1717
Azure Event Hubs namespaces permit clients to send and receive data with TLS 1.0 and above. To enforce stricter security measures, you can configure your Event Hubs namespace to require that clients send and receive data with a newer version of TLS. If an Event Hubs namespace requires a minimum version of TLS, then any requests made with an older version will fail.
1818

1919
> [!WARNING]
20-
> As of 31 October 2024, TLS 1.0 and TLS 1.1 will no longer be supported on Azure. [TLS 1.0 and TLS 1.1 end of support announcement](https://azure.microsoft.com/updates/azure-support-tls-will-end-by-31-october-2024-2/) The minimum TLS version will be 1.2 for all Event Hubs deployments.
20+
> As of 28 February 2025, TLS 1.0 and TLS 1.1 will no longer be supported on Azure Event Hubs. The minimum TLS version will be 1.2 for all Event Hubs deployments.
2121
2222
> [!IMPORTANT]
2323
> On 31 October 2024, TLS 1.3 will be enabled for AMQP traffic. TLS 1.3 is already enabled for Kafka and HTTPS traffic. Java clients may have a problem with TLS 1.3 due to a dependency on an older version of Proton-J. For more details, read [Java client changes to support TLS 1.3 with Azure Service Bus and Azure Event Hubs](https://techcommunity.microsoft.com/t5/messaging-on-azure-blog/java-client-changes-to-support-tls-1-3-with-azure-service-bus/ba-p/4089355)

0 commit comments

Comments
 (0)