You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ActorDefinitionResourceRequirements.py
+3-14
Original file line number
Diff line number
Diff line change
@@ -20,18 +20,8 @@ class Config:
20
20
21
21
22
22
classJobType(BaseModel):
23
-
__root__: Literal[
24
-
"get_spec",
25
-
"check_connection",
26
-
"discover_schema",
27
-
"sync",
28
-
"reset_connection",
29
-
"connection_updater",
30
-
"replicate",
31
-
] =Field(
32
-
...,
33
-
description="enum that describes the different types of jobs that the platform runs.",
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ConnectorMetadataDefinitionV0.py
description="enum that describes a connector's release stage",
33
-
title="SupportLevel",
29
+
..., description="enum that describes a connector's release stage", title="SupportLevel"
34
30
)
35
31
36
32
@@ -52,13 +48,9 @@ class Config:
52
48
...,
53
49
description="a field indicating the name of the repository to be used for normalization. If the value of the flag is NULL - normalization is not used.",
54
50
)
55
-
normalizationTag: str=Field(
56
-
...,
57
-
description="a field indicating the tag of the docker repository to be used for normalization.",
58
-
)
51
+
normalizationTag: str=Field(..., description="a field indicating the tag of the docker repository to be used for normalization.")
59
52
normalizationIntegrationType: str=Field(
60
-
...,
61
-
description="a field indicating the type of integration dialect to use for normalization.",
53
+
..., description="a field indicating the type of integration dialect to use for normalization."
62
54
)
63
55
64
56
@@ -83,18 +75,8 @@ class Config:
83
75
84
76
85
77
classJobType(BaseModel):
86
-
__root__: Literal[
87
-
"get_spec",
88
-
"check_connection",
89
-
"discover_schema",
90
-
"sync",
91
-
"reset_connection",
92
-
"connection_updater",
93
-
"replicate",
94
-
] =Field(
95
-
...,
96
-
description="enum that describes the different types of jobs that the platform runs.",
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ConnectorRegistryDestinationDefinition.py
Field(..., description="enum that describes the different types of jobs that the platform runs.", title="JobType")
53
39
)
54
40
55
41
@@ -61,13 +47,9 @@ class Config:
61
47
...,
62
48
description="a field indicating the name of the repository to be used for normalization. If the value of the flag is NULL - normalization is not used.",
63
49
)
64
-
normalizationTag: str=Field(
65
-
...,
66
-
description="a field indicating the tag of the docker repository to be used for normalization.",
67
-
)
50
+
normalizationTag: str=Field(..., description="a field indicating the tag of the docker repository to be used for normalization.")
68
51
normalizationIntegrationType: str=Field(
69
-
...,
70
-
description="a field indicating the type of integration dialect to use for normalization.",
52
+
..., description="a field indicating the type of integration dialect to use for normalization."
71
53
)
72
54
73
55
@@ -86,11 +68,7 @@ class Config:
86
68
extra=Extra.forbid
87
69
88
70
scopeType: Any=Field("stream", const=True)
89
-
impactedScopes: List[str] =Field(
90
-
...,
91
-
description="List of streams that are impacted by the breaking change.",
92
-
min_items=1,
93
-
)
71
+
impactedScopes: List[str] =Field(..., description="List of streams that are impacted by the breaking change.", min_items=1)
94
72
95
73
96
74
classAirbyteInternal(BaseModel):
@@ -110,19 +88,15 @@ class Config:
110
88
111
89
112
90
classBreakingChangeScope(BaseModel):
113
-
__root__: StreamBreakingChangeScope=Field(
114
-
...,
115
-
description="A scope that can be used to limit the impact of a breaking change.",
116
-
)
91
+
__root__: StreamBreakingChangeScope=Field(..., description="A scope that can be used to limit the impact of a breaking change.")
0 commit comments