Skip to content

Commit 959d7fd

Browse files
Generate iaas
1 parent 3ffe18c commit 959d7fd

File tree

151 files changed

+576
-172
lines changed

Some content is hidden

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

151 files changed

+576
-172
lines changed

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

services/iaas/src/stackit/iaas/models/add_routing_table_to_area_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

services/iaas/src/stackit/iaas/models/add_volume_to_server_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

services/iaas/src/stackit/iaas/models/affinity_group.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)