windmill-api 1.394.1__py3-none-any.whl → 1.394.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of windmill-api might be problematic. Click here for more details.
- windmill_api/models/path_script.py +8 -0
- {windmill_api-1.394.1.dist-info → windmill_api-1.394.3.dist-info}/METADATA +1 -1
- {windmill_api-1.394.1.dist-info → windmill_api-1.394.3.dist-info}/RECORD +5 -5
- {windmill_api-1.394.1.dist-info → windmill_api-1.394.3.dist-info}/LICENSE +0 -0
- {windmill_api-1.394.1.dist-info → windmill_api-1.394.3.dist-info}/WHEEL +0 -0
|
@@ -21,12 +21,14 @@ class PathScript:
|
|
|
21
21
|
path (str):
|
|
22
22
|
type (PathScriptType):
|
|
23
23
|
hash_ (Union[Unset, str]):
|
|
24
|
+
tag_override (Union[Unset, str]):
|
|
24
25
|
"""
|
|
25
26
|
|
|
26
27
|
input_transforms: "PathScriptInputTransforms"
|
|
27
28
|
path: str
|
|
28
29
|
type: PathScriptType
|
|
29
30
|
hash_: Union[Unset, str] = UNSET
|
|
31
|
+
tag_override: Union[Unset, str] = UNSET
|
|
30
32
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
33
|
|
|
32
34
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -36,6 +38,7 @@ class PathScript:
|
|
|
36
38
|
type = self.type.value
|
|
37
39
|
|
|
38
40
|
hash_ = self.hash_
|
|
41
|
+
tag_override = self.tag_override
|
|
39
42
|
|
|
40
43
|
field_dict: Dict[str, Any] = {}
|
|
41
44
|
field_dict.update(self.additional_properties)
|
|
@@ -48,6 +51,8 @@ class PathScript:
|
|
|
48
51
|
)
|
|
49
52
|
if hash_ is not UNSET:
|
|
50
53
|
field_dict["hash"] = hash_
|
|
54
|
+
if tag_override is not UNSET:
|
|
55
|
+
field_dict["tag_override"] = tag_override
|
|
51
56
|
|
|
52
57
|
return field_dict
|
|
53
58
|
|
|
@@ -64,11 +69,14 @@ class PathScript:
|
|
|
64
69
|
|
|
65
70
|
hash_ = d.pop("hash", UNSET)
|
|
66
71
|
|
|
72
|
+
tag_override = d.pop("tag_override", UNSET)
|
|
73
|
+
|
|
67
74
|
path_script = cls(
|
|
68
75
|
input_transforms=input_transforms,
|
|
69
76
|
path=path,
|
|
70
77
|
type=type,
|
|
71
78
|
hash_=hash_,
|
|
79
|
+
tag_override=tag_override,
|
|
72
80
|
)
|
|
73
81
|
|
|
74
82
|
path_script.additional_properties = d
|
|
@@ -2319,7 +2319,7 @@ windmill_api/models/path_flow_input_transforms_additional_property_type_0_type.p
|
|
|
2319
2319
|
windmill_api/models/path_flow_input_transforms_additional_property_type_1.py,sha256=WGaeVrb0Xd7Vs8fTfOKV-FjrUg0_raz0716V6hxMAf8,2045
|
|
2320
2320
|
windmill_api/models/path_flow_input_transforms_additional_property_type_1_type.py,sha256=5Hab0Ad7IjK2jWZBgE3fPU_aVVk82hmfmuOwbIYTvj0,185
|
|
2321
2321
|
windmill_api/models/path_flow_type.py,sha256=ehvqXPt0d4RJcMo4MoHRIvuEPfyeeUTNqOM1sm3d59s,135
|
|
2322
|
-
windmill_api/models/path_script.py,sha256
|
|
2322
|
+
windmill_api/models/path_script.py,sha256=LjAqf2493lLmuLeESBetY1R6pDt4sx6sDcWp0DEzN5E,2792
|
|
2323
2323
|
windmill_api/models/path_script_input_transforms.py,sha256=LV7JS97zM7q5nU0HpmJ0ueuI04eRbWlCDdGNjOtQtQw,3804
|
|
2324
2324
|
windmill_api/models/path_script_input_transforms_additional_property_type_0.py,sha256=Kkv-qB7Np4zAS9XFRqG_Rhpz-286cUva8a0Pka_habc,2198
|
|
2325
2325
|
windmill_api/models/path_script_input_transforms_additional_property_type_0_type.py,sha256=6TyxlQ3i8CJ2GzSSUHe7zDuoGu6Xa_eq21rFbPUa-_E,187
|
|
@@ -2628,7 +2628,7 @@ windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_
|
|
|
2628
2628
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
2629
2629
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
2630
2630
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
2631
|
-
windmill_api-1.394.
|
|
2632
|
-
windmill_api-1.394.
|
|
2633
|
-
windmill_api-1.394.
|
|
2634
|
-
windmill_api-1.394.
|
|
2631
|
+
windmill_api-1.394.3.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
2632
|
+
windmill_api-1.394.3.dist-info/METADATA,sha256=KFrdrhPeEWf3cRU9KDDOyNO-_0B7ChFtCtE_zSijNn0,5023
|
|
2633
|
+
windmill_api-1.394.3.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
2634
|
+
windmill_api-1.394.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|