Skip to content

Commit e656c3d

Browse files
authored
Merge pull request #263278 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 12522ed + 0b22ef3 commit e656c3d

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

articles/data-factory/delete-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ Dataset for data destination used by copy activity.
770770

771771
You can also get the template to move files from [here](solution-template-move-files.md).
772772

773-
## Known limitation
773+
## Known limitations
774774

775775
- Delete activity doesn't support deleting list of folders described by wildcard.
776776

articles/governance/resource-graph/paginate-powershell.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,11 @@ We'll then configure the query to return five records (VMs) at a time.
7474
```powershell
7575
# Login first with Connect-AzAccount if not using Cloud Shell
7676
77-
# Run Azure Resource Graph query Search-AzGraph -Query "Resources | join kind=leftouter
78-
(ResourceContainers | where type=='microsoft.resources/subscriptions' | project subscriptionName
79-
= name, subscriptionId) on subscriptionId | where type =~ 'Microsoft.Compute/virtualMachines' |
80-
project VMResourceId = id, subscriptionName, resourceGroup, name"
77+
# Run Azure Resource Graph query
78+
Search-AzGraph -Query "Resources | join kind=leftouter (ResourceContainers | where
79+
type=='microsoft.resources/subscriptions' | project subscriptionName = name, subscriptionId) on
80+
subscriptionId | where type =~ 'Microsoft.Compute/virtualMachines' | project VMResourceId = id,
81+
subscriptionName, resourceGroup, name"
8182
```
8283

8384
1. Update the query to implement the `skipToken` parameter and return 5 VMs in each batch:

articles/load-balancer/configure-vm-scale-set-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Sign in to the [Azure portal](https://portal.azure.com).
3030
In this section, you'll create a Virtual Machine Scale Set in the Azure portal with an existing Azure load balancer.
3131

3232
> [!NOTE]
33-
> The following steps assume a virtual network named **myVNet** and a Azure load balancer named **myLoadBalancer** has been previously deployed.
33+
> The following steps assume a virtual network named **myVNet** and an Azure load balancer named **myLoadBalancer** has been previously deployed.
3434
3535
1. On the top left-hand side of the screen, select **Create a resource** and search for **Virtual Machine Scale Set** in the marketplace search.
3636

articles/storage/blobs/authorize-data-operations-portal.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ To update this setting for an existing storage account, follow these steps:
126126

127127
:::image type="content" source="media/authorize-data-operations-portal/default-auth-account-update-portal.png" alt-text="Screenshot showing how to configure default Microsoft Entra authorization in Azure portal for existing account":::
128128

129+
The **defaultToOAuthAuthentication** property of a storage account is not set by default and does not return a value until you explicitly set it.
130+
129131
## Next steps
130132

131133
- [Authorize access to data in Azure Storage](../common/authorize-data-access.md)

articles/synapse-analytics/spark/microsoft-spark-utilities.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1543,6 +1543,22 @@ mssparkutils.session.stop()
15431543
> We don't recommend call language built-in APIs like `sys.exit` in Scala or `sys.exit()` in Python in your code, because such APIs just
15441544
> kill the interpreter process, leaving Spark session alive and resources not released.
15451545

1546+
## Package Dependencies
1547+
1548+
If you want to develop notebooks or jobs locally and need to reference the relevant packages for compilation/IDE hints, you can use the following packages.
1549+
1550+
:::zone pivot = "programming-language-python"
1551+
[PyPI package](https://pypi.org/project/dummy-notebookutils/)
1552+
::: zone-end
1553+
1554+
:::zone pivot = "programming-language-r"
1555+
[Cran package](https://cran.r-project.org/web/packages/notebookutils/index.html)
1556+
::: zone-end
1557+
1558+
:::zone pivot = "programming-language-scala"
1559+
[Maven dependencies](https://mvnrepository.com/artifact/com.microsoft.azure.synapse/synapseutils)
1560+
::: zone-end
1561+
15461562
## Next steps
15471563

15481564
- [Check out Synapse sample notebooks](https://github.com/Azure-Samples/Synapse/tree/master/Notebooks)

0 commit comments

Comments
 (0)