Skip to content

Commit d5f0d43

Browse files
Merge pull request #303548 from normesta/normesta-reg-updates-16
Ownership change of developer articles
2 parents f27fed9 + 75162ac commit d5f0d43

File tree

118 files changed

+354
-277
lines changed

Some content is hidden

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

118 files changed

+354
-277
lines changed

articles/storage/blobs/anonymous-read-access-configure.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Configure anonymous read access for containers and blobs
33
titleSuffix: Azure Storage
44
description: Learn how to allow or disallow anonymous access to blob data for the storage account. Set the container's anonymous access setting to make containers and blobs available for anonymous access.
5-
author: pauljewellmsft
6-
ms.author: pauljewell
5+
author: stevenmatthew
6+
ms.author: shaas
77
ms.service: azure-blob-storage
88
ms.topic: how-to
99
ms.date: 03/04/2025
@@ -304,3 +304,4 @@ Get-AzStorageContainer -Context $ctx | Select Name, PublicAccess
304304
- [Prevent anonymous read access to containers and blobs](anonymous-read-access-prevent.md)
305305
- [Access public containers and blobs anonymously with .NET](anonymous-read-access-client.md)
306306
- [Authorizing access to Azure Storage](../common/authorize-data-access.md)
307+

articles/storage/blobs/anonymous-read-access-prevent.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Remediate anonymous read access to blob data (Azure Resource Manager deployments)
33
titleSuffix: Azure Storage
44
description: Learn how to analyze current anonymous requests against a storage account and how to prevent anonymous access for the entire storage account or for an individual container.
5-
author: pauljewellmsft
6-
ms.author: pauljewell
5+
author: stevenmatthew
6+
ms.author: shaas
77
ms.service: azure-blob-storage
88
ms.topic: how-to
99
ms.date: 03/04/2025
@@ -491,3 +491,4 @@ The following image shows the error that occurs if you try to create a storage a
491491

492492
- [Overview: Remediating anonymous read access for blob data](anonymous-read-access-overview.md)
493493
- [Security recommendations for Blob storage](security-recommendations.md)
494+

articles/storage/blobs/assign-azure-role-data-access.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Assign an Azure role for access to blob data
33
titleSuffix: Azure Storage
44
description: Learn how to assign permissions for blob data to a Microsoft Entra security principal with Azure role-based access control (Azure RBAC). Azure Storage supports built-in and Azure custom roles for authentication and authorization via Microsoft Entra ID.
5-
author: pauljewellmsft
6-
ms.author: pauljewell
5+
author: stevenmatthew
6+
ms.author: shaas
77
ms.service: azure-blob-storage
88
ms.topic: how-to
99
ms.date: 08/28/2024
@@ -189,3 +189,4 @@ Keep in mind the following points about Azure role assignments in Azure Storage:
189189

190190
- [What is Azure role-based access control (Azure RBAC)?](../../role-based-access-control/overview.md)
191191
- [Best practices for Azure RBAC](../../role-based-access-control/best-practices.md)
192+

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Run PowerShell commands with Microsoft Entra credentials to access blob data
33
titleSuffix: Azure Storage
44
description: PowerShell supports signing in with Microsoft Entra credentials to run commands on blob data in Azure Storage. An access token is provided for the session and used to authorize calling operations. Permissions depend on the Azure role assigned to the Microsoft Entra security principal.
5-
author: pauljewellmsft
6-
ms.author: pauljewell
5+
author: stevenmatthew
6+
ms.author: shaas
77
ms.service: azure-blob-storage
88
ms.topic: how-to
99
ms.date: 05/12/2022
@@ -85,3 +85,4 @@ The following example shows how to create a container in a new storage account f
8585
8686
- [Assign an Azure role for access to blob data](assign-azure-role-data-access.md)
8787
- [Authorize access to data in Azure Storage](../common/authorize-data-access.md)
88+

articles/storage/blobs/concurrency-manage.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Manage concurrency in Blob Storage
33
titleSuffix: Azure Storage
44
description: Learn how to manage multiple writers to a blob by implementing either optimistic or pessimistic concurrency in your application. Optimistic concurrency checks the ETag value for a blob and compares it to the ETag provided. Pessimistic concurrency uses an exclusive lease to lock the blob to other writers.
55
services: storage
6-
author: pauljewellmsft
6+
author: stevenmatthew
77

88
ms.service: azure-blob-storage
99
ms.topic: concept-article
1010
ms.date: 03/25/2025
11-
ms.author: pauljewell
11+
ms.author: shaas
1212
ms.devlang: csharp
1313
ms.custom: devx-track-csharp
1414
# Customer intent: As a developer managing data updates in my application, I want to implement concurrency control strategies for blob storage, so that I can ensure data integrity and provide a predictable experience for users when multiple writers access the same data.
@@ -72,3 +72,4 @@ Leases on containers enable the same synchronization strategies that are support
7272
## Resources
7373

7474
For related code samples using deprecated .NET version 11.x SDKs, see [Code samples using .NET version 11.x](blob-v11-samples-dotnet.md#optimistic-concurrency-for-blobs).
75+

articles/storage/blobs/data-lake-storage-acl-java.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Use Java to manage ACLs in Azure Data Lake Storage
33
titleSuffix: Azure Storage
44
description: Use Azure Storage libraries for Java to manage access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
5-
author: pauljewellmsft
5+
author: stevenmatthew
66

7-
ms.author: pauljewell
7+
ms.author: shaas
88
ms.service: azure-data-lake-storage
99
ms.date: 09/06/2024
1010
ms.devlang: java
@@ -277,3 +277,4 @@ This example sets ACL entries recursively. If this code encounters a permission
277277
- [Give Feedback](https://github.com/Azure/azure-sdk-for-java/issues)
278278
- [Access control model in Azure Data Lake Storage](data-lake-storage-access-control.md)
279279
- [Access control lists (ACLs) in Azure Data Lake Storage](data-lake-storage-access-control.md)
280+

articles/storage/blobs/data-lake-storage-acl-javascript.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Use JavaScript (Node.js) to manage ACLs in Azure Data Lake Storage
33
titleSuffix: Azure Storage
44
description: Use Azure Storage Data Lake client library for JavaScript to manage access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
5-
author: pauljewellmsft
5+
author: stevenmatthew
66

7-
ms.author: pauljewell
7+
ms.author: shaas
88
ms.service: azure-data-lake-storage
99
ms.date: 09/06/2024
1010
ms.topic: how-to
@@ -234,3 +234,4 @@ await fileClient.setAccessControl(acl);
234234
- [Give Feedback](https://github.com/Azure/azure-sdk-for-java/issues)
235235
- [Access control model in Azure Data Lake Storage](data-lake-storage-access-control.md)
236236
- [Access control lists (ACLs) in Azure Data Lake Storage](data-lake-storage-access-control.md)
237+

articles/storage/blobs/data-lake-storage-acl-python.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Use Python to manage ACLs in Azure Data Lake Storage
33
titleSuffix: Azure Storage
44
description: Use Python manage access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
5-
author: pauljewellmsft
5+
author: stevenmatthew
66

7-
ms.author: pauljewell
7+
ms.author: shaas
88
ms.service: azure-data-lake-storage
99
ms.date: 09/06/2024
1010
ms.topic: how-to
@@ -202,3 +202,4 @@ To see an example that processes ACLs recursively in batches by specifying a bat
202202
- [Give Feedback](https://github.com/Azure/azure-sdk-for-python/issues)
203203
- [Access control model in Azure Data Lake Storage](data-lake-storage-access-control.md)
204204
- [Access control lists (ACLs) in Azure Data Lake Storage](data-lake-storage-access-control.md)
205+

articles/storage/blobs/data-lake-storage-directory-file-acl-dotnet.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Use .NET to manage data in Azure Data Lake Storage
33
titleSuffix: Azure Storage
44
description: Use the Azure Storage client library for .NET to manage directories and files in storage accounts that have a hierarchical namespace enabled.
5-
author: pauljewellmsft
5+
author: stevenmatthew
66

7-
ms.author: pauljewell
7+
ms.author: shaas
88
ms.service: azure-data-lake-storage
99
ms.date: 11/20/2023
1010
ms.topic: how-to
@@ -225,3 +225,4 @@ To learn more about creating a service SAS, see [Create a service SAS with .NET]
225225
- [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Files.DataLake/GEN1_GEN2_MAPPING.md)
226226
- [Known issues](data-lake-storage-known-issues.md#api-scope-data-lake-client-library)
227227
- [Give Feedback](https://github.com/Azure/azure-sdk-for-net/issues)
228+

articles/storage/blobs/data-lake-storage-directory-file-acl-java.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Use Java to manage data in Azure Data Lake Storage
33
titleSuffix: Azure Storage
44
description: Use Azure Storage libraries for Java to manage directories and files in storage accounts that have a hierarchical namespace enabled.
5-
author: pauljewellmsft
5+
author: stevenmatthew
66

7-
ms.author: pauljewell
7+
ms.author: shaas
88
ms.service: azure-data-lake-storage
99
ms.date: 08/08/2023
1010
ms.devlang: java
@@ -186,3 +186,4 @@ The following code example uses `deleteWithResponse` to delete a nonempty direct
186186
- [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake/GEN1_GEN2_MAPPING.md)
187187
- [Known issues](data-lake-storage-known-issues.md#api-scope-data-lake-client-library)
188188
- [Give Feedback](https://github.com/Azure/azure-sdk-for-java/issues)
189+

0 commit comments

Comments
 (0)