multiwoven-integrations 0.1.7 → 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: ddbec3ce3a78c7a61e8a084fb8f624c1b4db681535cee238aa76f7447eb31307
4
- data.tar.gz: 8d5a68dada611107fa81800c2d51c6fce37a34fe345af59b166fb6b5a2c63e70
3
+ metadata.gz: 963846d1e3ea7df882fc98263163811be9911cd15e86f140956fa7b22b99cbf0
4
+ data.tar.gz: 99143c05e11f7bf71e6a3f120015c249fc509100711764fb1c0fe07518d32d7f
5
5
  SHA512:
6
- metadata.gz: 0a4963af3e38b2236338e8b08b097fc81ffd6dc7f94c82bc212b73b4817fca67fdfd6a9674827bb785c5deeaa52ca8212e66477229c24efe918b151553837403
7
- data.tar.gz: 6249ba5bd2629711e63f246999eb6ac36fa2876ea50932f7b839e471a0a8d21fe8a43875f00d42c05b626fcf81e4e436a34dbcdef1cae0144aead56e134b1679
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.7"
5
+ VERSION = "0.1.9"
6
6
 
7
7
  ENABLED_SOURCES = %w[
8
8
  Snowflake
@@ -10,40 +10,36 @@
10
10
  "credentials": {
11
11
  "title": "Authorization Method",
12
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
- }
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
40
34
  }
41
- ],
35
+ },
42
36
  "order": 0
43
37
  },
44
38
  "host": {
45
39
  "description": "The host endpoint of the Redshift cluster.",
46
- "examples": ["example-redshift-cluster.abcdefg.us-west-2.redshift.amazonaws.com"],
40
+ "examples": [
41
+ "example-redshift-cluster.abcdefg.us-west-2.redshift.amazonaws.com"
42
+ ],
47
43
  "type": "string",
48
44
  "title": "Host",
49
45
  "order": 1
@@ -10,35 +10,29 @@
10
10
  "credentials": {
11
11
  "title": "Authorization Method",
12
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
- }
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
40
34
  }
41
- ],
35
+ },
42
36
  "order": 0
43
37
  },
44
38
  "host": {
@@ -84,4 +78,4 @@
84
78
  }
85
79
  }
86
80
  }
87
- }
81
+ }
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.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subin T P