mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-16 10:58:30 -05:00
added ability to start at step (#758)
This commit is contained in:
committed by
Karl Burtram
parent
e4808c12aa
commit
046563318a
@@ -53,7 +53,14 @@ namespace Microsoft.SqlTools.ServiceLayer.Agent
|
||||
CategoryType = job.CategoryType,
|
||||
LastRun = job.LastRun != null ? job.LastRun.ToString() : string.Empty,
|
||||
NextRun = job.NextRun != null ? job.NextRun.ToString() : string.Empty,
|
||||
JobId = job.JobID != null ? job.JobID.ToString() : null
|
||||
JobId = job.JobID != null ? job.JobID.ToString() : null,
|
||||
OperatorToEmail = job.OperatorToEmail,
|
||||
OperatorToPage = job.OperatorToPage,
|
||||
StartStepId = job.StartStepID,
|
||||
EmailLevel = job.EmailLevel,
|
||||
PageLevel = job.PageLevel,
|
||||
EventLogLevel = job.EventLogLevel,
|
||||
DeleteLevel = job.DeleteLevel
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user