multiwoven-integrations 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26041f1220cf77d47654d3a744e48c791f48255c6d36a63ba1dd5c86942e6f4d
|
4
|
+
data.tar.gz: 9c81bf2448c9f6a02488c5d5191ec436fbe92f15436a77af09172cfefb1ab1c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 020bf68470d6c03575d3205f8bd65e20215e090fcebae9d6b071c0a6b442c6229fac9e38b6c7ba7eaea5c4efcbd2750eb42f0ee730431ea36498daa443890cb7
|
7
|
+
data.tar.gz: 03e30f3ac3c63154ffad67eeb159bd299ab35a4b379052bdf2c7f4c222f097b1f28ea75111c8c32f5411fa02690df0edee13a21961d70929adf2b18650e93d43
|
@@ -5,69 +5,51 @@
|
|
5
5
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
6
6
|
"title": "Redshift Source Spec",
|
7
7
|
"type": "object",
|
8
|
-
"required": ["host", "port", "database", "schema"],
|
8
|
+
"required": ["username", "password", "host", "port", "database", "schema"],
|
9
9
|
"properties": {
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
13
|
-
"
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
"order": 0
|
24
|
-
},
|
25
|
-
"username": {
|
26
|
-
"description": "The username for Redshift database access.",
|
27
|
-
"examples": ["REDSHIFT_USER"],
|
28
|
-
"type": "string",
|
29
|
-
"title": "Username",
|
30
|
-
"order": 1
|
31
|
-
},
|
32
|
-
"password": {
|
33
|
-
"description": "The password for the Redshift user.",
|
34
|
-
"type": "string",
|
35
|
-
"multiwoven_secret": true,
|
36
|
-
"title": "Password",
|
37
|
-
"order": 2
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
41
|
-
],
|
42
|
-
"order": 0
|
10
|
+
"username": {
|
11
|
+
"description": "The username for Redshift database access.",
|
12
|
+
"examples": ["REDSHIFT_USER"],
|
13
|
+
"type": "string",
|
14
|
+
"title": "Username",
|
15
|
+
"order": 1
|
16
|
+
},
|
17
|
+
"password": {
|
18
|
+
"description": "The password for the Redshift user.",
|
19
|
+
"type": "string",
|
20
|
+
"multiwoven_secret": true,
|
21
|
+
"title": "Password",
|
22
|
+
"order": 2
|
43
23
|
},
|
44
24
|
"host": {
|
45
25
|
"description": "The host endpoint of the Redshift cluster.",
|
46
|
-
"examples": [
|
26
|
+
"examples": [
|
27
|
+
"example-redshift-cluster.abcdefg.us-west-2.redshift.amazonaws.com"
|
28
|
+
],
|
47
29
|
"type": "string",
|
48
30
|
"title": "Host",
|
49
|
-
"order":
|
31
|
+
"order": 3
|
50
32
|
},
|
51
33
|
"port": {
|
52
34
|
"description": "The port on which Redshift is running (default is 5439).",
|
53
35
|
"examples": ["5439"],
|
54
36
|
"type": "string",
|
55
37
|
"title": "Port",
|
56
|
-
"order":
|
38
|
+
"order": 4
|
57
39
|
},
|
58
40
|
"database": {
|
59
41
|
"description": "The specific Redshift database to connect to.",
|
60
42
|
"examples": ["REDSHIFT_DB"],
|
61
43
|
"type": "string",
|
62
44
|
"title": "Database",
|
63
|
-
"order":
|
45
|
+
"order": 5
|
64
46
|
},
|
65
47
|
"schema": {
|
66
48
|
"description": "The schema within the Redshift database.",
|
67
49
|
"examples": ["REDSHIFT_SCHEMA"],
|
68
50
|
"type": "string",
|
69
51
|
"title": "Schema",
|
70
|
-
"order":
|
52
|
+
"order": 6
|
71
53
|
}
|
72
54
|
}
|
73
55
|
}
|
@@ -5,41 +5,28 @@
|
|
5
5
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
6
6
|
"title": "Snowflake Source Spec",
|
7
7
|
"type": "object",
|
8
|
-
"required": [
|
8
|
+
"required": [
|
9
|
+
"username",
|
10
|
+
"password",
|
11
|
+
"host",
|
12
|
+
"role",
|
13
|
+
"warehouse",
|
14
|
+
"database"
|
15
|
+
],
|
9
16
|
"properties": {
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
13
|
-
"
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
"order": 0
|
24
|
-
},
|
25
|
-
"username": {
|
26
|
-
"description": "The username you created to allow multiwoven to access the database.",
|
27
|
-
"examples": ["MULTIWOVEN_USER"],
|
28
|
-
"type": "string",
|
29
|
-
"title": "Username",
|
30
|
-
"order": 1
|
31
|
-
},
|
32
|
-
"password": {
|
33
|
-
"description": "The password associated with the username.",
|
34
|
-
"type": "string",
|
35
|
-
"multiwoven_secret": true,
|
36
|
-
"title": "Password",
|
37
|
-
"order": 2
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
41
|
-
],
|
42
|
-
"order": 0
|
17
|
+
"username": {
|
18
|
+
"description": "The username you created to allow multiwoven to access the database.",
|
19
|
+
"examples": ["MULTIWOVEN_USER"],
|
20
|
+
"type": "string",
|
21
|
+
"title": "Username",
|
22
|
+
"order": 1
|
23
|
+
},
|
24
|
+
"password": {
|
25
|
+
"description": "The password associated with the username.",
|
26
|
+
"type": "string",
|
27
|
+
"multiwoven_secret": true,
|
28
|
+
"title": "Password",
|
29
|
+
"order": 2
|
43
30
|
},
|
44
31
|
"host": {
|
45
32
|
"description": "The host domain of the snowflake instance (must include the account, region, cloud environment, and end with snowflakecomputing.com).",
|
@@ -84,4 +71,4 @@
|
|
84
71
|
}
|
85
72
|
}
|
86
73
|
}
|
87
|
-
}
|
74
|
+
}
|