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: experimental/python/databricks/bundles/pipelines/_models/pipeline.py
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,11 @@ class Pipeline(Resource):
173
173
DBFS root directory for storing checkpoints and tables.
174
174
"""
175
175
176
+
target: VariableOrOptional[str] =None
177
+
"""
178
+
Target schema (database) to add tables in this pipeline to. Exactly one of `schema` or `target` must be specified. To publish to Unity Catalog, also specify `catalog`. This legacy field is deprecated for pipeline creation in favor of the `schema` field.
@@ -302,5 +307,10 @@ class PipelineDict(TypedDict, total=False):
302
307
DBFS root directory for storing checkpoints and tables.
303
308
"""
304
309
310
+
target: VariableOrOptional[str]
311
+
"""
312
+
Target schema (database) to add tables in this pipeline to. Exactly one of `schema` or `target` must be specified. To publish to Unity Catalog, also specify `catalog`. This legacy field is deprecated for pipeline creation in favor of the `schema` field.
0 commit comments