added restore options (#423)

* added restore options
This commit is contained in:
Leila Lali
2017-07-28 12:54:08 -07:00
committed by GitHub
parent e1395cbd7d
commit e453a19d00
15 changed files with 505 additions and 64 deletions

View File

@@ -3477,6 +3477,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string TheLastBackupTaken
{
get
{
return Keys.GetString(Keys.TheLastBackupTaken);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -4890,6 +4898,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string RestoreBackupSetExpiration = "RestoreBackupSetExpiration";
public const string TheLastBackupTaken = "TheLastBackupTaken";
private Keys()
{ }