Skip to content

Commit 8232e78

Browse files
abhi7860MikhailTryakhovnimallerrichajainRicha Jain
authored
Support for Listing IKE Security Associations for VPN Link Connections (#12305)
* Adds base for updating Microsoft.Network from version stable/2020-07-01 to version 2020-08-01 * Updates readme * Updates API version in new specs and examples * add patch operation for express route gateway (#11553) * add patch * fix example * Added new cloud service NIC and PIP APIs (#11650) Co-authored-by: Richa Jain <[email protected]> * Adding support for Vpn Link Connection Mode (#11574) Co-authored-by: Abhishek Shah <[email protected]> * Reverting the changes made for address space update as the changes in service code are not in yet (#11754) Co-authored-by: Hari Prasad Perabattula <[email protected]> * VPN NAT for Virtual WAN feature changes (#11815) * VPN NAT for Virtual WAN feature changes * PrettierCheck fixes * Incorporate review comments and update examples * Add edge zone parameters for networking resources and add extendedLocation property to customIpPrefix (#11933) * Add extendedLocation property to customIpPrefix * Fix the directory * Address linting errors * Fix another linting error * Add edge zone parameter for network interfaces * Looks like edgeZone parameter is working when creating network interfaces * EdgeZone parameter for load balancer * Add edge zone parameter for public IP address * Add edge zone parameter for public IP prefix * Add edgeZone parameter for virtual networks * Add edge zone parameter for custom IP prefix Co-authored-by: Will Ehrich <[email protected]> * Add location parameter to Loadbalancer Backend Address Pool Properties Format (#11919) * adding location parameter to backendaddresspoolpropertiesformat * ran prettier * Support for Listing IKE Security Associations for Virtual Network Gateway Connections (#11572) * Support to List IKE SAs on VNG Connection * Updating GetIkeSas * Update virtualNetworkGateway.json * Added location headers * Update virtualNetworkGateway.json * Prettier fix * Update custom-words.txt * Update virtualNetworkGateway.json * Update custom-words.txt * Update virtualNetworkGateway.json * Update virtualNetworkGateway.json * Update virtualNetworkGateway.json Co-authored-by: Abhishek Shah <[email protected]> * [Fix] GetIkeSas returns result as string (#12225) * Removing IkeSaParameters * Update custom-words.txt * Update virtualNetworkGateway.json * Update virtualNetworkGateway.json * Update VirtualNetworkGatewayConnectionGetIkeSas.json * Update virtualNetworkGateway.json * Update VirtualNetworkGatewayConnectionGetIkeSas.json Co-authored-by: Abhishek Shah <[email protected]> * Add extended location properties for private link service and private endpoints and remove edge zone properties (#12039) * Remove edge zone parameter * Add extended location for private endpoint and private link service * Add examples * Capitalization * Prettier Co-authored-by: Will Ehrich <[email protected]> * Add missing properties of SecurityRule, Route and RouteTable (#12215) * Add missing properties of SecurityRule Route and RouteTable * Set resourceGuid field to be read only Co-authored-by: Xu Wang <[email protected]> * Added placeholder instead of password (#12299) * Adding getikesas for vpn link connections * pretty fix * Naming * Update VpnSiteLinkConnectionGetIkeSas.json * Update VpnSiteLinkConnectionGetIkeSas.json * Changing API version * Update readme.md * Updating API version * Removing changes from older API * Update virtualWan.json Co-authored-by: Mikhail <[email protected]> Co-authored-by: nimaller <[email protected]> Co-authored-by: Richa Jain <[email protected]> Co-authored-by: Richa Jain <[email protected]> Co-authored-by: Abhishek Shah <[email protected]> Co-authored-by: Hari Prasad Perabattula <[email protected]> Co-authored-by: Hari Prasad Perabattula <[email protected]> Co-authored-by: Nilambari <[email protected]> Co-authored-by: William Ehrich <[email protected]> Co-authored-by: Will Ehrich <[email protected]> Co-authored-by: Kayden Wilkinson <[email protected]> Co-authored-by: Xu Wang <[email protected]> Co-authored-by: Xu Wang <[email protected]>
1 parent 06771ad commit 8232e78

File tree

2 files changed

+88
-0
lines changed

2 files changed

+88
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"parameters": {
3+
"api-version": "2020-11-01",
4+
"subscriptionId": "subid",
5+
"resourceGroupName": "rg1",
6+
"gatewayName": "gateway1",
7+
"connectionName": "vpnConnection1",
8+
"linkConnectionName": "Connection-Link1"
9+
},
10+
"responses": {
11+
"202": {
12+
"headers": {
13+
"location": "https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/westus/operationResults/{operationId}?api-version=2020-11-01"
14+
}
15+
},
16+
"200": {
17+
"body": "\"{\"Status\":\"Successful\",\"Data\":null}\""
18+
}
19+
}
20+
}

specification/network/resource-manager/Microsoft.Network/stable/2020-11-01/virtualWan.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2418,6 +2418,74 @@
24182418
}
24192419
}
24202420
},
2421+
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{connectionName}/vpnLinkConnections/{linkConnectionName}/getikesas": {
2422+
"post": {
2423+
"operationId": "VpnLinkConnections_GetIkeSas",
2424+
"x-ms-examples": {
2425+
"GetVpnLinkConnectionIkeSa": {
2426+
"$ref": "./examples/VpnSiteLinkConnectionGetIkeSas.json"
2427+
}
2428+
},
2429+
"description": "Lists IKE Security Associations for Vpn Site Link Connection in the specified resource group.",
2430+
"parameters": [
2431+
{
2432+
"$ref": "./network.json#/parameters/SubscriptionIdParameter"
2433+
},
2434+
{
2435+
"name": "resourceGroupName",
2436+
"in": "path",
2437+
"required": true,
2438+
"type": "string",
2439+
"description": "The name of the resource group."
2440+
},
2441+
{
2442+
"name": "gatewayName",
2443+
"in": "path",
2444+
"required": true,
2445+
"type": "string",
2446+
"description": "The name of the gateway."
2447+
},
2448+
{
2449+
"name": "connectionName",
2450+
"in": "path",
2451+
"required": true,
2452+
"type": "string",
2453+
"description": "The name of the vpn connection."
2454+
},
2455+
{
2456+
"name": "linkConnectionName",
2457+
"in": "path",
2458+
"required": true,
2459+
"type": "string",
2460+
"description": "The name of the vpn link connection."
2461+
},
2462+
{
2463+
"$ref": "./network.json#/parameters/ApiVersionParameter"
2464+
}
2465+
],
2466+
"responses": {
2467+
"202": {
2468+
"description": "Accepted and the operation GetIkeSas will complete asynchronously."
2469+
},
2470+
"200": {
2471+
"description": "Request successful. The operation getikesas completed on vpn site link connection.",
2472+
"schema": {
2473+
"type": "string"
2474+
}
2475+
},
2476+
"default": {
2477+
"description": "The operation GetIkeSas could not be completed.",
2478+
"schema": {
2479+
"$ref": "./networkWatcher.json#/definitions/ErrorResponse"
2480+
}
2481+
}
2482+
},
2483+
"x-ms-long-running-operation": true,
2484+
"x-ms-long-running-operation-options": {
2485+
"final-state-via": "location"
2486+
}
2487+
}
2488+
},
24212489
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName}/vpnConnections/{vpnConnectionName}/startpacketcapture": {
24222490
"post": {
24232491
"operationId": "VpnConnections_StartPacketCapture",

0 commit comments

Comments
 (0)