Skip to content

octavia-cli: enable transformations #12727

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion airbyte-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,3 @@ sourceSets {
}
}
}

2 changes: 2 additions & 0 deletions airbyte-api/src/main/openapi/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2615,6 +2615,7 @@ components:
enum: ["oauth2.0"] # Future auth types should be added here
oauth2Specification:
"$ref": "#/components/schemas/OAuth2Specification"
nullable: true
OAuth2Specification:
description: An object containing any metadata needed to describe this connector's Oauth flow
type: object
Expand Down Expand Up @@ -3750,6 +3751,7 @@ components:
- failed
- succeeded
- cancelled
nullable: true
AttemptRead:
type: object
required:
Expand Down
9 changes: 5 additions & 4 deletions octavia-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,10 @@ $ octavia generate destination 25c5221d-dce2-4163-ade9-739ef790f503 my_db
Generate a YAML configuration for a connection.
The YAML file will be stored at `./connections/<connection_name>/configuration.yaml`.

| **Option** | **Required** | **Description** |
|-----------------|--------------|--------------------------------------------------------------------------------------------|
| `--source` | Yes | Path to the YAML configuration file of the source you want to create a connection from. |
| `--destination` | Yes | Path to the YAML configuration file of the destination you want to create a connection to. |
| **Option** | **Required** | **Description** |
|-------------------|--------------|--------------------------------------------------------------------------------------------|
| `--source` | Yes | Path to the YAML configuration file of the source you want to create a connection from. |
| `--destination` | Yes | Path to the YAML configuration file of the destination you want to create a connection to. |

| **Argument** | **Description** |
|-------------------|----------------------------------------------------------|
Expand Down Expand Up @@ -364,6 +364,7 @@ You can disable telemetry by setting the `OCTAVIA_ENABLE_TELEMETRY` environment

| Version | Date | Description | PR |
|---------|------------|-------------------------------------|----------------------------------------------------------|
| 0.38.5 | 2022-05-12 | Enable normalization on connection | [#12727](https://github.com/airbytehq/airbyte/pull/12727)|
| 0.36.11 | 2022-05-05 | Use snake case in connection fields | [#12133](https://github.com/airbytehq/airbyte/pull/12133)|
| 0.36.2 | 2022-04-15 | Improve telemetry | [#12072](https://github.com/airbytehq/airbyte/issues/11896)|
| 0.35.68 | 2022-04-12 | Add telemetry | [#11896](https://github.com/airbytehq/airbyte/issues/11896)|
Expand Down
Loading