-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: Improve docs around
0.10.x
features (#190)
- Loading branch information
1 parent
ff38fbf
commit 77497c5
Showing
12 changed files
with
171 additions
and
79 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
"""Useful constants for working with Airbyte Cloud features in PyAirbyte.""" | ||
|
||
from __future__ import annotations | ||
|
||
from airbyte._util.api_imports import JobStatusEnum | ||
|
||
|
||
FINAL_STATUSES: set[JobStatusEnum] = { | ||
JobStatusEnum.SUCCEEDED, | ||
JobStatusEnum.FAILED, | ||
JobStatusEnum.CANCELLED, | ||
} | ||
"""The set of `.JobStatusEnum` strings that indicate a sync job has completed.""" | ||
|
||
FAILED_STATUSES: set[JobStatusEnum] = { | ||
JobStatusEnum.FAILED, | ||
JobStatusEnum.CANCELLED, | ||
} | ||
"""The set of `.JobStatusEnum` strings that indicate a sync job has failed.""" | ||
|
||
READABLE_DESTINATION_TYPES: set[str] = { | ||
"bigquery", | ||
"snowflake", | ||
} | ||
"""List of Airbyte Cloud destinations that PyAirbyte is able to read from.""" |
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
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