Skip to content

Commit 66052fe

Browse files
Generator: Update SDK /services/iaas (#2625)
* Generate iaas * Add changelogs Signed-off-by: Alexander Dahmen <[email protected]> --------- Signed-off-by: Alexander Dahmen <[email protected]> Co-authored-by: Alexander Dahmen <[email protected]>
1 parent 3ffe18c commit 66052fe

File tree

154 files changed

+588
-173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+588
-173
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Release (2025-xx-xx)
2+
- `iaas`: [v1.1.0](services/iaas/CHANGELOG.md#v110)
3+
- **Feature:** Add `CreateIsolatedNetwork` functionality
4+
- **Feature:** Add `ImageFromVolumePayload` functionality
5+
- **Feature:** Add `SystemRoutes` to `UpdateRoutingTableOfAreaPayload`
6+
17
## Release (2025-12-08)
28
- `scf`: [v0.3.0](services/scf/CHANGELOG.md#v030)
39
- **Feature:** Add new model `IsolationSegment` and `IsolationSegmentsList`

services/iaas/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.1.0
2+
- **Feature:** Add `CreateIsolatedNetwork` functionality
3+
- **Feature:** Add `ImageFromVolumePayload` functionality
4+
- **Feature:** Add `SystemRoutes` to `UpdateRoutingTableOfAreaPayload`
5+
16
## v1.0.0
27
- **Breaking Change:** Add required `region` parameter to most API methods in `DefaultApi` class.
38
- **Breaking Change:** Removal of API methods from `DefaultApi` class: `list_snapshots`, `update_image_scope_local`, `update_image_scope_public`.

services/iaas/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-iaas"
33

44
[tool.poetry]
55
name = "stackit-iaas"
6-
version = "v1.0.0"
6+
version = "v1.1.0"
77
authors = [
88
"STACKIT Developer Tools <[email protected]>",
99
]

services/iaas/src/stackit/iaas/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# flake8: noqa
44

55
"""
6-
IaaS-API
6+
STACKIT IaaS API
77
88
This API allows you to create and modify IaaS resources.
99
@@ -46,6 +46,7 @@
4646
"CreateAffinityGroupPayload",
4747
"CreateBackupPayload",
4848
"CreateImagePayload",
49+
"CreateIsolatedNetworkPayload",
4950
"CreateKeyPairPayload",
5051
"CreateNetworkAreaPayload",
5152
"CreateNetworkAreaRangePayload",
@@ -228,6 +229,9 @@
228229
from stackit.iaas.models.create_image_payload import (
229230
CreateImagePayload as CreateImagePayload,
230231
)
232+
from stackit.iaas.models.create_isolated_network_payload import (
233+
CreateIsolatedNetworkPayload as CreateIsolatedNetworkPayload,
234+
)
231235
from stackit.iaas.models.create_key_pair_payload import (
232236
CreateKeyPairPayload as CreateKeyPairPayload,
233237
)

services/iaas/src/stackit/iaas/api/default_api.py

Lines changed: 309 additions & 9 deletions
Large diffs are not rendered by default.

services/iaas/src/stackit/iaas/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
IaaS-API
4+
STACKIT IaaS API
55
66
This API allows you to create and modify IaaS resources.
77

services/iaas/src/stackit/iaas/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
IaaS-API
4+
STACKIT IaaS API
55
66
This API allows you to create and modify IaaS resources.
77

services/iaas/src/stackit/iaas/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
IaaS-API
4+
STACKIT IaaS API
55
66
This API allows you to create and modify IaaS resources.
77

services/iaas/src/stackit/iaas/models/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# flake8: noqa
44
"""
5-
IaaS-API
5+
STACKIT IaaS API
66
77
This API allows you to create and modify IaaS resources.
88
@@ -38,6 +38,9 @@
3838
from stackit.iaas.models.create_affinity_group_payload import CreateAffinityGroupPayload
3939
from stackit.iaas.models.create_backup_payload import CreateBackupPayload
4040
from stackit.iaas.models.create_image_payload import CreateImagePayload
41+
from stackit.iaas.models.create_isolated_network_payload import (
42+
CreateIsolatedNetworkPayload,
43+
)
4144
from stackit.iaas.models.create_key_pair_payload import CreateKeyPairPayload
4245
from stackit.iaas.models.create_network_area_payload import CreateNetworkAreaPayload
4346
from stackit.iaas.models.create_network_area_range_payload import (

services/iaas/src/stackit/iaas/models/add_routes_to_routing_table_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
IaaS-API
4+
STACKIT IaaS API
55
66
This API allows you to create and modify IaaS resources.
77

0 commit comments

Comments
 (0)