Add archived as connector support level (#35355)
This commit is contained in:
@@ -640,3 +640,4 @@ class ConnectorTypeEnum(str, Enum):
|
||||
class SupportLevelEnum(str, Enum):
|
||||
certified = "certified"
|
||||
community = "community"
|
||||
archived = "archived"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -8,7 +8,7 @@ from typing_extensions import Literal
|
||||
|
||||
|
||||
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",
|
||||
|
||||
@@ -7,3 +7,4 @@ type: string
|
||||
enum:
|
||||
- community
|
||||
- certified
|
||||
- archived
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user