Skip to content

Commit fd09304

Browse files
auto-bump connector version
1 parent 8aaf084 commit fd09304

File tree

2 files changed

+53
-2
lines changed

2 files changed

+53
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226
- name: Snowflake
227227
destinationDefinitionId: 424892c4-daac-4491-b35d-c6688ba547ba
228228
dockerRepository: airbyte/destination-snowflake
229-
dockerImageTag: 0.4.24
229+
dockerImageTag: 0.4.25
230230
documentationUrl: https://docs.airbyte.io/integrations/destinations/snowflake
231231
icon: snowflake.svg
232232
resourceRequirements:

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

+52-1
Original file line numberDiff line numberDiff line change
@@ -4076,7 +4076,7 @@
40764076
supported_destination_sync_modes:
40774077
- "overwrite"
40784078
- "append"
4079-
- dockerImage: "airbyte/destination-snowflake:0.4.24"
4079+
- dockerImage: "airbyte/destination-snowflake:0.4.25"
40804080
spec:
40814081
documentationUrl: "https://docs.airbyte.io/integrations/destinations/snowflake"
40824082
connectionSpecification:
@@ -4143,6 +4143,7 @@
41434143
order: 5
41444144
credentials:
41454145
title: "Authorization Method"
4146+
description: ""
41464147
type: "object"
41474148
oneOf:
41484149
- type: "object"
@@ -4212,6 +4213,8 @@
42124213
- "method"
42134214
properties:
42144215
method:
4216+
title: ""
4217+
description: ""
42154218
type: "string"
42164219
enum:
42174220
- "Standard"
@@ -4225,6 +4228,8 @@
42254228
- "method"
42264229
properties:
42274230
method:
4231+
title: ""
4232+
description: ""
42284233
type: "string"
42294234
enum:
42304235
- "Internal Staging"
@@ -4241,6 +4246,8 @@
42414246
- "secret_access_key"
42424247
properties:
42434248
method:
4249+
title: ""
4250+
description: ""
42444251
type: "string"
42454252
enum:
42464253
- "S3 Staging"
@@ -4324,6 +4331,46 @@
43244331
\ to true."
43254332
default: true
43264333
order: 6
4334+
encryption:
4335+
title: "Encryption"
4336+
type: "object"
4337+
description: "How to encrypt the staging data"
4338+
default:
4339+
encryption_type: "none"
4340+
order: 7
4341+
oneOf:
4342+
- title: "No encryption"
4343+
description: "Staging data will be stored in plaintext."
4344+
type: "object"
4345+
required:
4346+
- "encryption_type"
4347+
properties:
4348+
encryption_type:
4349+
type: "string"
4350+
const: "none"
4351+
enum:
4352+
- "none"
4353+
default: "none"
4354+
- title: "AES-CBC envelope encryption"
4355+
description: "Staging data will be encrypted using AES-CBC envelope\
4356+
\ encryption."
4357+
type: "object"
4358+
required:
4359+
- "encryption_type"
4360+
properties:
4361+
encryption_type:
4362+
type: "string"
4363+
const: "aes_cbc_envelope"
4364+
enum:
4365+
- "aes_cbc_envelope"
4366+
default: "aes_cbc_envelope"
4367+
key_encrypting_key:
4368+
type: "string"
4369+
title: "Key"
4370+
description: "The key, base64-encoded. Must be either 128, 192,\
4371+
\ or 256 bits. Leave blank to have Airbyte generate an ephemeral\
4372+
\ key for each sync."
4373+
airbyte_secret: true
43274374
- title: "GCS Staging"
43284375
additionalProperties: false
43294376
description: "Writes large batches of records to a file, uploads the file\
@@ -4336,6 +4383,8 @@
43364383
- "credentials_json"
43374384
properties:
43384385
method:
4386+
title: ""
4387+
description: ""
43394388
type: "string"
43404389
enum:
43414390
- "GCS Staging"
@@ -4382,6 +4431,8 @@
43824431
- "azure_blob_storage_sas_token"
43834432
properties:
43844433
method:
4434+
title: ""
4435+
description: ""
43854436
type: "string"
43864437
enum:
43874438
- "Azure Blob Staging"

0 commit comments

Comments
 (0)