added ability to start at step (#758)

This commit is contained in:
Aditya Bist
2018-12-06 17:34:48 -08:00
committed by Karl Burtram
parent e4808c12aa
commit 046563318a
4 changed files with 48 additions and 2 deletions

View File

@@ -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
};
}