Skip to content

[Storage] Add warning message for table type change in the future release #11159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Storage/Storage.Management/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
- Additional information about change #1
-->
## Upcoming Release
* Add breaking change warning message for AzureStorageTable type change in a future release
- New-AzStorageTable
- Get-AzStorageTable

## Version 1.12.0
* Support set Table/Queue Encryption Keytype in Create Storage Account
Expand Down
2 changes: 2 additions & 0 deletions src/Storage/Storage/Table/Cmdlet/GetStorageAzureTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet
using System.Collections.Generic;
using System.Management.Automation;
using System.Security.Permissions;
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;

/// <summary>
/// list azure tables
/// </summary>
[Cmdlet("Get", Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageTable", DefaultParameterSetName = NameParameterSet),OutputType(typeof(AzureStorageTable))]
[CmdletOutputBreakingChange(typeof(AzureStorageTable), ChangeDescription = "AzureStorageTable.CloudTable.ServiceClient will have 2 properties removed in a future release: ConnectionPolicy, ConsistencyLevel.")]
public class GetAzureStorageTableCommand : StorageCloudTableCmdletBase
{
/// <summary>
Expand Down
2 changes: 2 additions & 0 deletions src/Storage/Storage/Table/Cmdlet/NewStorageAzureTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Table.Cmdlet
using System;
using System.Management.Automation;
using System.Security.Permissions;
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;

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