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/ConnectorMetadataDefinitionV0.py
+29-2
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
from __future__ importannotations
5
5
6
-
fromdatetimeimportdate
6
+
fromdatetimeimportdate, datetime
7
7
fromtypingimportAny, Dict, List, Optional
8
8
fromuuidimportUUID
9
9
@@ -104,6 +104,28 @@ class Config:
104
104
packageName: str=Field(..., description="The name of the package on PyPi.")
105
105
106
106
107
+
classGitInfo(BaseModel):
108
+
classConfig:
109
+
extra=Extra.forbid
110
+
111
+
commit_sha: Optional[str] =Field(
112
+
None,
113
+
description="The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
114
+
)
115
+
commit_timestamp: Optional[datetime] =Field(
116
+
None,
117
+
description="The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
118
+
)
119
+
commit_author: Optional[str] =Field(
120
+
None,
121
+
description="The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
122
+
)
123
+
commit_author_email: Optional[str] =Field(
124
+
None,
125
+
description="The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
Copy file name to clipboardExpand all lines: airbyte-ci/connectors/metadata_service/lib/metadata_service/models/generated/ConnectorRegistryDestinationDefinition.py
description="The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
19
+
)
20
+
commit_timestamp: Optional[datetime] =Field(
21
+
None,
22
+
description="The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
23
+
)
24
+
commit_author: Optional[str] =Field(
25
+
None,
26
+
description="The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
27
+
)
28
+
commit_author_email: Optional[str] =Field(
29
+
None,
30
+
description="The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
description="The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
19
+
)
20
+
commit_timestamp: Optional[datetime] =Field(
21
+
None,
22
+
description="The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
23
+
)
24
+
commit_author: Optional[str] =Field(
25
+
None,
26
+
description="The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
27
+
)
28
+
commit_author_email: Optional[str] =Field(
29
+
None,
30
+
description="The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.",
description: Information about the author of the last commit that modified this file
6
+
type: object
7
+
additionalProperties: false
8
+
properties:
9
+
commit_sha:
10
+
type: string
11
+
description: The git commit sha of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
12
+
commit_timestamp:
13
+
type: string
14
+
format: date-time
15
+
description: The git commit timestamp of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
16
+
commit_author:
17
+
type: string
18
+
description: The git commit author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
19
+
commit_author_email:
20
+
type: string
21
+
description: The git commit author email of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
0 commit comments