mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-16 10:58:30 -05:00
Add Agent Job and Job Step request handlers (#635)
* Stage changes * Fix update job request handler * WIP * Additional agent handler updates * Setup agent job step create test * Fix Step update handler
This commit is contained in:
@@ -4341,6 +4341,14 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string JobStepNameCannotBeBlank
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.JobStepNameCannotBeBlank);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ConnectionServiceListDbErrorNotConnected(string uri)
|
||||
{
|
||||
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
|
||||
@@ -4576,6 +4584,16 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.OperatorProperties, operatorName);
|
||||
}
|
||||
|
||||
public static string JobAlreadyExists(string jobName)
|
||||
{
|
||||
return Keys.GetString(Keys.JobAlreadyExists, jobName);
|
||||
}
|
||||
|
||||
public static string JobStepNameAlreadyExists(string jobName)
|
||||
{
|
||||
return Keys.GetString(Keys.JobStepNameAlreadyExists, jobName);
|
||||
}
|
||||
|
||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class Keys
|
||||
{
|
||||
@@ -6342,6 +6360,15 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string CategoryDataCollector = "CategoryDataCollector";
|
||||
|
||||
|
||||
public const string JobAlreadyExists = "JobAlreadyExists";
|
||||
|
||||
|
||||
public const string JobStepNameCannotBeBlank = "JobStepNameCannotBeBlank";
|
||||
|
||||
|
||||
public const string JobStepNameAlreadyExists = "JobStepNameAlreadyExists";
|
||||
|
||||
|
||||
private Keys()
|
||||
{ }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user