multiwoven-integrations 0.1.8 → 0.1.9

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: 26041f1220cf77d47654d3a744e48c791f48255c6d36a63ba1dd5c86942e6f4d
4
- data.tar.gz: 9c81bf2448c9f6a02488c5d5191ec436fbe92f15436a77af09172cfefb1ab1c1
3
+ metadata.gz: 963846d1e3ea7df882fc98263163811be9911cd15e86f140956fa7b22b99cbf0
4
+ data.tar.gz: 99143c05e11f7bf71e6a3f120015c249fc509100711764fb1c0fe07518d32d7f
5
5
  SHA512:
6
- metadata.gz: 020bf68470d6c03575d3205f8bd65e20215e090fcebae9d6b071c0a6b442c6229fac9e38b6c7ba7eaea5c4efcbd2750eb42f0ee730431ea36498daa443890cb7
7
- data.tar.gz: 03e30f3ac3c63154ffad67eeb159bd299ab35a4b379052bdf2c7f4c222f097b1f28ea75111c8c32f5411fa02690df0edee13a21961d70929adf2b18650e93d43
6
+ metadata.gz: a330627fa3362c495ec824a2d64509d2fa79c25a2ba98c5caba0da37f5cdda3bcc0a6d5453689940e40c92b54506282bccbbaa0b7235c9d1eaac08a269ae6529
7
+ data.tar.gz: d5e904ffa2dd08932f3eeb719b626a02384b3876aa94629fd84cd87da1abb26a0853a7f64601f6bf40199d20dfba2c120878b681a431be2ae6bc89b4310a9c9d
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Multiwoven
4
4
  module Integrations
5
- VERSION = "0.1.8"
5
+ VERSION = "0.1.9"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -5,21 +5,35 @@
5
5
  "$schema": "http://json-schema.org/draft-07/schema#",
6
6
  "title": "Redshift Source Spec",
7
7
  "type": "object",
8
- "required": ["username", "password", "host", "port", "database", "schema"],
8
+ "required": ["host", "port", "database", "schema"],
9
9
  "properties": {
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
10
+ "credentials": {
11
+ "title": "Authorization Method",
12
+ "type": "object",
13
+ "required": ["auth_type", "username", "password"],
14
+ "properties": {
15
+ "auth_type": {
16
+ "type": "string",
17
+ "default": "username/password",
18
+ "order": 0,
19
+ "readOnly": true
20
+ },
21
+ "username": {
22
+ "description": "The username for Redshift database access.",
23
+ "examples": ["REDSHIFT_USER"],
24
+ "type": "string",
25
+ "title": "Username",
26
+ "order": 1
27
+ },
28
+ "password": {
29
+ "description": "The password for the Redshift user.",
30
+ "type": "string",
31
+ "multiwoven_secret": true,
32
+ "title": "Password",
33
+ "order": 2
34
+ }
35
+ },
36
+ "order": 0
23
37
  },
24
38
  "host": {
25
39
  "description": "The host endpoint of the Redshift cluster.",
@@ -28,28 +42,28 @@
28
42
  ],
29
43
  "type": "string",
30
44
  "title": "Host",
31
- "order": 3
45
+ "order": 1
32
46
  },
33
47
  "port": {
34
48
  "description": "The port on which Redshift is running (default is 5439).",
35
49
  "examples": ["5439"],
36
50
  "type": "string",
37
51
  "title": "Port",
38
- "order": 4
52
+ "order": 2
39
53
  },
40
54
  "database": {
41
55
  "description": "The specific Redshift database to connect to.",
42
56
  "examples": ["REDSHIFT_DB"],
43
57
  "type": "string",
44
58
  "title": "Database",
45
- "order": 5
59
+ "order": 3
46
60
  },
47
61
  "schema": {
48
62
  "description": "The schema within the Redshift database.",
49
63
  "examples": ["REDSHIFT_SCHEMA"],
50
64
  "type": "string",
51
65
  "title": "Schema",
52
- "order": 6
66
+ "order": 4
53
67
  }
54
68
  }
55
69
  }
@@ -5,28 +5,35 @@
5
5
  "$schema": "http://json-schema.org/draft-07/schema#",
6
6
  "title": "Snowflake Source Spec",
7
7
  "type": "object",
8
- "required": [
9
- "username",
10
- "password",
11
- "host",
12
- "role",
13
- "warehouse",
14
- "database"
15
- ],
8
+ "required": ["host", "role", "warehouse", "database"],
16
9
  "properties": {
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
10
+ "credentials": {
11
+ "title": "Authorization Method",
12
+ "type": "object",
13
+ "required": ["auth_type", "username", "password"],
14
+ "properties": {
15
+ "auth_type": {
16
+ "type": "string",
17
+ "default": "username/password",
18
+ "order": 0,
19
+ "readOnly": true
20
+ },
21
+ "username": {
22
+ "description": "The username for Redshift database access.",
23
+ "examples": ["REDSHIFT_USER"],
24
+ "type": "string",
25
+ "title": "Username",
26
+ "order": 1
27
+ },
28
+ "password": {
29
+ "description": "The password for the Redshift user.",
30
+ "type": "string",
31
+ "multiwoven_secret": true,
32
+ "title": "Password",
33
+ "order": 2
34
+ }
35
+ },
36
+ "order": 0
30
37
  },
31
38
  "host": {
32
39
  "description": "The host domain of the snowflake instance (must include the account, region, cloud environment, and end with snowflakecomputing.com).",
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.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P