Skip to content

Commit 5e83c33

Browse files
authored
Merge pull request #11404 from Azure/task-adls-breakingchangebulktransfer
Add breaking change description for Export-AzDataLakeStoreItem and Import-AzDataLakeStoreItem
2 parents 5d696ec + 4528e6f commit 5e83c33

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/DataLakeStore/DataLakeStore/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added breaking change description for `Export-AzDataLakeStoreItem` and `Import-AzDataLakeStoreItem`
2122
* Added option of Byte encoding for `New-AzDataLakeStoreItem`, `Add-AzDAtaLakeStoreItemContent`, and `Get-AzDAtaLakeStoreItemContent`
2223

2324
## Version 1.2.7

src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreItem.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System;
16-
using Microsoft.Azure.Commands.DataLakeStore.Properties;
15+
1716
using Microsoft.Azure.Commands.DataLakeStore.Models;
1817
using Microsoft.Rest.Azure;
1918
using System.Management.Automation;
2019
using Microsoft.Azure.DataLake.Store;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2121

2222
namespace Microsoft.Azure.Commands.DataLakeStore
2323
{
24+
[GenericBreakingChange("For store side export failures, Export-AzDataLakeStoreItem will throw exception instead of printing message on screen", "2.0.0", "05/18/2020")]
2425
[Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreItem", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName), OutputType(typeof(string))]
2526
[Alias("Export-AdlStoreItem")]
2627
public class ExportAzureDataLakeStoreItem : DataLakeStoreFileSystemCmdletBase

src/DataLakeStore/DataLakeStore/DataPlaneCommands/ImportAzureRmDataLakeStoreItem.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System;
1615
using Microsoft.Azure.Commands.DataLakeStore.Models;
1716
using Microsoft.Azure.Commands.DataLakeStore.Properties;
1817
using System.Management.Automation;
1918
using Microsoft.Azure.DataLake.Store;
2019
using Microsoft.Rest.Azure;
20+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2121

2222
namespace Microsoft.Azure.Commands.DataLakeStore
2323
{
24+
[GenericBreakingChange("For store side import failures, Import-AzDataLakeStoreItem will throw exception instead of printing message on screen", "2.0.0", "05/18/2020")]
2425
[Cmdlet("Import", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreItem", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName), OutputType(typeof(string))]
2526
[Alias("Import-AdlStoreItem")]
2627
public class ImportAzureDataLakeStoreItem : DataLakeStoreFileSystemCmdletBase

0 commit comments

Comments
 (0)