Skip to content

Commit 7376af2

Browse files
Add include file
1 parent 40a5602 commit 7376af2

File tree

7 files changed

+25
-17
lines changed

7 files changed

+25
-17
lines changed

articles/storage/blobs/storage-blob-delete-go.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 08/05/2024
9+
ms.date: 08/12/2024
1010
ms.service: azure-blob-storage
1111
ms.topic: how-to
1212
ms.devlang: golang
@@ -31,8 +31,7 @@ The authorization mechanism must have the necessary permissions to delete a blob
3131

3232
## Delete a blob
3333

34-
> [!NOTE]
35-
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).
34+
[!INCLUDE [storage-dev-guide-delete-blob-note](../../../includes/storage-dev-guides/storage-dev-guide-delete-blob-note.md)]
3635

3736
To delete a blob, call the following method:
3837

articles/storage/blobs/storage-blob-delete-java.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 08/05/2024
9+
ms.date: 08/12/2024
1010
ms.service: azure-blob-storage
1111
ms.topic: how-to
1212
ms.devlang: java
@@ -28,8 +28,7 @@ This article shows how to delete blobs with the [Azure Storage client library fo
2828

2929
## Delete a blob
3030

31-
> [!NOTE]
32-
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).
31+
[!INCLUDE [storage-dev-guide-delete-blob-note](../../../includes/storage-dev-guides/storage-dev-guide-delete-blob-note.md)]
3332

3433
To delete a blob, call either of the following methods:
3534

articles/storage/blobs/storage-blob-delete-javascript.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ This article shows how to delete blobs with the [Azure Storage client library fo
2727

2828
## Delete a blob
2929

30-
> [!NOTE]
31-
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).
30+
[!INCLUDE [storage-dev-guide-delete-blob-note](../../../includes/storage-dev-guides/storage-dev-guide-delete-blob-note.md)]
3231

3332
To delete a blob, create a [BlobClient](storage-blob-javascript-get-started.md#create-a-blobclient-object) then call either of these methods:
3433

articles/storage/blobs/storage-blob-delete-python.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 08/05/2024
9+
ms.date: 08/12/2024
1010
ms.service: azure-blob-storage
1111
ms.topic: how-to
1212
ms.devlang: python
@@ -31,8 +31,7 @@ To learn about deleting a blob using asynchronous APIs, see [Delete a blob async
3131

3232
## Delete a blob
3333

34-
> [!NOTE]
35-
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).
34+
[!INCLUDE [storage-dev-guide-delete-blob-note](../../../includes/storage-dev-guides/storage-dev-guide-delete-blob-note.md)]
3635

3736
To delete a blob, call the following method:
3837

articles/storage/blobs/storage-blob-delete-typescript.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to delete and restore a blob with TypeScript in your Azur
55
services: storage
66
author: pauljewellmsft
77
ms.author: pauljewell
8-
ms.date: 08/05/2024
8+
ms.date: 08/12/2024
99
ms.service: azure-blob-storage
1010
ms.topic: how-to
1111
ms.devlang: typescript
@@ -27,8 +27,7 @@ This article shows how to delete blobs with the [Azure Storage client library fo
2727

2828
## Delete a blob
2929

30-
> [!NOTE]
31-
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).
30+
[!INCLUDE [storage-dev-guide-delete-blob-note](../../../includes/storage-dev-guides/storage-dev-guide-delete-blob-note.md)]
3231

3332
To delete a blob, create a [BlobClient](storage-blob-typescript-get-started.md#create-a-blobclient-object) then call either of these methods:
3433

articles/storage/blobs/storage-blob-delete.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 08/05/2024
9+
ms.date: 08/12/2024
1010
ms.service: azure-blob-storage
1111
ms.topic: how-to
1212
ms.devlang: csharp
@@ -31,8 +31,7 @@ The authorization mechanism must have the necessary permissions to delete a blob
3131

3232
## Delete a blob
3333

34-
> [!NOTE]
35-
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).
34+
[!INCLUDE [storage-dev-guide-delete-blob-note](../../../includes/storage-dev-guides/storage-dev-guide-delete-blob-note.md)]
3635

3736
To delete a blob, call any of the following methods:
3837

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "include file"
3+
description: "include file"
4+
services: storage
5+
author: pauljewellmsft
6+
ms.service: azure-blob-storage
7+
ms.topic: include
8+
ms.date: 08/12/2024
9+
ms.author: pauljewell
10+
ms.custom: include file
11+
---
12+
13+
> [!NOTE]
14+
> When blob soft delete is enabled for a storage account, you can't perform a permanent deletion using client library methods. Using the methods in this article, a soft-deleted blob, blob version, or snapshot remains available until the retention period expires, at which time it's permanently deleted. To learn more about the underlying REST API operation, see [Delete Blob (REST API)](/rest/api/storageservices/delete-blob).

0 commit comments

Comments
 (0)