Skip to content

Commit 9118ceb

Browse files
committed
regenerate python
1 parent db34f10 commit 9118ceb

File tree

8 files changed

+48
-0
lines changed

8 files changed

+48
-0
lines changed

experimental/python/databricks/bundles/jobs/_models/job.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ class Job(Resource):
118118
"""
119119

120120
lifecycle: VariableOrOptional[Lifecycle] = None
121+
"""
122+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
123+
"""
121124

122125
max_concurrent_runs: VariableOrOptional[int] = None
123126
"""
@@ -260,6 +263,9 @@ class JobDict(TypedDict, total=False):
260263
"""
261264

262265
lifecycle: VariableOrOptional[LifecycleParam]
266+
"""
267+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
268+
"""
263269

264270
max_concurrent_runs: VariableOrOptional[int]
265271
"""

experimental/python/databricks/bundles/jobs/_models/lifecycle.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class Lifecycle:
1414
""""""
1515

1616
prevent_destroy: VariableOrOptional[bool] = None
17+
"""
18+
Lifecycle setting to prevent the resource from being destroyed.
19+
"""
1720

1821
@classmethod
1922
def from_dict(cls, value: "LifecycleDict") -> "Self":
@@ -27,6 +30,9 @@ class LifecycleDict(TypedDict, total=False):
2730
""""""
2831

2932
prevent_destroy: VariableOrOptional[bool]
33+
"""
34+
Lifecycle setting to prevent the resource from being destroyed.
35+
"""
3036

3137

3238
LifecycleParam = LifecycleDict | Lifecycle

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class Lifecycle:
1414
""""""
1515

1616
prevent_destroy: VariableOrOptional[bool] = None
17+
"""
18+
Lifecycle setting to prevent the resource from being destroyed.
19+
"""
1720

1821
@classmethod
1922
def from_dict(cls, value: "LifecycleDict") -> "Self":
@@ -27,6 +30,9 @@ class LifecycleDict(TypedDict, total=False):
2730
""""""
2831

2932
prevent_destroy: VariableOrOptional[bool]
33+
"""
34+
Lifecycle setting to prevent the resource from being destroyed.
35+
"""
3036

3137

3238
LifecycleParam = LifecycleDict | Lifecycle

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ class Pipeline(Resource):
148148
"""
149149

150150
lifecycle: VariableOrOptional[Lifecycle] = None
151+
"""
152+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
153+
"""
151154

152155
name: VariableOrOptional[str] = None
153156
"""
@@ -308,6 +311,9 @@ class PipelineDict(TypedDict, total=False):
308311
"""
309312

310313
lifecycle: VariableOrOptional[LifecycleParam]
314+
"""
315+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
316+
"""
311317

312318
name: VariableOrOptional[str]
313319
"""

experimental/python/databricks/bundles/schemas/_models/lifecycle.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class Lifecycle:
1414
""""""
1515

1616
prevent_destroy: VariableOrOptional[bool] = None
17+
"""
18+
Lifecycle setting to prevent the resource from being destroyed.
19+
"""
1720

1821
@classmethod
1922
def from_dict(cls, value: "LifecycleDict") -> "Self":
@@ -27,6 +30,9 @@ class LifecycleDict(TypedDict, total=False):
2730
""""""
2831

2932
prevent_destroy: VariableOrOptional[bool]
33+
"""
34+
Lifecycle setting to prevent the resource from being destroyed.
35+
"""
3036

3137

3238
LifecycleParam = LifecycleDict | Lifecycle

experimental/python/databricks/bundles/schemas/_models/schema.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ class Schema(Resource):
4242
grants: VariableOrList[SchemaGrant] = field(default_factory=list)
4343

4444
lifecycle: VariableOrOptional[Lifecycle] = None
45+
"""
46+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
47+
"""
4548

4649
properties: VariableOrDict[str] = field(default_factory=dict)
4750

@@ -79,6 +82,9 @@ class SchemaDict(TypedDict, total=False):
7982
grants: VariableOrList[SchemaGrantParam]
8083

8184
lifecycle: VariableOrOptional[LifecycleParam]
85+
"""
86+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
87+
"""
8288

8389
properties: VariableOrDict[str]
8490

experimental/python/databricks/bundles/volumes/_models/lifecycle.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class Lifecycle:
1414
""""""
1515

1616
prevent_destroy: VariableOrOptional[bool] = None
17+
"""
18+
Lifecycle setting to prevent the resource from being destroyed.
19+
"""
1720

1821
@classmethod
1922
def from_dict(cls, value: "LifecycleDict") -> "Self":
@@ -27,6 +30,9 @@ class LifecycleDict(TypedDict, total=False):
2730
""""""
2831

2932
prevent_destroy: VariableOrOptional[bool]
33+
"""
34+
Lifecycle setting to prevent the resource from being destroyed.
35+
"""
3036

3137

3238
LifecycleParam = LifecycleDict | Lifecycle

experimental/python/databricks/bundles/volumes/_models/volume.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ class Volume(Resource):
4747
grants: VariableOrList[VolumeGrant] = field(default_factory=list)
4848

4949
lifecycle: VariableOrOptional[Lifecycle] = None
50+
"""
51+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
52+
"""
5053

5154
storage_location: VariableOrOptional[str] = None
5255
"""
@@ -89,6 +92,9 @@ class VolumeDict(TypedDict, total=False):
8992
grants: VariableOrList[VolumeGrantParam]
9093

9194
lifecycle: VariableOrOptional[LifecycleParam]
95+
"""
96+
Lifecycle is a struct that contains the lifecycle settings for a resource. It controls the behavior of the resource when it is deployed or destroyed.
97+
"""
9298

9399
storage_location: VariableOrOptional[str]
94100
"""

0 commit comments

Comments
 (0)