-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Source Gilab: Deployments Streams (#31183)
Co-authored-by: samwinder <[email protected]> Co-authored-by: Ben Shaw <[email protected]> Co-authored-by: Ben Shaw <[email protected]> Co-authored-by: darynaishchenko <[email protected]>
- Loading branch information
1 parent
33c683b
commit 9034271
Showing
11 changed files
with
198 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 39 additions & 41 deletions
80
airbyte-integrations/connectors/source-gitlab/integration_tests/expected_records.jsonl
Large diffs are not rendered by default.
Oops, something went wrong.
51 changes: 26 additions & 25 deletions
51
...e-integrations/connectors/source-gitlab/integration_tests/expected_records_with_ids.jsonl
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/deployments.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"status": { | ||
"type": ["null", "string"] | ||
}, | ||
"ref": { | ||
"type": ["null", "string"] | ||
}, | ||
"sha": { | ||
"type": ["null", "string"] | ||
}, | ||
"environment_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"created_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"updated_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"user": { | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"user_full_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"user_username": { | ||
"type": ["null", "string"] | ||
}, | ||
"user_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"environment": { | ||
"type": ["null", "object"], | ||
"additionalProperties": true | ||
}, | ||
"environment_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"project_id": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters