Skip to content

feat(airbyte-ci): supports data activation flag in metadata service #59746

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 2 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ class Config:
supportsRefreshes: Optional[bool] = False
generated: Optional[GeneratedFields] = None
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False


class ConnectorMetadataDefinitionV0(BaseModel):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ class Config:
ab_internal: Optional[AirbyteInternal] = None
supportsRefreshes: Optional[bool] = False
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False
generated: Optional[GeneratedFields] = None
packageInfo: Optional[ConnectorPackageInfo] = None
language: Optional[str] = Field(
Expand Down Expand Up @@ -397,6 +398,7 @@ class Config:
None, description="The language the connector is written in"
)
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False


ConnectorRegistryDestinationDefinition.update_forward_refs()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ class Config:
None, description="The language the connector is written in"
)
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False


class ConnectorRegistryDestinationDefinition(BaseModel):
Expand Down Expand Up @@ -392,6 +393,7 @@ class Config:
ab_internal: Optional[AirbyteInternal] = None
supportsRefreshes: Optional[bool] = False
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False
generated: Optional[GeneratedFields] = None
packageInfo: Optional[ConnectorPackageInfo] = None
language: Optional[str] = Field(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ class Config:
None, description="The language the connector is written in"
)
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False


class ConnectorRegistryReleases(BaseModel):
Expand Down Expand Up @@ -392,6 +393,7 @@ class Config:
ab_internal: Optional[AirbyteInternal] = None
supportsRefreshes: Optional[bool] = False
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False
generated: Optional[GeneratedFields] = None
packageInfo: Optional[ConnectorPackageInfo] = None
language: Optional[str] = Field(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ class Config:
ab_internal: Optional[AirbyteInternal] = None
supportsRefreshes: Optional[bool] = False
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False
generated: Optional[GeneratedFields] = None
packageInfo: Optional[ConnectorPackageInfo] = None
language: Optional[str] = Field(
Expand Down Expand Up @@ -402,6 +403,7 @@ class Config:
None, description="The language the connector is written in"
)
supportsFileTransfer: Optional[bool] = False
supportsDataActivation: Optional[bool] = False


ConnectorRegistryV0.update_forward_refs()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,6 @@ properties:
supportsFileTransfer:
type: boolean
default: false
supportsDataActivation:
type: boolean
default: false
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ properties:
supportsFileTransfer:
type: boolean
default: false
supportsDataActivation:
type: boolean
default: false
generated:
"$ref": GeneratedFields.yaml
packageInfo:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,6 @@ properties:
supportsFileTransfer:
type: boolean
default: false
supportsDataActivation:
type: boolean
default: false
Loading
Loading