Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AppService] Register App Service Resources for Private Link Powershells #13967

Merged
merged 4 commits into from
Jan 22, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Network/Network/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
--->

## Upcoming Release
* Register App Service Resources ('Microsoft.Web/sites', 'Microsoft.Web/hostingEnvironments') for Private Link Powershells.
jiansong-msft marked this conversation as resolved.
Show resolved Hide resolved
- `Get-AzPrivateLinkResource`
- `Get-AzPrivateEndpointConnection`
- `Approve-AzPrivateEndpointConnection`
- `Deny-AzPrivateEndpointConnection`
- `Remove-AzPrivateEndpointConnection`

## Version 4.5.0
* Added new cmdlets for CRUD of VpnGatewayNATRule.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ static ProviderConfiguration()
RegisterConfiguration("Microsoft.OffAzure/masterSites", "2020-07-07", false);
RegisterConfiguration("Microsoft.Cache/redisEnterprise", "2020-10-01-preview");
RegisterConfiguration("Microsoft.HealthcareApis/services", "2020-03-30", false);
RegisterConfiguration("Microsoft.Web/sites", "2020-10-01");
RegisterConfiguration("Microsoft.Web/hostingEnvironments", "2020-10-01");
}

private static void RegisterConfiguration(string type, string apiVersion, bool hasConnectionsURI = true)
Expand Down