-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
airbyte-ci: add connectionOptions to metadata.yaml, for use by live t…
…ests (#42860)
- Loading branch information
Showing
7 changed files
with
67 additions
and
3 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
14 changes: 14 additions & 0 deletions
14
...e-ci/connectors/metadata_service/lib/metadata_service/models/generated/TestConnections.py
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,14 @@ | ||
# generated by datamodel-codegen: | ||
# filename: TestConnections.yaml | ||
|
||
from __future__ import annotations | ||
|
||
from pydantic import BaseModel, Extra, Field | ||
|
||
|
||
class TestConnections(BaseModel): | ||
class Config: | ||
extra = Extra.forbid | ||
|
||
name: str = Field(..., description="The connection name") | ||
id: str = Field(..., description="The connection ID") |
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
17 changes: 17 additions & 0 deletions
17
airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/TestConnections.yaml
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,17 @@ | ||
--- | ||
"$schema": http://json-schema.org/draft-07/schema# | ||
"$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/TestConnections.yaml | ||
title: TestConnections | ||
description: List of sandbox cloud connections that tests can be run against | ||
type: object | ||
required: | ||
- name | ||
- id | ||
additionalProperties: false | ||
properties: | ||
name: | ||
type: string | ||
description: "The connection name" | ||
id: | ||
type: string | ||
description: "The connection ID" |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "metadata-service" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "" | ||
authors = ["Ben Church <[email protected]>"] | ||
readme = "README.md" | ||
|