Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@
- [v0.14.0](services/observability/CHANGELOG.md#v0140)
- **Feature:** Add attribute `otlp_http_logs_url` to `InstanceSensitiveData` model class
- `vpn`:
- [v0.3.0](services/vpn/CHANGELOG.md#v030)
- **Breaking Change:** switch from `v1beta` version to `v1` version of the API
- [v0.2.0](services/vpn/CHANGELOG.md#v020)
- **Feature:** regenerate with openapi-generator v7.22.0
- [v0.1.0](services/vpn/CHANGELOG.md#v010)
Expand Down
3 changes: 3 additions & 0 deletions services/vpn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.3.0
- **Breaking Change:** switch from `v1beta` version to `v1` version of the API

## v0.2.0
- **Feature:** regenerate with openapi-generator v7.22.0

Expand Down
2 changes: 1 addition & 1 deletion services/vpn/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8
5e44a8a3aa0447f4f0511f53cc4eead9b6e6384e
4 changes: 2 additions & 2 deletions services/vpn/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-vpn"
version = "v0.2.0"
version = "v0.3.0"
description = "STACKIT VPN API"
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
requires-python = ">=3.9,<4.0"
Expand Down Expand Up @@ -107,5 +107,5 @@ inline-quotes = '"'
docstring-quotes = '"""'
multiline-quotes = '"""'
ban-relative-imports = true
# Exclude generated code
# Exclude generated code
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
20 changes: 10 additions & 10 deletions services/vpn/src/stackit/vpn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

The version of the OpenAPI document: 1beta1
The version of the OpenAPI document: 1
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -40,8 +40,8 @@
"ConnectionResponse",
"ConnectionStatusResponse",
"CreateGatewayConnectionPayload",
"CreateVPNGatewayPayload",
"CreateVPNGatewayPayloadAvailabilityZones",
"CreateGatewayPayload",
"CreateGatewayPayloadAvailabilityZones",
"Gateway",
"GatewayList",
"GatewayResponse",
Expand All @@ -63,7 +63,7 @@
"TunnelConfigurationPhase2",
"TunnelStatus",
"UpdateGatewayConnectionPayload",
"UpdateVPNGatewayPayload",
"UpdateGatewayPayload",
"VPNTunnels",
]

Expand Down Expand Up @@ -100,11 +100,11 @@
from stackit.vpn.models.create_gateway_connection_payload import (
CreateGatewayConnectionPayload as CreateGatewayConnectionPayload,
)
from stackit.vpn.models.create_vpn_gateway_payload import (
CreateVPNGatewayPayload as CreateVPNGatewayPayload,
from stackit.vpn.models.create_gateway_payload import (
CreateGatewayPayload as CreateGatewayPayload,
)
from stackit.vpn.models.create_vpn_gateway_payload_availability_zones import (
CreateVPNGatewayPayloadAvailabilityZones as CreateVPNGatewayPayloadAvailabilityZones,
from stackit.vpn.models.create_gateway_payload_availability_zones import (
CreateGatewayPayloadAvailabilityZones as CreateGatewayPayloadAvailabilityZones,
)
from stackit.vpn.models.gateway import Gateway as Gateway
from stackit.vpn.models.gateway_list import GatewayList as GatewayList
Expand Down Expand Up @@ -139,7 +139,7 @@
from stackit.vpn.models.update_gateway_connection_payload import (
UpdateGatewayConnectionPayload as UpdateGatewayConnectionPayload,
)
from stackit.vpn.models.update_vpn_gateway_payload import (
UpdateVPNGatewayPayload as UpdateVPNGatewayPayload,
from stackit.vpn.models.update_gateway_payload import (
UpdateGatewayPayload as UpdateGatewayPayload,
)
from stackit.vpn.models.vpn_tunnels import VPNTunnels as VPNTunnels
Loading
Loading