Skip to content

Commit

Permalink
Add archived as connector support level (#35355)
Browse files Browse the repository at this point in the history
  • Loading branch information
evantahler authored and xiaohansong committed Feb 27, 2024
1 parent 47d7164 commit a26e8a2
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 5 deletions.
1 change: 1 addition & 0 deletions airbyte-ci/connectors/connector_ops/connector_ops/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,3 +640,4 @@ class ConnectorTypeEnum(str, Enum):
class SupportLevelEnum(str, Enum):
certified = "certified"
community = "community"
archived = "archived"
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ReleaseStage(BaseModel):


class SupportLevel(BaseModel):
__root__: Literal["community", "certified"] = Field(
__root__: Literal["community", "certified", "archived"] = Field(
...,
description="enum that describes a connector's release stage",
title="SupportLevel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ReleaseStage(BaseModel):


class SupportLevel(BaseModel):
__root__: Literal["community", "certified"] = Field(
__root__: Literal["community", "certified", "archived"] = Field(
...,
description="enum that describes a connector's release stage",
title="SupportLevel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ReleaseStage(BaseModel):


class SupportLevel(BaseModel):
__root__: Literal["community", "certified"] = Field(
__root__: Literal["community", "certified", "archived"] = Field(
...,
description="enum that describes a connector's release stage",
title="SupportLevel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ReleaseStage(BaseModel):


class SupportLevel(BaseModel):
__root__: Literal["community", "certified"] = Field(
__root__: Literal["community", "certified", "archived"] = Field(
...,
description="enum that describes a connector's release stage",
title="SupportLevel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class SupportLevel(BaseModel):
__root__: Literal["community", "certified"] = Field(
__root__: Literal["community", "certified", "archived"] = Field(
...,
description="enum that describes a connector's release stage",
title="SupportLevel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ type: string
enum:
- community
- certified
- archived
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
metadataSpecVersion: 1.0
data:
name: AlloyDB for PostgreSQL
definitionId: 1fa90628-2b9e-11ed-a261-0242ac120002
connectorType: source
dockerRepository: airbyte/image-exists-1
githubIssueLabel: source-alloydb-strict-encrypt
dockerImageTag: 0.0.1
documentationUrl: https://docs.airbyte.com/integrations/sources/existingsource
connectorSubtype: database
releaseStage: generally_available
supportLevel: archived
license: MIT
tags:
- language:java

0 comments on commit a26e8a2

Please sign in to comment.