@itentialopensource/adapter-db_mssql 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTH.md +26 -0
- package/CALLS.md +40 -0
- package/CHANGELOG.md +16 -0
- package/SYSTEMINFO.md +23 -0
- package/TAB1.md +11 -0
- package/TAB2.md +65 -0
- package/changelogs/changelog.md +40 -0
- package/compliance-report.json +9 -0
- package/compliance-report.txt +5 -0
- package/metadata.json +30 -7
- package/package.json +7 -8
- package/refs?service=git-upload-pack +0 -0
- package/sampleProperties.json +1 -1
- package/workflows/README.md +0 -3
- package/workflows/test-sql-server.json +0 -470
package/AUTH.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
## Authenticating Microsoft SQL Adapter
|
|
2
|
+
|
|
3
|
+
This document will go through the steps for authenticating the Microsoft SQL adapter with. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication <a href="https://docs.itential.com/opensource/docs/authentication" target="_blank">HERE</a>.
|
|
4
|
+
|
|
5
|
+
### Database Library Authentication
|
|
6
|
+
The Microsoft SQL adapter requires Database Library Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.
|
|
7
|
+
|
|
8
|
+
STEPS
|
|
9
|
+
1. Ensure you have access to a Microsoft SQL server and that it is running
|
|
10
|
+
2. Follow the steps in the README.md to import the adapter into IAP if you have not already done so
|
|
11
|
+
3. Use the properties below for the ```properties.authentication``` field
|
|
12
|
+
```json
|
|
13
|
+
"authentication": {
|
|
14
|
+
"dbAuth": true,
|
|
15
|
+
"domain": "",
|
|
16
|
+
"username": "sa",
|
|
17
|
+
"password": "Password"
|
|
18
|
+
}
|
|
19
|
+
```
|
|
20
|
+
4. Restart the adapter. If your properties were set correctly, the adapter should go online.
|
|
21
|
+
|
|
22
|
+
### Troubleshooting
|
|
23
|
+
- Make sure you copied over the correct username and password.
|
|
24
|
+
- Turn on debug level logs for the adapter in IAP Admin Essentials.
|
|
25
|
+
- Investigate the logs
|
|
26
|
+
- Credentials should be ** masked ** by the adapter so make sure you verify the username and password - including that there are erroneous spaces at the front or end.
|
package/CALLS.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
## Using this Adapter
|
|
2
|
+
|
|
3
|
+
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
|
|
4
|
+
|
|
5
|
+
### Generic Adapter Calls
|
|
6
|
+
|
|
7
|
+
These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
|
|
8
|
+
|
|
9
|
+
<table border="1" class="bordered-table">
|
|
10
|
+
<tr>
|
|
11
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
12
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
13
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td style="padding:15px">connect()</td>
|
|
17
|
+
<td style="padding:15px">This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.</td>
|
|
18
|
+
<td style="padding:15px">No</td>
|
|
19
|
+
</tr>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with <%= metaInfo.title %>. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
|
+
<td style="padding:15px">No</td>
|
|
24
|
+
</tr>
|
|
25
|
+
</table>
|
|
26
|
+
<br>
|
|
27
|
+
|
|
28
|
+
### Specific Adapter Calls
|
|
29
|
+
|
|
30
|
+
Specific adapter calls are built based on the API of the <%= metaInfo.title %>. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
31
|
+
|
|
32
|
+
<table border="1" class="bordered-table">
|
|
33
|
+
<tr>
|
|
34
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
35
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
36
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
37
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
38
|
+
</tr>
|
|
39
|
+
</table>
|
|
40
|
+
<br>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 1.0.2 [07-26-2024]
|
|
3
|
+
|
|
4
|
+
* manual migration updates
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/persistence/adapter-db_mssql!10
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 1.0.1 [01-05-2024]
|
|
11
|
+
|
|
12
|
+
* more migration changes
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/persistence/adapter-db_mssql!6
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 1.0.0 [01-05-2024]
|
|
3
19
|
|
|
4
20
|
* Adapter Migration
|
package/SYSTEMINFO.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Microsoft SQL
|
|
2
|
+
|
|
3
|
+
Vendor: Microsoft
|
|
4
|
+
Homepage: https://www.microsoft.com/en-us/
|
|
5
|
+
|
|
6
|
+
Product: MSSQL
|
|
7
|
+
Product Page: https://learn.microsoft.com/en-us/sql/?view=sql-server-ver16
|
|
8
|
+
|
|
9
|
+
## Introduction
|
|
10
|
+
We classify MSSQL into the Data Storage domaina as MSSQL is a database which provides the storage of information.
|
|
11
|
+
|
|
12
|
+
"Visibility over your entire data estate"
|
|
13
|
+
"The most secure database over the last 10 years"
|
|
14
|
+
"Industry-leading performance and availability"
|
|
15
|
+
|
|
16
|
+
## Why Integrate
|
|
17
|
+
The MSSQL adapter from Itential is used to integrate the Itential Automation Platform (IAP) with Microsoft MSSQL. With this adapter you have the ability to perform operations with MSSQL on items such as:
|
|
18
|
+
|
|
19
|
+
- Storage of Information
|
|
20
|
+
- Retrieval of Information
|
|
21
|
+
|
|
22
|
+
## Additional Product Documentation
|
|
23
|
+
The [MSSQL Node Library Documentation](https://www.npmjs.com/package/mssql)
|
package/TAB1.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
This adapter is used to integrate the Itential Automation Platform (IAP) with the MicrosoftSQL System. The API that was used to build the adapter for MicrosoftSQL is usually available in the report directory of this adapter. The adapter utilizes the MicrosoftSQL API to provide the integrations that are deemed pertinent to IAP. The ReadMe file is intended to provide information on this adapter it is generated from various other Markdown files.
|
|
4
|
+
|
|
5
|
+
## Details
|
|
6
|
+
The MSSQL adapter from Itential is used to integrate the Itential Automation Platform (IAP) with Microsoft MSSQL. With this adapter you have the ability to perform operations with MSSQL on items such as:
|
|
7
|
+
|
|
8
|
+
- Storage of Information
|
|
9
|
+
- Retrieval of Information
|
|
10
|
+
|
|
11
|
+
For further technical details on how to install and use this adapter, please click the Technical Documentation tab.
|
package/TAB2.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Microsoft SQL
|
|
2
|
+
|
|
3
|
+
## Table of Contents
|
|
4
|
+
|
|
5
|
+
- [Specific Adapter Information](#specific-adapter-information)
|
|
6
|
+
- [Authentication](#authentication)
|
|
7
|
+
- [Sample Properties](#sample-properties)
|
|
8
|
+
- [Swagger](#swagger)
|
|
9
|
+
- [Generic Adapter Information](#generic-adapter-information)
|
|
10
|
+
|
|
11
|
+
## Specific Adapter Information
|
|
12
|
+
### Authentication
|
|
13
|
+
|
|
14
|
+
This document will go through the steps for authenticating the Microsoft SQL adapter with. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication <a href="https://docs.itential.com/opensource/docs/authentication" target="_blank">HERE</a>.
|
|
15
|
+
|
|
16
|
+
#### Database Library Authentication
|
|
17
|
+
The Microsoft SQL adapter requires Database Library Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.
|
|
18
|
+
|
|
19
|
+
STEPS
|
|
20
|
+
1. Ensure you have access to a Microsoft SQL server and that it is running
|
|
21
|
+
2. Follow the steps in the README.md to import the adapter into IAP if you have not already done so
|
|
22
|
+
3. Use the properties below for the ```properties.authentication``` field
|
|
23
|
+
```json
|
|
24
|
+
"authentication": {
|
|
25
|
+
"dbAuth": true,
|
|
26
|
+
"domain": "",
|
|
27
|
+
"username": "sa",
|
|
28
|
+
"password": "Password"
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
4. Restart the adapter. If your properties were set correctly, the adapter should go online.
|
|
32
|
+
|
|
33
|
+
#### Troubleshooting
|
|
34
|
+
- Make sure you copied over the correct username and password.
|
|
35
|
+
- Turn on debug level logs for the adapter in IAP Admin Essentials.
|
|
36
|
+
- Investigate the logs
|
|
37
|
+
- Credentials should be ** masked ** by the adapter so make sure you verify the username and password - including that there are erroneous spaces at the front or end.
|
|
38
|
+
### Sample Properties
|
|
39
|
+
|
|
40
|
+
Sample Properties can be used to help you configure the adapter in the Itential Automation Platform. You will need to update connectivity information such as the host, port, protocol and credentials.
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
"properties": {
|
|
44
|
+
"database": "test",
|
|
45
|
+
"host": "localhost",
|
|
46
|
+
"port": 1433,
|
|
47
|
+
"encrypt": true,
|
|
48
|
+
"authentication": {
|
|
49
|
+
"dbAuth": false,
|
|
50
|
+
"domain": "",
|
|
51
|
+
"username": "sa",
|
|
52
|
+
"password": "Password"
|
|
53
|
+
},
|
|
54
|
+
"ssl": {
|
|
55
|
+
"enabled": false,
|
|
56
|
+
"accept_invalid_cert": false,
|
|
57
|
+
"ca_file": ""
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
### Swagger
|
|
62
|
+
|
|
63
|
+
Note: The content for this section may be missing as its corresponding .json file is unavailable. This sections will be updated once adapter-openapi.json file is added.
|
|
64
|
+
## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/persistence/adapter-db_mssql/-/blob/master/README.md)
|
|
65
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
|
|
2
|
+
## 1.0.0 [01-05-2024]
|
|
3
|
+
|
|
4
|
+
* Adapter Migration
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/persistence/adapter-db_mssql!5
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.4.0 [07-16-2021]
|
|
11
|
+
|
|
12
|
+
* added call that removes the record set from select returns
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/persistence/adapter-db_mssql!3
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 0.3.0 [03-26-2021]
|
|
19
|
+
|
|
20
|
+
* add domain support for connecting
|
|
21
|
+
|
|
22
|
+
See merge request itentialopensource/adapters/persistence/adapter-db_mssql!2
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 0.2.0 [08-04-2020]
|
|
27
|
+
|
|
28
|
+
* add encrypt capability to the connextion
|
|
29
|
+
|
|
30
|
+
See merge request itentialopensource/adapters/persistence/adapter-db_mssql!1
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 0.1.1 [05-20-2020]
|
|
35
|
+
|
|
36
|
+
* Bug fixes and performance improvements
|
|
37
|
+
|
|
38
|
+
See commit f5ac952
|
|
39
|
+
|
|
40
|
+
---
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
---------------------------------------------------------------------------------------------
|
|
2
|
+
**** Project Compliance Summary ****
|
|
3
|
+
0 project(s) are not valid
|
|
4
|
+
0 project(s) are valid
|
|
5
|
+
---------------------------------------------------------------------------------------------
|
package/metadata.json
CHANGED
|
@@ -16,26 +16,49 @@
|
|
|
16
16
|
"domains": [
|
|
17
17
|
"Data Storage"
|
|
18
18
|
],
|
|
19
|
-
"tags": [
|
|
20
|
-
|
|
19
|
+
"tags": [
|
|
20
|
+
"Database & Repository Operations"
|
|
21
|
+
],
|
|
22
|
+
"useCases": [
|
|
23
|
+
"CRUD Operations",
|
|
24
|
+
"Persist Data"
|
|
25
|
+
],
|
|
21
26
|
"deprecated": {
|
|
22
27
|
"isDeprecated": false
|
|
23
28
|
},
|
|
24
29
|
"brokerSince": "",
|
|
30
|
+
"authMethods": [
|
|
31
|
+
{
|
|
32
|
+
"type": "Database Auth",
|
|
33
|
+
"subtypes": [],
|
|
34
|
+
"primary": true
|
|
35
|
+
}
|
|
36
|
+
],
|
|
25
37
|
"documentation": {
|
|
26
38
|
"storeLink": "",
|
|
27
39
|
"npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-db_mssql",
|
|
28
|
-
"repoLink": "https://gitlab.com/itentialopensource/adapters/
|
|
40
|
+
"repoLink": "https://gitlab.com/itentialopensource/adapters/adapter-db_mssql",
|
|
29
41
|
"docLink": "",
|
|
30
42
|
"demoLinks": [],
|
|
31
|
-
"trainingLinks": [
|
|
43
|
+
"trainingLinks": [
|
|
44
|
+
{
|
|
45
|
+
"title": "Itential Academy",
|
|
46
|
+
"link": "https://www.itential.com/itential-academy/"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
32
49
|
"faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
|
|
33
50
|
"contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
|
|
34
51
|
"issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
|
|
35
52
|
"webLink": "https://www.itential.com/adapters/microsoftsql/",
|
|
36
|
-
"vendorLink": "",
|
|
37
|
-
"productLink": "",
|
|
38
|
-
"apiLinks": [
|
|
53
|
+
"vendorLink": "https://www.microsoft.com/en-us/",
|
|
54
|
+
"productLink": "https://learn.microsoft.com/en-us/sql/?view=sql-server-ver16",
|
|
55
|
+
"apiLinks": [
|
|
56
|
+
{
|
|
57
|
+
"title": "MSSQL Node Library Documentation",
|
|
58
|
+
"link": "https://www.npmjs.com/package/mssql",
|
|
59
|
+
"public": true
|
|
60
|
+
}
|
|
61
|
+
]
|
|
39
62
|
},
|
|
40
63
|
"assets": [],
|
|
41
64
|
"relatedItems": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-db_mssql",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Itential adapter to connect to mssql",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"lint:errors": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js --quiet",
|
|
15
15
|
"test:unit": "mocha test/unit/adapterTestUnit.js --LOG=error",
|
|
16
16
|
"test:integration": "mocha test/integration/adapterTestIntegration.js --LOG=error",
|
|
17
|
-
"test:cover": "nyc --reporter html --reporter text mocha --reporter dot test/*",
|
|
18
17
|
"test": "npm run test:unit && npm run test:integration",
|
|
19
18
|
"deploy": "npm publish --registry=https://registry.npmjs.org --access=public",
|
|
20
19
|
"build": "npm run deploy"
|
|
@@ -32,14 +31,15 @@
|
|
|
32
31
|
],
|
|
33
32
|
"license": "Apache-2.0",
|
|
34
33
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
34
|
+
"node": ">=14.0.0",
|
|
35
|
+
"npm": ">=6.0.0"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
39
|
-
"url": "git@gitlab.com:itentialopensource/adapters/
|
|
39
|
+
"url": "git@gitlab.com:itentialopensource/adapters/adapter-db_mssql.git"
|
|
40
40
|
},
|
|
41
41
|
"author": "Itential",
|
|
42
|
-
"homepage": "https://gitlab.com/itentialopensource/adapters/
|
|
42
|
+
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-db_mssql#readme",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"ajv": "^8.12.0",
|
|
45
45
|
"fs-extra": "^11.1.1",
|
|
@@ -52,10 +52,9 @@
|
|
|
52
52
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
53
53
|
"eslint-plugin-import": "^2.27.5",
|
|
54
54
|
"eslint-plugin-json": "^3.1.0",
|
|
55
|
-
"mocha": "^
|
|
56
|
-
"nyc": "^15.1.0",
|
|
55
|
+
"mocha": "^10.7.0",
|
|
57
56
|
"testdouble": "^3.18.0",
|
|
58
|
-
"winston": "^3.
|
|
57
|
+
"winston": "^3.13.1"
|
|
59
58
|
},
|
|
60
59
|
"private": false
|
|
61
60
|
}
|
|
Binary file
|
package/sampleProperties.json
CHANGED
package/workflows/README.md
DELETED
|
@@ -1,470 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "test SQL Server",
|
|
3
|
-
"tasks": {
|
|
4
|
-
"1121": {
|
|
5
|
-
"name": "drop",
|
|
6
|
-
"canvasName": "drop",
|
|
7
|
-
"summary": "drop table from MicrosoftSQL server.",
|
|
8
|
-
"description": "drop table from MicrosoftSQL server.",
|
|
9
|
-
"location": "Adapter",
|
|
10
|
-
"locationType": "MicrosoftSQL",
|
|
11
|
-
"app": "MicrosoftSQL",
|
|
12
|
-
"type": "automatic",
|
|
13
|
-
"displayName": "MicrosoftSQL",
|
|
14
|
-
"variables": {
|
|
15
|
-
"incoming": {
|
|
16
|
-
"sql": "DROP TABLE test.dbo.test_table;",
|
|
17
|
-
"adapter_id": "test-sql-server"
|
|
18
|
-
},
|
|
19
|
-
"outgoing": {
|
|
20
|
-
"result": null
|
|
21
|
-
},
|
|
22
|
-
"error": ""
|
|
23
|
-
},
|
|
24
|
-
"deprecated": false,
|
|
25
|
-
"matched": [
|
|
26
|
-
{
|
|
27
|
-
"key": "displayName",
|
|
28
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"key": "summary",
|
|
32
|
-
"highlightString": "drop table from Microsoft<span class='highlight-string'>SQL</span> server."
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"key": "description",
|
|
36
|
-
"highlightString": "drop table from Microsoft<span class='highlight-string'>SQL</span> server."
|
|
37
|
-
}
|
|
38
|
-
],
|
|
39
|
-
"groups": [],
|
|
40
|
-
"actor": "Pronghorn",
|
|
41
|
-
"x": 1.809153713298791,
|
|
42
|
-
"y": 0.07195301027900147,
|
|
43
|
-
"scheduled": false
|
|
44
|
-
},
|
|
45
|
-
"8575": {
|
|
46
|
-
"name": "select",
|
|
47
|
-
"canvasName": "select",
|
|
48
|
-
"summary": "select item from MicrosoftSQL server",
|
|
49
|
-
"description": "select item from MicrosoftSQL server",
|
|
50
|
-
"location": "Adapter",
|
|
51
|
-
"locationType": "MicrosoftSQL",
|
|
52
|
-
"app": "MicrosoftSQL",
|
|
53
|
-
"type": "automatic",
|
|
54
|
-
"displayName": "MicrosoftSQL",
|
|
55
|
-
"variables": {
|
|
56
|
-
"incoming": {
|
|
57
|
-
"sql": "SELECT * FROM test.dbo.test_table;",
|
|
58
|
-
"adapter_id": "test-sql-server"
|
|
59
|
-
},
|
|
60
|
-
"outgoing": {
|
|
61
|
-
"result": null
|
|
62
|
-
},
|
|
63
|
-
"error": ""
|
|
64
|
-
},
|
|
65
|
-
"deprecated": false,
|
|
66
|
-
"matched": [
|
|
67
|
-
{
|
|
68
|
-
"key": "displayName",
|
|
69
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"key": "summary",
|
|
73
|
-
"highlightString": "select item from Microsoft<span class='highlight-string'>SQL</span> server"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"key": "description",
|
|
77
|
-
"highlightString": "select item from Microsoft<span class='highlight-string'>SQL</span> server"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"groups": [],
|
|
81
|
-
"actor": "Pronghorn",
|
|
82
|
-
"x": 1.116580310880829,
|
|
83
|
-
"y": 0.06461086637298091,
|
|
84
|
-
"scheduled": false
|
|
85
|
-
},
|
|
86
|
-
"workflow_start": {
|
|
87
|
-
"name": "workflow_start",
|
|
88
|
-
"groups": [],
|
|
89
|
-
"x": -0.17184801381692574,
|
|
90
|
-
"y": 0.048458149779735685
|
|
91
|
-
},
|
|
92
|
-
"workflow_end": {
|
|
93
|
-
"name": "workflow_end",
|
|
94
|
-
"groups": [],
|
|
95
|
-
"x": 1.9663212435233162,
|
|
96
|
-
"y": 0.0763582966226138
|
|
97
|
-
},
|
|
98
|
-
"e61d": {
|
|
99
|
-
"name": "query",
|
|
100
|
-
"canvasName": "query",
|
|
101
|
-
"summary": "query the MicrosoftSQL server.",
|
|
102
|
-
"description": "query the MicrosoftSQL server.",
|
|
103
|
-
"location": "Adapter",
|
|
104
|
-
"locationType": "MicrosoftSQL",
|
|
105
|
-
"app": "MicrosoftSQL",
|
|
106
|
-
"type": "automatic",
|
|
107
|
-
"displayName": "MicrosoftSQL",
|
|
108
|
-
"variables": {
|
|
109
|
-
"incoming": {
|
|
110
|
-
"sql": "SELECT GETDATE()",
|
|
111
|
-
"adapter_id": "test-sql-server"
|
|
112
|
-
},
|
|
113
|
-
"outgoing": {
|
|
114
|
-
"result": null
|
|
115
|
-
},
|
|
116
|
-
"error": ""
|
|
117
|
-
},
|
|
118
|
-
"deprecated": false,
|
|
119
|
-
"matched": [
|
|
120
|
-
{
|
|
121
|
-
"key": "canvasName",
|
|
122
|
-
"highlightString": "<span class='highlight-string'>query</span>"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"key": "summary",
|
|
126
|
-
"highlightString": "<span class='highlight-string'>query</span> the MicrosoftSQL server."
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"key": "description",
|
|
130
|
-
"highlightString": "<span class='highlight-string'>query</span> the MicrosoftSQL server."
|
|
131
|
-
}
|
|
132
|
-
],
|
|
133
|
-
"groups": [],
|
|
134
|
-
"actor": "Pronghorn",
|
|
135
|
-
"x": -0.018134715025906734,
|
|
136
|
-
"y": 0.055800293685756244,
|
|
137
|
-
"scheduled": false
|
|
138
|
-
},
|
|
139
|
-
"2c40": {
|
|
140
|
-
"name": "create",
|
|
141
|
-
"canvasName": "create",
|
|
142
|
-
"summary": "create a table into MicrosoftSQL server.",
|
|
143
|
-
"description": "create a table into MicrosoftSQL server.",
|
|
144
|
-
"location": "Adapter",
|
|
145
|
-
"locationType": "MicrosoftSQL",
|
|
146
|
-
"app": "MicrosoftSQL",
|
|
147
|
-
"type": "automatic",
|
|
148
|
-
"displayName": "MicrosoftSQL",
|
|
149
|
-
"variables": {
|
|
150
|
-
"incoming": {
|
|
151
|
-
"sql": "CREATE TABLE test.dbo.test_table (\n id INT PRIMARY KEY,\n first_name VARCHAR(100) NOT NULL,\n last_name VARCHAR(100) NOT NULL\n);",
|
|
152
|
-
"adapter_id": "test-sql-server"
|
|
153
|
-
},
|
|
154
|
-
"outgoing": {
|
|
155
|
-
"result": null
|
|
156
|
-
},
|
|
157
|
-
"error": ""
|
|
158
|
-
},
|
|
159
|
-
"deprecated": false,
|
|
160
|
-
"matched": [
|
|
161
|
-
{
|
|
162
|
-
"key": "displayName",
|
|
163
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"key": "summary",
|
|
167
|
-
"highlightString": "create a table into Microsoft<span class='highlight-string'>SQL</span> server."
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"key": "description",
|
|
171
|
-
"highlightString": "create a table into Microsoft<span class='highlight-string'>SQL</span> server."
|
|
172
|
-
}
|
|
173
|
-
],
|
|
174
|
-
"groups": [],
|
|
175
|
-
"actor": "Pronghorn",
|
|
176
|
-
"x": 0.20207253886010362,
|
|
177
|
-
"y": 0.05726872246696035,
|
|
178
|
-
"scheduled": false
|
|
179
|
-
},
|
|
180
|
-
"4a45": {
|
|
181
|
-
"name": "select",
|
|
182
|
-
"canvasName": "select",
|
|
183
|
-
"summary": "select item from MicrosoftSQL server",
|
|
184
|
-
"description": "select item from MicrosoftSQL server",
|
|
185
|
-
"location": "Adapter",
|
|
186
|
-
"locationType": "MicrosoftSQL",
|
|
187
|
-
"app": "MicrosoftSQL",
|
|
188
|
-
"type": "automatic",
|
|
189
|
-
"displayName": "MicrosoftSQL",
|
|
190
|
-
"variables": {
|
|
191
|
-
"incoming": {
|
|
192
|
-
"sql": "SELECT * FROM test.dbo.test_table;",
|
|
193
|
-
"adapter_id": "test-sql-server"
|
|
194
|
-
},
|
|
195
|
-
"outgoing": {
|
|
196
|
-
"result": null
|
|
197
|
-
},
|
|
198
|
-
"error": ""
|
|
199
|
-
},
|
|
200
|
-
"deprecated": false,
|
|
201
|
-
"matched": [
|
|
202
|
-
{
|
|
203
|
-
"key": "displayName",
|
|
204
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"key": "summary",
|
|
208
|
-
"highlightString": "select item from Microsoft<span class='highlight-string'>SQL</span> server"
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"key": "description",
|
|
212
|
-
"highlightString": "select item from Microsoft<span class='highlight-string'>SQL</span> server"
|
|
213
|
-
}
|
|
214
|
-
],
|
|
215
|
-
"groups": [],
|
|
216
|
-
"actor": "Pronghorn",
|
|
217
|
-
"x": 0.6744386873920553,
|
|
218
|
-
"y": 0.06167400881057269,
|
|
219
|
-
"scheduled": false
|
|
220
|
-
},
|
|
221
|
-
"b724": {
|
|
222
|
-
"name": "insert",
|
|
223
|
-
"canvasName": "insert",
|
|
224
|
-
"summary": "insert item into MicrosoftSQL server.",
|
|
225
|
-
"description": "insert item into MicrosoftSQL server.",
|
|
226
|
-
"location": "Adapter",
|
|
227
|
-
"locationType": "MicrosoftSQL",
|
|
228
|
-
"app": "MicrosoftSQL",
|
|
229
|
-
"type": "automatic",
|
|
230
|
-
"displayName": "MicrosoftSQL",
|
|
231
|
-
"variables": {
|
|
232
|
-
"incoming": {
|
|
233
|
-
"sql": "INSERT INTO test.dbo.test_table (id, first_name, last_name) VALUES (1, 'John', 'Smith');",
|
|
234
|
-
"adapter_id": "test-sql-server"
|
|
235
|
-
},
|
|
236
|
-
"outgoing": {
|
|
237
|
-
"result": null
|
|
238
|
-
},
|
|
239
|
-
"error": ""
|
|
240
|
-
},
|
|
241
|
-
"deprecated": false,
|
|
242
|
-
"matched": [
|
|
243
|
-
{
|
|
244
|
-
"key": "displayName",
|
|
245
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"key": "summary",
|
|
249
|
-
"highlightString": "insert item into Microsoft<span class='highlight-string'>SQL</span> server."
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"key": "description",
|
|
253
|
-
"highlightString": "insert item into Microsoft<span class='highlight-string'>SQL</span> server."
|
|
254
|
-
}
|
|
255
|
-
],
|
|
256
|
-
"groups": [],
|
|
257
|
-
"actor": "Pronghorn",
|
|
258
|
-
"x": 0.4430051813471503,
|
|
259
|
-
"y": 0.05433186490455213,
|
|
260
|
-
"scheduled": false
|
|
261
|
-
},
|
|
262
|
-
"1d9": {
|
|
263
|
-
"name": "update",
|
|
264
|
-
"canvasName": "update",
|
|
265
|
-
"summary": "update item into MicrosoftSQL server.",
|
|
266
|
-
"description": "update item into MicrosoftSQL server.",
|
|
267
|
-
"location": "Adapter",
|
|
268
|
-
"locationType": "MicrosoftSQL",
|
|
269
|
-
"app": "MicrosoftSQL",
|
|
270
|
-
"type": "automatic",
|
|
271
|
-
"displayName": "MicrosoftSQL",
|
|
272
|
-
"variables": {
|
|
273
|
-
"incoming": {
|
|
274
|
-
"sql": "UPDATE test.dbo.test_table SET first_name = 'Jane' WHERE first_name = 'John';",
|
|
275
|
-
"adapter_id": "test-sql-server"
|
|
276
|
-
},
|
|
277
|
-
"outgoing": {
|
|
278
|
-
"result": null
|
|
279
|
-
},
|
|
280
|
-
"error": ""
|
|
281
|
-
},
|
|
282
|
-
"deprecated": false,
|
|
283
|
-
"matched": [
|
|
284
|
-
{
|
|
285
|
-
"key": "displayName",
|
|
286
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
"key": "summary",
|
|
290
|
-
"highlightString": "update item into Microsoft<span class='highlight-string'>SQL</span> server."
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"key": "description",
|
|
294
|
-
"highlightString": "update item into Microsoft<span class='highlight-string'>SQL</span> server."
|
|
295
|
-
}
|
|
296
|
-
],
|
|
297
|
-
"groups": [],
|
|
298
|
-
"actor": "Pronghorn",
|
|
299
|
-
"x": 0.8946459412780656,
|
|
300
|
-
"y": 0.07195301027900147,
|
|
301
|
-
"scheduled": false
|
|
302
|
-
},
|
|
303
|
-
"6eed": {
|
|
304
|
-
"name": "delete",
|
|
305
|
-
"canvasName": "delete",
|
|
306
|
-
"summary": "delete item from MicrosoftSQL server.",
|
|
307
|
-
"description": "delete item from MicrosoftSQL server.",
|
|
308
|
-
"location": "Adapter",
|
|
309
|
-
"locationType": "MicrosoftSQL",
|
|
310
|
-
"app": "MicrosoftSQL",
|
|
311
|
-
"type": "automatic",
|
|
312
|
-
"displayName": "MicrosoftSQL",
|
|
313
|
-
"variables": {
|
|
314
|
-
"incoming": {
|
|
315
|
-
"sql": "DELETE FROM test.dbo.test_table;",
|
|
316
|
-
"adapter_id": "test-sql-server"
|
|
317
|
-
},
|
|
318
|
-
"outgoing": {
|
|
319
|
-
"result": null
|
|
320
|
-
},
|
|
321
|
-
"error": ""
|
|
322
|
-
},
|
|
323
|
-
"deprecated": false,
|
|
324
|
-
"matched": [
|
|
325
|
-
{
|
|
326
|
-
"key": "displayName",
|
|
327
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
"key": "summary",
|
|
331
|
-
"highlightString": "delete item from Microsoft<span class='highlight-string'>SQL</span> server."
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
"key": "description",
|
|
335
|
-
"highlightString": "delete item from Microsoft<span class='highlight-string'>SQL</span> server."
|
|
336
|
-
}
|
|
337
|
-
],
|
|
338
|
-
"groups": [],
|
|
339
|
-
"actor": "Pronghorn",
|
|
340
|
-
"x": 1.3385146804835923,
|
|
341
|
-
"y": 0.06607929515418502,
|
|
342
|
-
"scheduled": false
|
|
343
|
-
},
|
|
344
|
-
"f2d9": {
|
|
345
|
-
"name": "select",
|
|
346
|
-
"canvasName": "select",
|
|
347
|
-
"summary": "select item from MicrosoftSQL server",
|
|
348
|
-
"description": "select item from MicrosoftSQL server",
|
|
349
|
-
"location": "Adapter",
|
|
350
|
-
"locationType": "MicrosoftSQL",
|
|
351
|
-
"app": "MicrosoftSQL",
|
|
352
|
-
"type": "automatic",
|
|
353
|
-
"displayName": "MicrosoftSQL",
|
|
354
|
-
"variables": {
|
|
355
|
-
"incoming": {
|
|
356
|
-
"sql": "SELECT * FROM test.dbo.test_table;",
|
|
357
|
-
"adapter_id": "test-sql-server"
|
|
358
|
-
},
|
|
359
|
-
"outgoing": {
|
|
360
|
-
"result": null
|
|
361
|
-
},
|
|
362
|
-
"error": ""
|
|
363
|
-
},
|
|
364
|
-
"deprecated": false,
|
|
365
|
-
"matched": [
|
|
366
|
-
{
|
|
367
|
-
"key": "displayName",
|
|
368
|
-
"highlightString": "Microsoft<span class='highlight-string'>SQL</span>"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"key": "summary",
|
|
372
|
-
"highlightString": "select item from Microsoft<span class='highlight-string'>SQL</span> server"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"key": "description",
|
|
376
|
-
"highlightString": "select item from Microsoft<span class='highlight-string'>SQL</span> server"
|
|
377
|
-
}
|
|
378
|
-
],
|
|
379
|
-
"groups": [],
|
|
380
|
-
"actor": "Pronghorn",
|
|
381
|
-
"x": 1.579447322970639,
|
|
382
|
-
"y": 0.06901615271659324,
|
|
383
|
-
"scheduled": false
|
|
384
|
-
}
|
|
385
|
-
},
|
|
386
|
-
"transitions": {
|
|
387
|
-
"1121": {
|
|
388
|
-
"workflow_end": {
|
|
389
|
-
"type": "standard",
|
|
390
|
-
"state": "success"
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
"8575": {
|
|
394
|
-
"6eed": {
|
|
395
|
-
"type": "standard",
|
|
396
|
-
"state": "success"
|
|
397
|
-
}
|
|
398
|
-
},
|
|
399
|
-
"workflow_start": {
|
|
400
|
-
"e61d": {
|
|
401
|
-
"type": "standard",
|
|
402
|
-
"state": "success"
|
|
403
|
-
}
|
|
404
|
-
},
|
|
405
|
-
"workflow_end": {},
|
|
406
|
-
"e61d": {
|
|
407
|
-
"2c40": {
|
|
408
|
-
"type": "standard",
|
|
409
|
-
"state": "success"
|
|
410
|
-
}
|
|
411
|
-
},
|
|
412
|
-
"2c40": {
|
|
413
|
-
"b724": {
|
|
414
|
-
"type": "standard",
|
|
415
|
-
"state": "success"
|
|
416
|
-
}
|
|
417
|
-
},
|
|
418
|
-
"4a45": {
|
|
419
|
-
"1d9": {
|
|
420
|
-
"type": "standard",
|
|
421
|
-
"state": "success"
|
|
422
|
-
}
|
|
423
|
-
},
|
|
424
|
-
"b724": {
|
|
425
|
-
"4a45": {
|
|
426
|
-
"type": "standard",
|
|
427
|
-
"state": "success"
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
|
-
"1d9": {
|
|
431
|
-
"8575": {
|
|
432
|
-
"type": "standard",
|
|
433
|
-
"state": "success"
|
|
434
|
-
}
|
|
435
|
-
},
|
|
436
|
-
"6eed": {
|
|
437
|
-
"f2d9": {
|
|
438
|
-
"type": "standard",
|
|
439
|
-
"state": "success"
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
"f2d9": {
|
|
443
|
-
"1121": {
|
|
444
|
-
"type": "standard",
|
|
445
|
-
"state": "success"
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
},
|
|
449
|
-
"font_size": 12,
|
|
450
|
-
"created": "2020-04-23T18:21:28.989Z",
|
|
451
|
-
"created_by": {
|
|
452
|
-
"provenance": "Local AAA",
|
|
453
|
-
"username": "admin@pronghorn",
|
|
454
|
-
"firstname": "admin",
|
|
455
|
-
"inactive": false
|
|
456
|
-
},
|
|
457
|
-
"createdVersion": "5.5.9-2019.3.14.0",
|
|
458
|
-
"groups": [],
|
|
459
|
-
"last_updated": "2020-04-23T18:28:55.564Z",
|
|
460
|
-
"last_updated_by": {
|
|
461
|
-
"provenance": "Local AAA",
|
|
462
|
-
"username": "admin@pronghorn",
|
|
463
|
-
"firstname": "admin",
|
|
464
|
-
"inactive": false
|
|
465
|
-
},
|
|
466
|
-
"lastUpdatedVersion": "5.5.9-2019.3.14.0",
|
|
467
|
-
"type": "automation",
|
|
468
|
-
"description": null,
|
|
469
|
-
"tags": []
|
|
470
|
-
}
|