Skip to content

Commit 9205302

Browse files
committed
make codegen
1 parent db0175a commit 9205302

File tree

1 file changed

+10
-0
lines changed
  • experimental/python/databricks/bundles/pipelines/_models

1 file changed

+10
-0
lines changed

experimental/python/databricks/bundles/pipelines/_models/pipeline.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@
5959
class 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":
212217
class 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]

0 commit comments

Comments
 (0)