Skip to content
Open
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: 1 addition & 1 deletion services/vpn/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18e00f0b26b2cd1f3403bbf0c2e64e7fe333b4d1
6e07a1c9aa4071d66de3185f756617a6a971ab95
34 changes: 34 additions & 0 deletions services/vpn/src/stackit/vpn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
"APIError",
"APIErrorDetail",
"APIErrorResponse",
"BGPFilter",
"BGPFilterList",
"BGPFilterRule",
"BGPFilterRuleList",
"BGPFilterRuleMatch",
"BGPFilterRuleSet",
"BGPGatewayConfig",
"BGPStatus",
"BGPStatusPeers",
Expand All @@ -39,6 +45,8 @@
"ConnectionList",
"ConnectionResponse",
"ConnectionStatusResponse",
"CreateGatewayBGPFilterPayload",
"CreateGatewayBGPFilterRulePayload",
"CreateGatewayConnectionPayload",
"CreateGatewayPayload",
"CreateGatewayPayloadAvailabilityZones",
Expand All @@ -47,6 +55,7 @@
"GatewayResponse",
"GatewayStatus",
"GatewayStatusResponse",
"NetworkConfig",
"PeeringConfig",
"Phase",
"Phase1Status",
Expand All @@ -62,6 +71,8 @@
"TunnelConfigurationPhase1",
"TunnelConfigurationPhase2",
"TunnelStatus",
"UpdateGatewayBGPFilterPayload",
"UpdateGatewayBGPFilterRulePayload",
"UpdateGatewayConnectionPayload",
"UpdateGatewayPayload",
"VPNTunnels",
Expand All @@ -85,6 +96,16 @@
from stackit.vpn.models.api_error import APIError as APIError
from stackit.vpn.models.api_error_detail import APIErrorDetail as APIErrorDetail
from stackit.vpn.models.api_error_response import APIErrorResponse as APIErrorResponse
from stackit.vpn.models.bgp_filter import BGPFilter as BGPFilter
from stackit.vpn.models.bgp_filter_list import BGPFilterList as BGPFilterList
from stackit.vpn.models.bgp_filter_rule import BGPFilterRule as BGPFilterRule
from stackit.vpn.models.bgp_filter_rule_list import (
BGPFilterRuleList as BGPFilterRuleList,
)
from stackit.vpn.models.bgp_filter_rule_match import (
BGPFilterRuleMatch as BGPFilterRuleMatch,
)
from stackit.vpn.models.bgp_filter_rule_set import BGPFilterRuleSet as BGPFilterRuleSet
from stackit.vpn.models.bgp_gateway_config import BGPGatewayConfig as BGPGatewayConfig
from stackit.vpn.models.bgp_status import BGPStatus as BGPStatus
from stackit.vpn.models.bgp_status_peers import BGPStatusPeers as BGPStatusPeers
Expand All @@ -97,6 +118,12 @@
from stackit.vpn.models.connection_status_response import (
ConnectionStatusResponse as ConnectionStatusResponse,
)
from stackit.vpn.models.create_gateway_bgp_filter_payload import (
CreateGatewayBGPFilterPayload as CreateGatewayBGPFilterPayload,
)
from stackit.vpn.models.create_gateway_bgp_filter_rule_payload import (
CreateGatewayBGPFilterRulePayload as CreateGatewayBGPFilterRulePayload,
)
from stackit.vpn.models.create_gateway_connection_payload import (
CreateGatewayConnectionPayload as CreateGatewayConnectionPayload,
)
Expand All @@ -113,6 +140,7 @@
from stackit.vpn.models.gateway_status_response import (
GatewayStatusResponse as GatewayStatusResponse,
)
from stackit.vpn.models.network_config import NetworkConfig as NetworkConfig
from stackit.vpn.models.peering_config import PeeringConfig as PeeringConfig
from stackit.vpn.models.phase import Phase as Phase
from stackit.vpn.models.phase1_status import Phase1Status as Phase1Status
Expand All @@ -136,6 +164,12 @@
TunnelConfigurationPhase2 as TunnelConfigurationPhase2,
)
from stackit.vpn.models.tunnel_status import TunnelStatus as TunnelStatus
from stackit.vpn.models.update_gateway_bgp_filter_payload import (
UpdateGatewayBGPFilterPayload as UpdateGatewayBGPFilterPayload,
)
from stackit.vpn.models.update_gateway_bgp_filter_rule_payload import (
UpdateGatewayBGPFilterRulePayload as UpdateGatewayBGPFilterRulePayload,
)
from stackit.vpn.models.update_gateway_connection_payload import (
UpdateGatewayConnectionPayload as UpdateGatewayConnectionPayload,
)
Expand Down
Loading
Loading