stackit-postgresflex 1.5.0__py3-none-any.whl → 1.6.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.
@@ -28,9 +28,7 @@ class CloneInstanceOverrides(BaseModel):
28
28
  CloneInstanceOverrides
29
29
  """ # noqa: E501
30
30
 
31
- var_class: Optional[StrictStr] = Field(
32
- default=None, description="The storage class for the storage.", alias="class"
33
- )
31
+ var_class: StrictStr = Field(description="The storage class for the storage.", alias="class")
34
32
  name: Optional[Annotated[str, Field(min_length=3, strict=True, max_length=63)]] = Field(
35
33
  default=None,
36
34
  description="The name of the cloned instance. If not provided, the default naming behavior of appending '-clone' to the source instance name is used.",
@@ -16,11 +16,12 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  import pprint
19
+ import re # noqa: F401
19
20
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
21
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
22
23
  from pydantic_core import to_jsonable_python
23
- from typing_extensions import Self
24
+ from typing_extensions import Annotated, Self
24
25
 
25
26
 
26
27
  class CreateDatabasePayload(BaseModel):
@@ -28,10 +29,22 @@ class CreateDatabasePayload(BaseModel):
28
29
  CreateDatabasePayload
29
30
  """ # noqa: E501
30
31
 
31
- name: StrictStr = Field(description="The name of the database.")
32
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=63)] = Field(
33
+ description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
34
+ )
32
35
  owner: Optional[StrictStr] = Field(default=None, description="The owner of the database.")
33
36
  __properties: ClassVar[List[str]] = ["name", "owner"]
34
37
 
38
+ @field_validator("name")
39
+ def name_validate_regular_expression(cls, value):
40
+ """Validates the regular expression"""
41
+ if not isinstance(value, str):
42
+ value = str(value)
43
+
44
+ if not re.match(r"^[a-z_][a-z0-9_]*$", value):
45
+ raise ValueError(r"must validate the regular expression /^[a-z_][a-z0-9_]*$/")
46
+ return value
47
+
35
48
  model_config = ConfigDict(
36
49
  validate_by_name=True,
37
50
  validate_by_alias=True,
@@ -16,11 +16,12 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  import pprint
19
+ import re # noqa: F401
19
20
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
21
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
22
23
  from pydantic_core import to_jsonable_python
23
- from typing_extensions import Self
24
+ from typing_extensions import Annotated, Self
24
25
 
25
26
 
26
27
  class DatabaseRoles(BaseModel):
@@ -28,10 +29,22 @@ class DatabaseRoles(BaseModel):
28
29
  The name and the roles for a database for a user.
29
30
  """ # noqa: E501
30
31
 
31
- name: StrictStr = Field(description="The name of the database.")
32
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=63)] = Field(
33
+ description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
34
+ )
32
35
  roles: List[StrictStr] = Field(description="The name and the roles for a database")
33
36
  __properties: ClassVar[List[str]] = ["name", "roles"]
34
37
 
38
+ @field_validator("name")
39
+ def name_validate_regular_expression(cls, value):
40
+ """Validates the regular expression"""
41
+ if not isinstance(value, str):
42
+ value = str(value)
43
+
44
+ if not re.match(r"^[a-z_][a-z0-9_]*$", value):
45
+ raise ValueError(r"must validate the regular expression /^[a-z_][a-z0-9_]*$/")
46
+ return value
47
+
35
48
  model_config = ConfigDict(
36
49
  validate_by_name=True,
37
50
  validate_by_alias=True,
@@ -16,11 +16,12 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  import pprint
19
+ import re # noqa: F401
19
20
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
21
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator
22
23
  from pydantic_core import to_jsonable_python
23
- from typing_extensions import Self
24
+ from typing_extensions import Annotated, Self
24
25
 
25
26
 
26
27
  class GetDatabaseResponse(BaseModel):
@@ -29,10 +30,22 @@ class GetDatabaseResponse(BaseModel):
29
30
  """ # noqa: E501
30
31
 
31
32
  id: StrictInt = Field(description="The id of the database.")
32
- name: StrictStr = Field(description="The name of the database.")
33
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=63)] = Field(
34
+ description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
35
+ )
33
36
  owner: StrictStr = Field(description="The owner of the database.")
34
37
  __properties: ClassVar[List[str]] = ["id", "name", "owner"]
35
38
 
39
+ @field_validator("name")
40
+ def name_validate_regular_expression(cls, value):
41
+ """Validates the regular expression"""
42
+ if not isinstance(value, str):
43
+ value = str(value)
44
+
45
+ if not re.match(r"^[a-z_][a-z0-9_]*$", value):
46
+ raise ValueError(r"must validate the regular expression /^[a-z_][a-z0-9_]*$/")
47
+ return value
48
+
36
49
  model_config = ConfigDict(
37
50
  validate_by_name=True,
38
51
  validate_by_alias=True,
@@ -22,7 +22,7 @@ from typing_extensions import Self
22
22
 
23
23
  class InstanceNetworkAccessScope(str, Enum):
24
24
  """
25
- The access scope of the instance. It defines if the instance is public or airgapped.
25
+ The access scope of the instance. It defines if the instance is public or airgapped. ⚠️ **Note:** \"SNA\" value for the \"network.accessScope\" field is only permitted for enabled accounts. If your account does not have access, the request will be rejected.
26
26
  """
27
27
 
28
28
  """
@@ -16,11 +16,12 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  import pprint
19
+ import re # noqa: F401
19
20
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
21
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator
22
23
  from pydantic_core import to_jsonable_python
23
- from typing_extensions import Self
24
+ from typing_extensions import Annotated, Self
24
25
 
25
26
 
26
27
  class ListDatabase(BaseModel):
@@ -29,10 +30,22 @@ class ListDatabase(BaseModel):
29
30
  """ # noqa: E501
30
31
 
31
32
  id: StrictInt = Field(description="The id of the database.")
32
- name: StrictStr = Field(description="The name of the database.")
33
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=63)] = Field(
34
+ description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
35
+ )
33
36
  owner: StrictStr = Field(description="The owner of the database.")
34
37
  __properties: ClassVar[List[str]] = ["id", "name", "owner"]
35
38
 
39
+ @field_validator("name")
40
+ def name_validate_regular_expression(cls, value):
41
+ """Validates the regular expression"""
42
+ if not isinstance(value, str):
43
+ value = str(value)
44
+
45
+ if not re.match(r"^[a-z_][a-z0-9_]*$", value):
46
+ raise ValueError(r"must validate the regular expression /^[a-z_][a-z0-9_]*$/")
47
+ return value
48
+
36
49
  model_config = ConfigDict(
37
50
  validate_by_name=True,
38
51
  validate_by_alias=True,
@@ -16,11 +16,12 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  import pprint
19
+ import re # noqa: F401
19
20
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
21
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
22
23
  from pydantic_core import to_jsonable_python
23
- from typing_extensions import Self
24
+ from typing_extensions import Annotated, Self
24
25
 
25
26
 
26
27
  class PartialUpdateDatabasePayload(BaseModel):
@@ -28,10 +29,26 @@ class PartialUpdateDatabasePayload(BaseModel):
28
29
  PartialUpdateDatabasePayload
29
30
  """ # noqa: E501
30
31
 
31
- name: Optional[StrictStr] = Field(default=None, description="The name of the database.")
32
+ name: Optional[Annotated[str, Field(min_length=1, strict=True, max_length=63)]] = Field(
33
+ default=None,
34
+ description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." ',
35
+ )
32
36
  owner: Optional[StrictStr] = Field(default=None, description="The owner of the database.")
33
37
  __properties: ClassVar[List[str]] = ["name", "owner"]
34
38
 
39
+ @field_validator("name")
40
+ def name_validate_regular_expression(cls, value):
41
+ """Validates the regular expression"""
42
+ if value is None:
43
+ return value
44
+
45
+ if not isinstance(value, str):
46
+ value = str(value)
47
+
48
+ if not re.match(r"^[a-z_][a-z0-9_]*$", value):
49
+ raise ValueError(r"must validate the regular expression /^[a-z_][a-z0-9_]*$/")
50
+ return value
51
+
35
52
  model_config = ConfigDict(
36
53
  validate_by_name=True,
37
54
  validate_by_alias=True,
@@ -28,9 +28,7 @@ class StorageCreate(BaseModel):
28
28
  The object containing information about the storage size and class.
29
29
  """ # noqa: E501
30
30
 
31
- var_class: Optional[StrictStr] = Field(
32
- default=None, description="The storage class for the storage.", alias="class"
33
- )
31
+ var_class: StrictStr = Field(description="The storage class for the storage.", alias="class")
34
32
  size: StrictInt = Field(description="The storage size in Gigabytes.")
35
33
  __properties: ClassVar[List[str]] = ["class", "size"]
36
34
 
@@ -16,11 +16,12 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  import pprint
19
+ import re # noqa: F401
19
20
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
21
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
22
23
  from pydantic_core import to_jsonable_python
23
- from typing_extensions import Self
24
+ from typing_extensions import Annotated, Self
24
25
 
25
26
 
26
27
  class UpdateDatabasePayload(BaseModel):
@@ -28,10 +29,22 @@ class UpdateDatabasePayload(BaseModel):
28
29
  UpdateDatabasePayload
29
30
  """ # noqa: E501
30
31
 
31
- name: StrictStr = Field(description="The name of the database.")
32
+ name: Annotated[str, Field(min_length=1, strict=True, max_length=63)] = Field(
33
+ description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
34
+ )
32
35
  owner: StrictStr = Field(description="The owner of the database.")
33
36
  __properties: ClassVar[List[str]] = ["name", "owner"]
34
37
 
38
+ @field_validator("name")
39
+ def name_validate_regular_expression(cls, value):
40
+ """Validates the regular expression"""
41
+ if not isinstance(value, str):
42
+ value = str(value)
43
+
44
+ if not re.match(r"^[a-z_][a-z0-9_]*$", value):
45
+ raise ValueError(r"must validate the regular expression /^[a-z_][a-z0-9_]*$/")
46
+ return value
47
+
35
48
  model_config = ConfigDict(
36
49
  validate_by_name=True,
37
50
  validate_by_alias=True,
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.5
2
2
  Name: stackit-postgresflex
3
- Version: 1.5.0
3
+ Version: 1.6.1
4
4
  Summary: STACKIT PostgreSQL Flex API
5
5
  Project-URL: Homepage, https://github.com/stackitcloud/stackit-sdk-python
6
6
  Project-URL: Issues, https://github.com/stackitcloud/stackit-sdk-python/issues
@@ -10,28 +10,28 @@ stackit/postgresflex/api/default_api.py,sha256=8NtrEq_oEgYIDQb9qROWH1BT3MFQ5HpJh
10
10
  stackit/postgresflex/models/__init__.py,sha256=SZvjLhlu-KJvYTOlQxvvEMEBrhz4gIBzoOsft9CbUnc,5356
11
11
  stackit/postgresflex/models/backup_data.py,sha256=gQNFtxZz8kZ95T18BrfcdDoDW9N8ffZXvQfBGTbIz8Q,3309
12
12
  stackit/postgresflex/models/backup_sort.py,sha256=aBDo5IFU99ZCLpbbQVz5gQgUECIfrWzteeQ2E2KFYJM,1158
13
- stackit/postgresflex/models/clone_instance_overrides.py,sha256=fBjSdJ-LzCBfmx5aWukhwsEaXr-j7CnoyzPrYSj3yEo,2992
13
+ stackit/postgresflex/models/clone_instance_overrides.py,sha256=Pm8xeqZWANRs2SqvvyIymJEVOMZa9hrAJh19NvBypMI,2954
14
14
  stackit/postgresflex/models/clone_instance_payload.py,sha256=RWPotOncCl9psiNfm3kx5ui2KA6rvSGDt3Z0cR5AYrg,4057
15
15
  stackit/postgresflex/models/clone_instance_response.py,sha256=kRKnZGcaiI20nswuNHiKRZooV_EOU9A2mWjrSOVYQiQ,2471
16
- stackit/postgresflex/models/create_database_payload.py,sha256=MUjJXZplPQ9NfiXBvET77vFwIWLO--Y0p9fYio1Nn5M,2606
16
+ stackit/postgresflex/models/create_database_payload.py,sha256=RQ_ynbMF0Qevzm7S5390X7vsMuOueNaiJDk76qJCIr4,3252
17
17
  stackit/postgresflex/models/create_database_response.py,sha256=VjqkO0nf-P7VhV6ZOHtFDcdluaRvr8w-s5l0zOAfna8,2469
18
18
  stackit/postgresflex/models/create_instance_payload.py,sha256=Y4yI52Oe6GumkYAxhl2RmHfN0jDvHjNbhW7g4bZ_2YQ,5889
19
19
  stackit/postgresflex/models/create_instance_response.py,sha256=9dPTS48xOs3kkIzos8usRsnGJ81-EhzyePa9WSjbdwY,2475
20
20
  stackit/postgresflex/models/create_user_payload.py,sha256=VQslEV6YqUJbEkQelAaMEduSHPk6EgBGDxXMc8LTg30,2779
21
21
  stackit/postgresflex/models/create_user_response.py,sha256=_rrW5FSSI9R3moqlphK6_2TakjjS4Qo8GW4QHo_0qWM,2810
22
- stackit/postgresflex/models/database_roles.py,sha256=eK7S0knCVxn909GYkCHdidUPQcmhj2ZXisFJOn68-gw,2603
22
+ stackit/postgresflex/models/database_roles.py,sha256=OHQNHH6WvYmHO9ZzyS0MmNQUgvl78PoClpwiQhyKbC8,3249
23
23
  stackit/postgresflex/models/database_sort.py,sha256=XT6Vdt_T9XCBAJhGoxESi1jDXZ6tcqAX2NcOJxqqNZI,1068
24
24
  stackit/postgresflex/models/error.py,sha256=_wuT2BEnLRqNPw1CxG7_WdHcvXOfQOrKmC5JxWTRIoc,2935
25
25
  stackit/postgresflex/models/flavor_sort.py,sha256=qfhqcxhG8CiEYkHlAND_f9pTT2Q3JHPDhpfAfm8UVVw,1310
26
26
  stackit/postgresflex/models/flavor_storage_classes_storage_class.py,sha256=JPx79Fw7eqK_2DFpBmWP2DYshQibRXX8LUtM30zltz0,2863
27
- stackit/postgresflex/models/get_database_response.py,sha256=T5psujQZhBt-QtZwU4Dymgp2-9FDCyw1IsFwHploUBc,2677
27
+ stackit/postgresflex/models/get_database_response.py,sha256=pEP1h-QLGG5sH7s_pTixfSDjIe3-D4IwDb7Apw1U_sM,3323
28
28
  stackit/postgresflex/models/get_instance_response.py,sha256=3dGZEWwbFhRV_bQAuMcaJ-PaZswgbT0yFKMOWGYBRPk,6933
29
29
  stackit/postgresflex/models/get_user_response.py,sha256=DOjbMsMfjt-OoOHzIJYU4879nCLLoG8Z7HiQy6Kmqyg,2866
30
30
  stackit/postgresflex/models/instance_connection_info.py,sha256=MGzrQNXmW4jqWXKWuhSANe13mSAcXLpnE_ZsGmTOFuc,2819
31
31
  stackit/postgresflex/models/instance_connection_info_write.py,sha256=YmuC1ZB5rF4jiX9bAyJZE9J6-CzGWzaOoKK7Ya0I6Jc,2631
32
32
  stackit/postgresflex/models/instance_encryption.py,sha256=2Ub2MOI41tHnwls8VYUnNuuvbTOCsKCyYB6AD2qSNOs,3305
33
33
  stackit/postgresflex/models/instance_network.py,sha256=FD-wAtGWTnaeGw3RAntYY-ps2DB6M10_ljA9aQn0FO8,3291
34
- stackit/postgresflex/models/instance_network_access_scope.py,sha256=SqZU9FlLbiQUvtFgPjaBHOjmDUVmeIdi6JWFnGYNoRo,830
34
+ stackit/postgresflex/models/instance_network_access_scope.py,sha256=vsgGxnTMOUvUpYRbAcuXqgHgIbp6mOJPQXhb7ByhK74,1008
35
35
  stackit/postgresflex/models/instance_network_create.py,sha256=kqRa66k4ua0M_1JJfCwtaKSw0Qlqi3cYZn5DRsWNQU0,2977
36
36
  stackit/postgresflex/models/instance_network_opt.py,sha256=4kgQ85WGoUJbxjU7YJ21qq3rsWS6uox9szFcxCnQDjg,2504
37
37
  stackit/postgresflex/models/instance_network_update.py,sha256=RhLmdki9RT0KvvUDa4dc2bFwEJo0nfEz0WhFznAZFQE,2489
@@ -39,7 +39,7 @@ stackit/postgresflex/models/instance_sort.py,sha256=6adNqn5aGwYkNEx6IdNl8YdaCXU9
39
39
  stackit/postgresflex/models/instance_storage_range.py,sha256=4A6OmKKFLxf_Qtv6mp_EZi6C66Ny4Fin6mmfnTsApxU,2622
40
40
  stackit/postgresflex/models/list_backups_response.py,sha256=d5ppvHJ3fruKwIi-bR8QDIgkEwr7rNJ7rbf6rebnWkI,3511
41
41
  stackit/postgresflex/models/list_collations_response.py,sha256=ytxXoKMvNBAWwxzJmJJDIZfvaSBBQq-sZQPjPiauxns,2530
42
- stackit/postgresflex/models/list_database.py,sha256=M2FzX6CU8wJnxCOKVoOTWfbenyFicXci4VCPvNFHQk0,2649
42
+ stackit/postgresflex/models/list_database.py,sha256=1Fr6dbN3a5puaTznDdGccIC_WDCzBO9ozLtkBwNbP9E,3295
43
43
  stackit/postgresflex/models/list_databases_response.py,sha256=Lrn0oZSNCOHScbtzdRpIKLGfYKx5i7NskXJeogS9ev8,3546
44
44
  stackit/postgresflex/models/list_flavors.py,sha256=UerqD1agsS3HVvb1xyo7Mc1mJmWTyASW5ZVtLneY2sY,4537
45
45
  stackit/postgresflex/models/list_flavors_response.py,sha256=mBrF0NM6p0EtuO9WPJEQDOcbeEy9LK4BY2TSVqKW5Bo,3503
@@ -50,16 +50,16 @@ stackit/postgresflex/models/list_user.py,sha256=JRL1wE6MYCap3pAc19WmZtOaP3z48_jK
50
50
  stackit/postgresflex/models/list_users_response.py,sha256=J5jvG5f17WgnBvOQN3cd-laZPcV3OR99ptDzcAjrOxQ,3413
51
51
  stackit/postgresflex/models/list_versions_response.py,sha256=jqcALLObj9fZt724fyabqyx5nEmxPoWVQG9LcF5_e7I,3067
52
52
  stackit/postgresflex/models/pagination.py,sha256=9uYvjdFnYKB3CjUWeGfVF0hO2wbO3YLwui85MNJNTvs,2823
53
- stackit/postgresflex/models/partial_update_database_payload.py,sha256=YxyfNufNxFGFWdsKe8KO-LjVd6aIa2iI9-toStA39cs,2658
53
+ stackit/postgresflex/models/partial_update_database_payload.py,sha256=-0EELsB3ed1aykVIRI5HEirVHAn18UGatb4TuaOjjCo,3365
54
54
  stackit/postgresflex/models/partial_update_instance_payload.py,sha256=6h4A-z4AjeHY1iG22WMeuLnWD9mAeybz6eIRtVhIxo4,5340
55
55
  stackit/postgresflex/models/partial_update_user_payload.py,sha256=e8yVbWyWz6IrbyzHrjrG70T_z3erxBUn0ysauesuXTg,2831
56
56
  stackit/postgresflex/models/reset_user_password_response.py,sha256=0jdO0EAxa5R5Ki0IkLAnpIGcKr2E21LBF0QD9_dG3Oo,2717
57
57
  stackit/postgresflex/models/state.py,sha256=DAsWxyaWRFPRUr_ErG5bl206YVMQlGh6x26k2CfcEKo,856
58
58
  stackit/postgresflex/models/storage.py,sha256=XCuXQLaXUxEGccJ4yQNRhJYw9NZhmWWOAFUebZsfHhE,2691
59
- stackit/postgresflex/models/storage_create.py,sha256=HdyUgWFNTCN8tS2a3R2IALcUWZALt-g1qkiNBMUAZ_k,2685
59
+ stackit/postgresflex/models/storage_create.py,sha256=nFBDZ8ww0TMZ1PQZv2XLOpUcduLEr03Go-vijR3VZ1c,2647
60
60
  stackit/postgresflex/models/storage_update.py,sha256=fjpyDQHkemL3O_6J2ht71YQaHiNWrV-UgzlJbR7aUj0,2526
61
61
  stackit/postgresflex/models/update_database_partially_response.py,sha256=OpTMyf5LSin2CSaBfkR7jeiTZYkqUs-TJ4B88C7_whY,2791
62
- stackit/postgresflex/models/update_database_payload.py,sha256=qaERreCcxvq3QIcKX4SSJ6PeuunUmrcmngLSeS5kJ5E,2582
62
+ stackit/postgresflex/models/update_database_payload.py,sha256=rEg4I8riY4JRegeIzg7fiB3iZrmiyv5WlOijY15ZMIM,3228
63
63
  stackit/postgresflex/models/update_database_response.py,sha256=_FWF6o8fi8qkpmrAkrLIxdtkYuygudGFFYEw9uPVjcA,2755
64
64
  stackit/postgresflex/models/update_instance_payload.py,sha256=Y7yYDnzksHd4HHMHUlvf6TK2MEYUTxeyCRhBuy4dKfw,5393
65
65
  stackit/postgresflex/models/update_instance_protection_payload.py,sha256=Vy_BVZGGC8uU2bH_7L9nL4_TT38LfbAaF3fQfo16-Os,2573
@@ -69,8 +69,8 @@ stackit/postgresflex/models/user_sort.py,sha256=5jqVk3XwPeFhkoUJ3tmsJFwSSvQjBL2J
69
69
  stackit/postgresflex/models/validation_error.py,sha256=g2aIpKJaXI8D9sNy7UOv-_6RKzE4agvriNVtDzDBroQ,3389
70
70
  stackit/postgresflex/models/validation_error_validation_inner.py,sha256=Dtl1rAoJrDGkb06vJKhfrXgFI6abB7suWzDJ8teuEyc,2558
71
71
  stackit/postgresflex/models/version.py,sha256=YdpvXgKBIbG8N_snCSV7AtgTAzSnRKChCKRX7b2owso,3186
72
- stackit_postgresflex-1.5.0.dist-info/METADATA,sha256=V50gymex9Bz9YP8IFiIHxmMSSevTKAQZeEEB5m4p8BU,1756
73
- stackit_postgresflex-1.5.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
74
- stackit_postgresflex-1.5.0.dist-info/licenses/LICENSE.md,sha256=3dF8Tb7yZn2tS4zyNa-yNe-68pH8qyWdGz4ioMd3MgE,10933
75
- stackit_postgresflex-1.5.0.dist-info/licenses/NOTICE.txt,sha256=dfclnS31cAj0fpPzKDsJywff703M-uXw4rUhlfsixTM,67
76
- stackit_postgresflex-1.5.0.dist-info/RECORD,,
72
+ stackit_postgresflex-1.6.1.dist-info/METADATA,sha256=Yy55MgI053P0QSpFlypmYq3KFE4TJ6XHd6OmZjdFnAE,1756
73
+ stackit_postgresflex-1.6.1.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
74
+ stackit_postgresflex-1.6.1.dist-info/licenses/LICENSE.md,sha256=3dF8Tb7yZn2tS4zyNa-yNe-68pH8qyWdGz4ioMd3MgE,10933
75
+ stackit_postgresflex-1.6.1.dist-info/licenses/NOTICE.txt,sha256=dfclnS31cAj0fpPzKDsJywff703M-uXw4rUhlfsixTM,67
76
+ stackit_postgresflex-1.6.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.31.0
2
+ Generator: hatchling 1.32.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any