windmill-api 1.502.1__py3-none-any.whl → 1.503.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 +9 -0
- windmill_api/models/get_audit_log_response_200.py +9 -0
- windmill_api/models/list_audit_logs_response_200_item.py +9 -0
- {windmill_api-1.502.1.dist-info → windmill_api-1.503.0.dist-info}/METADATA +1 -1
- {windmill_api-1.502.1.dist-info → windmill_api-1.503.0.dist-info}/RECORD +7 -7
- {windmill_api-1.502.1.dist-info → windmill_api-1.503.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.502.1.dist-info → windmill_api-1.503.0.dist-info}/WHEEL +0 -0
windmill_api/models/audit_log.py
CHANGED
|
@@ -27,6 +27,7 @@ class AuditLog:
|
|
|
27
27
|
action_kind (AuditLogActionKind):
|
|
28
28
|
resource (Union[Unset, str]):
|
|
29
29
|
parameters (Union[Unset, AuditLogParameters]):
|
|
30
|
+
span (Union[Unset, str]):
|
|
30
31
|
"""
|
|
31
32
|
|
|
32
33
|
id: int
|
|
@@ -36,6 +37,7 @@ class AuditLog:
|
|
|
36
37
|
action_kind: AuditLogActionKind
|
|
37
38
|
resource: Union[Unset, str] = UNSET
|
|
38
39
|
parameters: Union[Unset, "AuditLogParameters"] = UNSET
|
|
40
|
+
span: Union[Unset, str] = UNSET
|
|
39
41
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
40
42
|
|
|
41
43
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -52,6 +54,8 @@ class AuditLog:
|
|
|
52
54
|
if not isinstance(self.parameters, Unset):
|
|
53
55
|
parameters = self.parameters.to_dict()
|
|
54
56
|
|
|
57
|
+
span = self.span
|
|
58
|
+
|
|
55
59
|
field_dict: Dict[str, Any] = {}
|
|
56
60
|
field_dict.update(self.additional_properties)
|
|
57
61
|
field_dict.update(
|
|
@@ -67,6 +71,8 @@ class AuditLog:
|
|
|
67
71
|
field_dict["resource"] = resource
|
|
68
72
|
if parameters is not UNSET:
|
|
69
73
|
field_dict["parameters"] = parameters
|
|
74
|
+
if span is not UNSET:
|
|
75
|
+
field_dict["span"] = span
|
|
70
76
|
|
|
71
77
|
return field_dict
|
|
72
78
|
|
|
@@ -94,6 +100,8 @@ class AuditLog:
|
|
|
94
100
|
else:
|
|
95
101
|
parameters = AuditLogParameters.from_dict(_parameters)
|
|
96
102
|
|
|
103
|
+
span = d.pop("span", UNSET)
|
|
104
|
+
|
|
97
105
|
audit_log = cls(
|
|
98
106
|
id=id,
|
|
99
107
|
timestamp=timestamp,
|
|
@@ -102,6 +110,7 @@ class AuditLog:
|
|
|
102
110
|
action_kind=action_kind,
|
|
103
111
|
resource=resource,
|
|
104
112
|
parameters=parameters,
|
|
113
|
+
span=span,
|
|
105
114
|
)
|
|
106
115
|
|
|
107
116
|
audit_log.additional_properties = d
|
|
@@ -27,6 +27,7 @@ class GetAuditLogResponse200:
|
|
|
27
27
|
action_kind (GetAuditLogResponse200ActionKind):
|
|
28
28
|
resource (Union[Unset, str]):
|
|
29
29
|
parameters (Union[Unset, GetAuditLogResponse200Parameters]):
|
|
30
|
+
span (Union[Unset, str]):
|
|
30
31
|
"""
|
|
31
32
|
|
|
32
33
|
id: int
|
|
@@ -36,6 +37,7 @@ class GetAuditLogResponse200:
|
|
|
36
37
|
action_kind: GetAuditLogResponse200ActionKind
|
|
37
38
|
resource: Union[Unset, str] = UNSET
|
|
38
39
|
parameters: Union[Unset, "GetAuditLogResponse200Parameters"] = UNSET
|
|
40
|
+
span: Union[Unset, str] = UNSET
|
|
39
41
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
40
42
|
|
|
41
43
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -52,6 +54,8 @@ class GetAuditLogResponse200:
|
|
|
52
54
|
if not isinstance(self.parameters, Unset):
|
|
53
55
|
parameters = self.parameters.to_dict()
|
|
54
56
|
|
|
57
|
+
span = self.span
|
|
58
|
+
|
|
55
59
|
field_dict: Dict[str, Any] = {}
|
|
56
60
|
field_dict.update(self.additional_properties)
|
|
57
61
|
field_dict.update(
|
|
@@ -67,6 +71,8 @@ class GetAuditLogResponse200:
|
|
|
67
71
|
field_dict["resource"] = resource
|
|
68
72
|
if parameters is not UNSET:
|
|
69
73
|
field_dict["parameters"] = parameters
|
|
74
|
+
if span is not UNSET:
|
|
75
|
+
field_dict["span"] = span
|
|
70
76
|
|
|
71
77
|
return field_dict
|
|
72
78
|
|
|
@@ -94,6 +100,8 @@ class GetAuditLogResponse200:
|
|
|
94
100
|
else:
|
|
95
101
|
parameters = GetAuditLogResponse200Parameters.from_dict(_parameters)
|
|
96
102
|
|
|
103
|
+
span = d.pop("span", UNSET)
|
|
104
|
+
|
|
97
105
|
get_audit_log_response_200 = cls(
|
|
98
106
|
id=id,
|
|
99
107
|
timestamp=timestamp,
|
|
@@ -102,6 +110,7 @@ class GetAuditLogResponse200:
|
|
|
102
110
|
action_kind=action_kind,
|
|
103
111
|
resource=resource,
|
|
104
112
|
parameters=parameters,
|
|
113
|
+
span=span,
|
|
105
114
|
)
|
|
106
115
|
|
|
107
116
|
get_audit_log_response_200.additional_properties = d
|
|
@@ -27,6 +27,7 @@ class ListAuditLogsResponse200Item:
|
|
|
27
27
|
action_kind (ListAuditLogsResponse200ItemActionKind):
|
|
28
28
|
resource (Union[Unset, str]):
|
|
29
29
|
parameters (Union[Unset, ListAuditLogsResponse200ItemParameters]):
|
|
30
|
+
span (Union[Unset, str]):
|
|
30
31
|
"""
|
|
31
32
|
|
|
32
33
|
id: int
|
|
@@ -36,6 +37,7 @@ class ListAuditLogsResponse200Item:
|
|
|
36
37
|
action_kind: ListAuditLogsResponse200ItemActionKind
|
|
37
38
|
resource: Union[Unset, str] = UNSET
|
|
38
39
|
parameters: Union[Unset, "ListAuditLogsResponse200ItemParameters"] = UNSET
|
|
40
|
+
span: Union[Unset, str] = UNSET
|
|
39
41
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
40
42
|
|
|
41
43
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -52,6 +54,8 @@ class ListAuditLogsResponse200Item:
|
|
|
52
54
|
if not isinstance(self.parameters, Unset):
|
|
53
55
|
parameters = self.parameters.to_dict()
|
|
54
56
|
|
|
57
|
+
span = self.span
|
|
58
|
+
|
|
55
59
|
field_dict: Dict[str, Any] = {}
|
|
56
60
|
field_dict.update(self.additional_properties)
|
|
57
61
|
field_dict.update(
|
|
@@ -67,6 +71,8 @@ class ListAuditLogsResponse200Item:
|
|
|
67
71
|
field_dict["resource"] = resource
|
|
68
72
|
if parameters is not UNSET:
|
|
69
73
|
field_dict["parameters"] = parameters
|
|
74
|
+
if span is not UNSET:
|
|
75
|
+
field_dict["span"] = span
|
|
70
76
|
|
|
71
77
|
return field_dict
|
|
72
78
|
|
|
@@ -94,6 +100,8 @@ class ListAuditLogsResponse200Item:
|
|
|
94
100
|
else:
|
|
95
101
|
parameters = ListAuditLogsResponse200ItemParameters.from_dict(_parameters)
|
|
96
102
|
|
|
103
|
+
span = d.pop("span", UNSET)
|
|
104
|
+
|
|
97
105
|
list_audit_logs_response_200_item = cls(
|
|
98
106
|
id=id,
|
|
99
107
|
timestamp=timestamp,
|
|
@@ -102,6 +110,7 @@ class ListAuditLogsResponse200Item:
|
|
|
102
110
|
action_kind=action_kind,
|
|
103
111
|
resource=resource,
|
|
104
112
|
parameters=parameters,
|
|
113
|
+
span=span,
|
|
105
114
|
)
|
|
106
115
|
|
|
107
116
|
list_audit_logs_response_200_item.additional_properties = d
|
|
@@ -583,7 +583,7 @@ windmill_api/models/archive_script_by_hash_response_200_extra_perms.py,sha256=sI
|
|
|
583
583
|
windmill_api/models/archive_script_by_hash_response_200_kind.py,sha256=QxcY4eSLArs3LmAqDTa71QMkWJF_sAjg0LeC0uQ7yyE,293
|
|
584
584
|
windmill_api/models/archive_script_by_hash_response_200_language.py,sha256=udEHP4JjQoZF6zEDexe6JF2V70_3f4emHAmKcpXfTHI,597
|
|
585
585
|
windmill_api/models/archive_script_by_hash_response_200_schema.py,sha256=FbLGIuF9u_TlsUjZE6t5o4EC98CHK61RYVwCfcw7ucM,1350
|
|
586
|
-
windmill_api/models/audit_log.py,sha256=
|
|
586
|
+
windmill_api/models/audit_log.py,sha256=q4oRpLcL74lPrghi5pMUwqQWjm7wyeDW8N_aRhruImI,3850
|
|
587
587
|
windmill_api/models/audit_log_action_kind.py,sha256=T0fGVIol3ppuHzImKXcLRMzjFDIcPTOcwa9geVcouBk,217
|
|
588
588
|
windmill_api/models/audit_log_operation.py,sha256=Be0y5HK1MOjj0Bjx2kld8UKVI_PXqtwMFt2qZyV0IQE,3720
|
|
589
589
|
windmill_api/models/audit_log_parameters.py,sha256=942p2zW1l989YhRoD-tzZkzm9L9WCqPVFEytAipdc1E,1248
|
|
@@ -1588,7 +1588,7 @@ windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_additi
|
|
|
1588
1588
|
windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2.py,sha256=kKuUfdHZvApwa6GV4RzddN_gqqJ7d76v--1Ta5jWivw,2409
|
|
1589
1589
|
windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2_additional_property.py,sha256=TajuayybIyQYoUj8YBUlM7xZbJXHCgGNf5iyD5ba3EE,1510
|
|
1590
1590
|
windmill_api/models/get_app_lite_by_path_response_200_value.py,sha256=rzl8Uld8aOxHrOCbXvVczOD6UmHmLhTbWsEPHH8hSvo,1333
|
|
1591
|
-
windmill_api/models/get_audit_log_response_200.py,sha256=
|
|
1591
|
+
windmill_api/models/get_audit_log_response_200.py,sha256=AT6Nmvi0p6kieuKOgzk-eVSFZhgMqkWkdLWJWPLVmGI,4193
|
|
1592
1592
|
windmill_api/models/get_audit_log_response_200_action_kind.py,sha256=vE6D2hckbbBcss79wNlEUUvWoFGTh-d-jSiGSJZWA5I,231
|
|
1593
1593
|
windmill_api/models/get_audit_log_response_200_operation.py,sha256=isQ_SuC2e1vG7PWJOb5wLIUyewxJXtnxIs3P6IJt3mg,3734
|
|
1594
1594
|
windmill_api/models/get_audit_log_response_200_parameters.py,sha256=0DpzZiiQe-WPK1f_uOg0m1bktbs1O9iJRn3WgGtIEEg,1327
|
|
@@ -2652,7 +2652,7 @@ windmill_api/models/list_apps_response_200_item.py,sha256=SgZCCyYYI-fjUoAICYFgiF
|
|
|
2652
2652
|
windmill_api/models/list_apps_response_200_item_execution_mode.py,sha256=D3GHim2K40Mju2tU2Oxx-RgAAtsS0wi-cIvK-VwLdqc,219
|
|
2653
2653
|
windmill_api/models/list_apps_response_200_item_extra_perms.py,sha256=bjc_b_rJa0RSvasf2btjyx8Vigm4xSeZmJWGrfmaoPE,1338
|
|
2654
2654
|
windmill_api/models/list_audit_logs_action_kind.py,sha256=HdR96iA6Tm6xhFS1X4fQz3IXdWvIp7dcoO-Hvy9PBW8,218
|
|
2655
|
-
windmill_api/models/list_audit_logs_response_200_item.py,sha256
|
|
2655
|
+
windmill_api/models/list_audit_logs_response_200_item.py,sha256=-durVyiOW5mSoATB1l9RdKM7N1cJRnIEBwfJVOnL_oM,4338
|
|
2656
2656
|
windmill_api/models/list_audit_logs_response_200_item_action_kind.py,sha256=GxDy-KWMQnH2soLbfBzvuXIvtlkxM2xT2Sd5d5WkKq4,237
|
|
2657
2657
|
windmill_api/models/list_audit_logs_response_200_item_operation.py,sha256=FNjCW4DkLiB1LkLeO_CQyLQ1JPfxq3bIFPRmv8sGb6c,3740
|
|
2658
2658
|
windmill_api/models/list_audit_logs_response_200_item_parameters.py,sha256=q4xUQeAhgxiNi7k5T6HGkd3peGLpXr5E3-9d4JJr6nI,1360
|
|
@@ -4022,7 +4022,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
4022
4022
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
4023
4023
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
4024
4024
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
4025
|
-
windmill_api-1.
|
|
4026
|
-
windmill_api-1.
|
|
4027
|
-
windmill_api-1.
|
|
4028
|
-
windmill_api-1.
|
|
4025
|
+
windmill_api-1.503.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
4026
|
+
windmill_api-1.503.0.dist-info/METADATA,sha256=sizfaYyGo1y2gmze4ll8WYl_fBf3KmXpUmFXIZbYgr4,5023
|
|
4027
|
+
windmill_api-1.503.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
4028
|
+
windmill_api-1.503.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|