Skip to content

Commit f8e8e6b

Browse files
authored
Onboard few private links (Azure#15746)
1 parent b88731c commit f8e8e6b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/ProviderConfiguration.cs

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,43 +15,56 @@ internal class ProviderConfiguration
1515
static ProviderConfiguration()
1616
{
1717
RegisterConfiguration("Microsoft.AppConfiguration/configurationStores", "2020-06-01", true, true);
18+
RegisterConfiguration("Microsoft.Attestation/attestationProviders", "2020-10-01", true, true);
1819
RegisterConfiguration("Microsoft.Automation/automationAccounts", "2020-01-13-preview", true, false);
1920
RegisterConfiguration("Microsoft.Batch/batchAccounts", "2020-03-01", true, true);
21+
RegisterConfiguration("Microsoft.Cache/Redis", "2020-12-01", true, true);
2022
RegisterConfiguration("Microsoft.Cache/redisEnterprise", "2021-03-01", true, false);
2123
RegisterConfiguration("Microsoft.CognitiveServices/accounts", "2017-04-18", true, false);
2224
RegisterConfiguration("Microsoft.Compute/diskAccesses", "2020-09-30", true, false);
2325
RegisterConfiguration("Microsoft.ContainerRegistry/registries", "2019-12-01-preview", true, false);
26+
RegisterConfiguration("Microsoft.ContainerService/managedClusters", "2021-07-01", true, false);
27+
RegisterConfiguration("Microsoft.DataFactory/factories", "2018-06-01", true, false);
2428
RegisterConfiguration("Microsoft.DBforMariaDB/servers", "2018-06-01", true, true);
2529
RegisterConfiguration("Microsoft.DBforMySQL/servers", "2018-06-01", true, true);
2630
RegisterConfiguration("Microsoft.DBforPostgreSQL/servers", "2018-06-01", true, true);
2731
RegisterConfiguration("Microsoft.Devices/IotHubs", "2020-03-01", true, true);
32+
RegisterConfiguration("Microsoft.Devices/ProvisioningServices", "2020-03-01", true, true);
2833
RegisterConfiguration("Microsoft.DigitalTwins/digitalTwinsInstances", "2020-12-01", true, true);
2934
RegisterConfiguration("Microsoft.DocumentDB/databaseAccounts", "2019-08-01-preview", true, true);
3035
RegisterConfiguration("Microsoft.EventGrid/topics", "2020-04-01-preview", true, true);
3136
RegisterConfiguration("Microsoft.EventGrid/domains", "2020-04-01-preview", true, true);
3237
RegisterConfiguration("Microsoft.EventHub/namespaces", "2018-01-01-preview", true, false);
3338
RegisterConfiguration("Microsoft.HealthcareApis/services", "2020-03-30", false, true);
39+
RegisterConfiguration("Microsoft.HybridCompute/privateLinkScopes", "2021-05-20",true, true);
3440
RegisterConfiguration("Microsoft.Insights/privateLinkScopes", "2019-10-17-preview", true, true);
3541
RegisterConfiguration("Microsoft.KeyVault/vaults", "2018-02-14", false, false);
42+
RegisterConfiguration("Microsoft.Keyvault/managedHSMs", "2021-06-01-preview", true, false);
43+
RegisterConfiguration("Microsoft.MachineLearningServices/workspaces", "2021-07-01", true, false);
3644
RegisterConfiguration("Microsoft.Media/mediaservices", "2020-05-01", true, true);
3745
RegisterConfiguration("Microsoft.Migrate/assessmentProjects", "2020-05-01-preview", false, false);
3846
RegisterConfiguration("Microsoft.Migrate/migrateProjects", "2020-06-01-preview", false, false);
3947
RegisterConfiguration("Microsoft.Network/applicationgateways", "2020-05-01", true, false);
4048
RegisterConfiguration("Microsoft.OffAzure/masterSites", "2020-07-07", false, false);
4149
RegisterConfiguration("Microsoft.PowerBI/privateLinkServicesForPowerBI", "2020-06-01", false, true);
4250
RegisterConfiguration("Microsoft.Purview/accounts", "2020-12-01-preview", true, true);
51+
RegisterConfiguration("Microsoft.RecoveryServices/vaults","2021-07-01", false, true);
52+
RegisterConfiguration("Microsoft.Relay/namespaces", "2018-01-01-preview", true, false);
4353
RegisterConfiguration("Microsoft.Search/searchServices", "2020-08-01", true, false);
4454
RegisterConfiguration("Microsoft.ServiceBus/namespaces", "2018-01-01-preview", true, false);
4555
RegisterConfiguration("Microsoft.SignalRService/signalr", "2020-05-01", false, false);
56+
RegisterConfiguration("Microsoft.SignalRService/webPubSub", "2021-09-01-preview", true, false);
4657
RegisterConfiguration("Microsoft.Sql/servers", "2018-06-01-preview", true, true);
4758
RegisterConfiguration("Microsoft.Storage/storageAccounts", "2019-06-01", false, false);
4859
RegisterConfiguration("Microsoft.StorageSync/storageSyncServices", "2020-03-01", true, false);
60+
RegisterConfiguration("Microsoft.Synapse/privateLinkHubs", "2021-05-01", true, true);
4961
RegisterConfiguration("Microsoft.Synapse/workspaces", "2019-06-01-preview", true, true);
5062
RegisterConfiguration("Microsoft.Web/sites", "2019-08-01", true, false);
63+
RegisterConfiguration("Microsoft.Web/staticSites", "2021-02-01", true, false);
5164
RegisterConfiguration("Microsoft.Web/hostingEnvironments", "2020-10-01", true, false);
5265
}
5366

54-
private static void RegisterConfiguration(string type, string apiVersion, bool hasConnectionsURI = true, bool hasResourceURI = true)
67+
private static void RegisterConfiguration(string type, string apiVersion, bool hasConnectionsURI = false, bool hasResourceURI = false)
5568
{
5669
ProviderConfiguration configuration = new ProviderConfiguration
5770
{

0 commit comments

Comments
 (0)