Ejemplo n.º 1
0
 public AzureDatabaseDiscoveryProvider()
 {
     // Duplicate the exportable attribute as at present we do not support filtering using extensiondescriptor.
     // The attribute is preserved in order to simplify ability to backport into existing tools
     Metadata = new ExportableMetadata(
         ServerTypes.SqlServer,
         Categories.Azure,
         "Microsoft.SqlServer.ConnectionServices.Azure.AzureDatabaseDiscoveryProvider");
 }
Ejemplo n.º 2
0
 public AzureResourceManager()
 {
     // Duplicate the exportable attribute as at present we do not support filtering using extensiondescriptor.
     // The attribute is preserved in order to simplify ability to backport into existing tools
     Metadata = new ExportableMetadata(
         ServerTypes.SqlServer,
         Categories.Azure,
         "Microsoft.SqlTools.ResourceProvider.DefaultImpl.AzureResourceManager");
 }
Ejemplo n.º 3
0
 public AzureAuthenticationManager()
 {
     Metadata = new ExportableMetadata(
         ServerTypes.SqlServer,
         Categories.Azure,
         "Microsoft.SqlTools.ResourceProvider.DefaultImpl.AzureAuthenticationManager",
         1);
     accountsMap = new Dictionary <string, AzureUserAccount>();
 }
Ejemplo n.º 4
0
 public FakeAzureServerDiscoveryProvider()
 {
     Metadata = new ExportableMetadata(ServerTypes.SqlServer, Categories.Azure,
                                       "Microsoft.SqlTools.ServiceLayer.UnitTests.ResourceProvider.Azure.FakeAzureServerDiscoveryProvider", 1);
 }