mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-14 12:08:32 -05:00
Fix numerous Azure property issues (#511)
* Avoid crashing if azure edition is System. * Add new Azure-specific options to the prototype and return through the service calls * Send azure properties over database info request * IsCloud should include Azure SQL DW - Fixed references to this feature flag - Updated edition handling to include ManagedInstance and removed AzureV1 check since it's never used and it's been retired.
This commit is contained in:
committed by
Karl Burtram
parent
49f0221dc8
commit
d222af7824
@@ -3309,6 +3309,22 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string Error_InvalidDirectoryName
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.Error_InvalidDirectoryName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string Error_ExistingDirectoryName
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.Error_ExistingDirectoryName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string BackupTaskName
|
||||
{
|
||||
get
|
||||
@@ -4915,6 +4931,12 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string NeverBackedUp = "NeverBackedUp";
|
||||
|
||||
|
||||
public const string Error_InvalidDirectoryName = "Error_InvalidDirectoryName";
|
||||
|
||||
|
||||
public const string Error_ExistingDirectoryName = "Error_ExistingDirectoryName";
|
||||
|
||||
|
||||
public const string BackupTaskName = "BackupTaskName";
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user