@@ -18,6 +18,7 @@ static ProviderConfiguration()
1818 RegisterConfiguration ( "Microsoft.DBforPostgreSQL/servers" , "2018-06-01" ) ;
1919 RegisterConfiguration ( "Microsoft.Insights/privateLinkScopes" , "2019-10-17-preview" ) ;
2020 RegisterConfiguration ( "Microsoft.Storage/storageAccounts" , "2019-06-01" , false ) ;
21+ RegisterConfiguration ( "Microsoft.StorageSync/storageSyncServices" , "2020-03-01" ) ;
2122 RegisterConfiguration ( "Microsoft.KeyVault/vaults" , "2019-09-01" , false ) ;
2223 RegisterConfiguration ( "Microsoft.DocumentDB/databaseAccounts" , "2019-08-01-preview" ) ;
2324 RegisterConfiguration ( "Microsoft.CognitiveServices/accounts" , "2017-04-18" ) ;
@@ -27,14 +28,17 @@ static ProviderConfiguration()
2728 RegisterConfiguration ( "Microsoft.EventGrid/topics" , "2020-04-01-preview" ) ;
2829 RegisterConfiguration ( "Microsoft.EventGrid/domains" , "2020-04-01-preview" ) ;
2930 RegisterConfiguration ( "Microsoft.Network/applicationgateways" , "2020-05-01" ) ;
31+
3032 }
3133
3234 private static void RegisterConfiguration ( string type , string apiVersion , bool hasConnectionsURI = true )
3335 {
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+ } ;
3842 _configurations . Add ( type , configuration ) ;
3943 }
4044
0 commit comments