windmill-api 1.417.2__py3-none-any.whl → 1.418.0__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/models/raw_script.py +8 -0
- {windmill_api-1.417.2.dist-info → windmill_api-1.418.0.dist-info}/METADATA +1 -1
- {windmill_api-1.417.2.dist-info → windmill_api-1.418.0.dist-info}/RECORD +6 -6
- {windmill_api-1.417.2.dist-info → windmill_api-1.418.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.417.2.dist-info → windmill_api-1.418.0.dist-info}/WHEEL +0 -0
|
@@ -22,6 +22,7 @@ class PathScript:
|
|
|
22
22
|
type (PathScriptType):
|
|
23
23
|
hash_ (Union[Unset, str]):
|
|
24
24
|
tag_override (Union[Unset, str]):
|
|
25
|
+
is_trigger (Union[Unset, bool]):
|
|
25
26
|
"""
|
|
26
27
|
|
|
27
28
|
input_transforms: "PathScriptInputTransforms"
|
|
@@ -29,6 +30,7 @@ class PathScript:
|
|
|
29
30
|
type: PathScriptType
|
|
30
31
|
hash_: Union[Unset, str] = UNSET
|
|
31
32
|
tag_override: Union[Unset, str] = UNSET
|
|
33
|
+
is_trigger: Union[Unset, bool] = UNSET
|
|
32
34
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
33
35
|
|
|
34
36
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -39,6 +41,7 @@ class PathScript:
|
|
|
39
41
|
|
|
40
42
|
hash_ = self.hash_
|
|
41
43
|
tag_override = self.tag_override
|
|
44
|
+
is_trigger = self.is_trigger
|
|
42
45
|
|
|
43
46
|
field_dict: Dict[str, Any] = {}
|
|
44
47
|
field_dict.update(self.additional_properties)
|
|
@@ -53,6 +56,8 @@ class PathScript:
|
|
|
53
56
|
field_dict["hash"] = hash_
|
|
54
57
|
if tag_override is not UNSET:
|
|
55
58
|
field_dict["tag_override"] = tag_override
|
|
59
|
+
if is_trigger is not UNSET:
|
|
60
|
+
field_dict["is_trigger"] = is_trigger
|
|
56
61
|
|
|
57
62
|
return field_dict
|
|
58
63
|
|
|
@@ -71,12 +76,15 @@ class PathScript:
|
|
|
71
76
|
|
|
72
77
|
tag_override = d.pop("tag_override", UNSET)
|
|
73
78
|
|
|
79
|
+
is_trigger = d.pop("is_trigger", UNSET)
|
|
80
|
+
|
|
74
81
|
path_script = cls(
|
|
75
82
|
input_transforms=input_transforms,
|
|
76
83
|
path=path,
|
|
77
84
|
type=type,
|
|
78
85
|
hash_=hash_,
|
|
79
86
|
tag_override=tag_override,
|
|
87
|
+
is_trigger=is_trigger,
|
|
80
88
|
)
|
|
81
89
|
|
|
82
90
|
path_script.additional_properties = d
|
|
@@ -28,6 +28,7 @@ class RawScript:
|
|
|
28
28
|
concurrent_limit (Union[Unset, float]):
|
|
29
29
|
concurrency_time_window_s (Union[Unset, float]):
|
|
30
30
|
custom_concurrency_key (Union[Unset, str]):
|
|
31
|
+
is_trigger (Union[Unset, bool]):
|
|
31
32
|
"""
|
|
32
33
|
|
|
33
34
|
input_transforms: "RawScriptInputTransforms"
|
|
@@ -40,6 +41,7 @@ class RawScript:
|
|
|
40
41
|
concurrent_limit: Union[Unset, float] = UNSET
|
|
41
42
|
concurrency_time_window_s: Union[Unset, float] = UNSET
|
|
42
43
|
custom_concurrency_key: Union[Unset, str] = UNSET
|
|
44
|
+
is_trigger: Union[Unset, bool] = UNSET
|
|
43
45
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
44
46
|
|
|
45
47
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -56,6 +58,7 @@ class RawScript:
|
|
|
56
58
|
concurrent_limit = self.concurrent_limit
|
|
57
59
|
concurrency_time_window_s = self.concurrency_time_window_s
|
|
58
60
|
custom_concurrency_key = self.custom_concurrency_key
|
|
61
|
+
is_trigger = self.is_trigger
|
|
59
62
|
|
|
60
63
|
field_dict: Dict[str, Any] = {}
|
|
61
64
|
field_dict.update(self.additional_properties)
|
|
@@ -79,6 +82,8 @@ class RawScript:
|
|
|
79
82
|
field_dict["concurrency_time_window_s"] = concurrency_time_window_s
|
|
80
83
|
if custom_concurrency_key is not UNSET:
|
|
81
84
|
field_dict["custom_concurrency_key"] = custom_concurrency_key
|
|
85
|
+
if is_trigger is not UNSET:
|
|
86
|
+
field_dict["is_trigger"] = is_trigger
|
|
82
87
|
|
|
83
88
|
return field_dict
|
|
84
89
|
|
|
@@ -107,6 +112,8 @@ class RawScript:
|
|
|
107
112
|
|
|
108
113
|
custom_concurrency_key = d.pop("custom_concurrency_key", UNSET)
|
|
109
114
|
|
|
115
|
+
is_trigger = d.pop("is_trigger", UNSET)
|
|
116
|
+
|
|
110
117
|
raw_script = cls(
|
|
111
118
|
input_transforms=input_transforms,
|
|
112
119
|
content=content,
|
|
@@ -118,6 +125,7 @@ class RawScript:
|
|
|
118
125
|
concurrent_limit=concurrent_limit,
|
|
119
126
|
concurrency_time_window_s=concurrency_time_window_s,
|
|
120
127
|
custom_concurrency_key=custom_concurrency_key,
|
|
128
|
+
is_trigger=is_trigger,
|
|
121
129
|
)
|
|
122
130
|
|
|
123
131
|
raw_script.additional_properties = d
|
|
@@ -3032,7 +3032,7 @@ windmill_api/models/path_flow_input_transforms_additional_property_type_0_type.p
|
|
|
3032
3032
|
windmill_api/models/path_flow_input_transforms_additional_property_type_1.py,sha256=WGaeVrb0Xd7Vs8fTfOKV-FjrUg0_raz0716V6hxMAf8,2045
|
|
3033
3033
|
windmill_api/models/path_flow_input_transforms_additional_property_type_1_type.py,sha256=5Hab0Ad7IjK2jWZBgE3fPU_aVVk82hmfmuOwbIYTvj0,185
|
|
3034
3034
|
windmill_api/models/path_flow_type.py,sha256=ehvqXPt0d4RJcMo4MoHRIvuEPfyeeUTNqOM1sm3d59s,135
|
|
3035
|
-
windmill_api/models/path_script.py,sha256=
|
|
3035
|
+
windmill_api/models/path_script.py,sha256=kqMK33PwAjuG6Ekccj8V9hyMse9bmw6ejNWPFr5d61k,3083
|
|
3036
3036
|
windmill_api/models/path_script_input_transforms.py,sha256=LV7JS97zM7q5nU0HpmJ0ueuI04eRbWlCDdGNjOtQtQw,3804
|
|
3037
3037
|
windmill_api/models/path_script_input_transforms_additional_property_type_0.py,sha256=Kkv-qB7Np4zAS9XFRqG_Rhpz-286cUva8a0Pka_habc,2198
|
|
3038
3038
|
windmill_api/models/path_script_input_transforms_additional_property_type_0_type.py,sha256=6TyxlQ3i8CJ2GzSSUHe7zDuoGu6Xa_eq21rFbPUa-_E,187
|
|
@@ -3147,7 +3147,7 @@ windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_
|
|
|
3147
3147
|
windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py,sha256=HIo-OXy-Nefw7cXVidDaZgE3B2lQK1TsWYe3npyn3lM,203
|
|
3148
3148
|
windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=KUUoxBTo448T_SzL-Lj-xGpd_VkAUdp4vfk1UPGLH50,2241
|
|
3149
3149
|
windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=39WDrsgeveB-SJcxouLOOVndZm25ZmjRpDzka4pAmZE,203
|
|
3150
|
-
windmill_api/models/raw_script.py,sha256=
|
|
3150
|
+
windmill_api/models/raw_script.py,sha256=ThNP5UpVyoAPUI1GUG0mCd4GJCXFBqSNEbnk6X9_OgY,4744
|
|
3151
3151
|
windmill_api/models/raw_script_for_dependencies.py,sha256=FxoXDeIs22TN2iUbiE2NwaEsROafHeTulIxD1ShN9Kk,2042
|
|
3152
3152
|
windmill_api/models/raw_script_for_dependencies_language.py,sha256=uHcpPl-ScxsLTYNLNDM4wCRiUr9QfQdtsIoBhIFYOzc,489
|
|
3153
3153
|
windmill_api/models/raw_script_input_transforms.py,sha256=SEC7ab07Yf1kv6XT5ZFJBj3KdD5lNLgW3HPvN61tdRM,3769
|
|
@@ -3403,7 +3403,7 @@ windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_
|
|
|
3403
3403
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
3404
3404
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3405
3405
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3406
|
-
windmill_api-1.
|
|
3407
|
-
windmill_api-1.
|
|
3408
|
-
windmill_api-1.
|
|
3409
|
-
windmill_api-1.
|
|
3406
|
+
windmill_api-1.418.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3407
|
+
windmill_api-1.418.0.dist-info/METADATA,sha256=VD6T5Ex0cs7Cu6WXirDxDl9dNb9eG20_vrGy5dGUsFY,5023
|
|
3408
|
+
windmill_api-1.418.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3409
|
+
windmill_api-1.418.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|