mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* added jobs view toolbar * create job command and dialog stub * add tab content and wire up the provider * fix the steps tab error * create job dialog 6/15 changes * general tab done * success action and retries completed * added failure action dropdown * add notification tab checkbox events * added AgentJobStepInfo objects in sqlops * create job dialog - 0618 update 1 * added model save function * width for controls and initial state for notification tab controls * refresh master and changes to work with latest code * fixed next and prev button positions * new step dialog ui finished * implemented parse button * fix package file * add validation and sub-items collections * hook up the step creation dialog - step 1 * merged master
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "agent",
|
|
"displayName": "SQL Server Agent",
|
|
"description": "Manage and troubleshoot SQL Server Agent jobs (early preview)",
|
|
"version": "0.29.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/sqlopsstudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
|
|
"engines": {
|
|
"vscode": "0.10.x"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./client/out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/sqlopsstudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"outputChannels": [
|
|
"sqlagent"
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "agent.openNewStepDialog",
|
|
"title": "agent.openNewStepDialog"
|
|
}
|
|
],
|
|
"dashboard.tabs": [
|
|
{
|
|
"id": "data-management-agent",
|
|
"description": "Manage and troubleshoot SQL Agent jobs",
|
|
"provider": "MSSQL",
|
|
"title": "SQL Agent",
|
|
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud",
|
|
"container": {
|
|
"controlhost-container": {
|
|
"type": "agent"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|