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

Files changed (20) hide show
  1. windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py +8 -0
  2. windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property.py +8 -0
  3. windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property_type.py +1 -0
  4. windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_type.py +1 -0
  5. windmill_api/models/get_large_file_storage_config_response_200.py +8 -0
  6. windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property.py +8 -0
  7. windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property_type.py +1 -0
  8. windmill_api/models/get_large_file_storage_config_response_200_type.py +1 -0
  9. windmill_api/models/get_settings_response_200_large_file_storage.py +8 -0
  10. windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property.py +8 -0
  11. windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property_type.py +1 -0
  12. windmill_api/models/get_settings_response_200_large_file_storage_type.py +1 -0
  13. windmill_api/models/large_file_storage.py +8 -0
  14. windmill_api/models/large_file_storage_secondary_storage_additional_property.py +8 -0
  15. windmill_api/models/large_file_storage_secondary_storage_additional_property_type.py +1 -0
  16. windmill_api/models/large_file_storage_type.py +1 -0
  17. {windmill_api-1.501.3.dist-info → windmill_api-1.502.0.dist-info}/METADATA +1 -1
  18. {windmill_api-1.501.3.dist-info → windmill_api-1.502.0.dist-info}/RECORD +20 -20
  19. {windmill_api-1.501.3.dist-info → windmill_api-1.502.0.dist-info}/LICENSE +0 -0
  20. {windmill_api-1.501.3.dist-info → windmill_api-1.502.0.dist-info}/WHEEL +0 -0
@@ -24,6 +24,7 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorage:
24
24
  type (Union[Unset, EditLargeFileStorageConfigJsonBodyLargeFileStorageType]):
25
25
  s3_resource_path (Union[Unset, str]):
26
26
  azure_blob_resource_path (Union[Unset, str]):
27
+ gcs_resource_path (Union[Unset, str]):
27
28
  public_resource (Union[Unset, bool]):
28
29
  secondary_storage (Union[Unset, EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorage]):
29
30
  """
@@ -31,6 +32,7 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorage:
31
32
  type: Union[Unset, EditLargeFileStorageConfigJsonBodyLargeFileStorageType] = UNSET
32
33
  s3_resource_path: Union[Unset, str] = UNSET
33
34
  azure_blob_resource_path: Union[Unset, str] = UNSET
35
+ gcs_resource_path: Union[Unset, str] = UNSET
34
36
  public_resource: Union[Unset, bool] = UNSET
35
37
  secondary_storage: Union[Unset, "EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorage"] = UNSET
36
38
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
@@ -42,6 +44,7 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorage:
42
44
 
43
45
  s3_resource_path = self.s3_resource_path
44
46
  azure_blob_resource_path = self.azure_blob_resource_path
47
+ gcs_resource_path = self.gcs_resource_path
45
48
  public_resource = self.public_resource
46
49
  secondary_storage: Union[Unset, Dict[str, Any]] = UNSET
47
50
  if not isinstance(self.secondary_storage, Unset):
@@ -56,6 +59,8 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorage:
56
59
  field_dict["s3_resource_path"] = s3_resource_path
57
60
  if azure_blob_resource_path is not UNSET:
58
61
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
62
+ if gcs_resource_path is not UNSET:
63
+ field_dict["gcs_resource_path"] = gcs_resource_path
59
64
  if public_resource is not UNSET:
60
65
  field_dict["public_resource"] = public_resource
61
66
  if secondary_storage is not UNSET:
@@ -81,6 +86,8 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorage:
81
86
 
82
87
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
83
88
 
89
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
90
+
84
91
  public_resource = d.pop("public_resource", UNSET)
85
92
 
86
93
  _secondary_storage = d.pop("secondary_storage", UNSET)
@@ -96,6 +103,7 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorage:
96
103
  type=type,
97
104
  s3_resource_path=s3_resource_path,
98
105
  azure_blob_resource_path=azure_blob_resource_path,
106
+ gcs_resource_path=gcs_resource_path,
99
107
  public_resource=public_resource,
100
108
  secondary_storage=secondary_storage,
101
109
  )
@@ -18,12 +18,14 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAddition
18
18
  type (Union[Unset, EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAdditionalPropertyType]):
19
19
  s3_resource_path (Union[Unset, str]):
20
20
  azure_blob_resource_path (Union[Unset, str]):
21
+ gcs_resource_path (Union[Unset, str]):
21
22
  public_resource (Union[Unset, bool]):
22
23
  """
23
24
 
24
25
  type: Union[Unset, EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAdditionalPropertyType] = UNSET
25
26
  s3_resource_path: Union[Unset, str] = UNSET
26
27
  azure_blob_resource_path: Union[Unset, str] = UNSET
28
+ gcs_resource_path: Union[Unset, str] = UNSET
27
29
  public_resource: Union[Unset, bool] = UNSET
28
30
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
29
31
 
@@ -34,6 +36,7 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAddition
34
36
 
35
37
  s3_resource_path = self.s3_resource_path
36
38
  azure_blob_resource_path = self.azure_blob_resource_path
39
+ gcs_resource_path = self.gcs_resource_path
37
40
  public_resource = self.public_resource
38
41
 
39
42
  field_dict: Dict[str, Any] = {}
@@ -45,6 +48,8 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAddition
45
48
  field_dict["s3_resource_path"] = s3_resource_path
46
49
  if azure_blob_resource_path is not UNSET:
47
50
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
51
+ if gcs_resource_path is not UNSET:
52
+ field_dict["gcs_resource_path"] = gcs_resource_path
48
53
  if public_resource is not UNSET:
49
54
  field_dict["public_resource"] = public_resource
50
55
 
@@ -64,12 +69,15 @@ class EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAddition
64
69
 
65
70
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
66
71
 
72
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
73
+
67
74
  public_resource = d.pop("public_resource", UNSET)
68
75
 
69
76
  edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property = cls(
70
77
  type=type,
71
78
  s3_resource_path=s3_resource_path,
72
79
  azure_blob_resource_path=azure_blob_resource_path,
80
+ gcs_resource_path=gcs_resource_path,
73
81
  public_resource=public_resource,
74
82
  )
75
83
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class EditLargeFileStorageConfigJsonBodyLargeFileStorageSecondaryStorageAdditionalPropertyType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class EditLargeFileStorageConfigJsonBodyLargeFileStorageType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -22,6 +22,7 @@ class GetLargeFileStorageConfigResponse200:
22
22
  type (Union[Unset, GetLargeFileStorageConfigResponse200Type]):
23
23
  s3_resource_path (Union[Unset, str]):
24
24
  azure_blob_resource_path (Union[Unset, str]):
25
+ gcs_resource_path (Union[Unset, str]):
25
26
  public_resource (Union[Unset, bool]):
26
27
  secondary_storage (Union[Unset, GetLargeFileStorageConfigResponse200SecondaryStorage]):
27
28
  """
@@ -29,6 +30,7 @@ class GetLargeFileStorageConfigResponse200:
29
30
  type: Union[Unset, GetLargeFileStorageConfigResponse200Type] = UNSET
30
31
  s3_resource_path: Union[Unset, str] = UNSET
31
32
  azure_blob_resource_path: Union[Unset, str] = UNSET
33
+ gcs_resource_path: Union[Unset, str] = UNSET
32
34
  public_resource: Union[Unset, bool] = UNSET
33
35
  secondary_storage: Union[Unset, "GetLargeFileStorageConfigResponse200SecondaryStorage"] = UNSET
34
36
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
@@ -40,6 +42,7 @@ class GetLargeFileStorageConfigResponse200:
40
42
 
41
43
  s3_resource_path = self.s3_resource_path
42
44
  azure_blob_resource_path = self.azure_blob_resource_path
45
+ gcs_resource_path = self.gcs_resource_path
43
46
  public_resource = self.public_resource
44
47
  secondary_storage: Union[Unset, Dict[str, Any]] = UNSET
45
48
  if not isinstance(self.secondary_storage, Unset):
@@ -54,6 +57,8 @@ class GetLargeFileStorageConfigResponse200:
54
57
  field_dict["s3_resource_path"] = s3_resource_path
55
58
  if azure_blob_resource_path is not UNSET:
56
59
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
60
+ if gcs_resource_path is not UNSET:
61
+ field_dict["gcs_resource_path"] = gcs_resource_path
57
62
  if public_resource is not UNSET:
58
63
  field_dict["public_resource"] = public_resource
59
64
  if secondary_storage is not UNSET:
@@ -79,6 +84,8 @@ class GetLargeFileStorageConfigResponse200:
79
84
 
80
85
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
81
86
 
87
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
88
+
82
89
  public_resource = d.pop("public_resource", UNSET)
83
90
 
84
91
  _secondary_storage = d.pop("secondary_storage", UNSET)
@@ -92,6 +99,7 @@ class GetLargeFileStorageConfigResponse200:
92
99
  type=type,
93
100
  s3_resource_path=s3_resource_path,
94
101
  azure_blob_resource_path=azure_blob_resource_path,
102
+ gcs_resource_path=gcs_resource_path,
95
103
  public_resource=public_resource,
96
104
  secondary_storage=secondary_storage,
97
105
  )
@@ -18,12 +18,14 @@ class GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalProperty:
18
18
  type (Union[Unset, GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalPropertyType]):
19
19
  s3_resource_path (Union[Unset, str]):
20
20
  azure_blob_resource_path (Union[Unset, str]):
21
+ gcs_resource_path (Union[Unset, str]):
21
22
  public_resource (Union[Unset, bool]):
22
23
  """
23
24
 
24
25
  type: Union[Unset, GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalPropertyType] = UNSET
25
26
  s3_resource_path: Union[Unset, str] = UNSET
26
27
  azure_blob_resource_path: Union[Unset, str] = UNSET
28
+ gcs_resource_path: Union[Unset, str] = UNSET
27
29
  public_resource: Union[Unset, bool] = UNSET
28
30
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
29
31
 
@@ -34,6 +36,7 @@ class GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalProperty:
34
36
 
35
37
  s3_resource_path = self.s3_resource_path
36
38
  azure_blob_resource_path = self.azure_blob_resource_path
39
+ gcs_resource_path = self.gcs_resource_path
37
40
  public_resource = self.public_resource
38
41
 
39
42
  field_dict: Dict[str, Any] = {}
@@ -45,6 +48,8 @@ class GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalProperty:
45
48
  field_dict["s3_resource_path"] = s3_resource_path
46
49
  if azure_blob_resource_path is not UNSET:
47
50
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
51
+ if gcs_resource_path is not UNSET:
52
+ field_dict["gcs_resource_path"] = gcs_resource_path
48
53
  if public_resource is not UNSET:
49
54
  field_dict["public_resource"] = public_resource
50
55
 
@@ -64,12 +69,15 @@ class GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalProperty:
64
69
 
65
70
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
66
71
 
72
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
73
+
67
74
  public_resource = d.pop("public_resource", UNSET)
68
75
 
69
76
  get_large_file_storage_config_response_200_secondary_storage_additional_property = cls(
70
77
  type=type,
71
78
  s3_resource_path=s3_resource_path,
72
79
  azure_blob_resource_path=azure_blob_resource_path,
80
+ gcs_resource_path=gcs_resource_path,
73
81
  public_resource=public_resource,
74
82
  )
75
83
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class GetLargeFileStorageConfigResponse200SecondaryStorageAdditionalPropertyType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class GetLargeFileStorageConfigResponse200Type(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -22,6 +22,7 @@ class GetSettingsResponse200LargeFileStorage:
22
22
  type (Union[Unset, GetSettingsResponse200LargeFileStorageType]):
23
23
  s3_resource_path (Union[Unset, str]):
24
24
  azure_blob_resource_path (Union[Unset, str]):
25
+ gcs_resource_path (Union[Unset, str]):
25
26
  public_resource (Union[Unset, bool]):
26
27
  secondary_storage (Union[Unset, GetSettingsResponse200LargeFileStorageSecondaryStorage]):
27
28
  """
@@ -29,6 +30,7 @@ class GetSettingsResponse200LargeFileStorage:
29
30
  type: Union[Unset, GetSettingsResponse200LargeFileStorageType] = UNSET
30
31
  s3_resource_path: Union[Unset, str] = UNSET
31
32
  azure_blob_resource_path: Union[Unset, str] = UNSET
33
+ gcs_resource_path: Union[Unset, str] = UNSET
32
34
  public_resource: Union[Unset, bool] = UNSET
33
35
  secondary_storage: Union[Unset, "GetSettingsResponse200LargeFileStorageSecondaryStorage"] = UNSET
34
36
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
@@ -40,6 +42,7 @@ class GetSettingsResponse200LargeFileStorage:
40
42
 
41
43
  s3_resource_path = self.s3_resource_path
42
44
  azure_blob_resource_path = self.azure_blob_resource_path
45
+ gcs_resource_path = self.gcs_resource_path
43
46
  public_resource = self.public_resource
44
47
  secondary_storage: Union[Unset, Dict[str, Any]] = UNSET
45
48
  if not isinstance(self.secondary_storage, Unset):
@@ -54,6 +57,8 @@ class GetSettingsResponse200LargeFileStorage:
54
57
  field_dict["s3_resource_path"] = s3_resource_path
55
58
  if azure_blob_resource_path is not UNSET:
56
59
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
60
+ if gcs_resource_path is not UNSET:
61
+ field_dict["gcs_resource_path"] = gcs_resource_path
57
62
  if public_resource is not UNSET:
58
63
  field_dict["public_resource"] = public_resource
59
64
  if secondary_storage is not UNSET:
@@ -79,6 +84,8 @@ class GetSettingsResponse200LargeFileStorage:
79
84
 
80
85
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
81
86
 
87
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
88
+
82
89
  public_resource = d.pop("public_resource", UNSET)
83
90
 
84
91
  _secondary_storage = d.pop("secondary_storage", UNSET)
@@ -92,6 +99,7 @@ class GetSettingsResponse200LargeFileStorage:
92
99
  type=type,
93
100
  s3_resource_path=s3_resource_path,
94
101
  azure_blob_resource_path=azure_blob_resource_path,
102
+ gcs_resource_path=gcs_resource_path,
95
103
  public_resource=public_resource,
96
104
  secondary_storage=secondary_storage,
97
105
  )
@@ -18,12 +18,14 @@ class GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalProperty:
18
18
  type (Union[Unset, GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalPropertyType]):
19
19
  s3_resource_path (Union[Unset, str]):
20
20
  azure_blob_resource_path (Union[Unset, str]):
21
+ gcs_resource_path (Union[Unset, str]):
21
22
  public_resource (Union[Unset, bool]):
22
23
  """
23
24
 
24
25
  type: Union[Unset, GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalPropertyType] = UNSET
25
26
  s3_resource_path: Union[Unset, str] = UNSET
26
27
  azure_blob_resource_path: Union[Unset, str] = UNSET
28
+ gcs_resource_path: Union[Unset, str] = UNSET
27
29
  public_resource: Union[Unset, bool] = UNSET
28
30
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
29
31
 
@@ -34,6 +36,7 @@ class GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalProperty:
34
36
 
35
37
  s3_resource_path = self.s3_resource_path
36
38
  azure_blob_resource_path = self.azure_blob_resource_path
39
+ gcs_resource_path = self.gcs_resource_path
37
40
  public_resource = self.public_resource
38
41
 
39
42
  field_dict: Dict[str, Any] = {}
@@ -45,6 +48,8 @@ class GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalProperty:
45
48
  field_dict["s3_resource_path"] = s3_resource_path
46
49
  if azure_blob_resource_path is not UNSET:
47
50
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
51
+ if gcs_resource_path is not UNSET:
52
+ field_dict["gcs_resource_path"] = gcs_resource_path
48
53
  if public_resource is not UNSET:
49
54
  field_dict["public_resource"] = public_resource
50
55
 
@@ -64,12 +69,15 @@ class GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalProperty:
64
69
 
65
70
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
66
71
 
72
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
73
+
67
74
  public_resource = d.pop("public_resource", UNSET)
68
75
 
69
76
  get_settings_response_200_large_file_storage_secondary_storage_additional_property = cls(
70
77
  type=type,
71
78
  s3_resource_path=s3_resource_path,
72
79
  azure_blob_resource_path=azure_blob_resource_path,
80
+ gcs_resource_path=gcs_resource_path,
73
81
  public_resource=public_resource,
74
82
  )
75
83
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class GetSettingsResponse200LargeFileStorageSecondaryStorageAdditionalPropertyType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class GetSettingsResponse200LargeFileStorageType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -20,6 +20,7 @@ class LargeFileStorage:
20
20
  type (Union[Unset, LargeFileStorageType]):
21
21
  s3_resource_path (Union[Unset, str]):
22
22
  azure_blob_resource_path (Union[Unset, str]):
23
+ gcs_resource_path (Union[Unset, str]):
23
24
  public_resource (Union[Unset, bool]):
24
25
  secondary_storage (Union[Unset, LargeFileStorageSecondaryStorage]):
25
26
  """
@@ -27,6 +28,7 @@ class LargeFileStorage:
27
28
  type: Union[Unset, LargeFileStorageType] = UNSET
28
29
  s3_resource_path: Union[Unset, str] = UNSET
29
30
  azure_blob_resource_path: Union[Unset, str] = UNSET
31
+ gcs_resource_path: Union[Unset, str] = UNSET
30
32
  public_resource: Union[Unset, bool] = UNSET
31
33
  secondary_storage: Union[Unset, "LargeFileStorageSecondaryStorage"] = UNSET
32
34
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
@@ -38,6 +40,7 @@ class LargeFileStorage:
38
40
 
39
41
  s3_resource_path = self.s3_resource_path
40
42
  azure_blob_resource_path = self.azure_blob_resource_path
43
+ gcs_resource_path = self.gcs_resource_path
41
44
  public_resource = self.public_resource
42
45
  secondary_storage: Union[Unset, Dict[str, Any]] = UNSET
43
46
  if not isinstance(self.secondary_storage, Unset):
@@ -52,6 +55,8 @@ class LargeFileStorage:
52
55
  field_dict["s3_resource_path"] = s3_resource_path
53
56
  if azure_blob_resource_path is not UNSET:
54
57
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
58
+ if gcs_resource_path is not UNSET:
59
+ field_dict["gcs_resource_path"] = gcs_resource_path
55
60
  if public_resource is not UNSET:
56
61
  field_dict["public_resource"] = public_resource
57
62
  if secondary_storage is not UNSET:
@@ -75,6 +80,8 @@ class LargeFileStorage:
75
80
 
76
81
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
77
82
 
83
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
84
+
78
85
  public_resource = d.pop("public_resource", UNSET)
79
86
 
80
87
  _secondary_storage = d.pop("secondary_storage", UNSET)
@@ -88,6 +95,7 @@ class LargeFileStorage:
88
95
  type=type,
89
96
  s3_resource_path=s3_resource_path,
90
97
  azure_blob_resource_path=azure_blob_resource_path,
98
+ gcs_resource_path=gcs_resource_path,
91
99
  public_resource=public_resource,
92
100
  secondary_storage=secondary_storage,
93
101
  )
@@ -18,12 +18,14 @@ class LargeFileStorageSecondaryStorageAdditionalProperty:
18
18
  type (Union[Unset, LargeFileStorageSecondaryStorageAdditionalPropertyType]):
19
19
  s3_resource_path (Union[Unset, str]):
20
20
  azure_blob_resource_path (Union[Unset, str]):
21
+ gcs_resource_path (Union[Unset, str]):
21
22
  public_resource (Union[Unset, bool]):
22
23
  """
23
24
 
24
25
  type: Union[Unset, LargeFileStorageSecondaryStorageAdditionalPropertyType] = UNSET
25
26
  s3_resource_path: Union[Unset, str] = UNSET
26
27
  azure_blob_resource_path: Union[Unset, str] = UNSET
28
+ gcs_resource_path: Union[Unset, str] = UNSET
27
29
  public_resource: Union[Unset, bool] = UNSET
28
30
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
29
31
 
@@ -34,6 +36,7 @@ class LargeFileStorageSecondaryStorageAdditionalProperty:
34
36
 
35
37
  s3_resource_path = self.s3_resource_path
36
38
  azure_blob_resource_path = self.azure_blob_resource_path
39
+ gcs_resource_path = self.gcs_resource_path
37
40
  public_resource = self.public_resource
38
41
 
39
42
  field_dict: Dict[str, Any] = {}
@@ -45,6 +48,8 @@ class LargeFileStorageSecondaryStorageAdditionalProperty:
45
48
  field_dict["s3_resource_path"] = s3_resource_path
46
49
  if azure_blob_resource_path is not UNSET:
47
50
  field_dict["azure_blob_resource_path"] = azure_blob_resource_path
51
+ if gcs_resource_path is not UNSET:
52
+ field_dict["gcs_resource_path"] = gcs_resource_path
48
53
  if public_resource is not UNSET:
49
54
  field_dict["public_resource"] = public_resource
50
55
 
@@ -64,12 +69,15 @@ class LargeFileStorageSecondaryStorageAdditionalProperty:
64
69
 
65
70
  azure_blob_resource_path = d.pop("azure_blob_resource_path", UNSET)
66
71
 
72
+ gcs_resource_path = d.pop("gcs_resource_path", UNSET)
73
+
67
74
  public_resource = d.pop("public_resource", UNSET)
68
75
 
69
76
  large_file_storage_secondary_storage_additional_property = cls(
70
77
  type=type,
71
78
  s3_resource_path=s3_resource_path,
72
79
  azure_blob_resource_path=azure_blob_resource_path,
80
+ gcs_resource_path=gcs_resource_path,
73
81
  public_resource=public_resource,
74
82
  )
75
83
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class LargeFileStorageSecondaryStorageAdditionalPropertyType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -4,6 +4,7 @@ from enum import Enum
4
4
  class LargeFileStorageType(str, Enum):
5
5
  AZUREBLOBSTORAGE = "AzureBlobStorage"
6
6
  AZUREWORKLOADIDENTITY = "AzureWorkloadIdentity"
7
+ GOOGLECLOUDSTORAGE = "GoogleCloudStorage"
7
8
  S3AWSOIDC = "S3AwsOidc"
8
9
  S3STORAGE = "S3Storage"
9
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.501.3
3
+ Version: 1.502.0
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -1007,11 +1007,11 @@ windmill_api/models/edit_http_trigger_http_method.py,sha256=0ap4m_mxJpb5Fmr1DwT0
1007
1007
  windmill_api/models/edit_http_trigger_static_asset_config.py,sha256=ug13LgqJdVbpl2T-8nURo5vYpuIK9pL2AxlyVQD315U,2078
1008
1008
  windmill_api/models/edit_kafka_trigger.py,sha256=mK-QVE2J7h3mpkPljkBd6jc1MGkzw_hw4QqB06CqR5w,2503
1009
1009
  windmill_api/models/edit_large_file_storage_config_json_body.py,sha256=3ybD-0psq-gb-mH4b22Jw6U6Ne3Y4qwqzfilEo-Bgss,2689
1010
- windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py,sha256=mcKSR5dGoBtl8bbGHTA1P-rLwavfTtp3FP9uaVCX9gY,4878
1010
+ windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py,sha256=3MdlRoy8XSmZTnQzlLg7CB9if05Yq5OCuXKK9xeCi8Q,5244
1011
1011
  windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage.py,sha256=WdWEt3fkNnVpm-G5FTCA7ojP8cKXuzjtUlDvL0vA6TM,2788
1012
- windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property.py,sha256=JvtM5FKzK44UtdGCdPPPO2AK8Bd1_ENK5_6JOI1U_OA,3870
1013
- windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property_type.py,sha256=2PA9xxqqKTI7U9JX9sqgvUUxtzqvRmZRqjBeB-tzh9A,343
1014
- windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_type.py,sha256=pIs4SBUn5uRSteqxIDtD4ng3AquQJMJKDnXNZ8Q_t8s,309
1012
+ windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property.py,sha256=XYT5FKCCzj5tl9Myj96PEUPlv5hpZZhURRwONRmb2Uc,4236
1013
+ windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property_type.py,sha256=Uesne_gt1bxrZ9ZImYhkDwwIWMx_PSaXs5hq9gWxagc,389
1014
+ windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_type.py,sha256=aOCM4MObOqIgditkrE6UDXk6mECIrnrHuK4qNmOMjfg,355
1015
1015
  windmill_api/models/edit_mqtt_trigger.py,sha256=gNJxhTlRMyjg0eDRD5A2UEW4UnrMsyzZwLZI9K8xb-c,6068
1016
1016
  windmill_api/models/edit_mqtt_trigger_client_version.py,sha256=8kLHrfwOq9ynDiPPM1A4bq8HWVwiBCzyY-Ha9NG7atI,161
1017
1017
  windmill_api/models/edit_mqtt_trigger_subscribe_topics_item.py,sha256=zO0F5jTP9cdgKe8cBN-PBoUVoanuKsOjEvxupLqaDo8,1904
@@ -2156,11 +2156,11 @@ windmill_api/models/get_job_updates_response_200_flow_status.py,sha256=uXlpQmhgN
2156
2156
  windmill_api/models/get_job_updates_response_200_flow_status_additional_property.py,sha256=pHNf-IUOVJmNXwdZRqLMrccY65LMMzsn5VwYMRfa2MM,3379
2157
2157
  windmill_api/models/get_kafka_trigger_response_200.py,sha256=gTKJL68ozZMN8peh41YzFX2MyxqohxFqoIY1L0dhC8o,5464
2158
2158
  windmill_api/models/get_kafka_trigger_response_200_extra_perms.py,sha256=5QCYnIqM945NJCVk2jckZm9jA-A5PQrM0sPTY-0zXiI,1353
2159
- windmill_api/models/get_large_file_storage_config_response_200.py,sha256=DXmfFWQjGV3Kl03YOff8F05x_MtItV2A7kcjWN46P-A,4555
2159
+ windmill_api/models/get_large_file_storage_config_response_200.py,sha256=xayQUAzqCbLoMK_vP8WqN36tUcQywJaFekW5ea-2GPM,4921
2160
2160
  windmill_api/models/get_large_file_storage_config_response_200_secondary_storage.py,sha256=Qf-ROzdOTofOaljs2dbEPqJNf-u3d85MdPE0z0VTv8s,2513
2161
- windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property.py,sha256=-UuaRLzsqANMpSLLiZa5sZOuK-tKxVl46AYkhJFbdr0,3680
2162
- windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property_type.py,sha256=6SgeSKYqKYh-bqow2UvTt7RnmKIc83nt0H36yYAScAQ,329
2163
- windmill_api/models/get_large_file_storage_config_response_200_type.py,sha256=ObS3GBe-BI9X0A6iSKf6SjebveYr8kQq-syg2I6SNPc,295
2161
+ windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property.py,sha256=gUcBb-nM_A4_svSGUNnoolsEJ6cXq1l2cD44Qdw00FM,4046
2162
+ windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property_type.py,sha256=NirUQPdW4ONDTkhTcGj6ZUMfZW7iPv2kgLvoYob3mCk,375
2163
+ windmill_api/models/get_large_file_storage_config_response_200_type.py,sha256=2fWFmzG8ZdYW7mYD7SVl47SxjQeNLWKJXtPtCR9OwyA,341
2164
2164
  windmill_api/models/get_latest_key_renewal_attempt_response_200.py,sha256=l8711Hmn18kPo69JDV6SI1FEXFmXO5OVYOowcpVHm9k,1907
2165
2165
  windmill_api/models/get_mqtt_trigger_response_200.py,sha256=b3oZx-t69DvPn50Bp1ZmzE7KJi_YeWjues6n91mnbjI,9114
2166
2166
  windmill_api/models/get_mqtt_trigger_response_200_client_version.py,sha256=OPEvR2di8ldQgeaNSs25MMuPY6ucEq-069O1pxYjNiw,171
@@ -2257,11 +2257,11 @@ windmill_api/models/get_settings_response_200_git_sync.py,sha256=aayGhTGn97kda0u
2257
2257
  windmill_api/models/get_settings_response_200_git_sync_include_type_item.py,sha256=lLVD8LgoNaBSfhu8tsGyslXOmy2FNLE8G_AP8WViBDY,423
2258
2258
  windmill_api/models/get_settings_response_200_git_sync_repositories_item.py,sha256=xGn73xL971B3jV282NEkc8KZ42NVySdHiM732UXiAg8,4280
2259
2259
  windmill_api/models/get_settings_response_200_git_sync_repositories_item_exclude_types_override_item.py,sha256=0CEJlNh6vIE1QX8NrYhfo7BZfRl91M1_zriGF9A2h3Y,448
2260
- windmill_api/models/get_settings_response_200_large_file_storage.py,sha256=BGGvHPpWk4bCaJg1OAsjTGPUb5LPVz70fLtDJJjj10A,4593
2260
+ windmill_api/models/get_settings_response_200_large_file_storage.py,sha256=T5ER8EPkkC_oXVHBqG-1OWx_qzFjeVJMUEh6aHTVjeo,4959
2261
2261
  windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage.py,sha256=NA9KIXrWM1jPhWw2FlYU3-ev1ksJ0f-RpMDA_YDDrnY,2539
2262
- windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property.py,sha256=wbsIwdb3VX2Gigk90fMtDoqBr6jkMT4PgH4F-sb97k4,3702
2263
- windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property_type.py,sha256=EtUCg8lK6sy3VciD3kgGophpn-ssm9jMtNyq73n603Q,331
2264
- windmill_api/models/get_settings_response_200_large_file_storage_type.py,sha256=eS2tgvtK8RkVuLXzlZSKdHiD1Vpm-o6UI2jpK22opoc,297
2262
+ windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property.py,sha256=s_xITfXABageos63DfneMBN79vJRt02Mg0O5MIqvPrQ,4068
2263
+ windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property_type.py,sha256=i40fh_Xrl57ag1jDiRY_nn5_NPtTYC9cnFeq0ae8kdE,377
2264
+ windmill_api/models/get_settings_response_200_large_file_storage_type.py,sha256=SlC4tpr5MoDIfpqbezWYBp8rBofzA7Zjglm9s0M4iDE,343
2265
2265
  windmill_api/models/get_settings_response_200_operator_settings.py,sha256=XnpOhhuU5hWHU02vAiUxTY2PgYoqwnpvm5WuLMSgLeE,3384
2266
2266
  windmill_api/models/get_sqs_trigger_response_200.py,sha256=xk5yT9qvsRi-xgiSu6DZN9bGN1i7Lj1_Yw-xpWec1po,6339
2267
2267
  windmill_api/models/get_sqs_trigger_response_200_aws_auth_resource_type.py,sha256=2wP1v5GtpVtIW8P4LuUs70UarRAFpq9OKNdrZoQk_LM,198
@@ -2641,11 +2641,11 @@ windmill_api/models/job_type_1_type.py,sha256=DeZCr2aOMcjYNQJnXF0XE1wriMIZC2gJ0k
2641
2641
  windmill_api/models/kafka_trigger.py,sha256=DMQo6a2N0fHg3ZMEdc5ZzrnNravf5Eh41B_guuZHGqI,5281
2642
2642
  windmill_api/models/kafka_trigger_extra_perms.py,sha256=iA91jtXXXc4n8IxT0PtZTsw3nfdKY8_aV_unFg3LhkM,1274
2643
2643
  windmill_api/models/language.py,sha256=1CAyRnhy4mRiUMRIhkyS5z4RUUaKNxSK6BOkoNjj4ug,143
2644
- windmill_api/models/large_file_storage.py,sha256=G51RSe6nYuSIsRfzHaEbmLQNq8DIUxJouYk669YggSU,4109
2644
+ windmill_api/models/large_file_storage.py,sha256=VCfekssa6826UUq38uWQVS41hfWVOFIVAX0D-tfiVIc,4475
2645
2645
  windmill_api/models/large_file_storage_secondary_storage.py,sha256=ErYFX3BDTgfCYqmMMQ8FyQKmCAENDCFKJuclWoSwi3A,2189
2646
- windmill_api/models/large_file_storage_secondary_storage_additional_property.py,sha256=yADaOm66oItVzK1yGY5q_2CNWtfZa8cO1dtM-d7nZuM,3444
2647
- windmill_api/models/large_file_storage_secondary_storage_additional_property_type.py,sha256=Pcnoyzp6XaLtLjCryrt4DReZQyfQvWpBqjYtoTH5GbU,309
2648
- windmill_api/models/large_file_storage_type.py,sha256=eDHjqV337C1YJQVVlMhgQ_a6YheA3PsVV1Dv9NQ2BD4,275
2646
+ windmill_api/models/large_file_storage_secondary_storage_additional_property.py,sha256=1STAq24bnB9oCfSc7zT8ZnfnvtcMZKavuLmMqFJe104,3810
2647
+ windmill_api/models/large_file_storage_secondary_storage_additional_property_type.py,sha256=-4XjAS6POZ0Do3QpkSzKaacyAGLXIvtZDLlTZJARoTU,355
2648
+ windmill_api/models/large_file_storage_type.py,sha256=yy2addbWLbYJJl7SZjsweCGbN4KR2ZDSuluAZ9kBTnQ,321
2649
2649
  windmill_api/models/list_all_t_google_topic_subscriptions_json_body.py,sha256=CsTPPH1wxH3hdxUwETTLceDJMfLKi6lbVU-WI3qmKFI,1620
2650
2650
  windmill_api/models/list_app_paths_from_workspace_runnable_runnable_kind.py,sha256=jQw9yCEaDoNjM-y7WXGLW3xOLfJ5DTIOLxQKkje7BaY,190
2651
2651
  windmill_api/models/list_apps_response_200_item.py,sha256=SgZCCyYYI-fjUoAICYFgiF-3Fq4p7-DjLOalzVFn-uQ,4049
@@ -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.501.3.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
4026
- windmill_api-1.501.3.dist-info/METADATA,sha256=BGXmYmoGzn4U3Aq2RrPXECpQ3zVr_zmiNedn4HVzZTg,5023
4027
- windmill_api-1.501.3.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
4028
- windmill_api-1.501.3.dist-info/RECORD,,
4025
+ windmill_api-1.502.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
4026
+ windmill_api-1.502.0.dist-info/METADATA,sha256=9Sl5NTkY8xvO4UTuSnnd251AAcc3xaqOLc2qXIqhyfY,5023
4027
+ windmill_api-1.502.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
4028
+ windmill_api-1.502.0.dist-info/RECORD,,