Skip to content
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
16 changes: 16 additions & 0 deletions src/KeyVault/KeyVault.Sdk/Customized/MHSMNetworkRuleSet.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.

namespace Microsoft.Azure.Management.KeyVault.Models
{
public partial class MhsmNetworkRuleSet
{
/// <summary>
/// This is an alias to the IPRules property. This is for backward compatibility.
/// This property will be deprecated in the future, please use IPRules instead.
/// </summary>
public System.Collections.Generic.IList<MhsmipRule> IpRules {get=>IPRules; set=>IPRules=value; }
}
}
5 changes: 5 additions & 0 deletions src/KeyVault/KeyVault.Sdk/Customized/NetworkRuleSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,10 @@ partial void CustomInit()
// default values for properties IpRules and VirtualNetworkRules are 'null'
// and so no explicit customization is necessary.
}
/// <summary>
/// This is an alias to the IPRules property. This is for backward compatibility.
/// This property will be deprecated in the future, please use IPRules instead.
/// </summary>
public System.Collections.Generic.IList<IPRule> IpRules {get=>IPRules; set=>IPRules=value; }
}
}