Skip to content

Commit 2aa7851

Browse files
authored
Merge pull request Azure#11159 from wastoresh/warntable
[Storage] Add warning message for table type change in the future release
2 parents 3ca8232 + b7fce75 commit 2aa7851

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/Storage/Storage.Management/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Add breaking change warning message for AzureStorageTable type change in a future release
22+
- New-AzStorageTable
23+
- Get-AzStorageTable
2124

2225
## Version 1.12.0
2326
* Support set Table/Queue Encryption Keytype in Create Storage Account

src/Storage/Storage/Table/Cmdlet/GetStorageAzureTable.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet
2222
using System.Collections.Generic;
2323
using System.Management.Automation;
2424
using System.Security.Permissions;
25+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2526

2627
/// <summary>
2728
/// list azure tables
2829
/// </summary>
2930
[Cmdlet("Get", Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageTable", DefaultParameterSetName = NameParameterSet),OutputType(typeof(AzureStorageTable))]
31+
[CmdletOutputBreakingChange(typeof(AzureStorageTable), ChangeDescription = "AzureStorageTable.CloudTable.ServiceClient will have 2 properties removed in a future release: ConnectionPolicy, ConsistencyLevel.")]
3032
public class GetAzureStorageTableCommand : StorageCloudTableCmdletBase
3133
{
3234
/// <summary>

src/Storage/Storage/Table/Cmdlet/NewStorageAzureTable.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet
2121
using System;
2222
using System.Management.Automation;
2323
using System.Security.Permissions;
24+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2425

2526
/// <summary>
2627
/// create an new azure table
2728
/// </summary>
2829
[Cmdlet("New", Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageTable"),OutputType(typeof(AzureStorageTable))]
30+
[CmdletOutputBreakingChange(typeof(AzureStorageTable), ChangeDescription = "AzureStorageTable.CloudTable.ServiceClient will have 2 properties removed in a future release: ConnectionPolicy, ConsistencyLevel.")]
2931
public class NewAzureStorageTableCommand : StorageCloudTableCmdletBase
3032
{
3133
[Alias("N", "Table")]

0 commit comments

Comments
 (0)