-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Application Gateway Private Link Support (#9490)
* Application Gateway Private Link Support * Fix comments * Fix comments for including example
- Loading branch information
Showing
8 changed files
with
760 additions
and
2 deletions.
There are no files selected for viewing
555 changes: 555 additions & 0 deletions
555
...tion/network/resource-manager/Microsoft.Network/stable/2020-05-01/applicationGateway.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...Network/stable/2020-05-01/examples/ApplicationGatewayPrivateEndpointConnectionDelete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2020-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"applicationGatewayName": "appgw", | ||
"connectionName": "connection1" | ||
}, | ||
"responses": { | ||
"202": {}, | ||
"204": {}, | ||
"200": {} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
...ft.Network/stable/2020-05-01/examples/ApplicationGatewayPrivateEndpointConnectionGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2020-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"applicationGatewayName": "appgw", | ||
"connectionName": "connection1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "coonection1", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/privateLinkResources/connection1", | ||
"type": "Microsoft.Network/applicationGateways/privateEndpointConnections", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subid2/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/pe1" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "Approval Done" | ||
}, | ||
"linkIdentifier": "805319460" | ||
} | ||
} | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...t.Network/stable/2020-05-01/examples/ApplicationGatewayPrivateEndpointConnectionList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2020-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"applicationGatewayName": "appgw" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "coonection1", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/privateLinkResources/connection1", | ||
"type": "Microsoft.Network/applicationGateways/privateEndpointConnections", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subid2/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/pe1" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "Approval Done" | ||
}, | ||
"linkIdentifier": "805319460" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...Network/stable/2020-05-01/examples/ApplicationGatewayPrivateEndpointConnectionUpdate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2020-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"applicationGatewayName": "appgw", | ||
"connectionName": "connection1", | ||
"parameters": { | ||
"name": "connection1", | ||
"properties": { | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subId2/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/testPe" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "approved it for some reason." | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "testPlePeConnection", | ||
"properties": { | ||
"privateEndpoint": { | ||
"id": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/testPe" | ||
}, | ||
"privateLinkServiceConnectionState": { | ||
"status": "Approved", | ||
"description": "approved it for some reason." | ||
}, | ||
"linkIdentifier": "linkId" | ||
} | ||
} | ||
}, | ||
"202": {} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...crosoft.Network/stable/2020-05-01/examples/ApplicationGatewayPrivateLinkResourceList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2020-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"applicationGatewayName": "appgw" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "privateLink1", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/privateLinkResources/privateLink1", | ||
"type": "Microsoft.Network/applicationGateways/privateLinkResources", | ||
"properties": { | ||
"groupId": "privateLink1", | ||
"requiredMembers": [ | ||
"privateLink1" | ||
], | ||
"requiredZoneNames": [] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |