Skip to content

Commit

Permalink
fix: add jenkins and streamr to specs (#9998)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmullapudi committed Feb 2, 2022
1 parent f4365c5 commit 913db2e
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
27 changes: 27 additions & 0 deletions airbyte-config/init/src/main/resources/seed/destination_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4194,3 +4194,30 @@
supported_destination_sync_modes:
- "overwrite"
- "append"
- dockerImage: "ghcr.io/devmate-cloud/streamr-airbyte-connectors:0.0.1"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/streamr"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Destination Streamr"
type: "object"
required:
- "privateKey"
- "streamId"
additionalProperties: false
properties:
privateKey:
type: "string"
description: "You private key on Streamr"
airbyte_secret: true
streamId:
type: "string"
description: "Your full Stream ID"
examples:
- "0x0d0102474519cd2fc1b3e3f962a87e39cbcbead2/test-streamr"
supportsIncremental: true
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes:
- "append"
- "append_dedup"
46 changes: 46 additions & 0 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3336,6 +3336,52 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "farosai/airbyte-jenkins-source:0.1.23"
spec:
documentationUrl: "https://docs.faros.ai"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Jenkins Spec"
type: "object"
required:
- "server_url"
- "user"
- "token"
additionalProperties: false
properties:
server_url:
type: "string"
title: "Jenkins Server URL"
examples:
- "https://my-jenkins-server.example.com"
user:
type: "string"
description: "Jenkins User"
token:
type: "string"
title: "Jenkins Token"
airbyte_secret: true
depth:
type: "number"
title: "Depth"
description: "Jenkins JSON API does not support deep scan, it is required\
\ to generate a suitable tree for the corresponding depth. Job in some\
\ cases have many sub jobs, depth needs to quantify how many sub jobs\
\ are showed. If depth is not provided we will try to compute it automatically"
pageSize:
type: "integer"
minimum: 1
default: 10
title: "Page Size"
description: "Quantity of jobs on a single page fetched from Jenkins"
last100Builds:
type: "boolean"
default: false
title: "Last 100 Builds Only"
description: "Fetch only 100 last builds from Jenkins server"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-jira:0.2.18"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/jira"
Expand Down

0 comments on commit 913db2e

Please sign in to comment.