mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-11 02:32:40 -05:00
Drop job step and Create\Update alert handlers (#636)
* Add Delete Job Step implementation * Update create\update agent alert handlers to use execution handler * Cleanup create/update/delete operator request handlers
This commit is contained in:
@@ -4349,6 +4349,78 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string AlertNameCannotBeBlank
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.AlertNameCannotBeBlank);
|
||||
}
|
||||
}
|
||||
|
||||
public static string CannotCreateNewAlert
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.CannotCreateNewAlert);
|
||||
}
|
||||
}
|
||||
|
||||
public static string CannotAlterAlert
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.CannotAlterAlert);
|
||||
}
|
||||
}
|
||||
|
||||
public static string InvalidScheduleTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.InvalidScheduleTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string InvalidWeeklySchedule
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.InvalidWeeklySchedule);
|
||||
}
|
||||
}
|
||||
|
||||
public static string StartDateGreaterThanEndDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.StartDateGreaterThanEndDate);
|
||||
}
|
||||
}
|
||||
|
||||
public static string StartTimeGreaterThanEndTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.StartTimeGreaterThanEndTime);
|
||||
}
|
||||
}
|
||||
|
||||
public static string EndTimeEqualToStartTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.EndTimeEqualToStartTime);
|
||||
}
|
||||
}
|
||||
|
||||
public static string InvalidStartDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.InvalidStartDate);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ConnectionServiceListDbErrorNotConnected(string uri)
|
||||
{
|
||||
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
|
||||
@@ -4594,6 +4666,11 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.JobStepNameAlreadyExists, jobName);
|
||||
}
|
||||
|
||||
public static string ScheduleNameAlreadyExists(string scheduleName)
|
||||
{
|
||||
return Keys.GetString(Keys.ScheduleNameAlreadyExists, scheduleName);
|
||||
}
|
||||
|
||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class Keys
|
||||
{
|
||||
@@ -6369,6 +6446,36 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string JobStepNameAlreadyExists = "JobStepNameAlreadyExists";
|
||||
|
||||
|
||||
public const string AlertNameCannotBeBlank = "AlertNameCannotBeBlank";
|
||||
|
||||
|
||||
public const string CannotCreateNewAlert = "CannotCreateNewAlert";
|
||||
|
||||
|
||||
public const string CannotAlterAlert = "CannotAlterAlert";
|
||||
|
||||
|
||||
public const string InvalidScheduleTitle = "InvalidScheduleTitle";
|
||||
|
||||
|
||||
public const string InvalidWeeklySchedule = "InvalidWeeklySchedule";
|
||||
|
||||
|
||||
public const string StartDateGreaterThanEndDate = "StartDateGreaterThanEndDate";
|
||||
|
||||
|
||||
public const string StartTimeGreaterThanEndTime = "StartTimeGreaterThanEndTime";
|
||||
|
||||
|
||||
public const string EndTimeEqualToStartTime = "EndTimeEqualToStartTime";
|
||||
|
||||
|
||||
public const string InvalidStartDate = "InvalidStartDate";
|
||||
|
||||
|
||||
public const string ScheduleNameAlreadyExists = "ScheduleNameAlreadyExists";
|
||||
|
||||
|
||||
private Keys()
|
||||
{ }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user