Skip to content

Commit 8bde528

Browse files
igrankovamidavadim
andauthored
🎉 destination oracle - update fields in specifications (#9177)
* Files title/description update for issue # 8951 * Version update for issue # 8951 * Changelogs update for PR #9177 * updated oracle spec in destination_specs.yaml Co-authored-by: Vadym Ratniuk <[email protected]>
1 parent af38f95 commit 8bde528

File tree

6 files changed

+36
-34
lines changed

6 files changed

+36
-34
lines changed

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/3986776d-2319-4de9-8af8-db14c0996e72.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"destinationDefinitionId": "3986776d-2319-4de9-8af8-db14c0996e72",
33
"name": "Oracle (Alpha)",
44
"dockerRepository": "airbyte/destination-oracle",
5-
"dockerImageTag": "0.1.11",
5+
"dockerImageTag": "0.1.13",
66
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/oracle",
77
"icon": "oracle.svg"
88
}

airbyte-config/init/src/main/resources/seed/destination_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
- name: Oracle
127127
destinationDefinitionId: 3986776d-2319-4de9-8af8-db14c0996e72
128128
dockerRepository: airbyte/destination-oracle
129-
dockerImageTag: 0.1.12
129+
dockerImageTag: 0.1.13
130130
documentationUrl: https://docs.airbyte.io/integrations/destinations/oracle
131131
icon: oracle.svg
132132
- name: Postgres

airbyte-config/init/src/main/resources/seed/destination_specs.yaml

+20-19
Original file line numberDiff line numberDiff line change
@@ -2591,7 +2591,7 @@
25912591
supported_destination_sync_modes:
25922592
- "overwrite"
25932593
- "append"
2594-
- dockerImage: "airbyte/destination-oracle:0.1.12"
2594+
- dockerImage: "airbyte/destination-oracle:0.1.13"
25952595
spec:
25962596
documentationUrl: "https://docs.airbyte.io/integrations/destinations/oracle"
25972597
connectionSpecification:
@@ -2607,12 +2607,12 @@
26072607
properties:
26082608
host:
26092609
title: "Host"
2610-
description: "Hostname of the database."
2610+
description: "The hostname of the database."
26112611
type: "string"
26122612
order: 0
26132613
port:
26142614
title: "Port"
2615-
description: "Port of the database."
2615+
description: "The port of the database."
26162616
type: "integer"
26172617
minimum: 0
26182618
maximum: 65536
@@ -2622,28 +2622,29 @@
26222622
order: 1
26232623
sid:
26242624
title: "SID"
2625-
description: "SID"
2625+
description: "The System Identifier uniquely distinguishes the instance\
2626+
\ from any other instance on the same computer."
26262627
type: "string"
26272628
order: 2
26282629
username:
26292630
title: "User"
2630-
description: "Username to use to access the database. This user must have\
2631-
\ CREATE USER privileges in the database."
2631+
description: "The username to access the database. This user must have CREATE\
2632+
\ USER privileges in the database."
26322633
type: "string"
26332634
order: 3
26342635
password:
26352636
title: "Password"
2636-
description: "Password associated with the username."
2637+
description: "The password associated with the username."
26372638
type: "string"
26382639
airbyte_secret: true
26392640
order: 4
26402641
schema:
26412642
title: "Default Schema"
2642-
description: "The default schema tables are written to if the source does\
2643-
\ not specify a namespace. The usual value for this field is \"airbyte\"\
2644-
. In Oracle, schemas and users are the same thing, so the \"user\" parameter\
2645-
\ is used as the login credentials and this is used for the default Airbyte\
2646-
\ message schema."
2643+
description: "The default schema is used as the target schema for all statements\
2644+
\ issued from the connection that do not explicitly specify a schema name.\
2645+
\ The usual value for this field is \"airbyte\". In Oracle, schemas and\
2646+
\ users are the same thing, so the \"user\" parameter is used as the login\
2647+
\ credentials and this is used for the default Airbyte message schema."
26472648
type: "string"
26482649
examples:
26492650
- "airbyte"
@@ -2652,7 +2653,8 @@
26522653
encryption:
26532654
title: "Encryption"
26542655
type: "object"
2655-
description: "Encryption method to use when communicating with the database"
2656+
description: "The encryption method which is used when communicating with\
2657+
\ the database."
26562658
order: 6
26572659
oneOf:
26582660
- title: "Unencrypted"
@@ -2667,9 +2669,9 @@
26672669
enum:
26682670
- "unencrypted"
26692671
default: "unencrypted"
2670-
- title: "Native Network Ecryption (NNE)"
2672+
- title: "Native Network Encryption (NNE)"
26712673
additionalProperties: false
2672-
description: "Native network encryption gives you the ability to encrypt\
2674+
description: "The native network encryption gives you the ability to encrypt\
26732675
\ database connections, without the configuration overhead of TCP/IP\
26742676
\ and SSL/TLS and without the need to open and listen on different ports."
26752677
required:
@@ -2683,8 +2685,7 @@
26832685
default: "client_nne"
26842686
encryption_algorithm:
26852687
type: "string"
2686-
description: "This parameter defines the encryption algorithm to be\
2687-
\ used"
2688+
description: "This parameter defines the database encryption algorithm."
26882689
title: "Encryption Algorithm"
26892690
default: "AES256"
26902691
enum:
@@ -2693,7 +2694,7 @@
26932694
- "3DES168"
26942695
- title: "TLS Encrypted (verify certificate)"
26952696
additionalProperties: false
2696-
description: "Verify and use the cert provided by the server."
2697+
description: "Verify and use the certificate provided by the server."
26972698
required:
26982699
- "encryption_method"
26992700
- "ssl_certificate"
@@ -2707,7 +2708,7 @@
27072708
ssl_certificate:
27082709
title: "SSL PEM file"
27092710
description: "Privacy Enhanced Mail (PEM) files are concatenated certificate\
2710-
\ containers frequently used in certificate installations"
2711+
\ containers frequently used in certificate installations."
27112712
type: "string"
27122713
airbyte_secret: true
27132714
multiline: true

airbyte-integrations/connectors/destination-oracle/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-oracle
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.1.12
19+
LABEL io.airbyte.version=0.1.13
2020
LABEL io.airbyte.name=airbyte/destination-oracle

airbyte-integrations/connectors/destination-oracle/src/main/resources/spec.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"properties": {
1414
"host": {
1515
"title": "Host",
16-
"description": "Hostname of the database.",
16+
"description": "The hostname of the database.",
1717
"type": "string",
1818
"order": 0
1919
},
2020
"port": {
2121
"title": "Port",
22-
"description": "Port of the database.",
22+
"description": "The port of the database.",
2323
"type": "integer",
2424
"minimum": 0,
2525
"maximum": 65536,
@@ -29,26 +29,26 @@
2929
},
3030
"sid": {
3131
"title": "SID",
32-
"description": "SID",
32+
"description": "The System Identifier uniquely distinguishes the instance from any other instance on the same computer.",
3333
"type": "string",
3434
"order": 2
3535
},
3636
"username": {
3737
"title": "User",
38-
"description": "Username to use to access the database. This user must have CREATE USER privileges in the database.",
38+
"description": "The username to access the database. This user must have CREATE USER privileges in the database.",
3939
"type": "string",
4040
"order": 3
4141
},
4242
"password": {
4343
"title": "Password",
44-
"description": "Password associated with the username.",
44+
"description": "The password associated with the username.",
4545
"type": "string",
4646
"airbyte_secret": true,
4747
"order": 4
4848
},
4949
"schema": {
5050
"title": "Default Schema",
51-
"description": "The default schema tables are written to if the source does not specify a namespace. The usual value for this field is \"airbyte\". In Oracle, schemas and users are the same thing, so the \"user\" parameter is used as the login credentials and this is used for the default Airbyte message schema.",
51+
"description": "The default schema is used as the target schema for all statements issued from the connection that do not explicitly specify a schema name. The usual value for this field is \"airbyte\". In Oracle, schemas and users are the same thing, so the \"user\" parameter is used as the login credentials and this is used for the default Airbyte message schema.",
5252
"type": "string",
5353
"examples": ["airbyte"],
5454
"default": "airbyte",
@@ -57,7 +57,7 @@
5757
"encryption": {
5858
"title": "Encryption",
5959
"type": "object",
60-
"description": "Encryption method to use when communicating with the database",
60+
"description": "The encryption method which is used when communicating with the database.",
6161
"order": 6,
6262
"oneOf": [
6363
{
@@ -75,9 +75,9 @@
7575
}
7676
},
7777
{
78-
"title": "Native Network Ecryption (NNE)",
78+
"title": "Native Network Encryption (NNE)",
7979
"additionalProperties": false,
80-
"description": "Native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.",
80+
"description": "The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.",
8181
"required": ["encryption_method"],
8282
"properties": {
8383
"encryption_method": {
@@ -88,7 +88,7 @@
8888
},
8989
"encryption_algorithm": {
9090
"type": "string",
91-
"description": "This parameter defines the encryption algorithm to be used",
91+
"description": "This parameter defines the database encryption algorithm.",
9292
"title": "Encryption Algorithm",
9393
"default": "AES256",
9494
"enum": ["AES256", "RC4_56", "3DES168"]
@@ -98,7 +98,7 @@
9898
{
9999
"title": "TLS Encrypted (verify certificate)",
100100
"additionalProperties": false,
101-
"description": "Verify and use the cert provided by the server.",
101+
"description": "Verify and use the certificate provided by the server.",
102102
"required": ["encryption_method", "ssl_certificate"],
103103
"properties": {
104104
"encryption_method": {
@@ -109,7 +109,7 @@
109109
},
110110
"ssl_certificate": {
111111
"title": "SSL PEM file",
112-
"description": "Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations",
112+
"description": "Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.",
113113
"type": "string",
114114
"airbyte_secret": true,
115115
"multiline": true

docs/integrations/destinations/oracle.md

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ Airbite has the ability to connect to the Oracle source with 3 network connectiv
113113

114114
| Version | Date | Pull Request | Subject |
115115
| :--- | :--- | :--- | :--- |
116+
| 0.1.13 | 2021-12-29 | [\#9177](https://github.com/airbytehq/airbyte/pull/9177) | Update connector fields title/description |
116117
| 0.1.12 | 2021-11-08 | [#7719](https://github.com/airbytehq/airbyte/pull/7719) | Improve handling of wide rows by buffering records based on their byte size rather than their count |
117118
| 0.1.10 | 2021-10-08 | [\#6893](https://github.com/airbytehq/airbyte/pull/6893)| 🎉 Destination Oracle: implemented connection encryption |
118119
| 0.1.9 | 2021-10-06 | [\#6611](https://github.com/airbytehq/airbyte/pull/6611) | 🐛 Destination Oracle: maxStringLength should be 128 |

0 commit comments

Comments
 (0)