Skip to content

Commit 9b835f9

Browse files
[fix] Adding cluster attribute on UploadData
1 parent 85c7f3c commit 9b835f9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

squarecloud/data.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,22 +240,25 @@ class UploadData(BaseDataClass):
240240
:ivar ram: Ram allocated for the uploaded application
241241
:ivar cpu: Cpu of the uploaded application
242242
:ivar description: Description of the uploaded application
243-
:ivar subdomain: Subdomain of the uploaded application (only in websites)
243+
:ivar domain: Subdomain of the uploaded application (only in websites)
244+
:ivar cluster: Cluster where the application is hosted
244245
245246
:type id: str
246247
:type name: str
247248
:type language: Language
248249
:type ram: confloat(ge=0)
249250
:type cpu: confloat(ge=0)
250-
:type subdomain: str | None = None
251+
:type domain: str | None = None
251252
:type description: str | None = None
253+
:type cluster: str
252254
"""
253255

254256
id: str
255257
name: str
256258
language: Language
257259
ram: float
258260
cpu: float
261+
cluster: str
259262
domain: str | None = None
260263
description: str | None = None
261264

0 commit comments

Comments
 (0)