windmill-api 1.482.1__py3-none-any.whl → 1.483.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.

@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class AwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -3,6 +3,7 @@ from typing import Any, Dict, List, Type, TypeVar, Union, cast
3
3
  from attrs import define as _attrs_define
4
4
  from attrs import field as _attrs_field
5
5
 
6
+ from ..models.create_sqs_trigger_json_body_aws_auth_resource_type import CreateSqsTriggerJsonBodyAwsAuthResourceType
6
7
  from ..types import UNSET, Unset
7
8
 
8
9
  T = TypeVar("T", bound="CreateSqsTriggerJsonBody")
@@ -13,6 +14,7 @@ class CreateSqsTriggerJsonBody:
13
14
  """
14
15
  Attributes:
15
16
  queue_url (str):
17
+ aws_auth_resource_type (CreateSqsTriggerJsonBodyAwsAuthResourceType):
16
18
  aws_resource_path (str):
17
19
  path (str):
18
20
  script_path (str):
@@ -22,6 +24,7 @@ class CreateSqsTriggerJsonBody:
22
24
  """
23
25
 
24
26
  queue_url: str
27
+ aws_auth_resource_type: CreateSqsTriggerJsonBodyAwsAuthResourceType
25
28
  aws_resource_path: str
26
29
  path: str
27
30
  script_path: str
@@ -32,6 +35,8 @@ class CreateSqsTriggerJsonBody:
32
35
 
33
36
  def to_dict(self) -> Dict[str, Any]:
34
37
  queue_url = self.queue_url
38
+ aws_auth_resource_type = self.aws_auth_resource_type.value
39
+
35
40
  aws_resource_path = self.aws_resource_path
36
41
  path = self.path
37
42
  script_path = self.script_path
@@ -47,6 +52,7 @@ class CreateSqsTriggerJsonBody:
47
52
  field_dict.update(
48
53
  {
49
54
  "queue_url": queue_url,
55
+ "aws_auth_resource_type": aws_auth_resource_type,
50
56
  "aws_resource_path": aws_resource_path,
51
57
  "path": path,
52
58
  "script_path": script_path,
@@ -65,6 +71,8 @@ class CreateSqsTriggerJsonBody:
65
71
  d = src_dict.copy()
66
72
  queue_url = d.pop("queue_url")
67
73
 
74
+ aws_auth_resource_type = CreateSqsTriggerJsonBodyAwsAuthResourceType(d.pop("aws_auth_resource_type"))
75
+
68
76
  aws_resource_path = d.pop("aws_resource_path")
69
77
 
70
78
  path = d.pop("path")
@@ -79,6 +87,7 @@ class CreateSqsTriggerJsonBody:
79
87
 
80
88
  create_sqs_trigger_json_body = cls(
81
89
  queue_url=queue_url,
90
+ aws_auth_resource_type=aws_auth_resource_type,
82
91
  aws_resource_path=aws_resource_path,
83
92
  path=path,
84
93
  script_path=script_path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class CreateSqsTriggerJsonBodyAwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -3,6 +3,7 @@ from typing import Any, Dict, List, Type, TypeVar, Union, cast
3
3
  from attrs import define as _attrs_define
4
4
  from attrs import field as _attrs_field
5
5
 
6
+ from ..models.edit_sqs_trigger_aws_auth_resource_type import EditSqsTriggerAwsAuthResourceType
6
7
  from ..types import UNSET, Unset
7
8
 
8
9
  T = TypeVar("T", bound="EditSqsTrigger")
@@ -13,6 +14,7 @@ class EditSqsTrigger:
13
14
  """
14
15
  Attributes:
15
16
  queue_url (str):
17
+ aws_auth_resource_type (EditSqsTriggerAwsAuthResourceType):
16
18
  aws_resource_path (str):
17
19
  path (str):
18
20
  script_path (str):
@@ -22,6 +24,7 @@ class EditSqsTrigger:
22
24
  """
23
25
 
24
26
  queue_url: str
27
+ aws_auth_resource_type: EditSqsTriggerAwsAuthResourceType
25
28
  aws_resource_path: str
26
29
  path: str
27
30
  script_path: str
@@ -32,6 +35,8 @@ class EditSqsTrigger:
32
35
 
33
36
  def to_dict(self) -> Dict[str, Any]:
34
37
  queue_url = self.queue_url
38
+ aws_auth_resource_type = self.aws_auth_resource_type.value
39
+
35
40
  aws_resource_path = self.aws_resource_path
36
41
  path = self.path
37
42
  script_path = self.script_path
@@ -46,6 +51,7 @@ class EditSqsTrigger:
46
51
  field_dict.update(
47
52
  {
48
53
  "queue_url": queue_url,
54
+ "aws_auth_resource_type": aws_auth_resource_type,
49
55
  "aws_resource_path": aws_resource_path,
50
56
  "path": path,
51
57
  "script_path": script_path,
@@ -63,6 +69,8 @@ class EditSqsTrigger:
63
69
  d = src_dict.copy()
64
70
  queue_url = d.pop("queue_url")
65
71
 
72
+ aws_auth_resource_type = EditSqsTriggerAwsAuthResourceType(d.pop("aws_auth_resource_type"))
73
+
66
74
  aws_resource_path = d.pop("aws_resource_path")
67
75
 
68
76
  path = d.pop("path")
@@ -77,6 +85,7 @@ class EditSqsTrigger:
77
85
 
78
86
  edit_sqs_trigger = cls(
79
87
  queue_url=queue_url,
88
+ aws_auth_resource_type=aws_auth_resource_type,
80
89
  aws_resource_path=aws_resource_path,
81
90
  path=path,
82
91
  script_path=script_path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class EditSqsTriggerAwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -5,6 +5,7 @@ from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
  from dateutil.parser import isoparse
7
7
 
8
+ from ..models.get_sqs_trigger_response_200_aws_auth_resource_type import GetSqsTriggerResponse200AwsAuthResourceType
8
9
  from ..types import UNSET, Unset
9
10
 
10
11
  if TYPE_CHECKING:
@@ -19,6 +20,7 @@ class GetSqsTriggerResponse200:
19
20
  """
20
21
  Attributes:
21
22
  queue_url (str):
23
+ aws_auth_resource_type (GetSqsTriggerResponse200AwsAuthResourceType):
22
24
  aws_resource_path (str):
23
25
  enabled (bool):
24
26
  path (str):
@@ -36,6 +38,7 @@ class GetSqsTriggerResponse200:
36
38
  """
37
39
 
38
40
  queue_url: str
41
+ aws_auth_resource_type: GetSqsTriggerResponse200AwsAuthResourceType
39
42
  aws_resource_path: str
40
43
  enabled: bool
41
44
  path: str
@@ -54,6 +57,8 @@ class GetSqsTriggerResponse200:
54
57
 
55
58
  def to_dict(self) -> Dict[str, Any]:
56
59
  queue_url = self.queue_url
60
+ aws_auth_resource_type = self.aws_auth_resource_type.value
61
+
57
62
  aws_resource_path = self.aws_resource_path
58
63
  enabled = self.enabled
59
64
  path = self.path
@@ -82,6 +87,7 @@ class GetSqsTriggerResponse200:
82
87
  field_dict.update(
83
88
  {
84
89
  "queue_url": queue_url,
90
+ "aws_auth_resource_type": aws_auth_resource_type,
85
91
  "aws_resource_path": aws_resource_path,
86
92
  "enabled": enabled,
87
93
  "path": path,
@@ -112,6 +118,8 @@ class GetSqsTriggerResponse200:
112
118
  d = src_dict.copy()
113
119
  queue_url = d.pop("queue_url")
114
120
 
121
+ aws_auth_resource_type = GetSqsTriggerResponse200AwsAuthResourceType(d.pop("aws_auth_resource_type"))
122
+
115
123
  aws_resource_path = d.pop("aws_resource_path")
116
124
 
117
125
  enabled = d.pop("enabled")
@@ -147,6 +155,7 @@ class GetSqsTriggerResponse200:
147
155
 
148
156
  get_sqs_trigger_response_200 = cls(
149
157
  queue_url=queue_url,
158
+ aws_auth_resource_type=aws_auth_resource_type,
150
159
  aws_resource_path=aws_resource_path,
151
160
  enabled=enabled,
152
161
  path=path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class GetSqsTriggerResponse200AwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -5,6 +5,9 @@ from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
  from dateutil.parser import isoparse
7
7
 
8
+ from ..models.list_sqs_triggers_response_200_item_aws_auth_resource_type import (
9
+ ListSqsTriggersResponse200ItemAwsAuthResourceType,
10
+ )
8
11
  from ..types import UNSET, Unset
9
12
 
10
13
  if TYPE_CHECKING:
@@ -19,6 +22,7 @@ class ListSqsTriggersResponse200Item:
19
22
  """
20
23
  Attributes:
21
24
  queue_url (str):
25
+ aws_auth_resource_type (ListSqsTriggersResponse200ItemAwsAuthResourceType):
22
26
  aws_resource_path (str):
23
27
  enabled (bool):
24
28
  path (str):
@@ -36,6 +40,7 @@ class ListSqsTriggersResponse200Item:
36
40
  """
37
41
 
38
42
  queue_url: str
43
+ aws_auth_resource_type: ListSqsTriggersResponse200ItemAwsAuthResourceType
39
44
  aws_resource_path: str
40
45
  enabled: bool
41
46
  path: str
@@ -54,6 +59,8 @@ class ListSqsTriggersResponse200Item:
54
59
 
55
60
  def to_dict(self) -> Dict[str, Any]:
56
61
  queue_url = self.queue_url
62
+ aws_auth_resource_type = self.aws_auth_resource_type.value
63
+
57
64
  aws_resource_path = self.aws_resource_path
58
65
  enabled = self.enabled
59
66
  path = self.path
@@ -82,6 +89,7 @@ class ListSqsTriggersResponse200Item:
82
89
  field_dict.update(
83
90
  {
84
91
  "queue_url": queue_url,
92
+ "aws_auth_resource_type": aws_auth_resource_type,
85
93
  "aws_resource_path": aws_resource_path,
86
94
  "enabled": enabled,
87
95
  "path": path,
@@ -112,6 +120,8 @@ class ListSqsTriggersResponse200Item:
112
120
  d = src_dict.copy()
113
121
  queue_url = d.pop("queue_url")
114
122
 
123
+ aws_auth_resource_type = ListSqsTriggersResponse200ItemAwsAuthResourceType(d.pop("aws_auth_resource_type"))
124
+
115
125
  aws_resource_path = d.pop("aws_resource_path")
116
126
 
117
127
  enabled = d.pop("enabled")
@@ -147,6 +157,7 @@ class ListSqsTriggersResponse200Item:
147
157
 
148
158
  list_sqs_triggers_response_200_item = cls(
149
159
  queue_url=queue_url,
160
+ aws_auth_resource_type=aws_auth_resource_type,
150
161
  aws_resource_path=aws_resource_path,
151
162
  enabled=enabled,
152
163
  path=path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class ListSqsTriggersResponse200ItemAwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -3,6 +3,7 @@ from typing import Any, Dict, List, Type, TypeVar, Union, cast
3
3
  from attrs import define as _attrs_define
4
4
  from attrs import field as _attrs_field
5
5
 
6
+ from ..models.new_sqs_trigger_aws_auth_resource_type import NewSqsTriggerAwsAuthResourceType
6
7
  from ..types import UNSET, Unset
7
8
 
8
9
  T = TypeVar("T", bound="NewSqsTrigger")
@@ -13,6 +14,7 @@ class NewSqsTrigger:
13
14
  """
14
15
  Attributes:
15
16
  queue_url (str):
17
+ aws_auth_resource_type (NewSqsTriggerAwsAuthResourceType):
16
18
  aws_resource_path (str):
17
19
  path (str):
18
20
  script_path (str):
@@ -22,6 +24,7 @@ class NewSqsTrigger:
22
24
  """
23
25
 
24
26
  queue_url: str
27
+ aws_auth_resource_type: NewSqsTriggerAwsAuthResourceType
25
28
  aws_resource_path: str
26
29
  path: str
27
30
  script_path: str
@@ -32,6 +35,8 @@ class NewSqsTrigger:
32
35
 
33
36
  def to_dict(self) -> Dict[str, Any]:
34
37
  queue_url = self.queue_url
38
+ aws_auth_resource_type = self.aws_auth_resource_type.value
39
+
35
40
  aws_resource_path = self.aws_resource_path
36
41
  path = self.path
37
42
  script_path = self.script_path
@@ -47,6 +52,7 @@ class NewSqsTrigger:
47
52
  field_dict.update(
48
53
  {
49
54
  "queue_url": queue_url,
55
+ "aws_auth_resource_type": aws_auth_resource_type,
50
56
  "aws_resource_path": aws_resource_path,
51
57
  "path": path,
52
58
  "script_path": script_path,
@@ -65,6 +71,8 @@ class NewSqsTrigger:
65
71
  d = src_dict.copy()
66
72
  queue_url = d.pop("queue_url")
67
73
 
74
+ aws_auth_resource_type = NewSqsTriggerAwsAuthResourceType(d.pop("aws_auth_resource_type"))
75
+
68
76
  aws_resource_path = d.pop("aws_resource_path")
69
77
 
70
78
  path = d.pop("path")
@@ -79,6 +87,7 @@ class NewSqsTrigger:
79
87
 
80
88
  new_sqs_trigger = cls(
81
89
  queue_url=queue_url,
90
+ aws_auth_resource_type=aws_auth_resource_type,
82
91
  aws_resource_path=aws_resource_path,
83
92
  path=path,
84
93
  script_path=script_path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class NewSqsTriggerAwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -5,6 +5,7 @@ from attrs import define as _attrs_define
5
5
  from attrs import field as _attrs_field
6
6
  from dateutil.parser import isoparse
7
7
 
8
+ from ..models.sqs_trigger_aws_auth_resource_type import SqsTriggerAwsAuthResourceType
8
9
  from ..types import UNSET, Unset
9
10
 
10
11
  if TYPE_CHECKING:
@@ -19,6 +20,7 @@ class SqsTrigger:
19
20
  """
20
21
  Attributes:
21
22
  queue_url (str):
23
+ aws_auth_resource_type (SqsTriggerAwsAuthResourceType):
22
24
  aws_resource_path (str):
23
25
  enabled (bool):
24
26
  path (str):
@@ -36,6 +38,7 @@ class SqsTrigger:
36
38
  """
37
39
 
38
40
  queue_url: str
41
+ aws_auth_resource_type: SqsTriggerAwsAuthResourceType
39
42
  aws_resource_path: str
40
43
  enabled: bool
41
44
  path: str
@@ -54,6 +57,8 @@ class SqsTrigger:
54
57
 
55
58
  def to_dict(self) -> Dict[str, Any]:
56
59
  queue_url = self.queue_url
60
+ aws_auth_resource_type = self.aws_auth_resource_type.value
61
+
57
62
  aws_resource_path = self.aws_resource_path
58
63
  enabled = self.enabled
59
64
  path = self.path
@@ -82,6 +87,7 @@ class SqsTrigger:
82
87
  field_dict.update(
83
88
  {
84
89
  "queue_url": queue_url,
90
+ "aws_auth_resource_type": aws_auth_resource_type,
85
91
  "aws_resource_path": aws_resource_path,
86
92
  "enabled": enabled,
87
93
  "path": path,
@@ -112,6 +118,8 @@ class SqsTrigger:
112
118
  d = src_dict.copy()
113
119
  queue_url = d.pop("queue_url")
114
120
 
121
+ aws_auth_resource_type = SqsTriggerAwsAuthResourceType(d.pop("aws_auth_resource_type"))
122
+
115
123
  aws_resource_path = d.pop("aws_resource_path")
116
124
 
117
125
  enabled = d.pop("enabled")
@@ -147,6 +155,7 @@ class SqsTrigger:
147
155
 
148
156
  sqs_trigger = cls(
149
157
  queue_url=queue_url,
158
+ aws_auth_resource_type=aws_auth_resource_type,
150
159
  aws_resource_path=aws_resource_path,
151
160
  enabled=enabled,
152
161
  path=path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class SqsTriggerAwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -3,6 +3,7 @@ from typing import Any, Dict, List, Type, TypeVar, Union, cast
3
3
  from attrs import define as _attrs_define
4
4
  from attrs import field as _attrs_field
5
5
 
6
+ from ..models.update_sqs_trigger_json_body_aws_auth_resource_type import UpdateSqsTriggerJsonBodyAwsAuthResourceType
6
7
  from ..types import UNSET, Unset
7
8
 
8
9
  T = TypeVar("T", bound="UpdateSqsTriggerJsonBody")
@@ -13,6 +14,7 @@ class UpdateSqsTriggerJsonBody:
13
14
  """
14
15
  Attributes:
15
16
  queue_url (str):
17
+ aws_auth_resource_type (UpdateSqsTriggerJsonBodyAwsAuthResourceType):
16
18
  aws_resource_path (str):
17
19
  path (str):
18
20
  script_path (str):
@@ -22,6 +24,7 @@ class UpdateSqsTriggerJsonBody:
22
24
  """
23
25
 
24
26
  queue_url: str
27
+ aws_auth_resource_type: UpdateSqsTriggerJsonBodyAwsAuthResourceType
25
28
  aws_resource_path: str
26
29
  path: str
27
30
  script_path: str
@@ -32,6 +35,8 @@ class UpdateSqsTriggerJsonBody:
32
35
 
33
36
  def to_dict(self) -> Dict[str, Any]:
34
37
  queue_url = self.queue_url
38
+ aws_auth_resource_type = self.aws_auth_resource_type.value
39
+
35
40
  aws_resource_path = self.aws_resource_path
36
41
  path = self.path
37
42
  script_path = self.script_path
@@ -46,6 +51,7 @@ class UpdateSqsTriggerJsonBody:
46
51
  field_dict.update(
47
52
  {
48
53
  "queue_url": queue_url,
54
+ "aws_auth_resource_type": aws_auth_resource_type,
49
55
  "aws_resource_path": aws_resource_path,
50
56
  "path": path,
51
57
  "script_path": script_path,
@@ -63,6 +69,8 @@ class UpdateSqsTriggerJsonBody:
63
69
  d = src_dict.copy()
64
70
  queue_url = d.pop("queue_url")
65
71
 
72
+ aws_auth_resource_type = UpdateSqsTriggerJsonBodyAwsAuthResourceType(d.pop("aws_auth_resource_type"))
73
+
66
74
  aws_resource_path = d.pop("aws_resource_path")
67
75
 
68
76
  path = d.pop("path")
@@ -77,6 +85,7 @@ class UpdateSqsTriggerJsonBody:
77
85
 
78
86
  update_sqs_trigger_json_body = cls(
79
87
  queue_url=queue_url,
88
+ aws_auth_resource_type=aws_auth_resource_type,
80
89
  aws_resource_path=aws_resource_path,
81
90
  path=path,
82
91
  script_path=script_path,
@@ -0,0 +1,9 @@
1
+ from enum import Enum
2
+
3
+
4
+ class UpdateSqsTriggerJsonBodyAwsAuthResourceType(str, Enum):
5
+ CREDENTIALS = "credentials"
6
+ OIDC = "oidc"
7
+
8
+ def __str__(self) -> str:
9
+ return str(self.value)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.482.1
3
+ Version: 1.483.1
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -576,6 +576,7 @@ windmill_api/models/audit_log_operation.py,sha256=Be0y5HK1MOjj0Bjx2kld8UKVI_PXqt
576
576
  windmill_api/models/audit_log_parameters.py,sha256=942p2zW1l989YhRoD-tzZkzm9L9WCqPVFEytAipdc1E,1248
577
577
  windmill_api/models/authentication_method.py,sha256=ziTNuOTUQLHVFyfFgzXx1ul2mAkbxFyfMhhSwgevBVw,287
578
578
  windmill_api/models/autoscaling_event.py,sha256=0WFnvn6WTe_bJ6YGwZrhkEHUfSGR0v-4ZN8WAVAUTqE,3367
579
+ windmill_api/models/aws_auth_resource_type.py,sha256=xzZX9jOeD9CZ4kLJLp6EeLzcltOAeI7mncYWvKLTjD8,174
579
580
  windmill_api/models/batch_re_run_jobs_json_body.py,sha256=k9-g_Zgd83AQLM3IrpJlYVSJjdiXOCDE7xW59HmmHMo,2984
580
581
  windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path.py,sha256=3SaNbW7uiSJjaR4JdDje1zHjoafSjU7vD6T5qB-k-FY,2305
581
582
  windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property.py,sha256=ea9O4zX1dsnjEw7GirYi3eotXErEVyCH7_5zunIVUVs,3377
@@ -824,7 +825,8 @@ windmill_api/models/create_script_json_body.py,sha256=VMnojdxvBrNC4ZQNAv1k0d94oK
824
825
  windmill_api/models/create_script_json_body_kind.py,sha256=Noy3362frzTvVhA8awS4-lKNTHnbec_fXwsO7JQ6t7k,283
825
826
  windmill_api/models/create_script_json_body_language.py,sha256=xCDpGBYaWC5kQcpMnmYykGmbtnbnpjAmr2mAHbWkxpI,565
826
827
  windmill_api/models/create_script_json_body_schema.py,sha256=fLtVF02xA72yAHEsO-wg-cCQzUdqBEEca01ATHulYt4,1294
827
- windmill_api/models/create_sqs_trigger_json_body.py,sha256=U8diifBSPz2rFia6R_DDg20msvaVGed1usPnQdF59Wk,3176
828
+ windmill_api/models/create_sqs_trigger_json_body.py,sha256=a4pM-icRzQhMEKlE5VedOXNHWXoiSG1Vn8AukdRv_34,3747
829
+ windmill_api/models/create_sqs_trigger_json_body_aws_auth_resource_type.py,sha256=gVlQulmbtNzDWIVOY8c7_Rhgiz36D40tTW9x16301IQ,198
828
830
  windmill_api/models/create_template_script_json_body.py,sha256=DjYslUnLU6W5XBtHYO-m6kCi6cfLSWRgsQOJLWNHoWU,3002
829
831
  windmill_api/models/create_template_script_json_body_language.py,sha256=v-yWT7TY0WkhSXvXXZfstpc8fhc-HAgh34LMqZ7_1BM,171
830
832
  windmill_api/models/create_template_script_json_body_relations_item.py,sha256=RFNmHRatfINrQjtnIw-ePCZaSLqVNYmDFWfnttDiHnQ,2871
@@ -995,7 +997,8 @@ windmill_api/models/edit_schedule_retry.py,sha256=MaFfCfLDa0l54PME6YXLIZ3OwOCFV3
995
997
  windmill_api/models/edit_schedule_retry_constant.py,sha256=B0BBCDPLRSN0zp01kuEVwJH40ACDchKJvxDKonw-sXM,1880
996
998
  windmill_api/models/edit_schedule_retry_exponential.py,sha256=Bk6iUxztHB7d6Vz7nU6seR5nSps1wwrYX7Zu4QCNkiE,2506
997
999
  windmill_api/models/edit_slack_command_json_body.py,sha256=EY_Rh0I3xIlwjYqoJcM-KTHLS-xSx78jWihtMRNno2U,1754
998
- windmill_api/models/edit_sqs_trigger.py,sha256=NHHEFDRkteLmxUsnJGk9Xk8r2j9hNamtBQflVq88X9Q,3035
1000
+ windmill_api/models/edit_sqs_trigger.py,sha256=eu28rGODulrfbtdpuQl_JOXQPL9VNy_lMCngkyGFJpk,3554
1001
+ windmill_api/models/edit_sqs_trigger_aws_auth_resource_type.py,sha256=AFshtmqiopekf7N_SHx4vTYvZFaOdp6RM6FopvwZAtA,188
999
1002
  windmill_api/models/edit_teams_command_json_body.py,sha256=jelV_UzxoWsbUyxYYN7Y6jCzHo-Y1lDJs5WR3KKzhTM,1754
1000
1003
  windmill_api/models/edit_variable.py,sha256=__0sMsabcqq0wbxCR87WecRHp2NSzxFJUmofT6Up7_w,2323
1001
1004
  windmill_api/models/edit_webhook_json_body.py,sha256=dabl1MMH7ckA2108RA_bGcg-J_51NomeBJshulM5X-o,1583
@@ -2203,7 +2206,8 @@ windmill_api/models/get_settings_response_200_large_file_storage_secondary_stora
2203
2206
  windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property_type.py,sha256=EtUCg8lK6sy3VciD3kgGophpn-ssm9jMtNyq73n603Q,331
2204
2207
  windmill_api/models/get_settings_response_200_large_file_storage_type.py,sha256=eS2tgvtK8RkVuLXzlZSKdHiD1Vpm-o6UI2jpK22opoc,297
2205
2208
  windmill_api/models/get_settings_response_200_operator_settings.py,sha256=XnpOhhuU5hWHU02vAiUxTY2PgYoqwnpvm5WuLMSgLeE,3384
2206
- windmill_api/models/get_sqs_trigger_response_200.py,sha256=uTHc8LPx4Xc376nknc46lzr1s0fZ85U4L4NJHF29S8k,5768
2209
+ windmill_api/models/get_sqs_trigger_response_200.py,sha256=xk5yT9qvsRi-xgiSu6DZN9bGN1i7Lj1_Yw-xpWec1po,6339
2210
+ windmill_api/models/get_sqs_trigger_response_200_aws_auth_resource_type.py,sha256=2wP1v5GtpVtIW8P4LuUs70UarRAFpq9OKNdrZoQk_LM,198
2207
2211
  windmill_api/models/get_sqs_trigger_response_200_extra_perms.py,sha256=exZGHkoq3ma8o6tA6PMK0ib7UvS7A5NgMZTozY65BZo,1343
2208
2212
  windmill_api/models/get_suspended_job_flow_response_200.py,sha256=K8sndU_ep_Lz2qX7BEbtiRe2xvFFQPUqapn_tHs-e1w,4020
2209
2213
  windmill_api/models/get_suspended_job_flow_response_200_approvers_item.py,sha256=PyZOXIQTaOKbv0NgLwgR8ETDDRIQ_ih77iYTlx7dkr8,1827
@@ -3196,7 +3200,8 @@ windmill_api/models/list_search_app_response_200_item.py,sha256=pl2uIN1YwzgjVVUq
3196
3200
  windmill_api/models/list_search_flow_response_200_item.py,sha256=S_lZlTxg2w5zvjyQg89jaVjbWPskio4bQucVV5A6-Nc,1671
3197
3201
  windmill_api/models/list_search_resource_response_200_item.py,sha256=8zB2-kS-M7aHpb_TP2oFmKWB3GE2NCHOydd8ZzbqmkA,1691
3198
3202
  windmill_api/models/list_search_script_response_200_item.py,sha256=u9KO0-iGUfIiXi93f0oAoxhyC54HDUXdhAg527rEI4k,1701
3199
- windmill_api/models/list_sqs_triggers_response_200_item.py,sha256=GR5IiI0NPLQQ_tSEMC9howIgOp8uUXNcvYgVtfe8vd0,5845
3203
+ windmill_api/models/list_sqs_triggers_response_200_item.py,sha256=rWfH9krAAQ5jb1XgVHSe9h_kg73nHkaKjkKNt4unQgs,6456
3204
+ windmill_api/models/list_sqs_triggers_response_200_item_aws_auth_resource_type.py,sha256=rNLY6mRPXo0QVdyOizu-MWQr3GXUOVBTmmwmJ057uIg,204
3200
3205
  windmill_api/models/list_sqs_triggers_response_200_item_extra_perms.py,sha256=RUj4WY3RNpLfYIe2VIeqGQQ32Y6yjQWYTT4LjlUr-eo,1376
3201
3206
  windmill_api/models/list_stored_files_response_200.py,sha256=ash1Rn_UHZZQ2TTr77251MB0AV_nmrVXL55PV5JCWvA,3353
3202
3207
  windmill_api/models/list_stored_files_response_200_windmill_large_files_item.py,sha256=saptp5l4JvFUIRpOAQQJWeNaSoYAUBDBrtf1581__30,1603
@@ -3313,7 +3318,8 @@ windmill_api/models/new_script_with_draft_draft_schema.py,sha256=V4-wxz79ALa37CR
3313
3318
  windmill_api/models/new_script_with_draft_kind.py,sha256=bNjU9ygiWUtzKDRJlMtVcID9kq-WE7WHrczJ5WcFY8U,281
3314
3319
  windmill_api/models/new_script_with_draft_language.py,sha256=wty2DnfnzqZxH8KVUBrOlmYPqUexubqaqugqP4qzOE8,563
3315
3320
  windmill_api/models/new_script_with_draft_schema.py,sha256=jDYRyPisWlZtHbRMtO6Gt7D4xx9Qcg_UCHSCbn9vbYs,1284
3316
- windmill_api/models/new_sqs_trigger.py,sha256=vFmCCmx_L5G8ss_9Q6LcD4S4DK_ULZNvSaRHHupfaSU,3115
3321
+ windmill_api/models/new_sqs_trigger.py,sha256=RZUW9rp4ZoPTLPmdnf5nGN6b_9kro4vS0wKvIqjUnZk,3629
3322
+ windmill_api/models/new_sqs_trigger_aws_auth_resource_type.py,sha256=PnJF7-nqZwzijgO5FpMEmXimxmR0c5FtyJLNx15Oup8,187
3317
3323
  windmill_api/models/new_token.py,sha256=nVlHs1c4g88Kfu3qvlkYtw9YLulJiyARia_aDlVu36Q,2863
3318
3324
  windmill_api/models/new_token_impersonate.py,sha256=GABdQQzrVzDGwCePOSnGZCuOLLhufr0I4BRdzzs_YeU,2848
3319
3325
  windmill_api/models/new_websocket_trigger.py,sha256=AFI6YgL6jfF1aHr9vyytpy4j4M1TLid_1zI2_3_-HRw,7299
@@ -3756,7 +3762,8 @@ windmill_api/models/slack_token.py,sha256=KeiVUUlrMc4uDIgaX9cQuP6TcAg9q9ltaQdgWT
3756
3762
  windmill_api/models/slack_token_bot.py,sha256=5i9gEIyNtgMZgc7jZZ_Qkvhng-eBoEgxFRPTQ4Onnv4,1649
3757
3763
  windmill_api/models/slot.py,sha256=lfiiJvIITa--sjUoaP74cYCnNaJ9Jm_hMH78B49WaFo,1466
3758
3764
  windmill_api/models/slot_list.py,sha256=G-_pfD0MQ_uFj5NVTgCtqaGdmWPUJw1F-4C60TUxzHs,1791
3759
- windmill_api/models/sqs_trigger.py,sha256=lF3bSZqK4-elPLyaP---vgso6ENlkyEeAIBlvfJt98Y,5585
3765
+ windmill_api/models/sqs_trigger.py,sha256=YUfoFplwtZYoktPuNgnA7cBJWQ8LWvY4NIHFeDzNupE,6083
3766
+ windmill_api/models/sqs_trigger_aws_auth_resource_type.py,sha256=_nwnVUpK7E8cHQhem_hnIGK5x9E0HgklNvT02IF-MT0,184
3760
3767
  windmill_api/models/sqs_trigger_extra_perms.py,sha256=zWnfUcL2_huo14LimnQlBQj_wYgJ6YS45FZNA1mVbU4,1264
3761
3768
  windmill_api/models/star_json_body.py,sha256=wKW_dpLyFhNN_TrtWpLh3_U0ZZN3B7tLAH0CTnrXylU,2290
3762
3769
  windmill_api/models/star_json_body_favorite_kind.py,sha256=RpElWhCdoid5bVgbwF6wRXBy8qB6EJSzWXqm3niMZoM,209
@@ -3855,7 +3862,8 @@ windmill_api/models/update_schedule_json_body_retry.py,sha256=5WkHyrSB2M9moh0whL
3855
3862
  windmill_api/models/update_schedule_json_body_retry_constant.py,sha256=ERr77z_qwLch_1D1vjrsPc759pUXvI3RGhMHmrB5Fig,1936
3856
3863
  windmill_api/models/update_schedule_json_body_retry_exponential.py,sha256=a3GQM89ITOBQdez5pXCSWxXu3JAEDUjvvUdzEVZaaGM,2562
3857
3864
  windmill_api/models/update_script_history_json_body.py,sha256=NbzKPozXuao9W_nfuE-UdnyQZdSjleZroo6KbjR7BzU,1703
3858
- windmill_api/models/update_sqs_trigger_json_body.py,sha256=5F00pFaYU_1c59xNGTt8aVPmApxA7XJw7_FUJOQJ8LQ,3091
3865
+ windmill_api/models/update_sqs_trigger_json_body.py,sha256=XB1nSu5iKx4NHg3rMNAOgV7M70LjCv2u1SosQN_XKTw,3662
3866
+ windmill_api/models/update_sqs_trigger_json_body_aws_auth_resource_type.py,sha256=aLEaEnDF5taksv0IyUuv6OFFkLRz9uw6ce_zT5FJiJs,198
3859
3867
  windmill_api/models/update_tutorial_progress_json_body.py,sha256=_9TW14AiLcdQl_O0bhRWO3ZBMupOCA5p2rRAEnSM8Ag,1652
3860
3868
  windmill_api/models/update_user_json_body.py,sha256=305gbqcehnNd2vc1AtkkEfd_64Pbi7upzrouQWOAdjU,2129
3861
3869
  windmill_api/models/update_variable_json_body.py,sha256=W7XVPn83xzqy3YsNJtRNlzUUpoCOdszg7ApRopCGmvE,2379
@@ -3931,7 +3939,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
3931
3939
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
3932
3940
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
3933
3941
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
3934
- windmill_api-1.482.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3935
- windmill_api-1.482.1.dist-info/METADATA,sha256=DqZ-Ks9yzfbNHn9eGqVvIaY9HDjvoW5-17NRu_kBhbM,5023
3936
- windmill_api-1.482.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3937
- windmill_api-1.482.1.dist-info/RECORD,,
3942
+ windmill_api-1.483.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3943
+ windmill_api-1.483.1.dist-info/METADATA,sha256=4idj8jEr93gm22WdkmEx9X6z8AWJBBvXSZKiZnGZFe0,5023
3944
+ windmill_api-1.483.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3945
+ windmill_api-1.483.1.dist-info/RECORD,,