File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
src/KeyVault/KeyVault.Sdk/Customized Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright (c) Microsoft Corporation. All rights reserved.
2
+ // Licensed under the MIT License. See License.txt in the project root for license information.
3
+ // Code generated by Microsoft (R) AutoRest Code Generator.
4
+ // Changes may cause incorrect behavior and will be lost if the code is regenerated.
5
+
6
+ namespace Microsoft . Azure . Management . KeyVault . Models
7
+ {
8
+ public partial class MhsmNetworkRuleSet
9
+ {
10
+ /// <summary>
11
+ /// This is an alias to the IPRules property. This is for backward compatibility.
12
+ /// This property will be deprecated in the future, please use IPRules instead.
13
+ /// </summary>
14
+ public System . Collections . Generic . IList < MhsmipRule > IpRules { get => IPRules ; set => IPRules = value ; }
15
+ }
16
+ }
Original file line number Diff line number Diff line change @@ -23,5 +23,10 @@ partial void CustomInit()
23
23
// default values for properties IpRules and VirtualNetworkRules are 'null'
24
24
// and so no explicit customization is necessary.
25
25
}
26
+ /// <summary>
27
+ /// This is an alias to the IPRules property. This is for backward compatibility.
28
+ /// This property will be deprecated in the future, please use IPRules instead.
29
+ /// </summary>
30
+ public System . Collections . Generic . IList < IPRule > IpRules { get => IPRules ; set => IPRules = value ; }
26
31
}
27
32
}
You can’t perform that action at this time.
0 commit comments