windmill-api 1.549.0__py3-none-any.whl → 1.550.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of windmill-api might be problematic. Click here for more details.
- windmill_api/models/audit_log.py +7 -0
- windmill_api/models/get_audit_log_response_200.py +7 -0
- windmill_api/models/list_audit_logs_response_200_item.py +7 -0
- {windmill_api-1.549.0.dist-info → windmill_api-1.550.0.dist-info}/METADATA +1 -1
- {windmill_api-1.549.0.dist-info → windmill_api-1.550.0.dist-info}/RECORD +7 -7
- {windmill_api-1.549.0.dist-info → windmill_api-1.550.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.549.0.dist-info → windmill_api-1.550.0.dist-info}/WHEEL +0 -0
windmill_api/models/audit_log.py
CHANGED
|
@@ -20,6 +20,7 @@ T = TypeVar("T", bound="AuditLog")
|
|
|
20
20
|
class AuditLog:
|
|
21
21
|
"""
|
|
22
22
|
Attributes:
|
|
23
|
+
workspace_id (str):
|
|
23
24
|
id (int):
|
|
24
25
|
timestamp (datetime.datetime):
|
|
25
26
|
username (str):
|
|
@@ -30,6 +31,7 @@ class AuditLog:
|
|
|
30
31
|
span (Union[Unset, str]):
|
|
31
32
|
"""
|
|
32
33
|
|
|
34
|
+
workspace_id: str
|
|
33
35
|
id: int
|
|
34
36
|
timestamp: datetime.datetime
|
|
35
37
|
username: str
|
|
@@ -41,6 +43,7 @@ class AuditLog:
|
|
|
41
43
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
42
44
|
|
|
43
45
|
def to_dict(self) -> Dict[str, Any]:
|
|
46
|
+
workspace_id = self.workspace_id
|
|
44
47
|
id = self.id
|
|
45
48
|
timestamp = self.timestamp.isoformat()
|
|
46
49
|
|
|
@@ -60,6 +63,7 @@ class AuditLog:
|
|
|
60
63
|
field_dict.update(self.additional_properties)
|
|
61
64
|
field_dict.update(
|
|
62
65
|
{
|
|
66
|
+
"workspace_id": workspace_id,
|
|
63
67
|
"id": id,
|
|
64
68
|
"timestamp": timestamp,
|
|
65
69
|
"username": username,
|
|
@@ -81,6 +85,8 @@ class AuditLog:
|
|
|
81
85
|
from ..models.audit_log_parameters import AuditLogParameters
|
|
82
86
|
|
|
83
87
|
d = src_dict.copy()
|
|
88
|
+
workspace_id = d.pop("workspace_id")
|
|
89
|
+
|
|
84
90
|
id = d.pop("id")
|
|
85
91
|
|
|
86
92
|
timestamp = isoparse(d.pop("timestamp"))
|
|
@@ -103,6 +109,7 @@ class AuditLog:
|
|
|
103
109
|
span = d.pop("span", UNSET)
|
|
104
110
|
|
|
105
111
|
audit_log = cls(
|
|
112
|
+
workspace_id=workspace_id,
|
|
106
113
|
id=id,
|
|
107
114
|
timestamp=timestamp,
|
|
108
115
|
username=username,
|
|
@@ -20,6 +20,7 @@ T = TypeVar("T", bound="GetAuditLogResponse200")
|
|
|
20
20
|
class GetAuditLogResponse200:
|
|
21
21
|
"""
|
|
22
22
|
Attributes:
|
|
23
|
+
workspace_id (str):
|
|
23
24
|
id (int):
|
|
24
25
|
timestamp (datetime.datetime):
|
|
25
26
|
username (str):
|
|
@@ -30,6 +31,7 @@ class GetAuditLogResponse200:
|
|
|
30
31
|
span (Union[Unset, str]):
|
|
31
32
|
"""
|
|
32
33
|
|
|
34
|
+
workspace_id: str
|
|
33
35
|
id: int
|
|
34
36
|
timestamp: datetime.datetime
|
|
35
37
|
username: str
|
|
@@ -41,6 +43,7 @@ class GetAuditLogResponse200:
|
|
|
41
43
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
42
44
|
|
|
43
45
|
def to_dict(self) -> Dict[str, Any]:
|
|
46
|
+
workspace_id = self.workspace_id
|
|
44
47
|
id = self.id
|
|
45
48
|
timestamp = self.timestamp.isoformat()
|
|
46
49
|
|
|
@@ -60,6 +63,7 @@ class GetAuditLogResponse200:
|
|
|
60
63
|
field_dict.update(self.additional_properties)
|
|
61
64
|
field_dict.update(
|
|
62
65
|
{
|
|
66
|
+
"workspace_id": workspace_id,
|
|
63
67
|
"id": id,
|
|
64
68
|
"timestamp": timestamp,
|
|
65
69
|
"username": username,
|
|
@@ -81,6 +85,8 @@ class GetAuditLogResponse200:
|
|
|
81
85
|
from ..models.get_audit_log_response_200_parameters import GetAuditLogResponse200Parameters
|
|
82
86
|
|
|
83
87
|
d = src_dict.copy()
|
|
88
|
+
workspace_id = d.pop("workspace_id")
|
|
89
|
+
|
|
84
90
|
id = d.pop("id")
|
|
85
91
|
|
|
86
92
|
timestamp = isoparse(d.pop("timestamp"))
|
|
@@ -103,6 +109,7 @@ class GetAuditLogResponse200:
|
|
|
103
109
|
span = d.pop("span", UNSET)
|
|
104
110
|
|
|
105
111
|
get_audit_log_response_200 = cls(
|
|
112
|
+
workspace_id=workspace_id,
|
|
106
113
|
id=id,
|
|
107
114
|
timestamp=timestamp,
|
|
108
115
|
username=username,
|
|
@@ -20,6 +20,7 @@ T = TypeVar("T", bound="ListAuditLogsResponse200Item")
|
|
|
20
20
|
class ListAuditLogsResponse200Item:
|
|
21
21
|
"""
|
|
22
22
|
Attributes:
|
|
23
|
+
workspace_id (str):
|
|
23
24
|
id (int):
|
|
24
25
|
timestamp (datetime.datetime):
|
|
25
26
|
username (str):
|
|
@@ -30,6 +31,7 @@ class ListAuditLogsResponse200Item:
|
|
|
30
31
|
span (Union[Unset, str]):
|
|
31
32
|
"""
|
|
32
33
|
|
|
34
|
+
workspace_id: str
|
|
33
35
|
id: int
|
|
34
36
|
timestamp: datetime.datetime
|
|
35
37
|
username: str
|
|
@@ -41,6 +43,7 @@ class ListAuditLogsResponse200Item:
|
|
|
41
43
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
42
44
|
|
|
43
45
|
def to_dict(self) -> Dict[str, Any]:
|
|
46
|
+
workspace_id = self.workspace_id
|
|
44
47
|
id = self.id
|
|
45
48
|
timestamp = self.timestamp.isoformat()
|
|
46
49
|
|
|
@@ -60,6 +63,7 @@ class ListAuditLogsResponse200Item:
|
|
|
60
63
|
field_dict.update(self.additional_properties)
|
|
61
64
|
field_dict.update(
|
|
62
65
|
{
|
|
66
|
+
"workspace_id": workspace_id,
|
|
63
67
|
"id": id,
|
|
64
68
|
"timestamp": timestamp,
|
|
65
69
|
"username": username,
|
|
@@ -81,6 +85,8 @@ class ListAuditLogsResponse200Item:
|
|
|
81
85
|
from ..models.list_audit_logs_response_200_item_parameters import ListAuditLogsResponse200ItemParameters
|
|
82
86
|
|
|
83
87
|
d = src_dict.copy()
|
|
88
|
+
workspace_id = d.pop("workspace_id")
|
|
89
|
+
|
|
84
90
|
id = d.pop("id")
|
|
85
91
|
|
|
86
92
|
timestamp = isoparse(d.pop("timestamp"))
|
|
@@ -103,6 +109,7 @@ class ListAuditLogsResponse200Item:
|
|
|
103
109
|
span = d.pop("span", UNSET)
|
|
104
110
|
|
|
105
111
|
list_audit_logs_response_200_item = cls(
|
|
112
|
+
workspace_id=workspace_id,
|
|
106
113
|
id=id,
|
|
107
114
|
timestamp=timestamp,
|
|
108
115
|
username=username,
|
|
@@ -659,7 +659,7 @@ windmill_api/models/asset.py,sha256=LrZab-nfOuHtMmLi8VBo_ZgcgeTWErgkta9EggmciIQ,
|
|
|
659
659
|
windmill_api/models/asset_kind.py,sha256=yJ6B-VkLmZ2RH1WeocJKySWWKxSTtXSxYfgcS0HLG1s,192
|
|
660
660
|
windmill_api/models/asset_usage_access_type.py,sha256=qnG4b0EQo6yDhXRD6e0xy6EjpNf8sY0_UJv7nHxLTtI,163
|
|
661
661
|
windmill_api/models/asset_usage_kind.py,sha256=m5uS3tLuvNZSx-mrixby3CAUxPBTjfvWvinFPjnfhhQ,159
|
|
662
|
-
windmill_api/models/audit_log.py,sha256=
|
|
662
|
+
windmill_api/models/audit_log.py,sha256=n2_OT3zVVoM98W2v0qs61s-P-p8E7GrNLfrvc8fl9GM,4072
|
|
663
663
|
windmill_api/models/audit_log_action_kind.py,sha256=T0fGVIol3ppuHzImKXcLRMzjFDIcPTOcwa9geVcouBk,217
|
|
664
664
|
windmill_api/models/audit_log_operation.py,sha256=Be0y5HK1MOjj0Bjx2kld8UKVI_PXqtwMFt2qZyV0IQE,3720
|
|
665
665
|
windmill_api/models/audit_log_parameters.py,sha256=942p2zW1l989YhRoD-tzZkzm9L9WCqPVFEytAipdc1E,1248
|
|
@@ -2077,7 +2077,7 @@ windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_additi
|
|
|
2077
2077
|
windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2.py,sha256=kKuUfdHZvApwa6GV4RzddN_gqqJ7d76v--1Ta5jWivw,2409
|
|
2078
2078
|
windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2_additional_property.py,sha256=TajuayybIyQYoUj8YBUlM7xZbJXHCgGNf5iyD5ba3EE,1510
|
|
2079
2079
|
windmill_api/models/get_app_lite_by_path_response_200_value.py,sha256=rzl8Uld8aOxHrOCbXvVczOD6UmHmLhTbWsEPHH8hSvo,1333
|
|
2080
|
-
windmill_api/models/get_audit_log_response_200.py,sha256=
|
|
2080
|
+
windmill_api/models/get_audit_log_response_200.py,sha256=fDIW11agPZdIFMiigQk9hjhVdXv6Vwso1ERuX6exX1I,4415
|
|
2081
2081
|
windmill_api/models/get_audit_log_response_200_action_kind.py,sha256=vE6D2hckbbBcss79wNlEUUvWoFGTh-d-jSiGSJZWA5I,231
|
|
2082
2082
|
windmill_api/models/get_audit_log_response_200_operation.py,sha256=isQ_SuC2e1vG7PWJOb5wLIUyewxJXtnxIs3P6IJt3mg,3734
|
|
2083
2083
|
windmill_api/models/get_audit_log_response_200_parameters.py,sha256=0DpzZiiQe-WPK1f_uOg0m1bktbs1O9iJRn3WgGtIEEg,1327
|
|
@@ -3558,7 +3558,7 @@ windmill_api/models/list_assets_response_200_item_usages_item.py,sha256=6UxfFnKh
|
|
|
3558
3558
|
windmill_api/models/list_assets_response_200_item_usages_item_access_type.py,sha256=0DG5BSTBZPji75_8TaXPhsAUiLpv6p6kXlGt-ESICqE,188
|
|
3559
3559
|
windmill_api/models/list_assets_response_200_item_usages_item_kind.py,sha256=VsDGYp1rHwaKxPugE6gpixcYTmnHRzDu47kodO5qj5U,184
|
|
3560
3560
|
windmill_api/models/list_audit_logs_action_kind.py,sha256=HdR96iA6Tm6xhFS1X4fQz3IXdWvIp7dcoO-Hvy9PBW8,218
|
|
3561
|
-
windmill_api/models/list_audit_logs_response_200_item.py,sha256
|
|
3561
|
+
windmill_api/models/list_audit_logs_response_200_item.py,sha256=I6eZf52yNYPHqomUtYgZJgIYx5z5sQAPCxvRSwTo4gc,4560
|
|
3562
3562
|
windmill_api/models/list_audit_logs_response_200_item_action_kind.py,sha256=GxDy-KWMQnH2soLbfBzvuXIvtlkxM2xT2Sd5d5WkKq4,237
|
|
3563
3563
|
windmill_api/models/list_audit_logs_response_200_item_operation.py,sha256=FNjCW4DkLiB1LkLeO_CQyLQ1JPfxq3bIFPRmv8sGb6c,3740
|
|
3564
3564
|
windmill_api/models/list_audit_logs_response_200_item_parameters.py,sha256=q4xUQeAhgxiNi7k5T6HGkd3peGLpXr5E3-9d4JJr6nI,1360
|
|
@@ -5486,7 +5486,7 @@ windmill_api/models/workspace_invite.py,sha256=wp-J-VJLkXsfQzw1PdNPGQhETsFCFXh1e
|
|
|
5486
5486
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
5487
5487
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5488
5488
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
5489
|
-
windmill_api-1.
|
|
5490
|
-
windmill_api-1.
|
|
5491
|
-
windmill_api-1.
|
|
5492
|
-
windmill_api-1.
|
|
5489
|
+
windmill_api-1.550.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
5490
|
+
windmill_api-1.550.0.dist-info/METADATA,sha256=riidi-RBg6nGX7m1V8HF1G3YKZ_erSA5tI4Dy4hPp14,5023
|
|
5491
|
+
windmill_api-1.550.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
5492
|
+
windmill_api-1.550.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|