-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
OptionAProperties.cs
40 lines (35 loc) · 1.52 KB
/
OptionAProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.ManagedNetworkFabric.Models
{
/// <summary> Peering optionA properties. </summary>
public partial class OptionAProperties
{
/// <summary> Initializes a new instance of <see cref="OptionAProperties"/>. </summary>
public OptionAProperties()
{
}
/// <summary> Initializes a new instance of <see cref="OptionAProperties"/>. </summary>
/// <param name="mtu"> MTU to use for option A peering. </param>
/// <param name="vlanId"> Vlan Id.Example : 501. </param>
/// <param name="peerAsn"> Peer ASN number.Example : 28. </param>
/// <param name="bfdConfiguration"> BFD Configuration properties. </param>
internal OptionAProperties(int? mtu, int? vlanId, long? peerAsn, BfdConfiguration bfdConfiguration)
{
Mtu = mtu;
VlanId = vlanId;
PeerAsn = peerAsn;
BfdConfiguration = bfdConfiguration;
}
/// <summary> MTU to use for option A peering. </summary>
public int? Mtu { get; set; }
/// <summary> Vlan Id.Example : 501. </summary>
public int? VlanId { get; set; }
/// <summary> Peer ASN number.Example : 28. </summary>
public long? PeerAsn { get; set; }
/// <summary> BFD Configuration properties. </summary>
public BfdConfiguration BfdConfiguration { get; set; }
}
}