Skip to content

Commit 4f1e52a

Browse files
committed
Removing preview labels
1 parent b1574b3 commit 4f1e52a

4 files changed

+14
-26
lines changed

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Data Lake Storage Gen2 .NET SDK for files & ACLs (preview)
2+
title: Azure Data Lake Storage Gen2 .NET SDK for files & ACLs
33
description: Use the Azure Storage client library to manage directories and file and directory access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
44
author: normesta
55
ms.service: storage
@@ -10,13 +10,10 @@ ms.subservice: data-lake-storage-gen2
1010
ms.reviewer: prishet
1111
---
1212

13-
# Use .NET to manage directories, files, and ACLs in Azure Data Lake Storage Gen2 (preview)
13+
# Use .NET to manage directories, files, and ACLs in Azure Data Lake Storage Gen2
1414

1515
This article shows you how to use .NET to create and manage directories, files, and permissions in storage accounts that has hierarchical namespace (HNS) enabled.
1616

17-
> [!IMPORTANT]
18-
> The [Azure.Storage.Files.DataLake](https://www.nuget.org/packages/Azure.Storage.Files.DataLake) NuGet package that is featured in this article is currently in public preview.
19-
2017
[Package (NuGet)](https://www.nuget.org/packages/Azure.Storage.Files.DataLake) | [Samples](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Files.DataLake) | [API reference](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake) | [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Azure.Storage.Files.DataLake/GEN1_GEN2_MAPPING.md) | [Give Feedback](https://github.com/Azure/azure-sdk-for-net/issues)
2118

2219
## Prerequisites
@@ -226,13 +223,13 @@ public async Task UploadFile(DataLakeFileSystemClient fileSystemClient)
226223
```
227224

228225
> [!TIP]
229-
> If your file size is large, your code will have to make multiple calls to the [DataLakeFileClient.AppendAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.appendasync). Consider using the [DataLakeFileClient.UploadAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.uploadasync?view=azure-dotnet-preview#Azure_Storage_Files_DataLake_DataLakeFileClient_UploadAsync_System_IO_Stream_) method instead. That way, you can upload the entire file in a single call.
226+
> If your file size is large, your code will have to make multiple calls to the [DataLakeFileClient.AppendAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.appendasync). Consider using the [DataLakeFileClient.UploadAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.uploadasync?view=azure-dotnet#Azure_Storage_Files_DataLake_DataLakeFileClient_UploadAsync_System_IO_Stream_) method instead. That way, you can upload the entire file in a single call.
230227
>
231228
> See the next section for an example.
232229
233230
## Upload a large file to a directory
234231

235-
Use the [DataLakeFileClient.UploadAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.uploadasync?view=azure-dotnet-preview#Azure_Storage_Files_DataLake_DataLakeFileClient_UploadAsync_System_IO_Stream_) method to upload large files without having to make multiple calls to the [DataLakeFileClient.AppendAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.appendasync) method.
232+
Use the [DataLakeFileClient.UploadAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.uploadasync?view=azure-dotnet#Azure_Storage_Files_DataLake_DataLakeFileClient_UploadAsync_System_IO_Stream_) method to upload large files without having to make multiple calls to the [DataLakeFileClient.AppendAsync](https://docs.microsoft.com/dotnet/api/azure.storage.files.datalake.datalakefileclient.appendasync) method.
236233

237234
```cs
238235
public async Task UploadFileBulk(DataLakeFileSystemClient fileSystemClient)

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

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Data Lake Storage Gen2 Java SDK for files & ACLs (preview)
2+
title: Azure Data Lake Storage Gen2 Java SDK for files & ACLs
33
description: Use Azure Storage libraries for Java to manage directories and file and directory access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
44
author: normesta
55
ms.service: storage
@@ -10,14 +10,11 @@ ms.subservice: data-lake-storage-gen2
1010
ms.reviewer: prishet
1111
---
1212

13-
# Use Java to manage directories, files, and ACLs in Azure Data Lake Storage Gen2 (preview)
13+
# Use Java to manage directories, files, and ACLs in Azure Data Lake Storage Gen2
1414

1515
This article shows you how to use Java to create and manage directories, files, and permissions in storage accounts that has hierarchical namespace (HNS) enabled.
1616

17-
> [!IMPORTANT]
18-
> The Java library that is featured in this article is currently in public preview.
19-
20-
[Package (Maven)](https://search.maven.org/artifact/com.azure/azure-storage-file-datalake) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake) | [API reference](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-file-datalake/12.0.0-preview.6/index.html) | [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake/GEN1_GEN2_MAPPING.md) | [Give Feedback](https://github.com/Azure/azure-sdk-for-java/issues)
17+
[Package (Maven)](https://search.maven.org/artifact/com.azure/azure-storage-file-datalake) | [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake) | [API reference](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-file-datalake/12.0.1/index.html) | [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake/GEN1_GEN2_MAPPING.md) | [Give Feedback](https://github.com/Azure/azure-sdk-for-java/issues)
2118

2219
## Prerequisites
2320

@@ -390,8 +387,8 @@ static public void ListFilesInDirectory(DataLakeFileSystemClient fileSystemClien
390387

391388
## See also
392389

393-
* [API reference documentation](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-file-datalake/12.0.0-preview.6/index.html)
394-
* [Package (Maven)](https://search.maven.org/artifact/com.azure/azure-storage-file-datalake/12.0.0-preview.6/jar)
390+
* [API reference documentation](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-file-datalake/12.0.1/index.html)
391+
* [Package (Maven)](https://search.maven.org/artifact/com.azure/azure-storage-file-datalake)
395392
* [Samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake)
396393
* [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-file-datalake/GEN1_GEN2_MAPPING.md)
397394
* [Known issues](data-lake-storage-known-issues.md#api-scope-data-lake-client-library)

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Use JavaScript for files & ACLs in Azure Data Lake Storage Gen2 (preview)
2+
title: Use JavaScript for files & ACLs in Azure Data Lake Storage Gen2
33
description: Use Azure Storage Data Lake client library for JavaScript to manage directories and file and directory access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
44
author: normesta
55
ms.service: storage
@@ -10,13 +10,10 @@ ms.subservice: data-lake-storage-gen2
1010
ms.reviewer: prishet
1111
---
1212

13-
# Use JavaScript to manage directories, files, and ACLs in Azure Data Lake Storage Gen2 (preview)
13+
# Use JavaScript to manage directories, files, and ACLs in Azure Data Lake Storage Gen2
1414

1515
This article shows you how to use JavaScript to create and manage directories, files, and permissions in storage accounts that has hierarchical namespace (HNS) enabled.
1616

17-
> [!IMPORTANT]
18-
> The JavaScript library that is featured in this article is currently in public preview.
19-
2017
[Package (Node Package Manager)](https://www.npmjs.com/package/@azure/storage-file-datalake) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/storage/storage-file-datalake/samples) | [Give Feedback](https://github.com/Azure/azure-sdk-for-java/issues)
2118

2219
## Prerequisites

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Data Lake Storage Gen2 Python SDK for files & ACLs (preview)
2+
title: Azure Data Lake Storage Gen2 Python SDK for files & ACLs
33
description: Use Python manage directories and file and directory access control lists (ACL) in storage accounts that has hierarchical namespace (HNS) enabled.
44
author: normesta
55
ms.service: storage
@@ -10,14 +10,11 @@ ms.subservice: data-lake-storage-gen2
1010
ms.reviewer: prishet
1111
---
1212

13-
# Use Python to manage directories, files, and ACLs in Azure Data Lake Storage Gen2 (preview)
13+
# Use Python to manage directories, files, and ACLs in Azure Data Lake Storage Gen2
1414

1515
This article shows you how to use Python to create and manage directories, files, and permissions in storage accounts that has hierarchical namespace (HNS) enabled.
1616

17-
> [!IMPORTANT]
18-
> The Azure Data Lake Storage client library for Python is currently in public preview.
19-
20-
[Package (Python Package Index)](https://pypi.org/project/azure-storage-file-datalake/) | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-datalake/samples) | [API reference](https://azuresdkdocs.blob.core.windows.net/$web/python/azure-storage-file-datalake/12.0.0b5/index.html) | [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-datalake/GEN1_GEN2_MAPPING.md) | [Give Feedback](https://github.com/Azure/azure-sdk-for-python/issues)
17+
[Package (Python Package Index)](https://pypi.org/project/azure-storage-file-datalake/) | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-datalake/samples) | [API reference](https://azuresdkdocs.blob.core.windows.net/$web/python/azure-storage-file-datalake/12.0.0/azure.storage.filedatalake.html) | [Gen1 to Gen2 mapping](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-datalake/GEN1_GEN2_MAPPING.md) | [Give Feedback](https://github.com/Azure/azure-sdk-for-python/issues)
2118

2219
## Prerequisites
2320

0 commit comments

Comments
 (0)