We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17bb381 commit d18875cCopy full SHA for d18875c
src/ServiceManagement/Network/Commands.Network/Gateway/Model/BgpSettings.cs
@@ -0,0 +1,17 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Linq;
4
+using System.Text;
5
+using System.Threading.Tasks;
6
+
7
+namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network
8
+{
9
+ public class BgpSettings
10
+ {
11
+ public uint Asn { get; set; }
12
13
+ public string BgpPeeringAddress { get; set; }
14
15
+ public int PeerWeight { get; set; }
16
+ }
17
+}
0 commit comments