Skip to content

Commit

Permalink
Update fields in source-connectors specifications: snowflake (airbyte…
Browse files Browse the repository at this point in the history
  • Loading branch information
igrankova authored Jan 11, 2022
1 parent 986eb58 commit 858e185
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "e2d65910-8c8b-40a1-ae7d-ee2416b2bfa2",
"name": "Snowflake",
"dockerRepository": "airbyte/source-snowflake",
"dockerImageTag": "0.1.3",
"dockerImageTag": "0.1.4",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/snowflake",
"icon": "snowflake.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@
- name: Snowflake
sourceDefinitionId: e2d65910-8c8b-40a1-ae7d-ee2416b2bfa2
dockerRepository: airbyte/source-snowflake
dockerImageTag: 0.1.3
dockerImageTag: 0.1.4
documentationUrl: https://docs.airbyte.io/integrations/sources/snowflake
icon: snowflake.svg
sourceType: database
Expand Down
14 changes: 7 additions & 7 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6865,7 +6865,7 @@
- - "client_secret"
oauthFlowOutputParameters:
- - "refresh_token"
- dockerImage: "airbyte/source-snowflake:0.1.3"
- dockerImage: "airbyte/source-snowflake:0.1.4"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/snowflake"
connectionSpecification:
Expand All @@ -6883,12 +6883,12 @@
additionalProperties: false
properties:
host:
description: "Host domain of the snowflake instance (must include the account,\
\ region, cloud environment, and end with snowflakecomputing.com)."
description: "The host domain of the snowflake instance (must include the\
\ account, region, cloud environment, and end with snowflakecomputing.com)."
examples:
- "accountname.us-east-2.aws.snowflakecomputing.com"
type: "string"
title: "Account name"
title: "Account Name"
order: 0
role:
description: "The role you created for Airbyte to access Snowflake."
Expand All @@ -6898,14 +6898,14 @@
title: "Role"
order: 1
warehouse:
description: "The warehouse you created for Airbyte to access data into."
description: "The warehouse you created for Airbyte to access data."
examples:
- "AIRBYTE_WAREHOUSE"
type: "string"
title: "Warehouse"
order: 2
database:
description: "The database you created for Airbyte to access data into."
description: "The database you created for Airbyte to access data."
examples:
- "AIRBYTE_DATABASE"
type: "string"
Expand All @@ -6926,7 +6926,7 @@
title: "Username"
order: 5
password:
description: "Password associated with the username."
description: "The password associated with the username."
type: "string"
airbyte_secret: true
title: "Password"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION source-snowflake

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.name=airbyte/source-snowflake
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"additionalProperties": false,
"properties": {
"host": {
"description": "Host domain of the snowflake instance (must include the account, region, cloud environment, and end with snowflakecomputing.com).",
"description": "The host domain of the snowflake instance (must include the account, region, cloud environment, and end with snowflakecomputing.com).",
"examples": ["accountname.us-east-2.aws.snowflakecomputing.com"],
"type": "string",
"title": "Account name",
"title": "Account Name",
"order": 0
},
"role": {
Expand All @@ -30,14 +30,14 @@
"order": 1
},
"warehouse": {
"description": "The warehouse you created for Airbyte to access data into.",
"description": "The warehouse you created for Airbyte to access data.",
"examples": ["AIRBYTE_WAREHOUSE"],
"type": "string",
"title": "Warehouse",
"order": 2
},
"database": {
"description": "The database you created for Airbyte to access data into.",
"description": "The database you created for Airbyte to access data.",
"examples": ["AIRBYTE_DATABASE"],
"type": "string",
"title": "Database",
Expand All @@ -58,7 +58,7 @@
"order": 5
},
"password": {
"description": "Password associated with the username.",
"description": "The password associated with the username.",
"type": "string",
"airbyte_secret": true,
"title": "Password",
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/snowflake.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Your database user should now be ready for use with Airbyte.

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.4 | 2021-12-30 | [9203](https://github.com/airbytehq/airbyte/pull/9203) | Update connector fields title/description |
| 0.1.3 | 2021-01-11 | [9304](https://github.com/airbytehq/airbyte/pull/9304) | Upgrade version of JDBC driver |
| 0.1.2 | 2021-10-21 | [7257](https://github.com/airbytehq/airbyte/pull/7257) | Fixed parsing of extreme values for FLOAT and NUMBER data types |
| 0.1.1 | 2021-08-13 | [4699](https://github.com/airbytehq/airbyte/pull/4699) | Added json config validator |
Expand Down

0 comments on commit 858e185

Please sign in to comment.