mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* added agent notebooks, notebook history view and view materialized notebook button * Got a basic UI running for viewing notebook history * made some changes to make UI look good * Added new notebook dialog * Added new notebook Dialog * Added create notebook dialog * Added edit and delete notebook job * Added some notebook history features * Added new notebook job icons, fixed a minor bug in openmaterializednotebookAPI and added fixed the schedule Picker API. * Fixed Bugs in Notebook Grid expansion * Fixed Notebook table highlighting and grid generation is done using code. * fixed some UI bugs * Added changes to reflect sqltoolservice api * Fixed some localize keys * Made changes in the PR and added ability to open Template Notebooks from notebook history view. * Added pin and renaming to notebook history * made some library calls async * fixed an import bug caused by merging from master * Validation in NotebookJobDialog * Added entry points for scheduling notebooks on file explorer and notebook editor * Handled no active connections and a small bug in collapsing grid * fix a bug in scheduling notebook from explorer and toolbar * setting up agent providers from connection now * changed modals * Reupload edited template * Add dialog info, solved an edit bug and localized UI strings. * Bug fixes in UI, notebook renaming and editing template on fly. * fixed a bug that failed editing notebook jobs from notebook jobs table * Fixed a cyclic dependency, made strings const and some other changes in the PR * Made some cyclic dependency and some fixes from PR * made some changes mentioned in the PR * Changed storage database health text * Changed the sqltoolservice version to the point to the latest build. * Added open Latest notebook notebook run to notebooks view context menu * Fixed a small compilation error * fixed a spelling mistake in function name * made changes mentioned in the PR added open Notebook Functionality to charts * Changed some context menues strings and order * made some changes from the PR and fixed an API call * made some changes mentioned in the PR * Changed sqltoolsservice version to point to the latest build
94 lines
2.1 KiB
JSON
94 lines
2.1 KiB
JSON
{
|
|
"name": "agent",
|
|
"displayName": "SQL Server Agent",
|
|
"description": "Manage and troubleshoot SQL Server Agent jobs",
|
|
"version": "0.42.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
|
|
"engines": {
|
|
"vscode": "^1.25.0"
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"main": "./out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"outputChannels": [
|
|
"sqlagent"
|
|
],
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "agent.openNotebookDialog",
|
|
"title": "Schedule Notebook",
|
|
"icon": {
|
|
"dark": "resources/dark/open_notebook_inverse.svg",
|
|
"light": "resources/light/open_notebook.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "agent.reuploadTemplate",
|
|
"title": "Update Template",
|
|
"icon": {
|
|
"dark": "resources/dark/open_notebook_inverse.svg",
|
|
"light": "resources/light/open_notebook.svg"
|
|
}
|
|
}
|
|
],
|
|
"menus": {
|
|
"notebook/toolbar": [
|
|
{
|
|
"command": "agent.openNotebookDialog",
|
|
"when": "providerId == sql && !agent:trackedTemplate"
|
|
},
|
|
{
|
|
"command": "agent.reuploadTemplate",
|
|
"when": "agent:trackedTemplate"
|
|
}
|
|
],
|
|
"explorer/context": [
|
|
{
|
|
"command": "agent.openNotebookDialog",
|
|
"when": "resourceExtname == .ipynb"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/node": "^8.10.25",
|
|
"mocha": "^5.2.0",
|
|
"should": "^13.2.1",
|
|
"typemoq": "^2.1.0",
|
|
"vscode": "1.1.5"
|
|
}
|
|
}
|