Skip to content

Commit 83ba8d1

Browse files
committed
Changes based on review comments.
1 parent 0f64f34 commit 83ba8d1

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Common.Cmdlet
2323
/// <summary>
2424
/// Disable azure storage service StaticWebsite, currently only available on Blob service
2525
/// </summary>
26-
[Cmdlet(VerbsLifecycle.Disable, StorageNouns.ServiceStaticWebsite, SupportsShouldProcess = true),
26+
[Cmdlet(VerbsLifecycle.Disable, Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageStaticWebsite", SupportsShouldProcess = true),
2727
OutputType(typeof(PSStaticWebsiteProperties))]
2828
public class DisableAzureStorageServiceStaticWebsiteCommand : StorageCloudBlobCmdletBase
2929
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.Storage.Common.Cmdlet
2323
/// <summary>
2424
/// Enable azure storage service StaticWebsite, currently only enabled on Blob service
2525
/// </summary>
26-
[Cmdlet(VerbsLifecycle.Enable, StorageNouns.ServiceStaticWebsite, SupportsShouldProcess = true),
26+
[Cmdlet(VerbsLifecycle.Enable, Azure.Commands.ResourceManager.Common.AzureRMConstants.AzurePrefix + "StorageStaticWebsite", SupportsShouldProcess = true),
2727
OutputType(typeof(PSStaticWebsiteProperties))]
2828
public class EnableAzureStorageServiceStaticWebsiteCommand : StorageCloudBlobCmdletBase
2929
{

src/Storage/Commands.Storage/Common/StorageNouns.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,11 @@ public static class StorageNouns
109109
/// </summary>
110110
public const string StorageServiceProperty = "AzureStorageServiceProperty";
111111

112+
/// <summary>
112113
/// Azure storage Service Delete Retention Policy
113114
/// </summary>
114115
public const string ServiceDeleteRetentionPolicy = "AzureStorageDeleteRetentionPolicy";
115116

116-
/// Azure storage Service Delete Retention Policy
117-
/// </summary>
118-
public const string ServiceStaticWebsite = "AzureStorageStaticWebsite";
119-
120117
/// <summary>
121118
/// Azure storage CORS rule
122119
/// </summary>
@@ -172,7 +169,6 @@ public static class StorageNouns
172169
/// </summary>
173170
public const string ContainerStoredAccessPolicy = "AzureStorageContainerStoredAccessPolicy";
174171

175-
176172
/// <summary>
177173
/// Azure storage container stored access policy
178174
/// </summary>

0 commit comments

Comments
 (0)