File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
ServiceManagement/Compute/Commands.ServiceManagement/Model Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -292,6 +292,9 @@ public class VirtualIP : IExtensibleDataObject
292
292
[ DataMember ( Order = 3 , EmitDefaultValue = false ) ]
293
293
public string Name { get ; set ; }
294
294
295
+ [ DataMember ( Order = 4 , EmitDefaultValue = false ) ]
296
+ public string ReservedIPName { get ; set ; }
297
+
295
298
public ExtensionDataObject ExtensionData { get ; set ; }
296
299
297
300
#region Implements Equals
Original file line number Diff line number Diff line change @@ -202,7 +202,8 @@ public DeploymentInfoContext(DeploymentGetResponse deployment)
202
202
{
203
203
Address = a . Address ,
204
204
IsDnsProgrammed = a . IsDnsProgrammed ,
205
- Name = a . Name
205
+ Name = a . Name ,
206
+ ReservedIPName = a . ReservedIPName
206
207
} ) ) ;
207
208
208
209
// DNS
Original file line number Diff line number Diff line change 13
13
// ----------------------------------------------------------------------------------
14
14
15
15
16
+ using AutoMapper . Impl ;
16
17
using Microsoft . WindowsAzure . Commands . Utilities . Common ;
17
18
18
19
namespace Microsoft . WindowsAzure . Commands . ServiceManagement . Model
@@ -36,5 +37,7 @@ public class ReservedIPContext : ManagementOperationContext
36
37
public string ServiceName { get ; set ; }
37
38
38
39
public string DeploymentName { get ; set ; }
40
+
41
+ public string VirtualIPName { get ; set ; }
39
42
}
40
43
}
You can’t perform that action at this time.
0 commit comments