Skip to content

Commit 11a8813

Browse files
committed
Fix an issue of cannot indicate starttime and expirytime in New-AzureStorageAccountSAS cmdlet.
1 parent e886fab commit 11a8813

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Common/Storage/Commands.Storage/Common/Cmdlet/NewAzureStorageAccountSasToken.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ public class NewAzureStorageAccountSasTokenCommand : StorageCloudBlobCmdletBase
3939
public string IPAddressOrRange { get; set; }
4040

4141
[Parameter(Mandatory = false, HelpMessage = "Start Time")]
42-
DateTime? StartTime { get; set; }
42+
public DateTime? StartTime { get; set; }
4343

4444
[Parameter(Mandatory = false, HelpMessage = "Expiry Time")]
45-
DateTime? ExpiryTime { get; set; }
45+
public DateTime? ExpiryTime { get; set; }
4646

4747
/// <summary>
4848
/// Initializes a new instance of the NewAzureStorageAccountSasTokenCommand class.

0 commit comments

Comments
 (0)