Skip to content

Commit

Permalink
Adding support for Vpn Link Connection Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek Shah committed Nov 6, 2020
1 parent 9ac38e5 commit 50b6ba9
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"enableRateLimiting": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"routingWeight": 0
"routingWeight": 0,
"vpnLinkConnectionMode": "ResponderOnly"
}
},
{
Expand All @@ -64,7 +65,8 @@
"enableRateLimiting": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"routingWeight": 0
"routingWeight": 0,
"vpnLinkConnectionMode": "InitiatorOnly"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"enableRateLimiting": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"routingWeight": 0
"routingWeight": 0,
"vpnLinkConnectionMode": "Default"
}
},
{
Expand All @@ -64,7 +65,8 @@
"enableRateLimiting": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"routingWeight": 0
"routingWeight": 0,
"vpnLinkConnectionMode": "Default"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
},
"connectionBandwidth": 200,
"vpnConnectionProtocolType": "IKEv2",
"sharedKey": "key"
"sharedKey": "key",
"vpnLinkConnectionMode": "Default"
}
}
]
Expand Down Expand Up @@ -61,7 +62,8 @@
"enableRateLimiting": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"routingWeight": 0
"routingWeight": 0,
"vpnLinkConnectionMode": "Default"
}
}
],
Expand Down Expand Up @@ -126,7 +128,8 @@
"enableRateLimiting": false,
"useLocalAzureIpAddress": false,
"usePolicyBasedTrafficSelectors": false,
"routingWeight": 0
"routingWeight": 0,
"vpnLinkConnectionMode": "Default"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5929,6 +5929,19 @@
"format": "int32",
"description": "Routing weight for vpn connection."
},
"vpnLinkConnectionMode": {
"type": "string",
"description": "Vpn link connection mode.",
"enum": [
"Default",
"ResponderOnly",
"InitiatorOnly"
],
"x-ms-enum": {
"name": "vpnLinkConnectionMode",
"modelAsString": true
}
},
"connectionStatus": {
"description": "The connection status.",
"$ref": "#/definitions/VpnConnectionStatus"
Expand Down

0 comments on commit 50b6ba9

Please sign in to comment.