@@ -18,6 +18,7 @@ static ProviderConfiguration()
18
18
RegisterConfiguration ( "Microsoft.DBforPostgreSQL/servers" , "2018-06-01" ) ;
19
19
RegisterConfiguration ( "Microsoft.Insights/privateLinkScopes" , "2019-10-17-preview" ) ;
20
20
RegisterConfiguration ( "Microsoft.Storage/storageAccounts" , "2019-06-01" , false ) ;
21
+ RegisterConfiguration ( "Microsoft.StorageSync/storageSyncServices" , "2020-03-01" ) ;
21
22
RegisterConfiguration ( "Microsoft.KeyVault/vaults" , "2019-09-01" , false ) ;
22
23
RegisterConfiguration ( "Microsoft.DocumentDB/databaseAccounts" , "2019-08-01-preview" ) ;
23
24
RegisterConfiguration ( "Microsoft.CognitiveServices/accounts" , "2017-04-18" ) ;
@@ -27,14 +28,17 @@ static ProviderConfiguration()
27
28
RegisterConfiguration ( "Microsoft.EventGrid/topics" , "2020-04-01-preview" ) ;
28
29
RegisterConfiguration ( "Microsoft.EventGrid/domains" , "2020-04-01-preview" ) ;
29
30
RegisterConfiguration ( "Microsoft.Network/applicationgateways" , "2020-05-01" ) ;
31
+
30
32
}
31
33
32
34
private static void RegisterConfiguration ( string type , string apiVersion , bool hasConnectionsURI = true )
33
35
{
34
- ProviderConfiguration configuration = new ProviderConfiguration ( ) ;
35
- configuration . Type = type ;
36
- configuration . ApiVersion = apiVersion ;
37
- configuration . HasConnectionsURI = hasConnectionsURI ;
36
+ ProviderConfiguration configuration = new ProviderConfiguration
37
+ {
38
+ Type = type ,
39
+ ApiVersion = apiVersion ,
40
+ HasConnectionsURI = hasConnectionsURI
41
+ } ;
38
42
_configurations . Add ( type , configuration ) ;
39
43
}
40
44
0 commit comments