Skip to content

Commit 9d374b3

Browse files
Generator: Update SDK /services/vpn (#4422)
Co-authored-by: Manuel Vaas <manuel.vaas@stackit.cloud>
1 parent e4f8b98 commit 9d374b3

48 files changed

Lines changed: 509 additions & 501 deletions

Some content is hidden

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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@
172172
- [v0.14.0](services/observability/CHANGELOG.md#v0140)
173173
- **Feature:** Add attribute `otlp_http_logs_url` to `InstanceSensitiveData` model class
174174
- `vpn`:
175+
- [v0.3.0](services/vpn/CHANGELOG.md#v030)
176+
- **Breaking Change:** switch from `v1beta` version to `v1` version of the API
175177
- [v0.2.0](services/vpn/CHANGELOG.md#v020)
176178
- **Feature:** regenerate with openapi-generator v7.22.0
177179
- [v0.1.0](services/vpn/CHANGELOG.md#v010)

services/vpn/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.3.0
2+
- **Breaking Change:** switch from `v1beta` version to `v1` version of the API
3+
14
## v0.2.0
25
- **Feature:** regenerate with openapi-generator v7.22.0
36

services/vpn/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8
1+
5e44a8a3aa0447f4f0511f53cc4eead9b6e6384e

services/vpn/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-vpn"
3-
version = "v0.2.0"
3+
version = "v0.3.0"
44
description = "STACKIT VPN API"
55
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
66
requires-python = ">=3.9,<4.0"
@@ -107,5 +107,5 @@ inline-quotes = '"'
107107
docstring-quotes = '"""'
108108
multiline-quotes = '"""'
109109
ban-relative-imports = true
110-
# Exclude generated code
110+
# Exclude generated code
111111
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]

services/vpn/src/stackit/vpn/__init__.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Provision and manage STACKIT VPN gateways. Use this API to establish secure, encrypted IPsec tunnels between your STACKIT Network Area (SNA) and external networks. The service supports the following routing architectures: - Policy-based IPsec - Static route-based IPsec - Dynamic BGP IPsec
99
10-
The version of the OpenAPI document: 1beta1
10+
The version of the OpenAPI document: 1
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
@@ -40,8 +40,8 @@
4040
"ConnectionResponse",
4141
"ConnectionStatusResponse",
4242
"CreateGatewayConnectionPayload",
43-
"CreateVPNGatewayPayload",
44-
"CreateVPNGatewayPayloadAvailabilityZones",
43+
"CreateGatewayPayload",
44+
"CreateGatewayPayloadAvailabilityZones",
4545
"Gateway",
4646
"GatewayList",
4747
"GatewayResponse",
@@ -63,7 +63,7 @@
6363
"TunnelConfigurationPhase2",
6464
"TunnelStatus",
6565
"UpdateGatewayConnectionPayload",
66-
"UpdateVPNGatewayPayload",
66+
"UpdateGatewayPayload",
6767
"VPNTunnels",
6868
]
6969

@@ -100,11 +100,11 @@
100100
from stackit.vpn.models.create_gateway_connection_payload import (
101101
CreateGatewayConnectionPayload as CreateGatewayConnectionPayload,
102102
)
103-
from stackit.vpn.models.create_vpn_gateway_payload import (
104-
CreateVPNGatewayPayload as CreateVPNGatewayPayload,
103+
from stackit.vpn.models.create_gateway_payload import (
104+
CreateGatewayPayload as CreateGatewayPayload,
105105
)
106-
from stackit.vpn.models.create_vpn_gateway_payload_availability_zones import (
107-
CreateVPNGatewayPayloadAvailabilityZones as CreateVPNGatewayPayloadAvailabilityZones,
106+
from stackit.vpn.models.create_gateway_payload_availability_zones import (
107+
CreateGatewayPayloadAvailabilityZones as CreateGatewayPayloadAvailabilityZones,
108108
)
109109
from stackit.vpn.models.gateway import Gateway as Gateway
110110
from stackit.vpn.models.gateway_list import GatewayList as GatewayList
@@ -139,7 +139,7 @@
139139
from stackit.vpn.models.update_gateway_connection_payload import (
140140
UpdateGatewayConnectionPayload as UpdateGatewayConnectionPayload,
141141
)
142-
from stackit.vpn.models.update_vpn_gateway_payload import (
143-
UpdateVPNGatewayPayload as UpdateVPNGatewayPayload,
142+
from stackit.vpn.models.update_gateway_payload import (
143+
UpdateGatewayPayload as UpdateGatewayPayload,
144144
)
145145
from stackit.vpn.models.vpn_tunnels import VPNTunnels as VPNTunnels

0 commit comments

Comments
 (0)