windmill-api 1.422.1__py3-none-any.whl → 1.423.1__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/app_with_last_version_policy.py +22 -0
- windmill_api/models/app_with_last_version_policy_s3_inputs_item.py +44 -0
- windmill_api/models/app_with_last_version_w_draft_policy.py +24 -0
- windmill_api/models/app_with_last_version_w_draft_policy_s3_inputs_item.py +44 -0
- windmill_api/models/create_app_json_body_policy.py +22 -0
- windmill_api/models/create_app_json_body_policy_s3_inputs_item.py +44 -0
- windmill_api/models/get_app_by_path_response_200_policy.py +24 -0
- windmill_api/models/get_app_by_path_response_200_policy_s3_inputs_item.py +44 -0
- windmill_api/models/get_app_by_path_with_draft_response_200_policy.py +26 -0
- windmill_api/models/get_app_by_path_with_draft_response_200_policy_s3_inputs_item.py +44 -0
- windmill_api/models/get_app_by_version_response_200_policy.py +26 -0
- windmill_api/models/get_app_by_version_response_200_policy_s3_inputs_item.py +44 -0
- windmill_api/models/get_public_app_by_secret_response_200_policy.py +26 -0
- windmill_api/models/get_public_app_by_secret_response_200_policy_s3_inputs_item.py +44 -0
- windmill_api/models/policy.py +22 -0
- windmill_api/models/policy_s3_inputs_item.py +44 -0
- windmill_api/models/update_app_json_body_policy.py +22 -0
- windmill_api/models/update_app_json_body_policy_s3_inputs_item.py +44 -0
- {windmill_api-1.422.1.dist-info → windmill_api-1.423.1.dist-info}/METADATA +1 -1
- {windmill_api-1.422.1.dist-info → windmill_api-1.423.1.dist-info}/RECORD +22 -13
- {windmill_api-1.422.1.dist-info → windmill_api-1.423.1.dist-info}/LICENSE +0 -0
- {windmill_api-1.422.1.dist-info → windmill_api-1.423.1.dist-info}/WHEEL +0 -0
|
@@ -7,6 +7,7 @@ from ..models.app_with_last_version_policy_execution_mode import AppWithLastVers
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.app_with_last_version_policy_s3_inputs_item import AppWithLastVersionPolicyS3InputsItem
|
|
10
11
|
from ..models.app_with_last_version_policy_triggerables import AppWithLastVersionPolicyTriggerables
|
|
11
12
|
from ..models.app_with_last_version_policy_triggerables_v2 import AppWithLastVersionPolicyTriggerablesV2
|
|
12
13
|
|
|
@@ -20,6 +21,7 @@ class AppWithLastVersionPolicy:
|
|
|
20
21
|
Attributes:
|
|
21
22
|
triggerables (Union[Unset, AppWithLastVersionPolicyTriggerables]):
|
|
22
23
|
triggerables_v2 (Union[Unset, AppWithLastVersionPolicyTriggerablesV2]):
|
|
24
|
+
s3_inputs (Union[Unset, List['AppWithLastVersionPolicyS3InputsItem']]):
|
|
23
25
|
execution_mode (Union[Unset, AppWithLastVersionPolicyExecutionMode]):
|
|
24
26
|
on_behalf_of (Union[Unset, str]):
|
|
25
27
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -27,6 +29,7 @@ class AppWithLastVersionPolicy:
|
|
|
27
29
|
|
|
28
30
|
triggerables: Union[Unset, "AppWithLastVersionPolicyTriggerables"] = UNSET
|
|
29
31
|
triggerables_v2: Union[Unset, "AppWithLastVersionPolicyTriggerablesV2"] = UNSET
|
|
32
|
+
s3_inputs: Union[Unset, List["AppWithLastVersionPolicyS3InputsItem"]] = UNSET
|
|
30
33
|
execution_mode: Union[Unset, AppWithLastVersionPolicyExecutionMode] = UNSET
|
|
31
34
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
32
35
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -41,6 +44,14 @@ class AppWithLastVersionPolicy:
|
|
|
41
44
|
if not isinstance(self.triggerables_v2, Unset):
|
|
42
45
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
43
46
|
|
|
47
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
48
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
49
|
+
s3_inputs = []
|
|
50
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
51
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
52
|
+
|
|
53
|
+
s3_inputs.append(s3_inputs_item)
|
|
54
|
+
|
|
44
55
|
execution_mode: Union[Unset, str] = UNSET
|
|
45
56
|
if not isinstance(self.execution_mode, Unset):
|
|
46
57
|
execution_mode = self.execution_mode.value
|
|
@@ -55,6 +66,8 @@ class AppWithLastVersionPolicy:
|
|
|
55
66
|
field_dict["triggerables"] = triggerables
|
|
56
67
|
if triggerables_v2 is not UNSET:
|
|
57
68
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
69
|
+
if s3_inputs is not UNSET:
|
|
70
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
58
71
|
if execution_mode is not UNSET:
|
|
59
72
|
field_dict["execution_mode"] = execution_mode
|
|
60
73
|
if on_behalf_of is not UNSET:
|
|
@@ -66,6 +79,7 @@ class AppWithLastVersionPolicy:
|
|
|
66
79
|
|
|
67
80
|
@classmethod
|
|
68
81
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
82
|
+
from ..models.app_with_last_version_policy_s3_inputs_item import AppWithLastVersionPolicyS3InputsItem
|
|
69
83
|
from ..models.app_with_last_version_policy_triggerables import AppWithLastVersionPolicyTriggerables
|
|
70
84
|
from ..models.app_with_last_version_policy_triggerables_v2 import AppWithLastVersionPolicyTriggerablesV2
|
|
71
85
|
|
|
@@ -84,6 +98,13 @@ class AppWithLastVersionPolicy:
|
|
|
84
98
|
else:
|
|
85
99
|
triggerables_v2 = AppWithLastVersionPolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
86
100
|
|
|
101
|
+
s3_inputs = []
|
|
102
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
103
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
104
|
+
s3_inputs_item = AppWithLastVersionPolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
105
|
+
|
|
106
|
+
s3_inputs.append(s3_inputs_item)
|
|
107
|
+
|
|
87
108
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
88
109
|
execution_mode: Union[Unset, AppWithLastVersionPolicyExecutionMode]
|
|
89
110
|
if isinstance(_execution_mode, Unset):
|
|
@@ -98,6 +119,7 @@ class AppWithLastVersionPolicy:
|
|
|
98
119
|
app_with_last_version_policy = cls(
|
|
99
120
|
triggerables=triggerables,
|
|
100
121
|
triggerables_v2=triggerables_v2,
|
|
122
|
+
s3_inputs=s3_inputs,
|
|
101
123
|
execution_mode=execution_mode,
|
|
102
124
|
on_behalf_of=on_behalf_of,
|
|
103
125
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="AppWithLastVersionPolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class AppWithLastVersionPolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
app_with_last_version_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
app_with_last_version_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return app_with_last_version_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -7,6 +7,7 @@ from ..models.app_with_last_version_w_draft_policy_execution_mode import AppWith
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.app_with_last_version_w_draft_policy_s3_inputs_item import AppWithLastVersionWDraftPolicyS3InputsItem
|
|
10
11
|
from ..models.app_with_last_version_w_draft_policy_triggerables import AppWithLastVersionWDraftPolicyTriggerables
|
|
11
12
|
from ..models.app_with_last_version_w_draft_policy_triggerables_v2 import (
|
|
12
13
|
AppWithLastVersionWDraftPolicyTriggerablesV2,
|
|
@@ -22,6 +23,7 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
22
23
|
Attributes:
|
|
23
24
|
triggerables (Union[Unset, AppWithLastVersionWDraftPolicyTriggerables]):
|
|
24
25
|
triggerables_v2 (Union[Unset, AppWithLastVersionWDraftPolicyTriggerablesV2]):
|
|
26
|
+
s3_inputs (Union[Unset, List['AppWithLastVersionWDraftPolicyS3InputsItem']]):
|
|
25
27
|
execution_mode (Union[Unset, AppWithLastVersionWDraftPolicyExecutionMode]):
|
|
26
28
|
on_behalf_of (Union[Unset, str]):
|
|
27
29
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -29,6 +31,7 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
29
31
|
|
|
30
32
|
triggerables: Union[Unset, "AppWithLastVersionWDraftPolicyTriggerables"] = UNSET
|
|
31
33
|
triggerables_v2: Union[Unset, "AppWithLastVersionWDraftPolicyTriggerablesV2"] = UNSET
|
|
34
|
+
s3_inputs: Union[Unset, List["AppWithLastVersionWDraftPolicyS3InputsItem"]] = UNSET
|
|
32
35
|
execution_mode: Union[Unset, AppWithLastVersionWDraftPolicyExecutionMode] = UNSET
|
|
33
36
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
34
37
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -43,6 +46,14 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
43
46
|
if not isinstance(self.triggerables_v2, Unset):
|
|
44
47
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
45
48
|
|
|
49
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
50
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
51
|
+
s3_inputs = []
|
|
52
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
53
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
54
|
+
|
|
55
|
+
s3_inputs.append(s3_inputs_item)
|
|
56
|
+
|
|
46
57
|
execution_mode: Union[Unset, str] = UNSET
|
|
47
58
|
if not isinstance(self.execution_mode, Unset):
|
|
48
59
|
execution_mode = self.execution_mode.value
|
|
@@ -57,6 +68,8 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
57
68
|
field_dict["triggerables"] = triggerables
|
|
58
69
|
if triggerables_v2 is not UNSET:
|
|
59
70
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
71
|
+
if s3_inputs is not UNSET:
|
|
72
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
60
73
|
if execution_mode is not UNSET:
|
|
61
74
|
field_dict["execution_mode"] = execution_mode
|
|
62
75
|
if on_behalf_of is not UNSET:
|
|
@@ -68,6 +81,9 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
68
81
|
|
|
69
82
|
@classmethod
|
|
70
83
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
84
|
+
from ..models.app_with_last_version_w_draft_policy_s3_inputs_item import (
|
|
85
|
+
AppWithLastVersionWDraftPolicyS3InputsItem,
|
|
86
|
+
)
|
|
71
87
|
from ..models.app_with_last_version_w_draft_policy_triggerables import (
|
|
72
88
|
AppWithLastVersionWDraftPolicyTriggerables,
|
|
73
89
|
)
|
|
@@ -90,6 +106,13 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
90
106
|
else:
|
|
91
107
|
triggerables_v2 = AppWithLastVersionWDraftPolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
92
108
|
|
|
109
|
+
s3_inputs = []
|
|
110
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
111
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
112
|
+
s3_inputs_item = AppWithLastVersionWDraftPolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
113
|
+
|
|
114
|
+
s3_inputs.append(s3_inputs_item)
|
|
115
|
+
|
|
93
116
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
94
117
|
execution_mode: Union[Unset, AppWithLastVersionWDraftPolicyExecutionMode]
|
|
95
118
|
if isinstance(_execution_mode, Unset):
|
|
@@ -104,6 +127,7 @@ class AppWithLastVersionWDraftPolicy:
|
|
|
104
127
|
app_with_last_version_w_draft_policy = cls(
|
|
105
128
|
triggerables=triggerables,
|
|
106
129
|
triggerables_v2=triggerables_v2,
|
|
130
|
+
s3_inputs=s3_inputs,
|
|
107
131
|
execution_mode=execution_mode,
|
|
108
132
|
on_behalf_of=on_behalf_of,
|
|
109
133
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="AppWithLastVersionWDraftPolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class AppWithLastVersionWDraftPolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
app_with_last_version_w_draft_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
app_with_last_version_w_draft_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return app_with_last_version_w_draft_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -7,6 +7,7 @@ from ..models.create_app_json_body_policy_execution_mode import CreateAppJsonBod
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.create_app_json_body_policy_s3_inputs_item import CreateAppJsonBodyPolicyS3InputsItem
|
|
10
11
|
from ..models.create_app_json_body_policy_triggerables import CreateAppJsonBodyPolicyTriggerables
|
|
11
12
|
from ..models.create_app_json_body_policy_triggerables_v2 import CreateAppJsonBodyPolicyTriggerablesV2
|
|
12
13
|
|
|
@@ -20,6 +21,7 @@ class CreateAppJsonBodyPolicy:
|
|
|
20
21
|
Attributes:
|
|
21
22
|
triggerables (Union[Unset, CreateAppJsonBodyPolicyTriggerables]):
|
|
22
23
|
triggerables_v2 (Union[Unset, CreateAppJsonBodyPolicyTriggerablesV2]):
|
|
24
|
+
s3_inputs (Union[Unset, List['CreateAppJsonBodyPolicyS3InputsItem']]):
|
|
23
25
|
execution_mode (Union[Unset, CreateAppJsonBodyPolicyExecutionMode]):
|
|
24
26
|
on_behalf_of (Union[Unset, str]):
|
|
25
27
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -27,6 +29,7 @@ class CreateAppJsonBodyPolicy:
|
|
|
27
29
|
|
|
28
30
|
triggerables: Union[Unset, "CreateAppJsonBodyPolicyTriggerables"] = UNSET
|
|
29
31
|
triggerables_v2: Union[Unset, "CreateAppJsonBodyPolicyTriggerablesV2"] = UNSET
|
|
32
|
+
s3_inputs: Union[Unset, List["CreateAppJsonBodyPolicyS3InputsItem"]] = UNSET
|
|
30
33
|
execution_mode: Union[Unset, CreateAppJsonBodyPolicyExecutionMode] = UNSET
|
|
31
34
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
32
35
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -41,6 +44,14 @@ class CreateAppJsonBodyPolicy:
|
|
|
41
44
|
if not isinstance(self.triggerables_v2, Unset):
|
|
42
45
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
43
46
|
|
|
47
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
48
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
49
|
+
s3_inputs = []
|
|
50
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
51
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
52
|
+
|
|
53
|
+
s3_inputs.append(s3_inputs_item)
|
|
54
|
+
|
|
44
55
|
execution_mode: Union[Unset, str] = UNSET
|
|
45
56
|
if not isinstance(self.execution_mode, Unset):
|
|
46
57
|
execution_mode = self.execution_mode.value
|
|
@@ -55,6 +66,8 @@ class CreateAppJsonBodyPolicy:
|
|
|
55
66
|
field_dict["triggerables"] = triggerables
|
|
56
67
|
if triggerables_v2 is not UNSET:
|
|
57
68
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
69
|
+
if s3_inputs is not UNSET:
|
|
70
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
58
71
|
if execution_mode is not UNSET:
|
|
59
72
|
field_dict["execution_mode"] = execution_mode
|
|
60
73
|
if on_behalf_of is not UNSET:
|
|
@@ -66,6 +79,7 @@ class CreateAppJsonBodyPolicy:
|
|
|
66
79
|
|
|
67
80
|
@classmethod
|
|
68
81
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
82
|
+
from ..models.create_app_json_body_policy_s3_inputs_item import CreateAppJsonBodyPolicyS3InputsItem
|
|
69
83
|
from ..models.create_app_json_body_policy_triggerables import CreateAppJsonBodyPolicyTriggerables
|
|
70
84
|
from ..models.create_app_json_body_policy_triggerables_v2 import CreateAppJsonBodyPolicyTriggerablesV2
|
|
71
85
|
|
|
@@ -84,6 +98,13 @@ class CreateAppJsonBodyPolicy:
|
|
|
84
98
|
else:
|
|
85
99
|
triggerables_v2 = CreateAppJsonBodyPolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
86
100
|
|
|
101
|
+
s3_inputs = []
|
|
102
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
103
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
104
|
+
s3_inputs_item = CreateAppJsonBodyPolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
105
|
+
|
|
106
|
+
s3_inputs.append(s3_inputs_item)
|
|
107
|
+
|
|
87
108
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
88
109
|
execution_mode: Union[Unset, CreateAppJsonBodyPolicyExecutionMode]
|
|
89
110
|
if isinstance(_execution_mode, Unset):
|
|
@@ -98,6 +119,7 @@ class CreateAppJsonBodyPolicy:
|
|
|
98
119
|
create_app_json_body_policy = cls(
|
|
99
120
|
triggerables=triggerables,
|
|
100
121
|
triggerables_v2=triggerables_v2,
|
|
122
|
+
s3_inputs=s3_inputs,
|
|
101
123
|
execution_mode=execution_mode,
|
|
102
124
|
on_behalf_of=on_behalf_of,
|
|
103
125
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="CreateAppJsonBodyPolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class CreateAppJsonBodyPolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
create_app_json_body_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
create_app_json_body_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return create_app_json_body_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -7,6 +7,7 @@ from ..models.get_app_by_path_response_200_policy_execution_mode import GetAppBy
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.get_app_by_path_response_200_policy_s3_inputs_item import GetAppByPathResponse200PolicyS3InputsItem
|
|
10
11
|
from ..models.get_app_by_path_response_200_policy_triggerables import GetAppByPathResponse200PolicyTriggerables
|
|
11
12
|
from ..models.get_app_by_path_response_200_policy_triggerables_v2 import GetAppByPathResponse200PolicyTriggerablesV2
|
|
12
13
|
|
|
@@ -20,6 +21,7 @@ class GetAppByPathResponse200Policy:
|
|
|
20
21
|
Attributes:
|
|
21
22
|
triggerables (Union[Unset, GetAppByPathResponse200PolicyTriggerables]):
|
|
22
23
|
triggerables_v2 (Union[Unset, GetAppByPathResponse200PolicyTriggerablesV2]):
|
|
24
|
+
s3_inputs (Union[Unset, List['GetAppByPathResponse200PolicyS3InputsItem']]):
|
|
23
25
|
execution_mode (Union[Unset, GetAppByPathResponse200PolicyExecutionMode]):
|
|
24
26
|
on_behalf_of (Union[Unset, str]):
|
|
25
27
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -27,6 +29,7 @@ class GetAppByPathResponse200Policy:
|
|
|
27
29
|
|
|
28
30
|
triggerables: Union[Unset, "GetAppByPathResponse200PolicyTriggerables"] = UNSET
|
|
29
31
|
triggerables_v2: Union[Unset, "GetAppByPathResponse200PolicyTriggerablesV2"] = UNSET
|
|
32
|
+
s3_inputs: Union[Unset, List["GetAppByPathResponse200PolicyS3InputsItem"]] = UNSET
|
|
30
33
|
execution_mode: Union[Unset, GetAppByPathResponse200PolicyExecutionMode] = UNSET
|
|
31
34
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
32
35
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -41,6 +44,14 @@ class GetAppByPathResponse200Policy:
|
|
|
41
44
|
if not isinstance(self.triggerables_v2, Unset):
|
|
42
45
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
43
46
|
|
|
47
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
48
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
49
|
+
s3_inputs = []
|
|
50
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
51
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
52
|
+
|
|
53
|
+
s3_inputs.append(s3_inputs_item)
|
|
54
|
+
|
|
44
55
|
execution_mode: Union[Unset, str] = UNSET
|
|
45
56
|
if not isinstance(self.execution_mode, Unset):
|
|
46
57
|
execution_mode = self.execution_mode.value
|
|
@@ -55,6 +66,8 @@ class GetAppByPathResponse200Policy:
|
|
|
55
66
|
field_dict["triggerables"] = triggerables
|
|
56
67
|
if triggerables_v2 is not UNSET:
|
|
57
68
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
69
|
+
if s3_inputs is not UNSET:
|
|
70
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
58
71
|
if execution_mode is not UNSET:
|
|
59
72
|
field_dict["execution_mode"] = execution_mode
|
|
60
73
|
if on_behalf_of is not UNSET:
|
|
@@ -66,6 +79,9 @@ class GetAppByPathResponse200Policy:
|
|
|
66
79
|
|
|
67
80
|
@classmethod
|
|
68
81
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
82
|
+
from ..models.get_app_by_path_response_200_policy_s3_inputs_item import (
|
|
83
|
+
GetAppByPathResponse200PolicyS3InputsItem,
|
|
84
|
+
)
|
|
69
85
|
from ..models.get_app_by_path_response_200_policy_triggerables import GetAppByPathResponse200PolicyTriggerables
|
|
70
86
|
from ..models.get_app_by_path_response_200_policy_triggerables_v2 import (
|
|
71
87
|
GetAppByPathResponse200PolicyTriggerablesV2,
|
|
@@ -86,6 +102,13 @@ class GetAppByPathResponse200Policy:
|
|
|
86
102
|
else:
|
|
87
103
|
triggerables_v2 = GetAppByPathResponse200PolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
88
104
|
|
|
105
|
+
s3_inputs = []
|
|
106
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
107
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
108
|
+
s3_inputs_item = GetAppByPathResponse200PolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
109
|
+
|
|
110
|
+
s3_inputs.append(s3_inputs_item)
|
|
111
|
+
|
|
89
112
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
90
113
|
execution_mode: Union[Unset, GetAppByPathResponse200PolicyExecutionMode]
|
|
91
114
|
if isinstance(_execution_mode, Unset):
|
|
@@ -100,6 +123,7 @@ class GetAppByPathResponse200Policy:
|
|
|
100
123
|
get_app_by_path_response_200_policy = cls(
|
|
101
124
|
triggerables=triggerables,
|
|
102
125
|
triggerables_v2=triggerables_v2,
|
|
126
|
+
s3_inputs=s3_inputs,
|
|
103
127
|
execution_mode=execution_mode,
|
|
104
128
|
on_behalf_of=on_behalf_of,
|
|
105
129
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="GetAppByPathResponse200PolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class GetAppByPathResponse200PolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
get_app_by_path_response_200_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
get_app_by_path_response_200_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return get_app_by_path_response_200_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -9,6 +9,9 @@ from ..models.get_app_by_path_with_draft_response_200_policy_execution_mode impo
|
|
|
9
9
|
from ..types import UNSET, Unset
|
|
10
10
|
|
|
11
11
|
if TYPE_CHECKING:
|
|
12
|
+
from ..models.get_app_by_path_with_draft_response_200_policy_s3_inputs_item import (
|
|
13
|
+
GetAppByPathWithDraftResponse200PolicyS3InputsItem,
|
|
14
|
+
)
|
|
12
15
|
from ..models.get_app_by_path_with_draft_response_200_policy_triggerables import (
|
|
13
16
|
GetAppByPathWithDraftResponse200PolicyTriggerables,
|
|
14
17
|
)
|
|
@@ -26,6 +29,7 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
26
29
|
Attributes:
|
|
27
30
|
triggerables (Union[Unset, GetAppByPathWithDraftResponse200PolicyTriggerables]):
|
|
28
31
|
triggerables_v2 (Union[Unset, GetAppByPathWithDraftResponse200PolicyTriggerablesV2]):
|
|
32
|
+
s3_inputs (Union[Unset, List['GetAppByPathWithDraftResponse200PolicyS3InputsItem']]):
|
|
29
33
|
execution_mode (Union[Unset, GetAppByPathWithDraftResponse200PolicyExecutionMode]):
|
|
30
34
|
on_behalf_of (Union[Unset, str]):
|
|
31
35
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -33,6 +37,7 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
33
37
|
|
|
34
38
|
triggerables: Union[Unset, "GetAppByPathWithDraftResponse200PolicyTriggerables"] = UNSET
|
|
35
39
|
triggerables_v2: Union[Unset, "GetAppByPathWithDraftResponse200PolicyTriggerablesV2"] = UNSET
|
|
40
|
+
s3_inputs: Union[Unset, List["GetAppByPathWithDraftResponse200PolicyS3InputsItem"]] = UNSET
|
|
36
41
|
execution_mode: Union[Unset, GetAppByPathWithDraftResponse200PolicyExecutionMode] = UNSET
|
|
37
42
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
38
43
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -47,6 +52,14 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
47
52
|
if not isinstance(self.triggerables_v2, Unset):
|
|
48
53
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
49
54
|
|
|
55
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
56
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
57
|
+
s3_inputs = []
|
|
58
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
59
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
60
|
+
|
|
61
|
+
s3_inputs.append(s3_inputs_item)
|
|
62
|
+
|
|
50
63
|
execution_mode: Union[Unset, str] = UNSET
|
|
51
64
|
if not isinstance(self.execution_mode, Unset):
|
|
52
65
|
execution_mode = self.execution_mode.value
|
|
@@ -61,6 +74,8 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
61
74
|
field_dict["triggerables"] = triggerables
|
|
62
75
|
if triggerables_v2 is not UNSET:
|
|
63
76
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
77
|
+
if s3_inputs is not UNSET:
|
|
78
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
64
79
|
if execution_mode is not UNSET:
|
|
65
80
|
field_dict["execution_mode"] = execution_mode
|
|
66
81
|
if on_behalf_of is not UNSET:
|
|
@@ -72,6 +87,9 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
72
87
|
|
|
73
88
|
@classmethod
|
|
74
89
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
90
|
+
from ..models.get_app_by_path_with_draft_response_200_policy_s3_inputs_item import (
|
|
91
|
+
GetAppByPathWithDraftResponse200PolicyS3InputsItem,
|
|
92
|
+
)
|
|
75
93
|
from ..models.get_app_by_path_with_draft_response_200_policy_triggerables import (
|
|
76
94
|
GetAppByPathWithDraftResponse200PolicyTriggerables,
|
|
77
95
|
)
|
|
@@ -94,6 +112,13 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
94
112
|
else:
|
|
95
113
|
triggerables_v2 = GetAppByPathWithDraftResponse200PolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
96
114
|
|
|
115
|
+
s3_inputs = []
|
|
116
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
117
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
118
|
+
s3_inputs_item = GetAppByPathWithDraftResponse200PolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
119
|
+
|
|
120
|
+
s3_inputs.append(s3_inputs_item)
|
|
121
|
+
|
|
97
122
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
98
123
|
execution_mode: Union[Unset, GetAppByPathWithDraftResponse200PolicyExecutionMode]
|
|
99
124
|
if isinstance(_execution_mode, Unset):
|
|
@@ -108,6 +133,7 @@ class GetAppByPathWithDraftResponse200Policy:
|
|
|
108
133
|
get_app_by_path_with_draft_response_200_policy = cls(
|
|
109
134
|
triggerables=triggerables,
|
|
110
135
|
triggerables_v2=triggerables_v2,
|
|
136
|
+
s3_inputs=s3_inputs,
|
|
111
137
|
execution_mode=execution_mode,
|
|
112
138
|
on_behalf_of=on_behalf_of,
|
|
113
139
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="GetAppByPathWithDraftResponse200PolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class GetAppByPathWithDraftResponse200PolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
get_app_by_path_with_draft_response_200_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
get_app_by_path_with_draft_response_200_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return get_app_by_path_with_draft_response_200_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -7,6 +7,9 @@ from ..models.get_app_by_version_response_200_policy_execution_mode import GetAp
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.get_app_by_version_response_200_policy_s3_inputs_item import (
|
|
11
|
+
GetAppByVersionResponse200PolicyS3InputsItem,
|
|
12
|
+
)
|
|
10
13
|
from ..models.get_app_by_version_response_200_policy_triggerables import (
|
|
11
14
|
GetAppByVersionResponse200PolicyTriggerables,
|
|
12
15
|
)
|
|
@@ -24,6 +27,7 @@ class GetAppByVersionResponse200Policy:
|
|
|
24
27
|
Attributes:
|
|
25
28
|
triggerables (Union[Unset, GetAppByVersionResponse200PolicyTriggerables]):
|
|
26
29
|
triggerables_v2 (Union[Unset, GetAppByVersionResponse200PolicyTriggerablesV2]):
|
|
30
|
+
s3_inputs (Union[Unset, List['GetAppByVersionResponse200PolicyS3InputsItem']]):
|
|
27
31
|
execution_mode (Union[Unset, GetAppByVersionResponse200PolicyExecutionMode]):
|
|
28
32
|
on_behalf_of (Union[Unset, str]):
|
|
29
33
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -31,6 +35,7 @@ class GetAppByVersionResponse200Policy:
|
|
|
31
35
|
|
|
32
36
|
triggerables: Union[Unset, "GetAppByVersionResponse200PolicyTriggerables"] = UNSET
|
|
33
37
|
triggerables_v2: Union[Unset, "GetAppByVersionResponse200PolicyTriggerablesV2"] = UNSET
|
|
38
|
+
s3_inputs: Union[Unset, List["GetAppByVersionResponse200PolicyS3InputsItem"]] = UNSET
|
|
34
39
|
execution_mode: Union[Unset, GetAppByVersionResponse200PolicyExecutionMode] = UNSET
|
|
35
40
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
36
41
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -45,6 +50,14 @@ class GetAppByVersionResponse200Policy:
|
|
|
45
50
|
if not isinstance(self.triggerables_v2, Unset):
|
|
46
51
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
47
52
|
|
|
53
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
54
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
55
|
+
s3_inputs = []
|
|
56
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
57
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
58
|
+
|
|
59
|
+
s3_inputs.append(s3_inputs_item)
|
|
60
|
+
|
|
48
61
|
execution_mode: Union[Unset, str] = UNSET
|
|
49
62
|
if not isinstance(self.execution_mode, Unset):
|
|
50
63
|
execution_mode = self.execution_mode.value
|
|
@@ -59,6 +72,8 @@ class GetAppByVersionResponse200Policy:
|
|
|
59
72
|
field_dict["triggerables"] = triggerables
|
|
60
73
|
if triggerables_v2 is not UNSET:
|
|
61
74
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
75
|
+
if s3_inputs is not UNSET:
|
|
76
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
62
77
|
if execution_mode is not UNSET:
|
|
63
78
|
field_dict["execution_mode"] = execution_mode
|
|
64
79
|
if on_behalf_of is not UNSET:
|
|
@@ -70,6 +85,9 @@ class GetAppByVersionResponse200Policy:
|
|
|
70
85
|
|
|
71
86
|
@classmethod
|
|
72
87
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
88
|
+
from ..models.get_app_by_version_response_200_policy_s3_inputs_item import (
|
|
89
|
+
GetAppByVersionResponse200PolicyS3InputsItem,
|
|
90
|
+
)
|
|
73
91
|
from ..models.get_app_by_version_response_200_policy_triggerables import (
|
|
74
92
|
GetAppByVersionResponse200PolicyTriggerables,
|
|
75
93
|
)
|
|
@@ -92,6 +110,13 @@ class GetAppByVersionResponse200Policy:
|
|
|
92
110
|
else:
|
|
93
111
|
triggerables_v2 = GetAppByVersionResponse200PolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
94
112
|
|
|
113
|
+
s3_inputs = []
|
|
114
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
115
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
116
|
+
s3_inputs_item = GetAppByVersionResponse200PolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
117
|
+
|
|
118
|
+
s3_inputs.append(s3_inputs_item)
|
|
119
|
+
|
|
95
120
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
96
121
|
execution_mode: Union[Unset, GetAppByVersionResponse200PolicyExecutionMode]
|
|
97
122
|
if isinstance(_execution_mode, Unset):
|
|
@@ -106,6 +131,7 @@ class GetAppByVersionResponse200Policy:
|
|
|
106
131
|
get_app_by_version_response_200_policy = cls(
|
|
107
132
|
triggerables=triggerables,
|
|
108
133
|
triggerables_v2=triggerables_v2,
|
|
134
|
+
s3_inputs=s3_inputs,
|
|
109
135
|
execution_mode=execution_mode,
|
|
110
136
|
on_behalf_of=on_behalf_of,
|
|
111
137
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="GetAppByVersionResponse200PolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class GetAppByVersionResponse200PolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
get_app_by_version_response_200_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
get_app_by_version_response_200_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return get_app_by_version_response_200_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -9,6 +9,9 @@ from ..models.get_public_app_by_secret_response_200_policy_execution_mode import
|
|
|
9
9
|
from ..types import UNSET, Unset
|
|
10
10
|
|
|
11
11
|
if TYPE_CHECKING:
|
|
12
|
+
from ..models.get_public_app_by_secret_response_200_policy_s3_inputs_item import (
|
|
13
|
+
GetPublicAppBySecretResponse200PolicyS3InputsItem,
|
|
14
|
+
)
|
|
12
15
|
from ..models.get_public_app_by_secret_response_200_policy_triggerables import (
|
|
13
16
|
GetPublicAppBySecretResponse200PolicyTriggerables,
|
|
14
17
|
)
|
|
@@ -26,6 +29,7 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
26
29
|
Attributes:
|
|
27
30
|
triggerables (Union[Unset, GetPublicAppBySecretResponse200PolicyTriggerables]):
|
|
28
31
|
triggerables_v2 (Union[Unset, GetPublicAppBySecretResponse200PolicyTriggerablesV2]):
|
|
32
|
+
s3_inputs (Union[Unset, List['GetPublicAppBySecretResponse200PolicyS3InputsItem']]):
|
|
29
33
|
execution_mode (Union[Unset, GetPublicAppBySecretResponse200PolicyExecutionMode]):
|
|
30
34
|
on_behalf_of (Union[Unset, str]):
|
|
31
35
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -33,6 +37,7 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
33
37
|
|
|
34
38
|
triggerables: Union[Unset, "GetPublicAppBySecretResponse200PolicyTriggerables"] = UNSET
|
|
35
39
|
triggerables_v2: Union[Unset, "GetPublicAppBySecretResponse200PolicyTriggerablesV2"] = UNSET
|
|
40
|
+
s3_inputs: Union[Unset, List["GetPublicAppBySecretResponse200PolicyS3InputsItem"]] = UNSET
|
|
36
41
|
execution_mode: Union[Unset, GetPublicAppBySecretResponse200PolicyExecutionMode] = UNSET
|
|
37
42
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
38
43
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -47,6 +52,14 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
47
52
|
if not isinstance(self.triggerables_v2, Unset):
|
|
48
53
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
49
54
|
|
|
55
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
56
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
57
|
+
s3_inputs = []
|
|
58
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
59
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
60
|
+
|
|
61
|
+
s3_inputs.append(s3_inputs_item)
|
|
62
|
+
|
|
50
63
|
execution_mode: Union[Unset, str] = UNSET
|
|
51
64
|
if not isinstance(self.execution_mode, Unset):
|
|
52
65
|
execution_mode = self.execution_mode.value
|
|
@@ -61,6 +74,8 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
61
74
|
field_dict["triggerables"] = triggerables
|
|
62
75
|
if triggerables_v2 is not UNSET:
|
|
63
76
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
77
|
+
if s3_inputs is not UNSET:
|
|
78
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
64
79
|
if execution_mode is not UNSET:
|
|
65
80
|
field_dict["execution_mode"] = execution_mode
|
|
66
81
|
if on_behalf_of is not UNSET:
|
|
@@ -72,6 +87,9 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
72
87
|
|
|
73
88
|
@classmethod
|
|
74
89
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
90
|
+
from ..models.get_public_app_by_secret_response_200_policy_s3_inputs_item import (
|
|
91
|
+
GetPublicAppBySecretResponse200PolicyS3InputsItem,
|
|
92
|
+
)
|
|
75
93
|
from ..models.get_public_app_by_secret_response_200_policy_triggerables import (
|
|
76
94
|
GetPublicAppBySecretResponse200PolicyTriggerables,
|
|
77
95
|
)
|
|
@@ -94,6 +112,13 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
94
112
|
else:
|
|
95
113
|
triggerables_v2 = GetPublicAppBySecretResponse200PolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
96
114
|
|
|
115
|
+
s3_inputs = []
|
|
116
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
117
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
118
|
+
s3_inputs_item = GetPublicAppBySecretResponse200PolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
119
|
+
|
|
120
|
+
s3_inputs.append(s3_inputs_item)
|
|
121
|
+
|
|
97
122
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
98
123
|
execution_mode: Union[Unset, GetPublicAppBySecretResponse200PolicyExecutionMode]
|
|
99
124
|
if isinstance(_execution_mode, Unset):
|
|
@@ -108,6 +133,7 @@ class GetPublicAppBySecretResponse200Policy:
|
|
|
108
133
|
get_public_app_by_secret_response_200_policy = cls(
|
|
109
134
|
triggerables=triggerables,
|
|
110
135
|
triggerables_v2=triggerables_v2,
|
|
136
|
+
s3_inputs=s3_inputs,
|
|
111
137
|
execution_mode=execution_mode,
|
|
112
138
|
on_behalf_of=on_behalf_of,
|
|
113
139
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="GetPublicAppBySecretResponse200PolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class GetPublicAppBySecretResponse200PolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
get_public_app_by_secret_response_200_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
get_public_app_by_secret_response_200_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return get_public_app_by_secret_response_200_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
windmill_api/models/policy.py
CHANGED
|
@@ -7,6 +7,7 @@ from ..models.policy_execution_mode import PolicyExecutionMode
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.policy_s3_inputs_item import PolicyS3InputsItem
|
|
10
11
|
from ..models.policy_triggerables import PolicyTriggerables
|
|
11
12
|
from ..models.policy_triggerables_v2 import PolicyTriggerablesV2
|
|
12
13
|
|
|
@@ -20,6 +21,7 @@ class Policy:
|
|
|
20
21
|
Attributes:
|
|
21
22
|
triggerables (Union[Unset, PolicyTriggerables]):
|
|
22
23
|
triggerables_v2 (Union[Unset, PolicyTriggerablesV2]):
|
|
24
|
+
s3_inputs (Union[Unset, List['PolicyS3InputsItem']]):
|
|
23
25
|
execution_mode (Union[Unset, PolicyExecutionMode]):
|
|
24
26
|
on_behalf_of (Union[Unset, str]):
|
|
25
27
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -27,6 +29,7 @@ class Policy:
|
|
|
27
29
|
|
|
28
30
|
triggerables: Union[Unset, "PolicyTriggerables"] = UNSET
|
|
29
31
|
triggerables_v2: Union[Unset, "PolicyTriggerablesV2"] = UNSET
|
|
32
|
+
s3_inputs: Union[Unset, List["PolicyS3InputsItem"]] = UNSET
|
|
30
33
|
execution_mode: Union[Unset, PolicyExecutionMode] = UNSET
|
|
31
34
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
32
35
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -41,6 +44,14 @@ class Policy:
|
|
|
41
44
|
if not isinstance(self.triggerables_v2, Unset):
|
|
42
45
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
43
46
|
|
|
47
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
48
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
49
|
+
s3_inputs = []
|
|
50
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
51
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
52
|
+
|
|
53
|
+
s3_inputs.append(s3_inputs_item)
|
|
54
|
+
|
|
44
55
|
execution_mode: Union[Unset, str] = UNSET
|
|
45
56
|
if not isinstance(self.execution_mode, Unset):
|
|
46
57
|
execution_mode = self.execution_mode.value
|
|
@@ -55,6 +66,8 @@ class Policy:
|
|
|
55
66
|
field_dict["triggerables"] = triggerables
|
|
56
67
|
if triggerables_v2 is not UNSET:
|
|
57
68
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
69
|
+
if s3_inputs is not UNSET:
|
|
70
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
58
71
|
if execution_mode is not UNSET:
|
|
59
72
|
field_dict["execution_mode"] = execution_mode
|
|
60
73
|
if on_behalf_of is not UNSET:
|
|
@@ -66,6 +79,7 @@ class Policy:
|
|
|
66
79
|
|
|
67
80
|
@classmethod
|
|
68
81
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
82
|
+
from ..models.policy_s3_inputs_item import PolicyS3InputsItem
|
|
69
83
|
from ..models.policy_triggerables import PolicyTriggerables
|
|
70
84
|
from ..models.policy_triggerables_v2 import PolicyTriggerablesV2
|
|
71
85
|
|
|
@@ -84,6 +98,13 @@ class Policy:
|
|
|
84
98
|
else:
|
|
85
99
|
triggerables_v2 = PolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
86
100
|
|
|
101
|
+
s3_inputs = []
|
|
102
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
103
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
104
|
+
s3_inputs_item = PolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
105
|
+
|
|
106
|
+
s3_inputs.append(s3_inputs_item)
|
|
107
|
+
|
|
87
108
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
88
109
|
execution_mode: Union[Unset, PolicyExecutionMode]
|
|
89
110
|
if isinstance(_execution_mode, Unset):
|
|
@@ -98,6 +119,7 @@ class Policy:
|
|
|
98
119
|
policy = cls(
|
|
99
120
|
triggerables=triggerables,
|
|
100
121
|
triggerables_v2=triggerables_v2,
|
|
122
|
+
s3_inputs=s3_inputs,
|
|
101
123
|
execution_mode=execution_mode,
|
|
102
124
|
on_behalf_of=on_behalf_of,
|
|
103
125
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="PolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class PolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -7,6 +7,7 @@ from ..models.update_app_json_body_policy_execution_mode import UpdateAppJsonBod
|
|
|
7
7
|
from ..types import UNSET, Unset
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
+
from ..models.update_app_json_body_policy_s3_inputs_item import UpdateAppJsonBodyPolicyS3InputsItem
|
|
10
11
|
from ..models.update_app_json_body_policy_triggerables import UpdateAppJsonBodyPolicyTriggerables
|
|
11
12
|
from ..models.update_app_json_body_policy_triggerables_v2 import UpdateAppJsonBodyPolicyTriggerablesV2
|
|
12
13
|
|
|
@@ -20,6 +21,7 @@ class UpdateAppJsonBodyPolicy:
|
|
|
20
21
|
Attributes:
|
|
21
22
|
triggerables (Union[Unset, UpdateAppJsonBodyPolicyTriggerables]):
|
|
22
23
|
triggerables_v2 (Union[Unset, UpdateAppJsonBodyPolicyTriggerablesV2]):
|
|
24
|
+
s3_inputs (Union[Unset, List['UpdateAppJsonBodyPolicyS3InputsItem']]):
|
|
23
25
|
execution_mode (Union[Unset, UpdateAppJsonBodyPolicyExecutionMode]):
|
|
24
26
|
on_behalf_of (Union[Unset, str]):
|
|
25
27
|
on_behalf_of_email (Union[Unset, str]):
|
|
@@ -27,6 +29,7 @@ class UpdateAppJsonBodyPolicy:
|
|
|
27
29
|
|
|
28
30
|
triggerables: Union[Unset, "UpdateAppJsonBodyPolicyTriggerables"] = UNSET
|
|
29
31
|
triggerables_v2: Union[Unset, "UpdateAppJsonBodyPolicyTriggerablesV2"] = UNSET
|
|
32
|
+
s3_inputs: Union[Unset, List["UpdateAppJsonBodyPolicyS3InputsItem"]] = UNSET
|
|
30
33
|
execution_mode: Union[Unset, UpdateAppJsonBodyPolicyExecutionMode] = UNSET
|
|
31
34
|
on_behalf_of: Union[Unset, str] = UNSET
|
|
32
35
|
on_behalf_of_email: Union[Unset, str] = UNSET
|
|
@@ -41,6 +44,14 @@ class UpdateAppJsonBodyPolicy:
|
|
|
41
44
|
if not isinstance(self.triggerables_v2, Unset):
|
|
42
45
|
triggerables_v2 = self.triggerables_v2.to_dict()
|
|
43
46
|
|
|
47
|
+
s3_inputs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
48
|
+
if not isinstance(self.s3_inputs, Unset):
|
|
49
|
+
s3_inputs = []
|
|
50
|
+
for s3_inputs_item_data in self.s3_inputs:
|
|
51
|
+
s3_inputs_item = s3_inputs_item_data.to_dict()
|
|
52
|
+
|
|
53
|
+
s3_inputs.append(s3_inputs_item)
|
|
54
|
+
|
|
44
55
|
execution_mode: Union[Unset, str] = UNSET
|
|
45
56
|
if not isinstance(self.execution_mode, Unset):
|
|
46
57
|
execution_mode = self.execution_mode.value
|
|
@@ -55,6 +66,8 @@ class UpdateAppJsonBodyPolicy:
|
|
|
55
66
|
field_dict["triggerables"] = triggerables
|
|
56
67
|
if triggerables_v2 is not UNSET:
|
|
57
68
|
field_dict["triggerables_v2"] = triggerables_v2
|
|
69
|
+
if s3_inputs is not UNSET:
|
|
70
|
+
field_dict["s3_inputs"] = s3_inputs
|
|
58
71
|
if execution_mode is not UNSET:
|
|
59
72
|
field_dict["execution_mode"] = execution_mode
|
|
60
73
|
if on_behalf_of is not UNSET:
|
|
@@ -66,6 +79,7 @@ class UpdateAppJsonBodyPolicy:
|
|
|
66
79
|
|
|
67
80
|
@classmethod
|
|
68
81
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
82
|
+
from ..models.update_app_json_body_policy_s3_inputs_item import UpdateAppJsonBodyPolicyS3InputsItem
|
|
69
83
|
from ..models.update_app_json_body_policy_triggerables import UpdateAppJsonBodyPolicyTriggerables
|
|
70
84
|
from ..models.update_app_json_body_policy_triggerables_v2 import UpdateAppJsonBodyPolicyTriggerablesV2
|
|
71
85
|
|
|
@@ -84,6 +98,13 @@ class UpdateAppJsonBodyPolicy:
|
|
|
84
98
|
else:
|
|
85
99
|
triggerables_v2 = UpdateAppJsonBodyPolicyTriggerablesV2.from_dict(_triggerables_v2)
|
|
86
100
|
|
|
101
|
+
s3_inputs = []
|
|
102
|
+
_s3_inputs = d.pop("s3_inputs", UNSET)
|
|
103
|
+
for s3_inputs_item_data in _s3_inputs or []:
|
|
104
|
+
s3_inputs_item = UpdateAppJsonBodyPolicyS3InputsItem.from_dict(s3_inputs_item_data)
|
|
105
|
+
|
|
106
|
+
s3_inputs.append(s3_inputs_item)
|
|
107
|
+
|
|
87
108
|
_execution_mode = d.pop("execution_mode", UNSET)
|
|
88
109
|
execution_mode: Union[Unset, UpdateAppJsonBodyPolicyExecutionMode]
|
|
89
110
|
if isinstance(_execution_mode, Unset):
|
|
@@ -98,6 +119,7 @@ class UpdateAppJsonBodyPolicy:
|
|
|
98
119
|
update_app_json_body_policy = cls(
|
|
99
120
|
triggerables=triggerables,
|
|
100
121
|
triggerables_v2=triggerables_v2,
|
|
122
|
+
s3_inputs=s3_inputs,
|
|
101
123
|
execution_mode=execution_mode,
|
|
102
124
|
on_behalf_of=on_behalf_of,
|
|
103
125
|
on_behalf_of_email=on_behalf_of_email,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="UpdateAppJsonBodyPolicyS3InputsItem")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class UpdateAppJsonBodyPolicyS3InputsItem:
|
|
11
|
+
""" """
|
|
12
|
+
|
|
13
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
14
|
+
|
|
15
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
16
|
+
field_dict: Dict[str, Any] = {}
|
|
17
|
+
field_dict.update(self.additional_properties)
|
|
18
|
+
field_dict.update({})
|
|
19
|
+
|
|
20
|
+
return field_dict
|
|
21
|
+
|
|
22
|
+
@classmethod
|
|
23
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
24
|
+
d = src_dict.copy()
|
|
25
|
+
update_app_json_body_policy_s3_inputs_item = cls()
|
|
26
|
+
|
|
27
|
+
update_app_json_body_policy_s3_inputs_item.additional_properties = d
|
|
28
|
+
return update_app_json_body_policy_s3_inputs_item
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def additional_keys(self) -> List[str]:
|
|
32
|
+
return list(self.additional_properties.keys())
|
|
33
|
+
|
|
34
|
+
def __getitem__(self, key: str) -> Any:
|
|
35
|
+
return self.additional_properties[key]
|
|
36
|
+
|
|
37
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
38
|
+
self.additional_properties[key] = value
|
|
39
|
+
|
|
40
|
+
def __delitem__(self, key: str) -> None:
|
|
41
|
+
del self.additional_properties[key]
|
|
42
|
+
|
|
43
|
+
def __contains__(self, key: str) -> bool:
|
|
44
|
+
return key in self.additional_properties
|
|
@@ -414,8 +414,9 @@ windmill_api/models/app_history.py,sha256=Zi_The8LlMR_uMAAFW5S9kDuxRIYOy5xNda7gH
|
|
|
414
414
|
windmill_api/models/app_with_last_version.py,sha256=TmtgFDuI0kWzXsWrYSkl_1TbHen2DHVd4NuFZa-vtjg,4472
|
|
415
415
|
windmill_api/models/app_with_last_version_execution_mode.py,sha256=qIImxSIPQynbsACGBqIJhB-8bi-8xi4hMg_YyBAtb38,214
|
|
416
416
|
windmill_api/models/app_with_last_version_extra_perms.py,sha256=PwdYs5zzMNaaImmidOaQNqfftzARIxs04fowevqidYQ,1310
|
|
417
|
-
windmill_api/models/app_with_last_version_policy.py,sha256=
|
|
417
|
+
windmill_api/models/app_with_last_version_policy.py,sha256=3IpZcp_fQO4oUklcoegfo_BnGNrTiNUQ2CjrL6BEnEA,6043
|
|
418
418
|
windmill_api/models/app_with_last_version_policy_execution_mode.py,sha256=aVWz58WMiVW2m4UptxLkqHhpzJ22AgFqDWMkvDcHDcY,220
|
|
419
|
+
windmill_api/models/app_with_last_version_policy_s3_inputs_item.py,sha256=RSwiQ_oKeRMQ8FASSmcVcQLfwhOhS1t7aqccIAjzmt0,1353
|
|
419
420
|
windmill_api/models/app_with_last_version_policy_triggerables.py,sha256=KFsawS0pQLwGyGPVWHtrjG7-Q-ALOcCZDTeE1S4kzzw,2246
|
|
420
421
|
windmill_api/models/app_with_last_version_policy_triggerables_additional_property.py,sha256=wNs8Q9ebSEmFzmRLtSBpN4QsaxLiBMM7q9xaqKVFfTQ,1443
|
|
421
422
|
windmill_api/models/app_with_last_version_policy_triggerables_v2.py,sha256=jvhUvwwRycCoeI2cDymIqBLMciI-9EM1-rp0P_f5kwM,2277
|
|
@@ -424,8 +425,9 @@ windmill_api/models/app_with_last_version_value.py,sha256=brPNmAx6NCr5HKbe5wKFtb
|
|
|
424
425
|
windmill_api/models/app_with_last_version_w_draft.py,sha256=PeqYAmU6ZPxAqTtjHkVHxy6x8bHcuLrzU2HmB54FfRA,5244
|
|
425
426
|
windmill_api/models/app_with_last_version_w_draft_execution_mode.py,sha256=0hN9l3skVkjvWlxO4ZJwGBaigojUYX9gx7lojJQM-hc,220
|
|
426
427
|
windmill_api/models/app_with_last_version_w_draft_extra_perms.py,sha256=C3R5uHuHaDZ6SFxwwfwNC8YZVPHap43Y3vBgiv4EBzA,1346
|
|
427
|
-
windmill_api/models/app_with_last_version_w_draft_policy.py,sha256=
|
|
428
|
+
windmill_api/models/app_with_last_version_w_draft_policy.py,sha256=Uru-Q6_71ev4xX5ZE1rSUCh9jUMClSrwAM8lv67c3hg,6359
|
|
428
429
|
windmill_api/models/app_with_last_version_w_draft_policy_execution_mode.py,sha256=Va3rFObE1jYMRH30XQ79Xqe1WYom3iqmnfTUCkZVdfI,226
|
|
430
|
+
windmill_api/models/app_with_last_version_w_draft_policy_s3_inputs_item.py,sha256=HmBvIwQ56Jdu2R1ALvlOmW0jOZDYte-wfX8gJ4Yf2dU,1389
|
|
429
431
|
windmill_api/models/app_with_last_version_w_draft_policy_triggerables.py,sha256=cOnIMljxFgJ8Z4X97_9DidT0GS8FMiOtBQxng7P-jE8,2334
|
|
430
432
|
windmill_api/models/app_with_last_version_w_draft_policy_triggerables_additional_property.py,sha256=ExZOaIF5UpAUs_-TW8ftdsmcRKfs18EAnY6TQ-ixTaI,1479
|
|
431
433
|
windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2.py,sha256=2rGCgU9OATzEM4-L__E1Mddscr3yFS_K9K8PO-Ve0NA,2365
|
|
@@ -608,8 +610,9 @@ windmill_api/models/count_search_logs_index_response_200.py,sha256=xZiHIVCwj4EcS
|
|
|
608
610
|
windmill_api/models/count_search_logs_index_response_200_count_per_host.py,sha256=HwuTlvhuCIVeOTg3zDRc1tTZyjKfgsvenuHW8Svl9pg,1444
|
|
609
611
|
windmill_api/models/create_account_json_body.py,sha256=42H2HXa-7_1IcT72OXaiF8feh3R60_NYoGet8735Di8,2058
|
|
610
612
|
windmill_api/models/create_app_json_body.py,sha256=tv4Fqsk6qE6HyfybPlWBZr1kKvvDDDovQiMxMazmuEE,2930
|
|
611
|
-
windmill_api/models/create_app_json_body_policy.py,sha256=
|
|
613
|
+
windmill_api/models/create_app_json_body_policy.py,sha256=OrT1IJPaRGS0VS1T23PnPux1zIMZmoT_ZoBS_-BztEw,6009
|
|
612
614
|
windmill_api/models/create_app_json_body_policy_execution_mode.py,sha256=RkXVQ4__WOhBPzjy3GGGDqhzmDs--wMcKxI4f10CzVE,219
|
|
615
|
+
windmill_api/models/create_app_json_body_policy_s3_inputs_item.py,sha256=_bzFR09b1B7QDsgwuCW4Q0ZxlNCWmcghPjtt3l32fAQ,1348
|
|
613
616
|
windmill_api/models/create_app_json_body_policy_triggerables.py,sha256=3tpK9zPHVJpfs6mcKpoQgszJRlzOSc4qmIrBO0I2MdI,2233
|
|
614
617
|
windmill_api/models/create_app_json_body_policy_triggerables_additional_property.py,sha256=65uGZH8CaesjJE64qK4JEtwBGnzqXnkU2DY8hzYFeIk,1438
|
|
615
618
|
windmill_api/models/create_app_json_body_policy_triggerables_v2.py,sha256=TlcpqNYCK5mI-gR_4tOflZkwdzboJD5lsKqNJUQhHoA,2264
|
|
@@ -1259,8 +1262,9 @@ windmill_api/models/forloop_flow_type.py,sha256=8ioKTCA6pvGW7OMHwII6iy5sPAEbXMNB
|
|
|
1259
1262
|
windmill_api/models/get_app_by_path_response_200.py,sha256=jfZXkGY8bH3yTb6pwIqOGJrOd3NknSWAHqUWAOG-doI,4647
|
|
1260
1263
|
windmill_api/models/get_app_by_path_response_200_execution_mode.py,sha256=cOCfMpLkbM7xZmKRVYK-7ZaI3g0W8U8MyeW1qbQwwCc,219
|
|
1261
1264
|
windmill_api/models/get_app_by_path_response_200_extra_perms.py,sha256=UW4Ip95ynl7bDQzMHKN7X9NCk-BrW0Xmn4PF340cd5M,1341
|
|
1262
|
-
windmill_api/models/get_app_by_path_response_200_policy.py,sha256=
|
|
1265
|
+
windmill_api/models/get_app_by_path_response_200_policy.py,sha256=Si-8tafBOCXTGLLvV0yN4r7jQ1hiY_nYbE4k4seen3w,6283
|
|
1263
1266
|
windmill_api/models/get_app_by_path_response_200_policy_execution_mode.py,sha256=wCvVk97gSfD7jkhf93PcJGrPe0UIBtLVVCG2HQtBgqA,225
|
|
1267
|
+
windmill_api/models/get_app_by_path_response_200_policy_s3_inputs_item.py,sha256=I7YDt6OwPs4gJWHfZY2MZODPaIdqrQqFumT_p1LpLKI,1384
|
|
1264
1268
|
windmill_api/models/get_app_by_path_response_200_policy_triggerables.py,sha256=LYtoy6aGSxFA5NCK5a1_7Pfk32NfR9HaZyft6a75QpA,2321
|
|
1265
1269
|
windmill_api/models/get_app_by_path_response_200_policy_triggerables_additional_property.py,sha256=zg_uUfmuUsH9YvjqVPQ0AUfekweoj3iZIRMPzmz8w7k,1474
|
|
1266
1270
|
windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2.py,sha256=300ALJevnLDh69ABv8IKLZn_O4mFmOTyXpouit6antw,2352
|
|
@@ -1269,8 +1273,9 @@ windmill_api/models/get_app_by_path_response_200_value.py,sha256=qp4kOqpKgKt2TYN
|
|
|
1269
1273
|
windmill_api/models/get_app_by_path_with_draft_response_200.py,sha256=z2NADInOQw-UX4XYz8RHuzZ-PmEtkCSU7xPCFI40k3Y,5546
|
|
1270
1274
|
windmill_api/models/get_app_by_path_with_draft_response_200_execution_mode.py,sha256=_vDUPGb5EnAVZBEA3fkS1OOPXDl_MkcqVlglzRem7cs,228
|
|
1271
1275
|
windmill_api/models/get_app_by_path_with_draft_response_200_extra_perms.py,sha256=QfB5S4u1JKZ2ACgesGRMRVWdELsGOyfxqxbO2ep8VAg,1392
|
|
1272
|
-
windmill_api/models/get_app_by_path_with_draft_response_200_policy.py,sha256=
|
|
1276
|
+
windmill_api/models/get_app_by_path_with_draft_response_200_policy.py,sha256=I2bAubd6GVPBdlMiZnLKDxqfba4xvHzaVmdruNQ9u0I,6694
|
|
1273
1277
|
windmill_api/models/get_app_by_path_with_draft_response_200_policy_execution_mode.py,sha256=vcIgxB9-vtweebForRdHUTHaVYcfNqtoYRpqZ-AERX4,234
|
|
1278
|
+
windmill_api/models/get_app_by_path_with_draft_response_200_policy_s3_inputs_item.py,sha256=w05RaaOClr09hNeEawxN0oSJQXnOEHnmnfyXw669LJU,1435
|
|
1274
1279
|
windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables.py,sha256=Q8gxNRQqlOQdCGGnF6ybyyhJpF9NttqcaK69JqomZWk,2492
|
|
1275
1280
|
windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_additional_property.py,sha256=Ukpzm5sLkPZi3koLLkNgSsU4daNH2juCH69dldh7yWA,1525
|
|
1276
1281
|
windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_v2.py,sha256=UhyAQMiPh02i6iNaJjI08lmArkec4pdhoilg8_tbyy4,2523
|
|
@@ -1279,8 +1284,9 @@ windmill_api/models/get_app_by_path_with_draft_response_200_value.py,sha256=FThy
|
|
|
1279
1284
|
windmill_api/models/get_app_by_version_response_200.py,sha256=jVUj0P_7WW-NssDHPfXCenLBM8HltTJj7yfDNsCZHM0,4740
|
|
1280
1285
|
windmill_api/models/get_app_by_version_response_200_execution_mode.py,sha256=9aoj6sI07A_eipp7QUTf2iqCVH-SkuaB7rP8L5gGmsE,222
|
|
1281
1286
|
windmill_api/models/get_app_by_version_response_200_extra_perms.py,sha256=IgZTuV0NYCy9E_M8TfVNlZ_q6ZNC93n110a12UHWa54,1356
|
|
1282
|
-
windmill_api/models/get_app_by_version_response_200_policy.py,sha256=
|
|
1287
|
+
windmill_api/models/get_app_by_version_response_200_policy.py,sha256=ULYgI6YIKPwpyWz4oheQEi9hUZIAX55Kxs84pXW6Ctk,6461
|
|
1283
1288
|
windmill_api/models/get_app_by_version_response_200_policy_execution_mode.py,sha256=6b13uIlXdaqyUWoue-dQaHUnGJYEmqU438H7A6gPovY,228
|
|
1289
|
+
windmill_api/models/get_app_by_version_response_200_policy_s3_inputs_item.py,sha256=oeac-I3VaHeLCxtkjEhviWkYY7RFBYg6rnTYdhKjlUc,1399
|
|
1284
1290
|
windmill_api/models/get_app_by_version_response_200_policy_triggerables.py,sha256=mzWi7WUl_FcYdjvi4TC_hdDMyia9f7y4Gf9s_KInYqo,2360
|
|
1285
1291
|
windmill_api/models/get_app_by_version_response_200_policy_triggerables_additional_property.py,sha256=-bOhk9KRVtVXRzFKeWnwAbmGwjU-KK44Gvv53muYZnU,1489
|
|
1286
1292
|
windmill_api/models/get_app_by_version_response_200_policy_triggerables_v2.py,sha256=FzoZXlMyG5L7PWFsB-fx7g6uCbi9nGAKOQ0J0eI6sjU,2391
|
|
@@ -1839,8 +1845,9 @@ windmill_api/models/get_premium_info_response_200.py,sha256=QCdlflGMNdMMO9bFO1wy
|
|
|
1839
1845
|
windmill_api/models/get_public_app_by_secret_response_200.py,sha256=eI9vsEtbPNuBAQW5Qo__7pG77FtG3j5hdPE2JGQ-LZw,4905
|
|
1840
1846
|
windmill_api/models/get_public_app_by_secret_response_200_execution_mode.py,sha256=uKlx8CC4ggzNDvBNWHRxlX9xIVpZlbZxjrVICVfJgx0,227
|
|
1841
1847
|
windmill_api/models/get_public_app_by_secret_response_200_extra_perms.py,sha256=hzIbMaY9y6GHEZj2ccvO6r3Wc93M-DEw5KH4FI9-Wxs,1384
|
|
1842
|
-
windmill_api/models/get_public_app_by_secret_response_200_policy.py,sha256=
|
|
1848
|
+
windmill_api/models/get_public_app_by_secret_response_200_policy.py,sha256=5hgbgC79-stmR1IJWQkixRM2zNa58chMJVZha71PI5s,6650
|
|
1843
1849
|
windmill_api/models/get_public_app_by_secret_response_200_policy_execution_mode.py,sha256=UbRpnFNlOXd9KrzCN24Fh_S8uSsySmTdJkXcE57qVPY,233
|
|
1850
|
+
windmill_api/models/get_public_app_by_secret_response_200_policy_s3_inputs_item.py,sha256=ZbXM51rUQuqr8fQ0gud1tc4Q8knvUgHiHIhy-AoC9mk,1427
|
|
1844
1851
|
windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables.py,sha256=Wx6fGDS78ZmiJmEkxEcsOBtLvUrT-41ZAu_dGbDfmIg,2474
|
|
1845
1852
|
windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_additional_property.py,sha256=WhJZ0_eTRr9uUkFEVjXmVd-33sYprlQranxyR64Zu5U,1517
|
|
1846
1853
|
windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_v2.py,sha256=FTVwo326D0_-X8cDmK0QqJLuFci-GmtE54MfKbkr23Y,2505
|
|
@@ -3090,8 +3097,9 @@ windmill_api/models/polars_connection_settings_v2_response_200.py,sha256=axpS0jB
|
|
|
3090
3097
|
windmill_api/models/polars_connection_settings_v2_response_200_storage_options.py,sha256=9i2DlJy0qhm9Sms7x9MelNBb1b1ffLl-jAXq8glYvDg,3016
|
|
3091
3098
|
windmill_api/models/polars_connection_settings_v2_response_200s3_fs_args.py,sha256=2etksI0sZ8YWJT-s25Ay7j3GkygHthUj5fcg-WEZkcA,3395
|
|
3092
3099
|
windmill_api/models/polars_connection_settings_v2_response_200s3_fs_args_client_kwargs.py,sha256=7Z84yGia9FF0NzgeZ_FYu6yIndLouhV3xPkUHfR5cSs,1741
|
|
3093
|
-
windmill_api/models/policy.py,sha256=
|
|
3100
|
+
windmill_api/models/policy.py,sha256=H0vVy8tAixisppKpWDmlqH3z_k2GDyIguct4xMU4uwM,5391
|
|
3094
3101
|
windmill_api/models/policy_execution_mode.py,sha256=Xge_h6x08zJvL7YP6KmqYFNoeK4T6g1IxsPAMl2DLDk,202
|
|
3102
|
+
windmill_api/models/policy_s3_inputs_item.py,sha256=dWz8TmPrWmDt7VQZf8I4muEqlfBEvEU_d7ykonbmHiY,1251
|
|
3095
3103
|
windmill_api/models/policy_triggerables.py,sha256=XczGGXAgfx0T_ytmS_YnzEzAgGVMLr8uUeifNfFO9sA,1936
|
|
3096
3104
|
windmill_api/models/policy_triggerables_additional_property.py,sha256=RJ-rV5KiFZb8ywJkWBxP84Uh7fSwzARLM33GL8ewq7E,1341
|
|
3097
3105
|
windmill_api/models/policy_triggerables_v2.py,sha256=hrfsiWwRir4QkM16sgUHiXROpRfcMpo_iZ0rYUfFkuY,1967
|
|
@@ -3361,8 +3369,9 @@ windmill_api/models/unstar_json_body.py,sha256=D9nJC1BCQu4v1AANAqhA_afp8XoV1O4m5
|
|
|
3361
3369
|
windmill_api/models/unstar_json_body_favorite_kind.py,sha256=5XdeZQOEspYnnc1qkjwfb01mHKPZA5wZbzptlU4W5tc,211
|
|
3362
3370
|
windmill_api/models/update_app_history_json_body.py,sha256=lvV37A0wrVCQOnXv0Uf4cak11ZnlsgXIzJLAQ6OXzJE,1688
|
|
3363
3371
|
windmill_api/models/update_app_json_body.py,sha256=Z4Vh3LRHBJA-A8jO5z7SbAdtauplxa7jgmdS7Z98rJg,3202
|
|
3364
|
-
windmill_api/models/update_app_json_body_policy.py,sha256=
|
|
3372
|
+
windmill_api/models/update_app_json_body_policy.py,sha256=Er9AdCxgmKv2DQTPUsgRMu-D_6iO7eNFFOmPKVqsyZA,6009
|
|
3365
3373
|
windmill_api/models/update_app_json_body_policy_execution_mode.py,sha256=OrdIV15-YRXsz64soG5tzJl9_goWJWi1uBIU98KIU0Q,219
|
|
3374
|
+
windmill_api/models/update_app_json_body_policy_s3_inputs_item.py,sha256=yog3Bytyo6ysNcRoCzwOkBwEtlR00QV9usZn9WqmJtQ,1348
|
|
3366
3375
|
windmill_api/models/update_app_json_body_policy_triggerables.py,sha256=0XyweZo3DlSZM231UXVY3j3GaQUdaSKuDucpXzb14KE,2233
|
|
3367
3376
|
windmill_api/models/update_app_json_body_policy_triggerables_additional_property.py,sha256=b2sFXj7rrESreva0IlSetUdguxAhe4MTj96szMVX5Nk,1438
|
|
3368
3377
|
windmill_api/models/update_app_json_body_policy_triggerables_v2.py,sha256=JtPcG2MrDNr-lLy9rxk54fgY9qhjn0I_tNavNIskpzA,2264
|
|
@@ -3459,7 +3468,7 @@ windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_
|
|
|
3459
3468
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
3460
3469
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3461
3470
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3462
|
-
windmill_api-1.
|
|
3463
|
-
windmill_api-1.
|
|
3464
|
-
windmill_api-1.
|
|
3465
|
-
windmill_api-1.
|
|
3471
|
+
windmill_api-1.423.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3472
|
+
windmill_api-1.423.1.dist-info/METADATA,sha256=C_120zhUyj2dD69iVnljvft0sCvSCk-oH0zt0BYZkJk,5023
|
|
3473
|
+
windmill_api-1.423.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3474
|
+
windmill_api-1.423.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|