multiwoven-integrations 0.1.7 → 0.1.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddbec3ce3a78c7a61e8a084fb8f624c1b4db681535cee238aa76f7447eb31307
4
- data.tar.gz: 8d5a68dada611107fa81800c2d51c6fce37a34fe345af59b166fb6b5a2c63e70
3
+ metadata.gz: 26041f1220cf77d47654d3a744e48c791f48255c6d36a63ba1dd5c86942e6f4d
4
+ data.tar.gz: 9c81bf2448c9f6a02488c5d5191ec436fbe92f15436a77af09172cfefb1ab1c1
5
5
  SHA512:
6
- metadata.gz: 0a4963af3e38b2236338e8b08b097fc81ffd6dc7f94c82bc212b73b4817fca67fdfd6a9674827bb785c5deeaa52ca8212e66477229c24efe918b151553837403
7
- data.tar.gz: 6249ba5bd2629711e63f246999eb6ac36fa2876ea50932f7b839e471a0a8d21fe8a43875f00d42c05b626fcf81e4e436a34dbcdef1cae0144aead56e134b1679
6
+ metadata.gz: 020bf68470d6c03575d3205f8bd65e20215e090fcebae9d6b071c0a6b442c6229fac9e38b6c7ba7eaea5c4efcbd2750eb42f0ee730431ea36498daa443890cb7
7
+ data.tar.gz: 03e30f3ac3c63154ffad67eeb159bd299ab35a4b379052bdf2c7f4c222f097b1f28ea75111c8c32f5411fa02690df0edee13a21961d70929adf2b18650e93d43
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.7"
5
+ VERSION = "0.1.8"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -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
- "credentials": {
11
- "title": "Authorization Method",
12
- "type": "object",
13
- "oneOf": [
14
- {
15
- "title": "Username and Password",
16
- "type": "object",
17
- "required": ["username", "password", "auth_type"],
18
- "order": 1,
19
- "properties": {
20
- "auth_type": {
21
- "type": "string",
22
- "const": "username/password",
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": ["example-redshift-cluster.abcdefg.us-west-2.redshift.amazonaws.com"],
26
+ "examples": [
27
+ "example-redshift-cluster.abcdefg.us-west-2.redshift.amazonaws.com"
28
+ ],
47
29
  "type": "string",
48
30
  "title": "Host",
49
- "order": 1
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": 2
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": 3
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": 4
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": ["host", "role", "warehouse", "database"],
8
+ "required": [
9
+ "username",
10
+ "password",
11
+ "host",
12
+ "role",
13
+ "warehouse",
14
+ "database"
15
+ ],
9
16
  "properties": {
10
- "credentials": {
11
- "title": "Authorization Method",
12
- "type": "object",
13
- "oneOf": [
14
- {
15
- "title": "Username and Password",
16
- "type": "object",
17
- "required": ["username", "password", "auth_type"],
18
- "order": 1,
19
- "properties": {
20
- "auth_type": {
21
- "type": "string",
22
- "const": "username/password",
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
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiwoven-integrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P