File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
experimental/python/databricks/bundles/pipelines/_models Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 5959class Pipeline (Resource ):
6060 """"""
6161
62+ allow_duplicate_names : VariableOrOptional [bool ] = None
63+ """
64+ If false, deployment will fail if name conflicts with that of another pipeline.
65+ """
66+
6267 budget_policy_id : VariableOrOptional [str ] = None
6368 """
6469 :meta private: [EXPERIMENTAL]
@@ -212,6 +217,11 @@ def as_dict(self) -> "PipelineDict":
212217class PipelineDict (TypedDict , total = False ):
213218 """"""
214219
220+ allow_duplicate_names : VariableOrOptional [bool ]
221+ """
222+ If false, deployment will fail if name conflicts with that of another pipeline.
223+ """
224+
215225 budget_policy_id : VariableOrOptional [str ]
216226 """
217227 :meta private: [EXPERIMENTAL]
You can’t perform that action at this time.
0 commit comments