You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also create a container using either of the following methods from the [ContainerClient](storage-blob-javascript-get-started.md#create-a-containerclient-object) class:
35
+
You can also create a container using either of the following methods from the [ContainerClient](/javascript/api/@azure/storage-blob/containerclient) class:
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-container-delete-javascript.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,11 @@ This article shows how to delete containers with the [Azure Storage client libra
28
28
29
29
## Delete a container
30
30
31
-
To delete a container, use the following method from the [BlobServiceClient](storage-blob-javascript-get-started.md#create-a-blobserviceclient-object) class:
31
+
To delete a container, use the following method from the [BlobServiceClient](/javascript/api/@azure/storage-blob/blobserviceclient) class:
You can also delete a container using the following method from the [ContainerClient](storage-blob-javascript-get-started.md#create-a-containerclient-object) class:
35
+
You can also delete a container using the following method from the [ContainerClient](/javascript/api/@azure/storage-blob/containerclient) class:
@@ -65,11 +65,11 @@ The following example shows how to delete all containers that start with a speci
65
65
66
66
## Restore a deleted container
67
67
68
-
When container soft delete is enabled for a storage account, a container and its contents may be recovered after it has been deleted, within a retention period that you specify. You can restore a soft-deleted container using a [BlobServiceClient](storage-blob-javascript-get-started.md#create-a-blobserviceclient-object) object:
68
+
When container soft delete is enabled for a storage account, a container and its contents may be recovered after it has been deleted, within a retention period that you specify. You can restore a soft-deleted container using a [BlobServiceClient](/javascript/api/@azure/storage-blob/blobserviceclient) object:
The following example finds a deleted container, gets the version ID of that deleted container, and then passes that ID into the **undeleteContainer** method to restore the container.
72
+
The following example finds a deleted container, gets the version ID of that deleted container, and then passes that ID into the `undeleteContainer` method to restore the container.
0 commit comments