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

@@ -1,8 +1,10 @@
1
- from typing import Any, Dict, List, Type, TypeVar
1
+ from typing import Any, Dict, List, Type, TypeVar, Union
2
2
 
3
3
  from attrs import define as _attrs_define
4
4
  from attrs import field as _attrs_field
5
5
 
6
+ from ..types import UNSET, Unset
7
+
6
8
  T = TypeVar("T", bound="DuckdbConnectionSettingsV2Response200")
7
9
 
8
10
 
@@ -11,13 +13,16 @@ class DuckdbConnectionSettingsV2Response200:
11
13
  """
12
14
  Attributes:
13
15
  connection_settings_str (str):
16
+ azure_container_path (Union[Unset, str]):
14
17
  """
15
18
 
16
19
  connection_settings_str: str
20
+ azure_container_path: Union[Unset, str] = UNSET
17
21
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
18
22
 
19
23
  def to_dict(self) -> Dict[str, Any]:
20
24
  connection_settings_str = self.connection_settings_str
25
+ azure_container_path = self.azure_container_path
21
26
 
22
27
  field_dict: Dict[str, Any] = {}
23
28
  field_dict.update(self.additional_properties)
@@ -26,6 +31,8 @@ class DuckdbConnectionSettingsV2Response200:
26
31
  "connection_settings_str": connection_settings_str,
27
32
  }
28
33
  )
34
+ if azure_container_path is not UNSET:
35
+ field_dict["azure_container_path"] = azure_container_path
29
36
 
30
37
  return field_dict
31
38
 
@@ -34,8 +41,11 @@ class DuckdbConnectionSettingsV2Response200:
34
41
  d = src_dict.copy()
35
42
  connection_settings_str = d.pop("connection_settings_str")
36
43
 
44
+ azure_container_path = d.pop("azure_container_path", UNSET)
45
+
37
46
  duckdb_connection_settings_v2_response_200 = cls(
38
47
  connection_settings_str=connection_settings_str,
48
+ azure_container_path=azure_container_path,
39
49
  )
40
50
 
41
51
  duckdb_connection_settings_v2_response_200.additional_properties = d
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.454.1
3
+ Version: 1.455.1
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -843,7 +843,7 @@ windmill_api/models/duckdb_connection_settings_json_body.py,sha256=VKhOpCQrjN1b9
843
843
  windmill_api/models/duckdb_connection_settings_json_body_s3_resource.py,sha256=2lLQO26B8mFpx-fhoefqmFt13xME94VMKRqongyBNqw,2948
844
844
  windmill_api/models/duckdb_connection_settings_response_200.py,sha256=08YV2mUekjcl5W_4I6r49Fg1gAhjUVZ4WNMUma4OOTM,1842
845
845
  windmill_api/models/duckdb_connection_settings_v2_json_body.py,sha256=PXHb4NxCEnvJwyUqUqnYEhz_O_3Qfnty0qkkLogTjk8,1763
846
- windmill_api/models/duckdb_connection_settings_v2_response_200.py,sha256=6y4BukqSCVpeouqy30nrcj49_74TrkZ4s42GdfOvPmE,1749
846
+ windmill_api/models/duckdb_connection_settings_v2_response_200.py,sha256=W9y1f8MP17zeVA8y5z8WFw6qCk8DKOLLcaG9P2cycT0,2189
847
847
  windmill_api/models/edit_auto_invite_json_body.py,sha256=j6RkvSzCakhMfuZrKLHw6KWr961KJwYdSAmuaakqKrI,2174
848
848
  windmill_api/models/edit_copilot_config_json_body.py,sha256=3U2L0Tn4ekz-lCrtlLhQbjMetjCcr95U-BHRWRzOQU0,2713
849
849
  windmill_api/models/edit_copilot_config_json_body_ai_resource.py,sha256=UmhYYrMGgYTfLA46tPUtVOlGEUeHZQsfBB7VrJZP3-8,1734
@@ -3675,7 +3675,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
3675
3675
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
3676
3676
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
3677
3677
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
3678
- windmill_api-1.454.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3679
- windmill_api-1.454.1.dist-info/METADATA,sha256=EFRUTPkspIHGSI5UQ1HNJ5LO8-QkYzND6DUBlVLr6so,5023
3680
- windmill_api-1.454.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3681
- windmill_api-1.454.1.dist-info/RECORD,,
3678
+ windmill_api-1.455.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
3679
+ windmill_api-1.455.1.dist-info/METADATA,sha256=x_nKnG9CAtinLM7FIkKSPK_cbQc5D-l_vL0Kl0zJPB8,5023
3680
+ windmill_api-1.455.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
3681
+ windmill_api-1.455.1.dist-info/RECORD,,